diff --git a/base/daemon/SentryWriter.cpp b/base/daemon/SentryWriter.cpp
index ad914ff8cf4..ac771b9bf47 100644
--- a/base/daemon/SentryWriter.cpp
+++ b/base/daemon/SentryWriter.cpp
@@ -13,6 +13,7 @@
#include
#include
#include
+#include
#if !defined(ARCADIA_BUILD)
# include "Common/config_version.h"
@@ -64,41 +65,6 @@ void setExtras()
sentry_set_extra("disk_free_space", sentry_value_new_string(formatReadableSizeWithBinarySuffix(fs::space(server_data_path).free).c_str()));
}
-void sentry_logger(sentry_level_e level, const char * message, va_list args, void *)
-{
- auto * logger = &Poco::Logger::get("SentryWriter");
- size_t size = 1024;
- char buffer[size];
-#ifdef __clang__
-#pragma clang diagnostic push
-#pragma clang diagnostic ignored "-Wformat-nonliteral"
-#endif
- if (vsnprintf(buffer, size, message, args) >= 0)
- {
-#ifdef __clang__
-#pragma clang diagnostic pop
-#endif
- switch (level)
- {
- case SENTRY_LEVEL_DEBUG:
- logger->debug(buffer);
- break;
- case SENTRY_LEVEL_INFO:
- logger->information(buffer);
- break;
- case SENTRY_LEVEL_WARNING:
- logger->warning(buffer);
- break;
- case SENTRY_LEVEL_ERROR:
- logger->error(buffer);
- break;
- case SENTRY_LEVEL_FATAL:
- logger->fatal(buffer);
- break;
- }
- }
-}
-
}
@@ -107,13 +73,13 @@ void SentryWriter::initialize(Poco::Util::LayeredConfiguration & config)
bool enabled = false;
bool debug = config.getBool("send_crash_reports.debug", false);
auto * logger = &Poco::Logger::get("SentryWriter");
+
if (config.getBool("send_crash_reports.enabled", false))
{
if (debug || (strlen(VERSION_OFFICIAL) > 0)) //-V560
- {
enabled = true;
- }
}
+
if (enabled)
{
server_data_path = config.getString("path", "");
@@ -126,7 +92,6 @@ void SentryWriter::initialize(Poco::Util::LayeredConfiguration & config)
sentry_options_t * options = sentry_options_new(); /// will be freed by sentry_init or sentry_shutdown
sentry_options_set_release(options, VERSION_STRING_SHORT);
- sentry_options_set_logger(options, &sentry_logger, nullptr);
if (debug)
{
sentry_options_set_debug(options, 1);
@@ -199,34 +164,34 @@ void SentryWriter::onFault(int sig, const std::string & error_message, const Sta
if (stack_size > 0)
{
ssize_t offset = stack_trace.getOffset();
- char instruction_addr[100];
+
+ char instruction_addr[19]
+ {
+ '0', 'x',
+ '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f',
+ '\0'
+ };
+
StackTrace::Frames frames;
StackTrace::symbolize(stack_trace.getFramePointers(), offset, stack_size, frames);
+
for (ssize_t i = stack_size - 1; i >= offset; --i)
{
const StackTrace::Frame & current_frame = frames[i];
sentry_value_t sentry_frame = sentry_value_new_object();
UInt64 frame_ptr = reinterpret_cast(current_frame.virtual_addr);
- if (std::snprintf(instruction_addr, sizeof(instruction_addr), "0x%" PRIx64, frame_ptr) >= 0)
- {
- sentry_value_set_by_key(sentry_frame, "instruction_addr", sentry_value_new_string(instruction_addr));
- }
+ writeHexUIntLowercase(frame_ptr, instruction_addr + 2);
+ sentry_value_set_by_key(sentry_frame, "instruction_addr", sentry_value_new_string(instruction_addr));
if (current_frame.symbol.has_value())
- {
sentry_value_set_by_key(sentry_frame, "function", sentry_value_new_string(current_frame.symbol.value().c_str()));
- }
if (current_frame.file.has_value())
- {
sentry_value_set_by_key(sentry_frame, "filename", sentry_value_new_string(current_frame.file.value().c_str()));
- }
if (current_frame.line.has_value())
- {
sentry_value_set_by_key(sentry_frame, "lineno", sentry_value_new_int32(current_frame.line.value()));
- }
sentry_value_append(sentry_frames, sentry_frame);
}
diff --git a/cmake/target.cmake b/cmake/target.cmake
index e8932a893c0..3c02c4313f1 100644
--- a/cmake/target.cmake
+++ b/cmake/target.cmake
@@ -20,35 +20,23 @@ endif ()
if (CMAKE_CROSSCOMPILING)
if (OS_DARWIN)
# FIXME: broken dependencies
- set (ENABLE_PROTOBUF OFF CACHE INTERNAL "")
set (ENABLE_GRPC OFF CACHE INTERNAL "") # no protobuf -> no grpc
-
- set (USE_SNAPPY OFF CACHE INTERNAL "")
- set (ENABLE_PARQUET OFF CACHE INTERNAL "") # no snappy and protobuf -> no parquet
- set (ENABLE_ORC OFF CACHE INTERNAL "") # no arrow (parquet) -> no orc
-
set (ENABLE_ICU OFF CACHE INTERNAL "")
set (ENABLE_FASTOPS OFF CACHE INTERNAL "")
elseif (OS_LINUX OR OS_ANDROID)
if (ARCH_AARCH64)
# FIXME: broken dependencies
- set (ENABLE_PROTOBUF OFF CACHE INTERNAL "")
set (ENABLE_GRPC OFF CACHE INTERNAL "")
set (USE_SENTRY OFF CACHE INTERNAL "")
-# set (ENABLE_ROCKSDB OFF CACHE INTERNAL "")
elseif (ARCH_PPC64LE)
- set (ENABLE_PROTOBUF OFF CACHE INTERNAL "")
set (ENABLE_GRPC OFF CACHE INTERNAL "")
set (USE_SENTRY OFF CACHE INTERNAL "")
-# set (ENABLE_ROCKSDB OFF CACHE INTERNAL "")
endif ()
elseif (OS_FREEBSD)
# FIXME: broken dependencies
- set (ENABLE_PROTOBUF OFF CACHE INTERNAL "")
+ set (ENABLE_PARQUET OFF CACHE INTERNAL "")
+ set (ENABLE_ORC OFF CACHE INTERNAL "")
set (ENABLE_GRPC OFF CACHE INTERNAL "")
-
- set (ENABLE_ORC OFF CACHE INTERNAL "") # no protobuf -> no parquet -> no orc
-
set (ENABLE_EMBEDDED_COMPILER OFF CACHE INTERNAL "")
else ()
message (FATAL_ERROR "Trying to cross-compile to unsupported system: ${CMAKE_SYSTEM_NAME}!")
diff --git a/contrib/boost b/contrib/boost
index 311cfd49896..79358a3106a 160000
--- a/contrib/boost
+++ b/contrib/boost
@@ -1 +1 @@
-Subproject commit 311cfd498966d4f77742703d605d9c2e7b4cc6a8
+Subproject commit 79358a3106aab6af464430ed67c7efafebf5cd6f
diff --git a/contrib/grpc-cmake/protobuf_generate_grpc.cmake b/contrib/grpc-cmake/protobuf_generate_grpc.cmake
index 726428a7597..71ee69caf3e 100644
--- a/contrib/grpc-cmake/protobuf_generate_grpc.cmake
+++ b/contrib/grpc-cmake/protobuf_generate_grpc.cmake
@@ -187,12 +187,12 @@ function(protobuf_generate_grpc)
add_custom_command(
OUTPUT ${_generated_srcs}
- COMMAND $
+ COMMAND $
ARGS --${protobuf_generate_grpc_LANGUAGE}_out ${_dll_export_decl}${protobuf_generate_grpc_PROTOC_OUT_DIR}
--grpc_out ${_dll_export_decl}${protobuf_generate_grpc_PROTOC_OUT_DIR}
--plugin=protoc-gen-grpc=$
${_dll_desc_out} ${_protobuf_include_path} ${_abs_file}
- DEPENDS ${_abs_file} protobuf::protoc ${protobuf_generate_grpc_PLUGIN}
+ DEPENDS ${_abs_file} protoc ${protobuf_generate_grpc_PLUGIN}
COMMENT "Running ${protobuf_generate_grpc_LANGUAGE} protocol buffer compiler on ${_proto}"
VERBATIM)
endforeach()
diff --git a/contrib/protobuf-cmake/CMakeLists.txt b/contrib/protobuf-cmake/CMakeLists.txt
index a4993030d04..0ceb72cfbd6 100644
--- a/contrib/protobuf-cmake/CMakeLists.txt
+++ b/contrib/protobuf-cmake/CMakeLists.txt
@@ -10,8 +10,82 @@ else ()
set(protobuf_BUILD_SHARED_LIBS ON CACHE INTERNAL "" FORCE)
endif ()
+if (CMAKE_CROSSCOMPILING)
+ # Will build 'protoc' for host arch instead of cross-compiling
+ set(protobuf_BUILD_PROTOC_BINARIES OFF CACHE INTERNAL "" FORCE)
+endif ()
+
add_subdirectory("${protobuf_SOURCE_DIR}/cmake" "${protobuf_BINARY_DIR}")
# We don't want to stop compilation on warnings in protobuf's headers.
-# The following line overrides the value assigned by the command target_include_directories() in libprotobuf.cmake
+# The following line overrides the value assigned by the command target_include_directories() in libprotobuf.cmake
set_property(TARGET libprotobuf PROPERTY INTERFACE_SYSTEM_INCLUDE_DIRECTORIES "${protobuf_SOURCE_DIR}/src")
+
+if (CMAKE_CROSSCOMPILING)
+ # Build 'protoc' for host arch
+ set (PROTOC_BUILD_DIR "${protobuf_BINARY_DIR}/build")
+
+ if (NOT EXISTS "${PROTOC_BUILD_DIR}/protoc")
+
+ # This is quite ugly but I cannot make dependencies work propery.
+
+ execute_process(
+ COMMAND mkdir -p ${PROTOC_BUILD_DIR}
+ COMMAND_ECHO STDOUT)
+
+ execute_process(
+ COMMAND ${CMAKE_COMMAND}
+ "-G${CMAKE_GENERATOR}"
+ "-DCMAKE_MAKE_PROGRAM=${CMAKE_MAKE_PROGRAM}"
+ "-DCMAKE_C_COMPILER=${CMAKE_C_COMPILER}"
+ "-DCMAKE_CXX_COMPILER=${CMAKE_CXX_COMPILER}"
+ "-Dprotobuf_BUILD_TESTS=0"
+ "-Dprotobuf_BUILD_CONFORMANCE=0"
+ "-Dprotobuf_BUILD_EXAMPLES=0"
+ "-Dprotobuf_BUILD_PROTOC_BINARIES=1"
+ "${protobuf_SOURCE_DIR}/cmake"
+ WORKING_DIRECTORY "${PROTOC_BUILD_DIR}"
+ COMMAND_ECHO STDOUT)
+
+ execute_process(
+ COMMAND ${CMAKE_COMMAND} --build "${PROTOC_BUILD_DIR}"
+ COMMAND_ECHO STDOUT)
+ endif ()
+
+# add_custom_command (
+# OUTPUT ${PROTOC_BUILD_DIR}
+# COMMAND mkdir -p ${PROTOC_BUILD_DIR})
+#
+# add_custom_command (
+# OUTPUT "${PROTOC_BUILD_DIR}/CMakeCache.txt"
+#
+# COMMAND ${CMAKE_COMMAND}
+# -G"${CMAKE_GENERATOR}"
+# -DCMAKE_MAKE_PROGRAM="${CMAKE_MAKE_PROGRAM}"
+# -DCMAKE_C_COMPILER="${CMAKE_C_COMPILER}"
+# -DCMAKE_CXX_COMPILER="${CMAKE_CXX_COMPILER}"
+# -Dprotobuf_BUILD_TESTS=0
+# -Dprotobuf_BUILD_CONFORMANCE=0
+# -Dprotobuf_BUILD_EXAMPLES=0
+# -Dprotobuf_BUILD_PROTOC_BINARIES=1
+# "${protobuf_SOURCE_DIR}/cmake"
+#
+# DEPENDS "${PROTOC_BUILD_DIR}"
+# WORKING_DIRECTORY "${PROTOC_BUILD_DIR}"
+# COMMENT "Configuring 'protoc' for host architecture."
+# USES_TERMINAL)
+#
+# add_custom_command (
+# OUTPUT "${PROTOC_BUILD_DIR}/protoc"
+# COMMAND ${CMAKE_COMMAND} --build "${PROTOC_BUILD_DIR}"
+# DEPENDS "${PROTOC_BUILD_DIR}/CMakeCache.txt"
+# COMMENT "Building 'protoc' for host architecture."
+# USES_TERMINAL)
+#
+# add_custom_target (protoc-host DEPENDS "${PROTOC_BUILD_DIR}/protoc")
+
+ add_executable(protoc IMPORTED GLOBAL)
+ set_target_properties (protoc PROPERTIES IMPORTED_LOCATION "${PROTOC_BUILD_DIR}/protoc")
+ add_dependencies(protoc "${PROTOC_BUILD_DIR}/protoc")
+
+endif ()
diff --git a/contrib/protobuf-cmake/protobuf_generate.cmake b/contrib/protobuf-cmake/protobuf_generate.cmake
index c444162dd1e..3e30b4e40fd 100644
--- a/contrib/protobuf-cmake/protobuf_generate.cmake
+++ b/contrib/protobuf-cmake/protobuf_generate.cmake
@@ -181,9 +181,9 @@ function(protobuf_generate)
add_custom_command(
OUTPUT ${_generated_srcs}
- COMMAND $
+ COMMAND $
ARGS --${protobuf_generate_LANGUAGE}_out ${_dll_export_decl}${protobuf_generate_PROTOC_OUT_DIR} ${_dll_desc_out} ${_protobuf_include_path} ${_abs_file}
- DEPENDS ${_abs_file} protobuf::protoc
+ DEPENDS ${_abs_file} protoc
COMMENT "Running ${protobuf_generate_LANGUAGE} protocol buffer compiler on ${_proto}"
VERBATIM)
endforeach()
diff --git a/docker/test/fasttest/run.sh b/docker/test/fasttest/run.sh
index c8a3ad7c998..f4b99603554 100755
--- a/docker/test/fasttest/run.sh
+++ b/docker/test/fasttest/run.sh
@@ -262,11 +262,13 @@ function run_tests
start_server
+ set +e
time clickhouse-test --hung-check -j 8 --order=random \
--fast-tests-only --no-long --testname --shard --zookeeper \
-- "$FASTTEST_FOCUS" 2>&1 \
| ts '%Y-%m-%d %H:%M:%S' \
| tee "$FASTTEST_OUTPUT/test_result.txt"
+ set -e
}
case "$stage" in
diff --git a/docker/test/stateful/run.sh b/docker/test/stateful/run.sh
index dd5984fd7b5..69b435857d9 100755
--- a/docker/test/stateful/run.sh
+++ b/docker/test/stateful/run.sh
@@ -108,8 +108,10 @@ function run_tests()
ADDITIONAL_OPTIONS+=('--replicated-database')
fi
+ set +e
clickhouse-test --testname --shard --zookeeper --no-stateless --hung-check --print-time "${ADDITIONAL_OPTIONS[@]}" \
"$SKIP_TESTS_OPTION" 2>&1 | ts '%Y-%m-%d %H:%M:%S' | tee test_output/test_result.txt
+ set -e
}
export -f run_tests
diff --git a/docker/test/stateless/run.sh b/docker/test/stateless/run.sh
index ed721690281..ce1d1b59a55 100755
--- a/docker/test/stateless/run.sh
+++ b/docker/test/stateless/run.sh
@@ -96,10 +96,12 @@ function run_tests()
ADDITIONAL_OPTIONS+=('8')
fi
+ set +e
clickhouse-test --testname --shard --zookeeper --hung-check --print-time \
--test-runs "$NUM_TRIES" "${ADDITIONAL_OPTIONS[@]}" 2>&1 \
| ts '%Y-%m-%d %H:%M:%S' \
| tee -a test_output/test_result.txt
+ set -e
}
export -f run_tests
@@ -114,12 +116,6 @@ grep -Fa "Fatal" /var/log/clickhouse-server/clickhouse-server.log ||:
pigz < /var/log/clickhouse-server/clickhouse-server.log > /test_output/clickhouse-server.log.gz &
clickhouse-client -q "select * from system.query_log format TSVWithNamesAndTypes" | pigz > /test_output/query-log.tsv.gz &
clickhouse-client -q "select * from system.query_thread_log format TSVWithNamesAndTypes" | pigz > /test_output/query-thread-log.tsv.gz &
-clickhouse-client --allow_introspection_functions=1 -q "
- WITH
- arrayMap(x -> concat(demangle(addressToSymbol(x)), ':', addressToLine(x)), trace) AS trace_array,
- arrayStringConcat(trace_array, '\n') AS trace_string
- SELECT * EXCEPT(trace), trace_string FROM system.trace_log FORMAT TSVWithNamesAndTypes
-" | pigz > /test_output/trace-log.tsv.gz &
# Also export trace log in flamegraph-friendly format.
for trace_type in CPU Memory Real
@@ -146,6 +142,7 @@ fi
tar -chf /test_output/text_log_dump.tar /var/lib/clickhouse/data/system/text_log ||:
tar -chf /test_output/query_log_dump.tar /var/lib/clickhouse/data/system/query_log ||:
tar -chf /test_output/zookeeper_log_dump.tar /var/lib/clickhouse/data/system/zookeeper_log ||:
+tar -chf /test_output/trace_log_dump.tar /var/lib/clickhouse/data/system/trace_log ||:
tar -chf /test_output/coordination.tar /var/lib/clickhouse/coordination ||:
if [[ -n "$USE_DATABASE_REPLICATED" ]] && [[ "$USE_DATABASE_REPLICATED" -eq 1 ]]; then
diff --git a/docker/test/util/process_functional_tests_result.py b/docker/test/util/process_functional_tests_result.py
index e60424ad4d1..82df170686d 100755
--- a/docker/test/util/process_functional_tests_result.py
+++ b/docker/test/util/process_functional_tests_result.py
@@ -28,6 +28,7 @@ def process_test_log(log_path):
test_results = []
with open(log_path, 'r') as test_file:
for line in test_file:
+ original_line = line
line = line.strip()
if any(s in line for s in NO_TASK_TIMEOUT_SIGNS):
task_timeout = False
@@ -49,19 +50,24 @@ def process_test_log(log_path):
total += 1
if TIMEOUT_SIGN in line:
failed += 1
- test_results.append((test_name, "Timeout", test_time))
+ test_results.append((test_name, "Timeout", test_time, []))
elif FAIL_SIGN in line:
failed += 1
- test_results.append((test_name, "FAIL", test_time))
+ test_results.append((test_name, "FAIL", test_time, []))
elif UNKNOWN_SIGN in line:
unknown += 1
- test_results.append((test_name, "FAIL", test_time))
+ test_results.append((test_name, "FAIL", test_time, []))
elif SKIPPED_SIGN in line:
skipped += 1
- test_results.append((test_name, "SKIPPED", test_time))
+ test_results.append((test_name, "SKIPPED", test_time, []))
else:
success += int(OK_SIGN in line)
- test_results.append((test_name, "OK", test_time))
+ test_results.append((test_name, "OK", test_time, []))
+ elif len(test_results) > 0 and test_results[-1][1] == "FAIL":
+ test_results[-1][3].append(original_line)
+
+ test_results = [(test[0], test[1], test[2], ''.join(test[3])) for test in test_results]
+
return total, skipped, unknown, failed, success, hung, task_timeout, retries, test_results
def process_result(result_path):
@@ -89,14 +95,14 @@ def process_result(result_path):
if hung:
description = "Some queries hung, "
state = "failure"
- test_results.append(("Some queries hung", "FAIL", "0"))
+ test_results.append(("Some queries hung", "FAIL", "0", ""))
elif task_timeout:
description = "Timeout, "
state = "failure"
- test_results.append(("Timeout", "FAIL", "0"))
+ test_results.append(("Timeout", "FAIL", "0", ""))
elif retries:
description = "Some tests restarted, "
- test_results.append(("Some tests restarted", "SKIPPED", "0"))
+ test_results.append(("Some tests restarted", "SKIPPED", "0", ""))
else:
description = ""
diff --git a/docs/_includes/install/universal.sh b/docs/_includes/install/universal.sh
new file mode 100755
index 00000000000..7cba682e772
--- /dev/null
+++ b/docs/_includes/install/universal.sh
@@ -0,0 +1,59 @@
+#!/bin/sh -e
+
+OS=$(uname -s)
+ARCH=$(uname -m)
+
+DIR=
+
+if [ "${OS}" = "Linux" ]
+then
+ if [ "${ARCH}" = "x86_64" ]
+ then
+ DIR="amd64"
+ elif [ "${ARCH}" = "aarch64" ]
+ then
+ DIR="aarch64"
+ elif [ "${ARCH}" = "powerpc64le" ]
+ then
+ DIR="powerpc64le"
+ fi
+elif [ "${OS}" = "FreeBSD" ]
+then
+ if [ "${ARCH}" = "x86_64" ]
+ then
+ DIR="freebsd"
+ elif [ "${ARCH}" = "aarch64" ]
+ then
+ DIR="freebsd-aarch64"
+ elif [ "${ARCH}" = "powerpc64le" ]
+ then
+ DIR="freebsd-powerpc64le"
+ fi
+elif [ "${OS}" = "Darwin" ]
+then
+ if [ "${ARCH}" = "x86_64" ]
+ then
+ DIR="macos"
+ elif [ "${ARCH}" = "aarch64" ]
+ then
+ DIR="macos-aarch64"
+ fi
+fi
+
+if [ -z "${DIR}" ]
+then
+ echo "The '${OS}' operating system with the '${ARCH}' architecture is not supported."
+ exit 1
+fi
+
+URL="https://builds.clickhouse.com/master/${DIR}/clickhouse"
+echo "Will download ${URL}"
+curl -O "${URL}" && chmod a+x clickhouse &&
+echo "Successfully downloaded the ClickHouse binary, you can run it as:
+ ./clickhouse"
+
+if [ "${OS}" = "Linux" ]
+then
+ echo "You can also install it:
+ sudo ./clickhouse install"
+fi
diff --git a/docs/en/introduction/adopters.md b/docs/en/introduction/adopters.md
index a6df18b323c..c511bd97a7c 100644
--- a/docs/en/introduction/adopters.md
+++ b/docs/en/introduction/adopters.md
@@ -115,6 +115,7 @@ toc_title: Adopters
| seo.do | Analytics | Main product | — | — | [Slides in English, November 2019](https://github.com/ClickHouse/clickhouse-presentations/blob/master/meetup35/CH%20Presentation-%20Metehan%20Çetinkaya.pdf) |
| SGK | Government Social Security | Analytics | — | — | [Slides in English, November 2019](https://github.com/ClickHouse/clickhouse-presentations/blob/master/meetup35/ClickHouse%20Meetup-Ramazan%20POLAT.pdf) |
| Sina | News | — | — | — | [Slides in Chinese, October 2018](https://github.com/ClickHouse/clickhouse-presentations/blob/master/meetup19/6.%20ClickHouse最佳实践%20高鹏_新浪.pdf) |
+| Sipfront | Analytics | — | — | — | [Tweet, October 2021](https://twitter.com/andreasgranig/status/1446404332337913895?s=20) |
| SMI2 | News | Analytics | — | — | [Blog Post in Russian, November 2017](https://habr.com/ru/company/smi2/blog/314558/) |
| Spark New Zealand | Telecommunications | Security Operations | — | — | [Blog Post, Feb 2020](https://blog.n0p.me/2020/02/2020-02-05-dnsmonster/) |
| Splitbee | Analytics | Main Product | — | — | [Blog Post, Mai 2021](https://splitbee.io/blog/new-pricing) |
diff --git a/docs/en/introduction/distinctive-features.md b/docs/en/introduction/distinctive-features.md
index 34ba4b89415..951a8a9d3e5 100644
--- a/docs/en/introduction/distinctive-features.md
+++ b/docs/en/introduction/distinctive-features.md
@@ -39,9 +39,9 @@ In ClickHouse, data can reside on different shards. Each shard can be a group of
ClickHouse supports a [declarative query language based on SQL](../sql-reference/index.md) that is identical to the ANSI SQL standard in [many cases](../sql-reference/ansi.md).
-Supported queries include [GROUP BY](../sql-reference/statements/select/group-by.md), [ORDER BY](../sql-reference/statements/select/order-by.md), subqueries in [FROM](../sql-reference/statements/select/from.md), [JOIN](../sql-reference/statements/select/join.md) clause, [IN](../sql-reference/operators/in.md) operator, and scalar subqueries.
+Supported queries include [GROUP BY](../sql-reference/statements/select/group-by.md), [ORDER BY](../sql-reference/statements/select/order-by.md), subqueries in [FROM](../sql-reference/statements/select/from.md), [JOIN](../sql-reference/statements/select/join.md) clause, [IN](../sql-reference/operators/in.md) operator, [window functions](../sql-reference/window-functions/index.md) and scalar subqueries.
-Correlated (dependent) subqueries and window functions are not supported at the time of writing but might become available in the future.
+Correlated (dependent) subqueries are not supported at the time of writing but might become available in the future.
## Vector Computation Engine {#vector-engine}
diff --git a/docs/en/operations/tips.md b/docs/en/operations/tips.md
index f7199372c80..5cbbe71b3e0 100644
--- a/docs/en/operations/tips.md
+++ b/docs/en/operations/tips.md
@@ -1,4 +1,3 @@
----
toc_priority: 58
toc_title: Usage Recommendations
---
@@ -60,7 +59,7 @@ $ echo 4096 | sudo tee /sys/block/md2/md/stripe_cache_size
Calculate the exact number from the number of devices and the block size, using the formula: `2 * num_devices * chunk_size_in_bytes / 4096`.
-A block size of 1024 KB is sufficient for all RAID configurations.
+A block size of 64 KB is sufficient for most RAID configurations. The average clickhouse-server write size is approximately 1 MB (1024 KB), and thus the recommended stripe size is also 1 MB. The block size can be optimized if needed when set to 1 MB divided by the number of non-parity disks in the RAID array, such that each write is parallelized across all available non-parity disks.
Never set the block size too small or too large.
You can use RAID-0 on SSD.
diff --git a/docs/en/sql-reference/functions/geo/h3.md b/docs/en/sql-reference/functions/geo/h3.md
index 3c3ed7b8932..048834806d1 100644
--- a/docs/en/sql-reference/functions/geo/h3.md
+++ b/docs/en/sql-reference/functions/geo/h3.md
@@ -40,7 +40,7 @@ Type: [UInt8](../../../sql-reference/data-types/int-uint.md).
Query:
``` sql
-SELECT h3IsValid(630814730351855103) as h3IsValid;
+SELECT h3IsValid(630814730351855103) AS h3IsValid;
```
Result:
@@ -77,7 +77,7 @@ Type: [UInt8](../../../sql-reference/data-types/int-uint.md).
Query:
``` sql
-SELECT h3GetResolution(639821929606596015) as resolution;
+SELECT h3GetResolution(639821929606596015) AS resolution;
```
Result:
@@ -111,7 +111,7 @@ h3EdgeAngle(resolution)
Query:
``` sql
-SELECT h3EdgeAngle(10) as edgeAngle;
+SELECT h3EdgeAngle(10) AS edgeAngle;
```
Result:
@@ -145,7 +145,7 @@ h3EdgeLengthM(resolution)
Query:
``` sql
-SELECT h3EdgeLengthM(15) as edgeLengthM;
+SELECT h3EdgeLengthM(15) AS edgeLengthM;
```
Result:
@@ -184,7 +184,7 @@ Type: [UInt64](../../../sql-reference/data-types/int-uint.md).
Query:
``` sql
-SELECT geoToH3(37.79506683, 55.71290588, 15) as h3Index;
+SELECT geoToH3(37.79506683, 55.71290588, 15) AS h3Index;
```
Result:
@@ -333,7 +333,7 @@ Type: [UInt8](../../../sql-reference/data-types/int-uint.md).
Query:
``` sql
-SELECT h3GetBaseCell(612916788725809151) as basecell;
+SELECT h3GetBaseCell(612916788725809151) AS basecell;
```
Result:
@@ -369,7 +369,7 @@ Type: [Float64](../../../sql-reference/data-types/float.md).
Query:
``` sql
-SELECT h3HexAreaM2(13) as area;
+SELECT h3HexAreaM2(13) AS area;
```
Result:
@@ -481,7 +481,7 @@ Type: [UInt64](../../../sql-reference/data-types/int-uint.md).
Query:
``` sql
-SELECT h3ToParent(599405990164561919, 3) as parent;
+SELECT h3ToParent(599405990164561919, 3) AS parent;
```
Result:
@@ -515,7 +515,7 @@ Type: [String](../../../sql-reference/data-types/string.md).
Query:
``` sql
-SELECT h3ToString(617420388352917503) as h3_string;
+SELECT h3ToString(617420388352917503) AS h3_string;
```
Result:
@@ -549,7 +549,7 @@ stringToH3(index_str)
Query:
``` sql
-SELECT stringToH3('89184926cc3ffff') as index;
+SELECT stringToH3('89184926cc3ffff') AS index;
```
Result:
@@ -583,7 +583,7 @@ h3GetResolution(index)
Query:
``` sql
-SELECT h3GetResolution(617420388352917503) as res;
+SELECT h3GetResolution(617420388352917503) AS res;
```
Result:
@@ -620,7 +620,7 @@ Type: [UInt8](../../../sql-reference/data-types/int-uint.md).
Query:
``` sql
-SELECT h3IsResClassIII(617420388352917503) as res;
+SELECT h3IsResClassIII(617420388352917503) AS res;
```
Result:
@@ -631,7 +631,7 @@ Result:
└─────┘
```
-## h3IsPentagon {#h3ispentagon }
+## h3IsPentagon {#h3ispentagon}
Returns whether this [H3](#h3index) index represents a pentagonal cell.
@@ -657,7 +657,7 @@ Type: [UInt8](../../../sql-reference/data-types/int-uint.md).
Query:
``` sql
-SELECT SELECT h3IsPentagon(644721767722457330) as pentagon;
+SELECT h3IsPentagon(644721767722457330) AS pentagon;
```
Result:
@@ -693,7 +693,7 @@ Type: [Array](../../../sql-reference/data-types/array.md)([UInt64](../../../sql-
Query:
``` sql
-SELECT SELECT h3GetFaces(599686042433355775) as faces;
+SELECT h3GetFaces(599686042433355775) AS faces;
```
Result:
diff --git a/docs/ru/getting-started/example-datasets/metrica.md b/docs/ru/getting-started/example-datasets/metrica.md
index c82048a445e..ee764ff4879 100644
--- a/docs/ru/getting-started/example-datasets/metrica.md
+++ b/docs/ru/getting-started/example-datasets/metrica.md
@@ -12,21 +12,21 @@ toc_title: "Анонимизированные данные Яндекс.Мет
**Скачивание и импортирование партиций hits:**
``` bash
-$ curl -O https://datasets.clickhouse.com/hits/partitions/hits_v1.tar
-$ tar xvf hits_v1.tar -C /var/lib/clickhouse # путь к папке с данными ClickHouse
-$ # убедитесь, что установлены корректные права доступа на файлы
-$ sudo service clickhouse-server restart
-$ clickhouse-client --query "SELECT COUNT(*) FROM datasets.hits_v1"
+curl -O https://datasets.clickhouse.com/hits/partitions/hits_v1.tar
+tar xvf hits_v1.tar -C /var/lib/clickhouse # путь к папке с данными ClickHouse
+# убедитесь, что установлены корректные права доступа на файлы
+sudo service clickhouse-server restart
+clickhouse-client --query "SELECT COUNT(*) FROM datasets.hits_v1"
```
**Скачивание и импортирование партиций visits:**
``` bash
-$ curl -O https://datasets.clickhouse.com/visits/partitions/visits_v1.tar
-$ tar xvf visits_v1.tar -C /var/lib/clickhouse # путь к папке с данными ClickHouse
-$ # убедитесь, что установлены корректные права доступа на файлы
-$ sudo service clickhouse-server restart
-$ clickhouse-client --query "SELECT COUNT(*) FROM datasets.visits_v1"
+curl -O https://datasets.clickhouse.com/visits/partitions/visits_v1.tar
+tar xvf visits_v1.tar -C /var/lib/clickhouse # путь к папке с данными ClickHouse
+# убедитесь, что установлены корректные права доступа на файлы
+sudo service clickhouse-server restart
+clickhouse-client --query "SELECT COUNT(*) FROM datasets.visits_v1"
```
## Получение таблиц из сжатых tsv-файлов {#poluchenie-tablits-iz-szhatykh-tsv-failov}
@@ -34,29 +34,32 @@ $ clickhouse-client --query "SELECT COUNT(*) FROM datasets.visits_v1"
**Скачивание и импортирование hits из сжатого tsv-файла**
``` bash
-$ curl https://datasets.clickhouse.com/hits/tsv/hits_v1.tsv.xz | unxz --threads=`nproc` > hits_v1.tsv
-$ # теперь создадим таблицу
-$ clickhouse-client --query "CREATE DATABASE IF NOT EXISTS datasets"
-$ clickhouse-client --query "CREATE TABLE datasets.hits_v1 ( WatchID UInt64, JavaEnable UInt8, Title String, GoodEvent Int16, EventTime DateTime, EventDate Date, CounterID UInt32, ClientIP UInt32, ClientIP6 FixedString(16), RegionID UInt32, UserID UInt64, CounterClass Int8, OS UInt8, UserAgent UInt8, URL String, Referer String, URLDomain String, RefererDomain String, Refresh UInt8, IsRobot UInt8, RefererCategories Array(UInt16), URLCategories Array(UInt16), URLRegions Array(UInt32), RefererRegions Array(UInt32), ResolutionWidth UInt16, ResolutionHeight UInt16, ResolutionDepth UInt8, FlashMajor UInt8, FlashMinor UInt8, FlashMinor2 String, NetMajor UInt8, NetMinor UInt8, UserAgentMajor UInt16, UserAgentMinor FixedString(2), CookieEnable UInt8, JavascriptEnable UInt8, IsMobile UInt8, MobilePhone UInt8, MobilePhoneModel String, Params String, IPNetworkID UInt32, TraficSourceID Int8, SearchEngineID UInt16, SearchPhrase String, AdvEngineID UInt8, IsArtifical UInt8, WindowClientWidth UInt16, WindowClientHeight UInt16, ClientTimeZone Int16, ClientEventTime DateTime, SilverlightVersion1 UInt8, SilverlightVersion2 UInt8, SilverlightVersion3 UInt32, SilverlightVersion4 UInt16, PageCharset String, CodeVersion UInt32, IsLink UInt8, IsDownload UInt8, IsNotBounce UInt8, FUniqID UInt64, HID UInt32, IsOldCounter UInt8, IsEvent UInt8, IsParameter UInt8, DontCountHits UInt8, WithHash UInt8, HitColor FixedString(1), UTCEventTime DateTime, Age UInt8, Sex UInt8, Income UInt8, Interests UInt16, Robotness UInt8, GeneralInterests Array(UInt16), RemoteIP UInt32, RemoteIP6 FixedString(16), WindowName Int32, OpenerName Int32, HistoryLength Int16, BrowserLanguage FixedString(2), BrowserCountry FixedString(2), SocialNetwork String, SocialAction String, HTTPError UInt16, SendTiming Int32, DNSTiming Int32, ConnectTiming Int32, ResponseStartTiming Int32, ResponseEndTiming Int32, FetchTiming Int32, RedirectTiming Int32, DOMInteractiveTiming Int32, DOMContentLoadedTiming Int32, DOMCompleteTiming Int32, LoadEventStartTiming Int32, LoadEventEndTiming Int32, NSToDOMContentLoadedTiming Int32, FirstPaintTiming Int32, RedirectCount Int8, SocialSourceNetworkID UInt8, SocialSourcePage String, ParamPrice Int64, ParamOrderID String, ParamCurrency FixedString(3), ParamCurrencyID UInt16, GoalsReached Array(UInt32), OpenstatServiceName String, OpenstatCampaignID String, OpenstatAdID String, OpenstatSourceID String, UTMSource String, UTMMedium String, UTMCampaign String, UTMContent String, UTMTerm String, FromTag String, HasGCLID UInt8, RefererHash UInt64, URLHash UInt64, CLID UInt32, YCLID UInt64, ShareService String, ShareURL String, ShareTitle String, ParsedParams Nested(Key1 String, Key2 String, Key3 String, Key4 String, Key5 String, ValueDouble Float64), IslandID FixedString(16), RequestNum UInt32, RequestTry UInt8) ENGINE = MergeTree() PARTITION BY toYYYYMM(EventDate) ORDER BY (CounterID, EventDate, intHash32(UserID)) SAMPLE BY intHash32(UserID) SETTINGS index_granularity = 8192"
-$ # импортируем данные
-$ cat hits_v1.tsv | clickhouse-client --query "INSERT INTO datasets.hits_v1 FORMAT TSV" --max_insert_block_size=100000
-$ # опционально можно оптимизировать таблицу
-$ clickhouse-client --query "OPTIMIZE TABLE datasets.hits_v1 FINAL"
-$ clickhouse-client --query "SELECT COUNT(*) FROM datasets.hits_v1"
+curl https://datasets.clickhouse.com/hits/tsv/hits_v1.tsv.xz | unxz --threads=`nproc` > hits_v1.tsv
+# создадим таблицу hits_v1
+clickhouse-client --query "CREATE DATABASE IF NOT EXISTS datasets"
+clickhouse-client --query "CREATE TABLE datasets.hits_v1 ( WatchID UInt64, JavaEnable UInt8, Title String, GoodEvent Int16, EventTime DateTime, EventDate Date, CounterID UInt32, ClientIP UInt32, ClientIP6 FixedString(16), RegionID UInt32, UserID UInt64, CounterClass Int8, OS UInt8, UserAgent UInt8, URL String, Referer String, URLDomain String, RefererDomain String, Refresh UInt8, IsRobot UInt8, RefererCategories Array(UInt16), URLCategories Array(UInt16), URLRegions Array(UInt32), RefererRegions Array(UInt32), ResolutionWidth UInt16, ResolutionHeight UInt16, ResolutionDepth UInt8, FlashMajor UInt8, FlashMinor UInt8, FlashMinor2 String, NetMajor UInt8, NetMinor UInt8, UserAgentMajor UInt16, UserAgentMinor FixedString(2), CookieEnable UInt8, JavascriptEnable UInt8, IsMobile UInt8, MobilePhone UInt8, MobilePhoneModel String, Params String, IPNetworkID UInt32, TraficSourceID Int8, SearchEngineID UInt16, SearchPhrase String, AdvEngineID UInt8, IsArtifical UInt8, WindowClientWidth UInt16, WindowClientHeight UInt16, ClientTimeZone Int16, ClientEventTime DateTime, SilverlightVersion1 UInt8, SilverlightVersion2 UInt8, SilverlightVersion3 UInt32, SilverlightVersion4 UInt16, PageCharset String, CodeVersion UInt32, IsLink UInt8, IsDownload UInt8, IsNotBounce UInt8, FUniqID UInt64, HID UInt32, IsOldCounter UInt8, IsEvent UInt8, IsParameter UInt8, DontCountHits UInt8, WithHash UInt8, HitColor FixedString(1), UTCEventTime DateTime, Age UInt8, Sex UInt8, Income UInt8, Interests UInt16, Robotness UInt8, GeneralInterests Array(UInt16), RemoteIP UInt32, RemoteIP6 FixedString(16), WindowName Int32, OpenerName Int32, HistoryLength Int16, BrowserLanguage FixedString(2), BrowserCountry FixedString(2), SocialNetwork String, SocialAction String, HTTPError UInt16, SendTiming Int32, DNSTiming Int32, ConnectTiming Int32, ResponseStartTiming Int32, ResponseEndTiming Int32, FetchTiming Int32, RedirectTiming Int32, DOMInteractiveTiming Int32, DOMContentLoadedTiming Int32, DOMCompleteTiming Int32, LoadEventStartTiming Int32, LoadEventEndTiming Int32, NSToDOMContentLoadedTiming Int32, FirstPaintTiming Int32, RedirectCount Int8, SocialSourceNetworkID UInt8, SocialSourcePage String, ParamPrice Int64, ParamOrderID String, ParamCurrency FixedString(3), ParamCurrencyID UInt16, GoalsReached Array(UInt32), OpenstatServiceName String, OpenstatCampaignID String, OpenstatAdID String, OpenstatSourceID String, UTMSource String, UTMMedium String, UTMCampaign String, UTMContent String, UTMTerm String, FromTag String, HasGCLID UInt8, RefererHash UInt64, URLHash UInt64, CLID UInt32, YCLID UInt64, ShareService String, ShareURL String, ShareTitle String, ParsedParams Nested(Key1 String, Key2 String, Key3 String, Key4 String, Key5 String, ValueDouble Float64), IslandID FixedString(16), RequestNum UInt32, RequestTry UInt8) ENGINE = MergeTree() PARTITION BY toYYYYMM(EventDate) ORDER BY (CounterID, EventDate, intHash32(UserID)) SAMPLE BY intHash32(UserID) SETTINGS index_granularity = 8192"
+# создадим таблицу hits_100m_obfuscated
+clickhouse-client --query="CREATE TABLE hits_100m_obfuscated (WatchID UInt64, JavaEnable UInt8, Title String, GoodEvent Int16, EventTime DateTime, EventDate Date, CounterID UInt32, ClientIP UInt32, RegionID UInt32, UserID UInt64, CounterClass Int8, OS UInt8, UserAgent UInt8, URL String, Referer String, Refresh UInt8, RefererCategoryID UInt16, RefererRegionID UInt32, URLCategoryID UInt16, URLRegionID UInt32, ResolutionWidth UInt16, ResolutionHeight UInt16, ResolutionDepth UInt8, FlashMajor UInt8, FlashMinor UInt8, FlashMinor2 String, NetMajor UInt8, NetMinor UInt8, UserAgentMajor UInt16, UserAgentMinor FixedString(2), CookieEnable UInt8, JavascriptEnable UInt8, IsMobile UInt8, MobilePhone UInt8, MobilePhoneModel String, Params String, IPNetworkID UInt32, TraficSourceID Int8, SearchEngineID UInt16, SearchPhrase String, AdvEngineID UInt8, IsArtifical UInt8, WindowClientWidth UInt16, WindowClientHeight UInt16, ClientTimeZone Int16, ClientEventTime DateTime, SilverlightVersion1 UInt8, SilverlightVersion2 UInt8, SilverlightVersion3 UInt32, SilverlightVersion4 UInt16, PageCharset String, CodeVersion UInt32, IsLink UInt8, IsDownload UInt8, IsNotBounce UInt8, FUniqID UInt64, OriginalURL String, HID UInt32, IsOldCounter UInt8, IsEvent UInt8, IsParameter UInt8, DontCountHits UInt8, WithHash UInt8, HitColor FixedString(1), LocalEventTime DateTime, Age UInt8, Sex UInt8, Income UInt8, Interests UInt16, Robotness UInt8, RemoteIP UInt32, WindowName Int32, OpenerName Int32, HistoryLength Int16, BrowserLanguage FixedString(2), BrowserCountry FixedString(2), SocialNetwork String, SocialAction String, HTTPError UInt16, SendTiming UInt32, DNSTiming UInt32, ConnectTiming UInt32, ResponseStartTiming UInt32, ResponseEndTiming UInt32, FetchTiming UInt32, SocialSourceNetworkID UInt8, SocialSourcePage String, ParamPrice Int64, ParamOrderID String, ParamCurrency FixedString(3), ParamCurrencyID UInt16, OpenstatServiceName String, OpenstatCampaignID String, OpenstatAdID String, OpenstatSourceID String, UTMSource String, UTMMedium String, UTMCampaign String, UTMContent String, UTMTerm String, FromTag String, HasGCLID UInt8, RefererHash UInt64, URLHash UInt64, CLID UInt32) ENGINE = MergeTree() PARTITION BY toYYYYMM(EventDate) ORDER BY (CounterID, EventDate, intHash32(UserID)) SAMPLE BY intHash32(UserID) SETTINGS index_granularity = 8192"
+
+# импортируем данные
+cat hits_v1.tsv | clickhouse-client --query "INSERT INTO datasets.hits_v1 FORMAT TSV" --max_insert_block_size=100000
+# опционально можно оптимизировать таблицу
+clickhouse-client --query "OPTIMIZE TABLE datasets.hits_v1 FINAL"
+clickhouse-client --query "SELECT COUNT(*) FROM datasets.hits_v1"
```
**Скачивание и импортирование visits из сжатого tsv-файла**
``` bash
-$ curl https://datasets.clickhouse.com/visits/tsv/visits_v1.tsv.xz | unxz --threads=`nproc` > visits_v1.tsv
-$ # теперь создадим таблицу
-$ clickhouse-client --query "CREATE DATABASE IF NOT EXISTS datasets"
-$ clickhouse-client --query "CREATE TABLE datasets.visits_v1 ( CounterID UInt32, StartDate Date, Sign Int8, IsNew UInt8, VisitID UInt64, UserID UInt64, StartTime DateTime, Duration UInt32, UTCStartTime DateTime, PageViews Int32, Hits Int32, IsBounce UInt8, Referer String, StartURL String, RefererDomain String, StartURLDomain String, EndURL String, LinkURL String, IsDownload UInt8, TraficSourceID Int8, SearchEngineID UInt16, SearchPhrase String, AdvEngineID UInt8, PlaceID Int32, RefererCategories Array(UInt16), URLCategories Array(UInt16), URLRegions Array(UInt32), RefererRegions Array(UInt32), IsYandex UInt8, GoalReachesDepth Int32, GoalReachesURL Int32, GoalReachesAny Int32, SocialSourceNetworkID UInt8, SocialSourcePage String, MobilePhoneModel String, ClientEventTime DateTime, RegionID UInt32, ClientIP UInt32, ClientIP6 FixedString(16), RemoteIP UInt32, RemoteIP6 FixedString(16), IPNetworkID UInt32, SilverlightVersion3 UInt32, CodeVersion UInt32, ResolutionWidth UInt16, ResolutionHeight UInt16, UserAgentMajor UInt16, UserAgentMinor UInt16, WindowClientWidth UInt16, WindowClientHeight UInt16, SilverlightVersion2 UInt8, SilverlightVersion4 UInt16, FlashVersion3 UInt16, FlashVersion4 UInt16, ClientTimeZone Int16, OS UInt8, UserAgent UInt8, ResolutionDepth UInt8, FlashMajor UInt8, FlashMinor UInt8, NetMajor UInt8, NetMinor UInt8, MobilePhone UInt8, SilverlightVersion1 UInt8, Age UInt8, Sex UInt8, Income UInt8, JavaEnable UInt8, CookieEnable UInt8, JavascriptEnable UInt8, IsMobile UInt8, BrowserLanguage UInt16, BrowserCountry UInt16, Interests UInt16, Robotness UInt8, GeneralInterests Array(UInt16), Params Array(String), Goals Nested(ID UInt32, Serial UInt32, EventTime DateTime, Price Int64, OrderID String, CurrencyID UInt32), WatchIDs Array(UInt64), ParamSumPrice Int64, ParamCurrency FixedString(3), ParamCurrencyID UInt16, ClickLogID UInt64, ClickEventID Int32, ClickGoodEvent Int32, ClickEventTime DateTime, ClickPriorityID Int32, ClickPhraseID Int32, ClickPageID Int32, ClickPlaceID Int32, ClickTypeID Int32, ClickResourceID Int32, ClickCost UInt32, ClickClientIP UInt32, ClickDomainID UInt32, ClickURL String, ClickAttempt UInt8, ClickOrderID UInt32, ClickBannerID UInt32, ClickMarketCategoryID UInt32, ClickMarketPP UInt32, ClickMarketCategoryName String, ClickMarketPPName String, ClickAWAPSCampaignName String, ClickPageName String, ClickTargetType UInt16, ClickTargetPhraseID UInt64, ClickContextType UInt8, ClickSelectType Int8, ClickOptions String, ClickGroupBannerID Int32, OpenstatServiceName String, OpenstatCampaignID String, OpenstatAdID String, OpenstatSourceID String, UTMSource String, UTMMedium String, UTMCampaign String, UTMContent String, UTMTerm String, FromTag String, HasGCLID UInt8, FirstVisit DateTime, PredLastVisit Date, LastVisit Date, TotalVisits UInt32, TraficSource Nested(ID Int8, SearchEngineID UInt16, AdvEngineID UInt8, PlaceID UInt16, SocialSourceNetworkID UInt8, Domain String, SearchPhrase String, SocialSourcePage String), Attendance FixedString(16), CLID UInt32, YCLID UInt64, NormalizedRefererHash UInt64, SearchPhraseHash UInt64, RefererDomainHash UInt64, NormalizedStartURLHash UInt64, StartURLDomainHash UInt64, NormalizedEndURLHash UInt64, TopLevelDomain UInt64, URLScheme UInt64, OpenstatServiceNameHash UInt64, OpenstatCampaignIDHash UInt64, OpenstatAdIDHash UInt64, OpenstatSourceIDHash UInt64, UTMSourceHash UInt64, UTMMediumHash UInt64, UTMCampaignHash UInt64, UTMContentHash UInt64, UTMTermHash UInt64, FromHash UInt64, WebVisorEnabled UInt8, WebVisorActivity UInt32, ParsedParams Nested(Key1 String, Key2 String, Key3 String, Key4 String, Key5 String, ValueDouble Float64), Market Nested(Type UInt8, GoalID UInt32, OrderID String, OrderPrice Int64, PP UInt32, DirectPlaceID UInt32, DirectOrderID UInt32, DirectBannerID UInt32, GoodID String, GoodName String, GoodQuantity Int32, GoodPrice Int64), IslandID FixedString(16)) ENGINE = CollapsingMergeTree(Sign) PARTITION BY toYYYYMM(StartDate) ORDER BY (CounterID, StartDate, intHash32(UserID), VisitID) SAMPLE BY intHash32(UserID) SETTINGS index_granularity = 8192"
-$ # импортируем данные
-$ cat visits_v1.tsv | clickhouse-client --query "INSERT INTO datasets.visits_v1 FORMAT TSV" --max_insert_block_size=100000
-$ # опционально можно оптимизировать таблицу
-$ clickhouse-client --query "OPTIMIZE TABLE datasets.visits_v1 FINAL"
-$ clickhouse-client --query "SELECT COUNT(*) FROM datasets.visits_v1"
+curl https://datasets.clickhouse.com/visits/tsv/visits_v1.tsv.xz | unxz --threads=`nproc` > visits_v1.tsv
+# теперь создадим таблицу
+clickhouse-client --query "CREATE DATABASE IF NOT EXISTS datasets"
+clickhouse-client --query "CREATE TABLE datasets.visits_v1 ( CounterID UInt32, StartDate Date, Sign Int8, IsNew UInt8, VisitID UInt64, UserID UInt64, StartTime DateTime, Duration UInt32, UTCStartTime DateTime, PageViews Int32, Hits Int32, IsBounce UInt8, Referer String, StartURL String, RefererDomain String, StartURLDomain String, EndURL String, LinkURL String, IsDownload UInt8, TraficSourceID Int8, SearchEngineID UInt16, SearchPhrase String, AdvEngineID UInt8, PlaceID Int32, RefererCategories Array(UInt16), URLCategories Array(UInt16), URLRegions Array(UInt32), RefererRegions Array(UInt32), IsYandex UInt8, GoalReachesDepth Int32, GoalReachesURL Int32, GoalReachesAny Int32, SocialSourceNetworkID UInt8, SocialSourcePage String, MobilePhoneModel String, ClientEventTime DateTime, RegionID UInt32, ClientIP UInt32, ClientIP6 FixedString(16), RemoteIP UInt32, RemoteIP6 FixedString(16), IPNetworkID UInt32, SilverlightVersion3 UInt32, CodeVersion UInt32, ResolutionWidth UInt16, ResolutionHeight UInt16, UserAgentMajor UInt16, UserAgentMinor UInt16, WindowClientWidth UInt16, WindowClientHeight UInt16, SilverlightVersion2 UInt8, SilverlightVersion4 UInt16, FlashVersion3 UInt16, FlashVersion4 UInt16, ClientTimeZone Int16, OS UInt8, UserAgent UInt8, ResolutionDepth UInt8, FlashMajor UInt8, FlashMinor UInt8, NetMajor UInt8, NetMinor UInt8, MobilePhone UInt8, SilverlightVersion1 UInt8, Age UInt8, Sex UInt8, Income UInt8, JavaEnable UInt8, CookieEnable UInt8, JavascriptEnable UInt8, IsMobile UInt8, BrowserLanguage UInt16, BrowserCountry UInt16, Interests UInt16, Robotness UInt8, GeneralInterests Array(UInt16), Params Array(String), Goals Nested(ID UInt32, Serial UInt32, EventTime DateTime, Price Int64, OrderID String, CurrencyID UInt32), WatchIDs Array(UInt64), ParamSumPrice Int64, ParamCurrency FixedString(3), ParamCurrencyID UInt16, ClickLogID UInt64, ClickEventID Int32, ClickGoodEvent Int32, ClickEventTime DateTime, ClickPriorityID Int32, ClickPhraseID Int32, ClickPageID Int32, ClickPlaceID Int32, ClickTypeID Int32, ClickResourceID Int32, ClickCost UInt32, ClickClientIP UInt32, ClickDomainID UInt32, ClickURL String, ClickAttempt UInt8, ClickOrderID UInt32, ClickBannerID UInt32, ClickMarketCategoryID UInt32, ClickMarketPP UInt32, ClickMarketCategoryName String, ClickMarketPPName String, ClickAWAPSCampaignName String, ClickPageName String, ClickTargetType UInt16, ClickTargetPhraseID UInt64, ClickContextType UInt8, ClickSelectType Int8, ClickOptions String, ClickGroupBannerID Int32, OpenstatServiceName String, OpenstatCampaignID String, OpenstatAdID String, OpenstatSourceID String, UTMSource String, UTMMedium String, UTMCampaign String, UTMContent String, UTMTerm String, FromTag String, HasGCLID UInt8, FirstVisit DateTime, PredLastVisit Date, LastVisit Date, TotalVisits UInt32, TraficSource Nested(ID Int8, SearchEngineID UInt16, AdvEngineID UInt8, PlaceID UInt16, SocialSourceNetworkID UInt8, Domain String, SearchPhrase String, SocialSourcePage String), Attendance FixedString(16), CLID UInt32, YCLID UInt64, NormalizedRefererHash UInt64, SearchPhraseHash UInt64, RefererDomainHash UInt64, NormalizedStartURLHash UInt64, StartURLDomainHash UInt64, NormalizedEndURLHash UInt64, TopLevelDomain UInt64, URLScheme UInt64, OpenstatServiceNameHash UInt64, OpenstatCampaignIDHash UInt64, OpenstatAdIDHash UInt64, OpenstatSourceIDHash UInt64, UTMSourceHash UInt64, UTMMediumHash UInt64, UTMCampaignHash UInt64, UTMContentHash UInt64, UTMTermHash UInt64, FromHash UInt64, WebVisorEnabled UInt8, WebVisorActivity UInt32, ParsedParams Nested(Key1 String, Key2 String, Key3 String, Key4 String, Key5 String, ValueDouble Float64), Market Nested(Type UInt8, GoalID UInt32, OrderID String, OrderPrice Int64, PP UInt32, DirectPlaceID UInt32, DirectOrderID UInt32, DirectBannerID UInt32, GoodID String, GoodName String, GoodQuantity Int32, GoodPrice Int64), IslandID FixedString(16)) ENGINE = CollapsingMergeTree(Sign) PARTITION BY toYYYYMM(StartDate) ORDER BY (CounterID, StartDate, intHash32(UserID), VisitID) SAMPLE BY intHash32(UserID) SETTINGS index_granularity = 8192"
+# импортируем данные
+cat visits_v1.tsv | clickhouse-client --query "INSERT INTO datasets.visits_v1 FORMAT TSV" --max_insert_block_size=100000
+# опционально можно оптимизировать таблицу
+clickhouse-client --query "OPTIMIZE TABLE datasets.visits_v1 FINAL"
+clickhouse-client --query "SELECT COUNT(*) FROM datasets.visits_v1"
```
## Запросы {#zaprosy}
diff --git a/docs/ru/sql-reference/functions/geo/h3.md b/docs/ru/sql-reference/functions/geo/h3.md
index bc47ca72a39..db96f0caa1d 100644
--- a/docs/ru/sql-reference/functions/geo/h3.md
+++ b/docs/ru/sql-reference/functions/geo/h3.md
@@ -6,7 +6,7 @@ toc_title: "Функции для работы с индексами H3"
[H3](https://eng.uber.com/h3/) — это система геокодирования, которая делит поверхность Земли на равные шестигранные ячейки. Система поддерживает иерархию (вложенность) ячеек, т.е. каждый "родительский" шестигранник может быть поделен на семь одинаковых вложенных "дочерних" шестигранников, и так далее.
-Уровень вложенности назвается `разрешением` и может принимать значение от `0` до `15`, где `0` соответствует `базовым` ячейкам самого верхнего уровня (наиболее крупным).
+Уровень вложенности называется "разрешением" и может принимать значение от `0` до `15`, где `0` соответствует "базовым" ячейкам самого верхнего уровня (наиболее крупным).
Для каждой точки, имеющей широту и долготу, можно получить 64-битный индекс H3, соответствующий номеру шестигранной ячейки, где эта точка находится.
@@ -38,7 +38,7 @@ h3IsValid(h3index)
Запрос:
``` sql
-SELECT h3IsValid(630814730351855103) as h3IsValid;
+SELECT h3IsValid(630814730351855103) AS h3IsValid;
```
Результат:
@@ -75,7 +75,7 @@ h3GetResolution(h3index)
Запрос:
``` sql
-SELECT h3GetResolution(639821929606596015) as resolution;
+SELECT h3GetResolution(639821929606596015) AS resolution;
```
Результат:
@@ -109,7 +109,7 @@ h3EdgeAngle(resolution)
Запрос:
``` sql
-SELECT h3EdgeAngle(10) as edgeAngle;
+SELECT h3EdgeAngle(10) AS edgeAngle;
```
Результат:
@@ -143,7 +143,7 @@ h3EdgeLengthM(resolution)
Запрос:
``` sql
-SELECT h3EdgeLengthM(15) as edgeLengthM;
+SELECT h3EdgeLengthM(15) AS edgeLengthM;
```
Результат:
@@ -182,7 +182,7 @@ geoToH3(lon, lat, resolution)
Запрос:
``` sql
-SELECT geoToH3(37.79506683, 55.71290588, 15) as h3Index;
+SELECT geoToH3(37.79506683, 55.71290588, 15) AS h3Index;
```
Результат:
@@ -295,7 +295,7 @@ h3GetBaseCell(index)
Запрос:
``` sql
-SELECT h3GetBaseCell(612916788725809151) as basecell;
+SELECT h3GetBaseCell(612916788725809151) AS basecell;
```
Результат:
@@ -329,7 +329,7 @@ h3HexAreaM2(resolution)
Запрос:
``` sql
-SELECT h3HexAreaM2(13) as area;
+SELECT h3HexAreaM2(13) AS area;
```
Результат:
@@ -441,7 +441,7 @@ h3ToParent(index, resolution)
Запрос:
``` sql
-SELECT h3ToParent(599405990164561919, 3) as parent;
+SELECT h3ToParent(599405990164561919, 3) AS parent;
```
Результат:
@@ -475,7 +475,7 @@ h3ToString(index)
Запрос:
``` sql
-SELECT h3ToString(617420388352917503) as h3_string;
+SELECT h3ToString(617420388352917503) AS h3_string;
```
Результат:
@@ -512,7 +512,7 @@ stringToH3(index_str)
Запрос:
``` sql
-SELECT stringToH3('89184926cc3ffff') as index;
+SELECT stringToH3('89184926cc3ffff') AS index;
```
Результат:
@@ -548,7 +548,7 @@ h3GetResolution(index)
Запрос:
``` sql
-SELECT h3GetResolution(617420388352917503) as res;
+SELECT h3GetResolution(617420388352917503) AS res;
```
Результат:
@@ -559,3 +559,114 @@ SELECT h3GetResolution(617420388352917503) as res;
└─────┘
```
+## h3IsResClassIII {#h3isresclassIII}
+
+Проверяет, имеет ли индекс [H3](#h3index) разрешение с ориентацией Class III.
+
+**Синтаксис**
+
+``` sql
+h3IsResClassIII(index)
+```
+
+**Параметр**
+
+- `index` — порядковый номер шестигранника. Тип: [UInt64](../../../sql-reference/data-types/int-uint.md).
+
+**Возвращаемые значения**
+
+- `1` — индекс имеет разрешение с ориентацией Class III.
+- `0` — индекс не имеет разрешения с ориентацией Class III.
+
+Тип: [UInt8](../../../sql-reference/data-types/int-uint.md).
+
+**Пример**
+
+Запрос:
+
+``` sql
+SELECT h3IsResClassIII(617420388352917503) AS res;
+```
+
+Результат:
+
+``` text
+┌─res─┐
+│ 1 │
+└─────┘
+```
+
+## h3IsPentagon {#h3ispentagon}
+
+Проверяет, является ли указанный индекс [H3](#h3index) пятиугольной ячейкой.
+
+**Синтаксис**
+
+``` sql
+h3IsPentagon(index)
+```
+
+**Параметр**
+
+- `index` — порядковый номер шестигранника. Тип: [UInt64](../../../sql-reference/data-types/int-uint.md).
+
+**Возвращаемые значения**
+
+- `1` — индекс представляет собой пятиугольную ячейку.
+- `0` — индекс не является пятиугольной ячейкой.
+
+Тип: [UInt8](../../../sql-reference/data-types/int-uint.md).
+
+**Пример**
+
+Запрос:
+
+``` sql
+SELECT h3IsPentagon(644721767722457330) AS pentagon;
+```
+
+Результат:
+
+``` text
+┌─pentagon─┐
+│ 0 │
+└──────────┘
+```
+
+## h3GetFaces {#h3getfaces}
+
+Возвращает все грани многоугольника (икосаэдра), пересекаемые заданным [H3](#h3index) индексом.
+
+**Синтаксис**
+
+``` sql
+h3GetFaces(index)
+```
+
+**Параметр**
+
+- `index` — индекс шестиугольной ячейки. Тип: [UInt64](../../../sql-reference/data-types/int-uint.md).
+
+**Возвращаемое значение**
+
+- Массив, содержащий грани многоугольника (икосаэдра), пересекаемые заданным H3 индексом.
+
+Тип: [Array](../../../sql-reference/data-types/array.md)([UInt64](../../../sql-reference/data-types/int-uint.md)).
+
+**Пример**
+
+Запрос:
+
+``` sql
+SELECT h3GetFaces(599686042433355775) AS faces;
+```
+
+Результат:
+
+``` text
+┌─faces─┐
+│ [7] │
+└───────┘
+```
+
+[Оригинальная статья](https://clickhouse.com/docs/ru/sql-reference/functions/geo/h3)
diff --git a/docs/tools/webpack.config.js b/docs/tools/webpack.config.js
index e0dea964101..fcb3e7bf32d 100644
--- a/docs/tools/webpack.config.js
+++ b/docs/tools/webpack.config.js
@@ -14,6 +14,7 @@ module.exports = {
entry: [
path.resolve(scssPath, 'bootstrap.scss'),
+ path.resolve(scssPath, 'greenhouse.scss'),
path.resolve(scssPath, 'main.scss'),
path.resolve(jsPath, 'main.js'),
],
diff --git a/docs/tools/website.py b/docs/tools/website.py
index 5e4f48e3441..11772fe7a73 100644
--- a/docs/tools/website.py
+++ b/docs/tools/website.py
@@ -156,6 +156,11 @@ def build_website(args):
os.path.join(args.src_dir, 'utils', 'list-versions', 'version_date.tsv'),
os.path.join(args.output_dir, 'data', 'version_date.tsv'))
+ # This file can be requested to install ClickHouse.
+ shutil.copy2(
+ os.path.join(args.src_dir, 'docs', '_includes', 'install', 'universal.sh'),
+ os.path.join(args.output_dir, 'data', 'install.sh'))
+
for root, _, filenames in os.walk(args.output_dir):
for filename in filenames:
if filename == 'main.html':
@@ -218,7 +223,7 @@ def minify_file(path, css_digest, js_digest):
# TODO: restore cssmin
# elif path.endswith('.css'):
# content = cssmin.cssmin(content)
-# TODO: restore jsmin
+# TODO: restore jsmin
# elif path.endswith('.js'):
# content = jsmin.jsmin(content)
with open(path, 'wb') as f:
@@ -226,6 +231,12 @@ def minify_file(path, css_digest, js_digest):
def minify_website(args):
+ # Output greenhouse css separately from main bundle to be included via the greenhouse iframe
+ command = f"cat '{args.website_dir}/css/greenhouse.css' > '{args.output_dir}/css/greenhouse.css'"
+ logging.info(command)
+ output = subprocess.check_output(command, shell=True)
+ logging.debug(output)
+
css_in = ' '.join(get_css_in(args))
css_out = f'{args.output_dir}/css/base.css'
if args.minify:
diff --git a/src/Client/ConnectionPoolWithFailover.cpp b/src/Client/ConnectionPoolWithFailover.cpp
index c0b4965aae3..aaffe85ae2e 100644
--- a/src/Client/ConnectionPoolWithFailover.cpp
+++ b/src/Client/ConnectionPoolWithFailover.cpp
@@ -73,8 +73,8 @@ IConnectionPool::Entry ConnectionPoolWithFailover::get(const ConnectionTimeouts
++last_used;
/* Consider nested_pools.size() equals to 5
* last_used = 1 -> get_priority: 0 1 2 3 4
- * last_used = 2 -> get_priority: 5 0 1 2 3
- * last_used = 3 -> get_priority: 5 4 0 1 2
+ * last_used = 2 -> get_priority: 4 0 1 2 3
+ * last_used = 3 -> get_priority: 4 3 0 1 2
* ...
* */
get_priority = [&](size_t i) { ++i; return i < last_used ? nested_pools.size() - i : i - last_used; };
diff --git a/src/Common/ZooKeeper/IKeeper.h b/src/Common/ZooKeeper/IKeeper.h
index 1a816616c7c..65ebd8ee615 100644
--- a/src/Common/ZooKeeper/IKeeper.h
+++ b/src/Common/ZooKeeper/IKeeper.h
@@ -481,7 +481,7 @@ public:
MultiCallback callback) = 0;
/// Expire session and finish all pending requests
- virtual void finalize() = 0;
+ virtual void finalize(const String & reason) = 0;
};
}
diff --git a/src/Common/ZooKeeper/TestKeeper.cpp b/src/Common/ZooKeeper/TestKeeper.cpp
index be210644e70..065b1cf65ba 100644
--- a/src/Common/ZooKeeper/TestKeeper.cpp
+++ b/src/Common/ZooKeeper/TestKeeper.cpp
@@ -493,7 +493,7 @@ TestKeeper::~TestKeeper()
{
try
{
- finalize();
+ finalize(__PRETTY_FUNCTION__);
if (processing_thread.joinable())
processing_thread.join();
}
@@ -556,12 +556,12 @@ void TestKeeper::processingThread()
catch (...)
{
tryLogCurrentException(__PRETTY_FUNCTION__);
- finalize();
+ finalize(__PRETTY_FUNCTION__);
}
}
-void TestKeeper::finalize()
+void TestKeeper::finalize(const String &)
{
{
std::lock_guard lock(push_request_mutex);
@@ -661,7 +661,7 @@ void TestKeeper::pushRequest(RequestInfo && request)
}
catch (...)
{
- finalize();
+ finalize(__PRETTY_FUNCTION__);
throw;
}
}
diff --git a/src/Common/ZooKeeper/TestKeeper.h b/src/Common/ZooKeeper/TestKeeper.h
index b46f98c0074..e57471341e8 100644
--- a/src/Common/ZooKeeper/TestKeeper.h
+++ b/src/Common/ZooKeeper/TestKeeper.h
@@ -83,7 +83,7 @@ public:
const Requests & requests,
MultiCallback callback) override;
- void finalize() override;
+ void finalize(const String & reason) override;
struct Node
{
diff --git a/src/Common/ZooKeeper/ZooKeeper.cpp b/src/Common/ZooKeeper/ZooKeeper.cpp
index e347e6de362..3d505c088db 100644
--- a/src/Common/ZooKeeper/ZooKeeper.cpp
+++ b/src/Common/ZooKeeper/ZooKeeper.cpp
@@ -269,7 +269,7 @@ Coordination::Error ZooKeeper::getChildrenImpl(const std::string & path, Strings
if (future_result.wait_for(std::chrono::milliseconds(operation_timeout_ms)) != std::future_status::ready)
{
- impl->finalize();
+ impl->finalize(fmt::format("Operation timeout on {} {}", toString(Coordination::OpNum::List), path));
return Coordination::Error::ZOPERATIONTIMEOUT;
}
else
@@ -330,7 +330,7 @@ Coordination::Error ZooKeeper::createImpl(const std::string & path, const std::s
if (future_result.wait_for(std::chrono::milliseconds(operation_timeout_ms)) != std::future_status::ready)
{
- impl->finalize();
+ impl->finalize(fmt::format("Operation timeout on {} {}", toString(Coordination::OpNum::Create), path));
return Coordination::Error::ZOPERATIONTIMEOUT;
}
else
@@ -400,7 +400,7 @@ Coordination::Error ZooKeeper::removeImpl(const std::string & path, int32_t vers
if (future_result.wait_for(std::chrono::milliseconds(operation_timeout_ms)) != std::future_status::ready)
{
- impl->finalize();
+ impl->finalize(fmt::format("Operation timeout on {} {}", toString(Coordination::OpNum::Remove), path));
return Coordination::Error::ZOPERATIONTIMEOUT;
}
else
@@ -432,7 +432,7 @@ Coordination::Error ZooKeeper::existsImpl(const std::string & path, Coordination
if (future_result.wait_for(std::chrono::milliseconds(operation_timeout_ms)) != std::future_status::ready)
{
- impl->finalize();
+ impl->finalize(fmt::format("Operation timeout on {} {}", toString(Coordination::OpNum::Exists), path));
return Coordination::Error::ZOPERATIONTIMEOUT;
}
else
@@ -466,7 +466,7 @@ Coordination::Error ZooKeeper::getImpl(const std::string & path, std::string & r
if (future_result.wait_for(std::chrono::milliseconds(operation_timeout_ms)) != std::future_status::ready)
{
- impl->finalize();
+ impl->finalize(fmt::format("Operation timeout on {} {}", toString(Coordination::OpNum::Get), path));
return Coordination::Error::ZOPERATIONTIMEOUT;
}
else
@@ -539,7 +539,7 @@ Coordination::Error ZooKeeper::setImpl(const std::string & path, const std::stri
if (future_result.wait_for(std::chrono::milliseconds(operation_timeout_ms)) != std::future_status::ready)
{
- impl->finalize();
+ impl->finalize(fmt::format("Operation timeout on {} {}", toString(Coordination::OpNum::Set), path));
return Coordination::Error::ZOPERATIONTIMEOUT;
}
else
@@ -591,7 +591,7 @@ Coordination::Error ZooKeeper::multiImpl(const Coordination::Requests & requests
if (future_result.wait_for(std::chrono::milliseconds(operation_timeout_ms)) != std::future_status::ready)
{
- impl->finalize();
+ impl->finalize(fmt::format("Operation timeout on {} {}", toString(Coordination::OpNum::Multi), requests[0]->getPath()));
return Coordination::Error::ZOPERATIONTIMEOUT;
}
else
@@ -1038,9 +1038,9 @@ Coordination::Error ZooKeeper::tryMultiNoThrow(const Coordination::Requests & re
}
}
-void ZooKeeper::finalize()
+void ZooKeeper::finalize(const String & reason)
{
- impl->finalize();
+ impl->finalize(reason);
}
void ZooKeeper::setZooKeeperLog(std::shared_ptr zk_log_)
diff --git a/src/Common/ZooKeeper/ZooKeeper.h b/src/Common/ZooKeeper/ZooKeeper.h
index 5ee25aba1fb..8e015b1f331 100644
--- a/src/Common/ZooKeeper/ZooKeeper.h
+++ b/src/Common/ZooKeeper/ZooKeeper.h
@@ -274,7 +274,7 @@ public:
/// * The node doesn't exist
FutureGet asyncTryGet(const std::string & path);
- void finalize();
+ void finalize(const String & reason);
void setZooKeeperLog(std::shared_ptr zk_log_);
diff --git a/src/Common/ZooKeeper/ZooKeeperImpl.cpp b/src/Common/ZooKeeper/ZooKeeperImpl.cpp
index cf607a3d70e..59ed906db15 100644
--- a/src/Common/ZooKeeper/ZooKeeperImpl.cpp
+++ b/src/Common/ZooKeeper/ZooKeeperImpl.cpp
@@ -289,7 +289,7 @@ ZooKeeper::~ZooKeeper()
{
try
{
- finalize(false, false, "destructor called");
+ finalize(false, false, "Destructor called");
if (send_thread.joinable())
send_thread.join();
@@ -610,7 +610,7 @@ void ZooKeeper::sendThread()
catch (...)
{
tryLogCurrentException(log);
- finalize(true, false, "exception in sendThread");
+ finalize(true, false, "Exception in sendThread");
}
}
@@ -669,7 +669,7 @@ void ZooKeeper::receiveThread()
catch (...)
{
tryLogCurrentException(log);
- finalize(false, true, "exception in receiveThread");
+ finalize(false, true, "Exception in receiveThread");
}
}
diff --git a/src/Common/ZooKeeper/ZooKeeperImpl.h b/src/Common/ZooKeeper/ZooKeeperImpl.h
index 53908e5b0c7..74c0148e7b6 100644
--- a/src/Common/ZooKeeper/ZooKeeperImpl.h
+++ b/src/Common/ZooKeeper/ZooKeeperImpl.h
@@ -187,7 +187,7 @@ public:
/// it will do read in another session, that read may not see the
/// already performed write.
- void finalize() override { finalize(false, false, "unknown"); }
+ void finalize(const String & reason) override { finalize(false, false, reason); }
void setZooKeeperLog(std::shared_ptr zk_log_);
diff --git a/src/Core/Settings.h b/src/Core/Settings.h
index 6dcbf663dd5..a5767955045 100644
--- a/src/Core/Settings.h
+++ b/src/Core/Settings.h
@@ -523,6 +523,8 @@ class IColumn;
M(Int64, remote_fs_read_backoff_threshold, 10000, "Max wait time when trying to read data for remote disk", 0) \
M(Int64, remote_fs_read_backoff_max_tries, 5, "Max attempts to read with backoff", 0) \
\
+ M(Bool, force_remove_data_recursively_on_drop, false, "Recursively remove data on DROP query. Avoids 'Directory not empty' error, but may silently remove detached data", 0) \
+ \
/** Experimental functions */ \
M(Bool, allow_experimental_funnel_functions, false, "Enable experimental functions for funnel analysis.", 0) \
M(Bool, allow_experimental_nlp_functions, false, "Enable experimental functions for natural language processing.", 0) \
diff --git a/src/Databases/DatabaseFactory.cpp b/src/Databases/DatabaseFactory.cpp
index 9cf600d5cdf..fc428aae9ac 100644
--- a/src/Databases/DatabaseFactory.cpp
+++ b/src/Databases/DatabaseFactory.cpp
@@ -71,6 +71,7 @@ DatabasePtr DatabaseFactory::get(const ASTCreateQuery & create, const String & m
/// Before 20.7 it's possible that .sql metadata file does not exist for some old database.
/// In this case Ordinary database is created on server startup if the corresponding metadata directory exists.
/// So we should remove metadata directory if database creation failed.
+ /// TODO remove this code
created = fs::create_directory(metadata_path);
DatabasePtr impl = getImpl(create, metadata_path, context);
diff --git a/src/Databases/DatabaseOnDisk.cpp b/src/Databases/DatabaseOnDisk.cpp
index d681d4f83da..ea9635530c7 100644
--- a/src/Databases/DatabaseOnDisk.cpp
+++ b/src/Databases/DatabaseOnDisk.cpp
@@ -39,6 +39,7 @@ namespace ErrorCodes
extern const int SYNTAX_ERROR;
extern const int TABLE_ALREADY_EXISTS;
extern const int EMPTY_LIST_OF_COLUMNS_PASSED;
+ extern const int DATABASE_NOT_EMPTY;
}
@@ -544,8 +545,28 @@ ASTPtr DatabaseOnDisk::getCreateDatabaseQuery() const
void DatabaseOnDisk::drop(ContextPtr local_context)
{
assert(tables.empty());
- fs::remove(local_context->getPath() + getDataPath());
- fs::remove(getMetadataPath());
+ if (local_context->getSettingsRef().force_remove_data_recursively_on_drop)
+ {
+ fs::remove_all(local_context->getPath() + getDataPath());
+ fs::remove_all(getMetadataPath());
+ }
+ else
+ {
+ try
+ {
+ fs::remove(local_context->getPath() + getDataPath());
+ fs::remove(getMetadataPath());
+ }
+ catch (const fs::filesystem_error & e)
+ {
+ if (e.code() != std::errc::directory_not_empty)
+ throw Exception(Exception::CreateFromSTDTag{}, e);
+ throw Exception(ErrorCodes::DATABASE_NOT_EMPTY, "Cannot drop: {}. "
+ "Probably database contain some detached tables or metadata leftovers from Ordinary engine. "
+ "If you want to remove all data anyway, try to attach database back and drop it again "
+ "with enabled force_remove_data_recursively_on_drop setting", e.what());
+ }
+ }
}
String DatabaseOnDisk::getObjectMetadataPath(const String & object_name) const
diff --git a/src/IO/S3/PocoHTTPClient.cpp b/src/IO/S3/PocoHTTPClient.cpp
index b23e8061291..68bdbc9cf86 100644
--- a/src/IO/S3/PocoHTTPClient.cpp
+++ b/src/IO/S3/PocoHTTPClient.cpp
@@ -166,15 +166,14 @@ void PocoHTTPClient::makeRequestInternal(
for (unsigned int attempt = 0; attempt <= s3_max_redirects; ++attempt)
{
Poco::URI target_uri(uri);
-
- /// Reverse proxy can replace host header with resolved ip address instead of host name.
- /// This can lead to request signature difference on S3 side.
- auto session = makeHTTPSession(target_uri, timeouts, false);
-
+ HTTPSessionPtr session;
auto request_configuration = per_request_configuration(request);
if (!request_configuration.proxyHost.empty())
{
+ /// Reverse proxy can replace host header with resolved ip address instead of host name.
+ /// This can lead to request signature difference on S3 side.
+ session = makeHTTPSession(target_uri, timeouts, /* resolve_host = */ false);
bool use_tunnel = request_configuration.proxyScheme == Aws::Http::Scheme::HTTP && target_uri.getScheme() == "https";
session->setProxy(
@@ -184,6 +183,11 @@ void PocoHTTPClient::makeRequestInternal(
use_tunnel
);
}
+ else
+ {
+ session = makeHTTPSession(target_uri, timeouts, /* resolve_host = */ true);
+ }
+
Poco::Net::HTTPRequest poco_request(Poco::Net::HTTPRequest::HTTP_1_1);
diff --git a/src/Interpreters/Context.cpp b/src/Interpreters/Context.cpp
index 1a95a642e18..e4c6de8853b 100644
--- a/src/Interpreters/Context.cpp
+++ b/src/Interpreters/Context.cpp
@@ -1853,7 +1853,7 @@ static void reloadZooKeeperIfChangedImpl(const ConfigurationPtr & config, const
if (!zk || zk->configChanged(*config, config_name))
{
if (zk)
- zk->finalize();
+ zk->finalize("Config changed");
zk = std::make_shared(*config, config_name, std::move(zk_log));
}
diff --git a/src/Interpreters/DatabaseCatalog.cpp b/src/Interpreters/DatabaseCatalog.cpp
index bff03be61a8..08cc260b536 100644
--- a/src/Interpreters/DatabaseCatalog.cpp
+++ b/src/Interpreters/DatabaseCatalog.cpp
@@ -329,7 +329,7 @@ void DatabaseCatalog::attachDatabase(const String & database_name, const Databas
}
-DatabasePtr DatabaseCatalog::detachDatabase(const String & database_name, bool drop, bool check_empty)
+DatabasePtr DatabaseCatalog::detachDatabase(ContextPtr local_context, const String & database_name, bool drop, bool check_empty)
{
if (database_name == TEMPORARY_DATABASE)
throw Exception("Cannot detach database with temporary tables.", ErrorCodes::DATABASE_ACCESS_DENIED);
@@ -365,12 +365,14 @@ DatabasePtr DatabaseCatalog::detachDatabase(const String & database_name, bool d
if (drop)
{
/// Delete the database.
- db->drop(getContext());
+ db->drop(local_context);
/// Old ClickHouse versions did not store database.sql files
+ /// Remove metadata dir (if exists) to avoid recreation of .sql file on server startup
+ fs::path database_metadata_dir = fs::path(getContext()->getPath()) / "metadata" / escapeForFileName(database_name);
+ fs::remove(database_metadata_dir);
fs::path database_metadata_file = fs::path(getContext()->getPath()) / "metadata" / (escapeForFileName(database_name) + ".sql");
- if (fs::exists(database_metadata_file))
- fs::remove(database_metadata_file);
+ fs::remove(database_metadata_file);
}
return db;
diff --git a/src/Interpreters/DatabaseCatalog.h b/src/Interpreters/DatabaseCatalog.h
index f2063e4199f..6079553b025 100644
--- a/src/Interpreters/DatabaseCatalog.h
+++ b/src/Interpreters/DatabaseCatalog.h
@@ -147,7 +147,7 @@ public:
DatabasePtr getSystemDatabase() const;
void attachDatabase(const String & database_name, const DatabasePtr & database);
- DatabasePtr detachDatabase(const String & database_name, bool drop = false, bool check_empty = true);
+ DatabasePtr detachDatabase(ContextPtr local_context, const String & database_name, bool drop = false, bool check_empty = true);
void updateDatabaseName(const String & old_name, const String & new_name);
/// database_name must be not empty
diff --git a/src/Interpreters/InterpreterCreateQuery.cpp b/src/Interpreters/InterpreterCreateQuery.cpp
index c098c6e0506..530b10703c5 100644
--- a/src/Interpreters/InterpreterCreateQuery.cpp
+++ b/src/Interpreters/InterpreterCreateQuery.cpp
@@ -295,7 +295,7 @@ BlockIO InterpreterCreateQuery::createDatabase(ASTCreateQuery & create)
assert(removed);
}
if (added)
- DatabaseCatalog::instance().detachDatabase(database_name, false, false);
+ DatabaseCatalog::instance().detachDatabase(getContext(), database_name, false, false);
throw;
}
diff --git a/src/Interpreters/InterpreterDropQuery.cpp b/src/Interpreters/InterpreterDropQuery.cpp
index 509211df3b6..5394c1ecaf0 100644
--- a/src/Interpreters/InterpreterDropQuery.cpp
+++ b/src/Interpreters/InterpreterDropQuery.cpp
@@ -369,7 +369,7 @@ BlockIO InterpreterDropQuery::executeToDatabaseImpl(const ASTDropQuery & query,
database->assertCanBeDetached(true);
/// DETACH or DROP database itself
- DatabaseCatalog::instance().detachDatabase(database_name, drop, database->shouldBeEmptyOnDetach());
+ DatabaseCatalog::instance().detachDatabase(getContext(), database_name, drop, database->shouldBeEmptyOnDetach());
}
}
diff --git a/src/Interpreters/loadMetadata.cpp b/src/Interpreters/loadMetadata.cpp
index 858b4281f5a..6a3db48e835 100644
--- a/src/Interpreters/loadMetadata.cpp
+++ b/src/Interpreters/loadMetadata.cpp
@@ -72,6 +72,7 @@ static void loadDatabase(
}
else if (fs::exists(fs::path(database_path)))
{
+ /// TODO Remove this code (it's required for compatibility with versions older than 20.7)
/// Database exists, but .sql file is absent. It's old-style Ordinary database (e.g. system or default)
database_attach_query = "ATTACH DATABASE " + backQuoteIfNeed(database) + " ENGINE = Ordinary";
}
diff --git a/src/Storages/StorageMergeTree.cpp b/src/Storages/StorageMergeTree.cpp
index b710965271e..ab42da1dfa0 100644
--- a/src/Storages/StorageMergeTree.cpp
+++ b/src/Storages/StorageMergeTree.cpp
@@ -1447,6 +1447,11 @@ void StorageMergeTree::replacePartitionFrom(const StoragePtr & source_table, con
void StorageMergeTree::movePartitionToTable(const StoragePtr & dest_table, const ASTPtr & partition, ContextPtr local_context)
{
+ /// MOVE PARTITION cannot be run in parallel with merges/mutations,
+ /// since otherwise there can be some merge/mutation in progress,
+ /// that will be created in the source table after MOVE PARTITION.
+ std::unique_lock background_lock(currently_processing_in_background_mutex);
+
auto lock1 = lockForShare(local_context->getCurrentQueryId(), local_context->getSettingsRef().lock_acquire_timeout);
auto lock2 = dest_table->lockForShare(local_context->getCurrentQueryId(), local_context->getSettingsRef().lock_acquire_timeout);
@@ -1509,7 +1514,6 @@ void StorageMergeTree::movePartitionToTable(const StoragePtr & dest_table, const
transaction.commit(&lock);
}
- clearOldMutations(true);
clearOldPartsFromFilesystem();
PartLog::addNewParts(getContext(), dst_parts, watch.elapsed());
diff --git a/tests/integration/test_restart_server/__init__.py b/tests/integration/test_restart_server/__init__.py
new file mode 100755
index 00000000000..e69de29bb2d
diff --git a/tests/integration/test_restart_server/test.py b/tests/integration/test_restart_server/test.py
new file mode 100755
index 00000000000..47797f7c4a5
--- /dev/null
+++ b/tests/integration/test_restart_server/test.py
@@ -0,0 +1,22 @@
+import pytest
+from helpers.cluster import ClickHouseCluster
+
+cluster = ClickHouseCluster(__file__)
+node = cluster.add_instance('node', stay_alive=True)
+
+@pytest.fixture(scope="module")
+def start_cluster():
+ try:
+ cluster.start()
+ yield cluster
+ finally:
+ cluster.shutdown()
+
+
+def test_drop_memory_database(start_cluster):
+ node.query("CREATE DATABASE test ENGINE Memory")
+ node.query("CREATE TABLE test.test_table(a String) ENGINE Memory")
+ node.query("DROP DATABASE test")
+ node.restart_clickhouse(kill=True)
+ assert node.query("SHOW DATABASES LIKE 'test'").strip() == ""
+
diff --git a/tests/queries/0_stateless/01601_detach_permanently.sql b/tests/queries/0_stateless/01601_detach_permanently.sql
index 3bf05b872b9..97797a59af5 100644
--- a/tests/queries/0_stateless/01601_detach_permanently.sql
+++ b/tests/queries/0_stateless/01601_detach_permanently.sql
@@ -131,7 +131,7 @@ SELECT 'And detach permanently again to check how database drop will behave';
DETACH table test1601_detach_permanently_ordinary.test_name_reuse PERMANENTLY;
SELECT 'DROP database - Directory not empty error, but database detached';
-DROP DATABASE test1601_detach_permanently_ordinary; -- { serverError 1001 }
+DROP DATABASE test1601_detach_permanently_ordinary; -- { serverError 219 }
ATTACH DATABASE test1601_detach_permanently_ordinary;
@@ -205,7 +205,7 @@ SELECT 'And detach permanently again to check how database drop will behave';
DETACH table test1601_detach_permanently_lazy.test_name_reuse PERMANENTLY;
SELECT 'DROP database - Directory not empty error, but database deteched';
-DROP DATABASE test1601_detach_permanently_lazy; -- { serverError 1001 }
+DROP DATABASE test1601_detach_permanently_lazy; -- { serverError 219 }
ATTACH DATABASE test1601_detach_permanently_lazy;
diff --git a/tests/queries/0_stateless/2028_system_data_skipping_indices_size.reference b/tests/queries/0_stateless/02028_system_data_skipping_indices_size.reference
similarity index 100%
rename from tests/queries/0_stateless/2028_system_data_skipping_indices_size.reference
rename to tests/queries/0_stateless/02028_system_data_skipping_indices_size.reference
diff --git a/tests/queries/0_stateless/2028_system_data_skipping_indices_size.sql b/tests/queries/0_stateless/02028_system_data_skipping_indices_size.sql
similarity index 100%
rename from tests/queries/0_stateless/2028_system_data_skipping_indices_size.sql
rename to tests/queries/0_stateless/02028_system_data_skipping_indices_size.sql
diff --git a/tests/queries/0_stateless/02096_totals_global_in_bug.reference b/tests/queries/0_stateless/02096_totals_global_in_bug.reference
new file mode 100644
index 00000000000..a536e1a5329
--- /dev/null
+++ b/tests/queries/0_stateless/02096_totals_global_in_bug.reference
@@ -0,0 +1,4 @@
+0
+2
+
+2
diff --git a/tests/queries/0_stateless/02096_totals_global_in_bug.sql b/tests/queries/0_stateless/02096_totals_global_in_bug.sql
new file mode 100644
index 00000000000..ac4f2b9d2ba
--- /dev/null
+++ b/tests/queries/0_stateless/02096_totals_global_in_bug.sql
@@ -0,0 +1,2 @@
+select sum(number) from remote('127.0.0.{2,3}', numbers(2)) where number global in (select sum(number) from numbers(2) group by number with totals) group by number with totals
+
diff --git a/website/careers/index.html b/website/careers/index.html
new file mode 100644
index 00000000000..14e23e3357c
--- /dev/null
+++ b/website/careers/index.html
@@ -0,0 +1,26 @@
+{% set prefetch_items = [
+ ('/docs/en/', 'document')
+] %}
+
+{% extends "templates/base.html" %}
+
+{% block extra_meta %}
+{% include "templates/common_fonts.html" %}
+{% endblock %}
+
+{% block nav %}
+
+{% include "templates/global/nav.html" %}
+
+{% endblock %}
+
+{% block content %}
+
+{% include "templates/careers/hero.html" %}
+{% include "templates/careers/overview.html" %}
+{% include "templates/careers/greenhouse.html" %}
+
+{% include "templates/global/newsletter.html" %}
+{% include "templates/global/github_stars.html" %}
+
+{% endblock %}
diff --git a/website/css/bootstrap.css b/website/css/bootstrap.css
index 92e98ef2c66..b65cbbfed01 100644
--- a/website/css/bootstrap.css
+++ b/website/css/bootstrap.css
@@ -1,16039 +1,6 @@
-@charset "UTF-8";
/*!
* Bootstrap v4.4.1 (https://getbootstrap.com/)
* Copyright 2011-2019 The Bootstrap Authors
* Copyright 2011-2019 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;
- --brand-primary: #ffcc00;
- --brand-secondary: #ff3939;
- --primary-accent-yellow: #ffcc00;
- --primary-accent-light-yellow: #fffaf0;
- --primary-accent-blue: #257af4;
- --primary-accent-light-blue: #e3f1fe;
- --secondary-accent-orange: #ff8c00;
- --secondary-accent-light-orange: #ffe4b5;
- --secondary-accent-red: #ff3939;
- --secondary-accent-light-red: #ffe4e1;
- --primary: #ffcc00;
- --secondary: #212529;
- --success: #28a745;
- --info: #17a2b8;
- --warning: #ffc107;
- --danger: #dc3545;
- --light: #f1f6f9;
- --dark: #495057;
- --primary-light: #fffaf0;
- --secondary-light: #fff;
- --tertiary: #257af4;
- --tertiary-light: #e3f1fe;
- --white: #fff;
- --black: #212529;
- --blue: #257af4;
- --light-blue: #e3f1fe;
- --yellow: #ffcc00;
- --light-yellow: #fffaf0;
- --orange: #ff8c00;
- --light-orange: #ffe4b5;
- --red: #ff3939;
- --light-red: #ffe4e1;
- --medium: #d6dbdf;
- --breakpoint-xxs: 0;
- --breakpoint-xs: 400px;
- --breakpoint-sm: 616px;
- --breakpoint-md: 768px;
- --breakpoint-lg: 980px;
- --breakpoint-xl: 1240px;
- --font-family-sans-serif: "Noto Sans", sans-serif;
- --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(33, 37, 41, 0);
-}
-
-article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
- display: block;
-}
-
-body {
- margin: 0;
- font-family: "Noto Sans", sans-serif;
- 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: 16px;
-}
-
-p {
- margin-top: 0;
- margin-bottom: 1rem;
-}
-
-abbr[title],
-abbr[data-original-title] {
- text-decoration: underline;
- -webkit-text-decoration: underline dotted;
- text-decoration: underline dotted;
- cursor: help;
- border-bottom: 0;
- -webkit-text-decoration-skip-ink: none;
- 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: #ff8c00;
- text-decoration: none;
- background-color: transparent;
-}
-a:hover {
- color: #ff8c00;
- 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;
-}
-
-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;
-}
-
-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;
-}
-
-input[type=date],
-input[type=time],
-input[type=datetime-local],
-input[type=month] {
- -webkit-appearance: listbox;
-}
-
-textarea {
- overflow: auto;
- resize: vertical;
-}
-
-fieldset {
- min-width: 0;
- 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: 16px;
- font-family: "Hind Siliguri", sans-serif;
- font-weight: 500;
- line-height: 1.125;
-}
-
-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.125rem;
-}
-
-h6, .h6 {
- font-size: 0.875rem;
-}
-
-.lead {
- font-size: 1.375rem;
- font-weight: 400;
-}
-@media (max-width: 1200px) {
- .lead {
- font-size: calc(1.2625rem + 0.15vw);
- }
-}
-
-.display-1 {
- font-size: 4rem;
- font-weight: 600;
- line-height: 1.125;
-}
-@media (max-width: 1200px) {
- .display-1 {
- font-size: calc(1.525rem + 3.3vw);
- }
-}
-
-.display-2 {
- font-size: 2.5rem;
- font-weight: 600;
- line-height: 1.125;
-}
-@media (max-width: 1200px) {
- .display-2 {
- font-size: calc(1.375rem + 1.5vw);
- }
-}
-
-.display-3 {
- font-size: 2rem;
- font-weight: 500;
- line-height: 1.125;
-}
-@media (max-width: 1200px) {
- .display-3 {
- font-size: calc(1.325rem + 0.9vw);
- }
-}
-
-.display-4 {
- font-size: 1.75rem;
- font-weight: 500;
- line-height: 1.125;
-}
-@media (max-width: 1200px) {
- .display-4 {
- font-size: calc(1.3rem + 0.6vw);
- }
-}
-
-hr {
- margin-top: 8px;
- margin-bottom: 8px;
- border: 0;
- border-top: 1px solid rgba(33, 37, 41, 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: 8px;
- font-size: 1.25rem;
-}
-
-.blockquote-footer {
- display: block;
- font-size: 80%;
- color: #6c757d;
-}
-.blockquote-footer::before {
- content: "— ";
-}
-
-.img-fluid {
- max-width: 100%;
- height: auto;
-}
-
-.img-thumbnail {
- padding: 0.25rem;
- background-color: #fff;
- border: 1px solid #dee2e6;
- border-radius: 8px;
- max-width: 100%;
- height: auto;
-}
-
-.figure {
- display: inline-block;
-}
-
-.figure-img {
- margin-bottom: 4px;
- 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: #495057;
- border-radius: 8px;
-}
-kbd kbd {
- padding: 0;
- font-size: 100%;
- font-weight: 700;
-}
-
-pre {
- display: block;
- font-size: 87.5%;
- color: #495057;
-}
-pre code {
- font-size: inherit;
- color: inherit;
- word-break: normal;
-}
-
-.pre-scrollable {
- max-height: 340px;
- overflow-y: scroll;
-}
-
-.container {
- width: 100%;
- padding-right: 20px;
- padding-left: 20px;
- margin-right: auto;
- margin-left: auto;
-}
-@media (min-width: 400px) {
- .container {
- max-width: 576px;
- }
-}
-@media (min-width: 616px) {
- .container {
- max-width: 576px;
- }
-}
-@media (min-width: 768px) {
- .container {
- max-width: 958px;
- }
-}
-@media (min-width: 980px) {
- .container {
- max-width: 1008px;
- }
-}
-@media (min-width: 1240px) {
- .container {
- max-width: 1118px;
- }
-}
-
-.container-fluid, .container-xl, .container-lg, .container-md, .container-sm, .container-xs {
- width: 100%;
- padding-right: 20px;
- padding-left: 20px;
- margin-right: auto;
- margin-left: auto;
-}
-
-@media (min-width: 400px) {
- .container-xs, .container {
- max-width: 576px;
- }
-}
-@media (min-width: 616px) {
- .container-sm, .container-xs, .container {
- max-width: 576px;
- }
-}
-@media (min-width: 768px) {
- .container-md, .container-sm, .container-xs, .container {
- max-width: 958px;
- }
-}
-@media (min-width: 980px) {
- .container-lg, .container-md, .container-sm, .container-xs, .container {
- max-width: 1008px;
- }
-}
-@media (min-width: 1240px) {
- .container-xl, .container-lg, .container-md, .container-sm, .container-xs, .container {
- max-width: 1118px;
- }
-}
-.row {
- display: flex;
- flex-wrap: wrap;
- margin-right: -20px;
- margin-left: -20px;
-}
-
-.no-gutters {
- margin-right: 0;
- margin-left: 0;
-}
-.no-gutters > .col,
-.no-gutters > [class*=col-] {
- padding-right: 0;
- padding-left: 0;
-}
-
-.col-xl,
-.col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg,
-.col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md,
-.col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm,
-.col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col-xs,
-.col-xs-auto, .col-xs-12, .col-xs-11, .col-xs-10, .col-xs-9, .col-xs-8, .col-xs-7, .col-xs-6, .col-xs-5, .col-xs-4, .col-xs-3, .col-xs-2, .col-xs-1, .col,
-.col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
- position: relative;
- width: 100%;
- padding-right: 20px;
- padding-left: 20px;
-}
-
-.col {
- flex-basis: 0;
- flex-grow: 1;
- 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.3333333333%;
- max-width: 33.3333333333%;
-}
-
-.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.6666666667%;
- max-width: 16.6666666667%;
-}
-
-.col-auto {
- flex: 0 0 auto;
- width: auto;
- max-width: 100%;
-}
-
-.col-1 {
- flex: 0 0 8.3333333333%;
- max-width: 8.3333333333%;
-}
-
-.col-2 {
- flex: 0 0 16.6666666667%;
- max-width: 16.6666666667%;
-}
-
-.col-3 {
- flex: 0 0 25%;
- max-width: 25%;
-}
-
-.col-4 {
- flex: 0 0 33.3333333333%;
- max-width: 33.3333333333%;
-}
-
-.col-5 {
- flex: 0 0 41.6666666667%;
- max-width: 41.6666666667%;
-}
-
-.col-6 {
- flex: 0 0 50%;
- max-width: 50%;
-}
-
-.col-7 {
- flex: 0 0 58.3333333333%;
- max-width: 58.3333333333%;
-}
-
-.col-8 {
- flex: 0 0 66.6666666667%;
- max-width: 66.6666666667%;
-}
-
-.col-9 {
- flex: 0 0 75%;
- max-width: 75%;
-}
-
-.col-10 {
- flex: 0 0 83.3333333333%;
- max-width: 83.3333333333%;
-}
-
-.col-11 {
- flex: 0 0 91.6666666667%;
- max-width: 91.6666666667%;
-}
-
-.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.3333333333%;
-}
-
-.offset-2 {
- margin-left: 16.6666666667%;
-}
-
-.offset-3 {
- margin-left: 25%;
-}
-
-.offset-4 {
- margin-left: 33.3333333333%;
-}
-
-.offset-5 {
- margin-left: 41.6666666667%;
-}
-
-.offset-6 {
- margin-left: 50%;
-}
-
-.offset-7 {
- margin-left: 58.3333333333%;
-}
-
-.offset-8 {
- margin-left: 66.6666666667%;
-}
-
-.offset-9 {
- margin-left: 75%;
-}
-
-.offset-10 {
- margin-left: 83.3333333333%;
-}
-
-.offset-11 {
- margin-left: 91.6666666667%;
-}
-
-@media (min-width: 400px) {
- .col-xs {
- flex-basis: 0;
- flex-grow: 1;
- max-width: 100%;
- }
-
- .row-cols-xs-1 > * {
- flex: 0 0 100%;
- max-width: 100%;
- }
-
- .row-cols-xs-2 > * {
- flex: 0 0 50%;
- max-width: 50%;
- }
-
- .row-cols-xs-3 > * {
- flex: 0 0 33.3333333333%;
- max-width: 33.3333333333%;
- }
-
- .row-cols-xs-4 > * {
- flex: 0 0 25%;
- max-width: 25%;
- }
-
- .row-cols-xs-5 > * {
- flex: 0 0 20%;
- max-width: 20%;
- }
-
- .row-cols-xs-6 > * {
- flex: 0 0 16.6666666667%;
- max-width: 16.6666666667%;
- }
-
- .col-xs-auto {
- flex: 0 0 auto;
- width: auto;
- max-width: 100%;
- }
-
- .col-xs-1 {
- flex: 0 0 8.3333333333%;
- max-width: 8.3333333333%;
- }
-
- .col-xs-2 {
- flex: 0 0 16.6666666667%;
- max-width: 16.6666666667%;
- }
-
- .col-xs-3 {
- flex: 0 0 25%;
- max-width: 25%;
- }
-
- .col-xs-4 {
- flex: 0 0 33.3333333333%;
- max-width: 33.3333333333%;
- }
-
- .col-xs-5 {
- flex: 0 0 41.6666666667%;
- max-width: 41.6666666667%;
- }
-
- .col-xs-6 {
- flex: 0 0 50%;
- max-width: 50%;
- }
-
- .col-xs-7 {
- flex: 0 0 58.3333333333%;
- max-width: 58.3333333333%;
- }
-
- .col-xs-8 {
- flex: 0 0 66.6666666667%;
- max-width: 66.6666666667%;
- }
-
- .col-xs-9 {
- flex: 0 0 75%;
- max-width: 75%;
- }
-
- .col-xs-10 {
- flex: 0 0 83.3333333333%;
- max-width: 83.3333333333%;
- }
-
- .col-xs-11 {
- flex: 0 0 91.6666666667%;
- max-width: 91.6666666667%;
- }
-
- .col-xs-12 {
- flex: 0 0 100%;
- max-width: 100%;
- }
-
- .order-xs-first {
- order: -1;
- }
-
- .order-xs-last {
- order: 13;
- }
-
- .order-xs-0 {
- order: 0;
- }
-
- .order-xs-1 {
- order: 1;
- }
-
- .order-xs-2 {
- order: 2;
- }
-
- .order-xs-3 {
- order: 3;
- }
-
- .order-xs-4 {
- order: 4;
- }
-
- .order-xs-5 {
- order: 5;
- }
-
- .order-xs-6 {
- order: 6;
- }
-
- .order-xs-7 {
- order: 7;
- }
-
- .order-xs-8 {
- order: 8;
- }
-
- .order-xs-9 {
- order: 9;
- }
-
- .order-xs-10 {
- order: 10;
- }
-
- .order-xs-11 {
- order: 11;
- }
-
- .order-xs-12 {
- order: 12;
- }
-
- .offset-xs-0 {
- margin-left: 0;
- }
-
- .offset-xs-1 {
- margin-left: 8.3333333333%;
- }
-
- .offset-xs-2 {
- margin-left: 16.6666666667%;
- }
-
- .offset-xs-3 {
- margin-left: 25%;
- }
-
- .offset-xs-4 {
- margin-left: 33.3333333333%;
- }
-
- .offset-xs-5 {
- margin-left: 41.6666666667%;
- }
-
- .offset-xs-6 {
- margin-left: 50%;
- }
-
- .offset-xs-7 {
- margin-left: 58.3333333333%;
- }
-
- .offset-xs-8 {
- margin-left: 66.6666666667%;
- }
-
- .offset-xs-9 {
- margin-left: 75%;
- }
-
- .offset-xs-10 {
- margin-left: 83.3333333333%;
- }
-
- .offset-xs-11 {
- margin-left: 91.6666666667%;
- }
-}
-@media (min-width: 616px) {
- .col-sm {
- flex-basis: 0;
- flex-grow: 1;
- 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.3333333333%;
- max-width: 33.3333333333%;
- }
-
- .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.6666666667%;
- max-width: 16.6666666667%;
- }
-
- .col-sm-auto {
- flex: 0 0 auto;
- width: auto;
- max-width: 100%;
- }
-
- .col-sm-1 {
- flex: 0 0 8.3333333333%;
- max-width: 8.3333333333%;
- }
-
- .col-sm-2 {
- flex: 0 0 16.6666666667%;
- max-width: 16.6666666667%;
- }
-
- .col-sm-3 {
- flex: 0 0 25%;
- max-width: 25%;
- }
-
- .col-sm-4 {
- flex: 0 0 33.3333333333%;
- max-width: 33.3333333333%;
- }
-
- .col-sm-5 {
- flex: 0 0 41.6666666667%;
- max-width: 41.6666666667%;
- }
-
- .col-sm-6 {
- flex: 0 0 50%;
- max-width: 50%;
- }
-
- .col-sm-7 {
- flex: 0 0 58.3333333333%;
- max-width: 58.3333333333%;
- }
-
- .col-sm-8 {
- flex: 0 0 66.6666666667%;
- max-width: 66.6666666667%;
- }
-
- .col-sm-9 {
- flex: 0 0 75%;
- max-width: 75%;
- }
-
- .col-sm-10 {
- flex: 0 0 83.3333333333%;
- max-width: 83.3333333333%;
- }
-
- .col-sm-11 {
- flex: 0 0 91.6666666667%;
- max-width: 91.6666666667%;
- }
-
- .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.3333333333%;
- }
-
- .offset-sm-2 {
- margin-left: 16.6666666667%;
- }
-
- .offset-sm-3 {
- margin-left: 25%;
- }
-
- .offset-sm-4 {
- margin-left: 33.3333333333%;
- }
-
- .offset-sm-5 {
- margin-left: 41.6666666667%;
- }
-
- .offset-sm-6 {
- margin-left: 50%;
- }
-
- .offset-sm-7 {
- margin-left: 58.3333333333%;
- }
-
- .offset-sm-8 {
- margin-left: 66.6666666667%;
- }
-
- .offset-sm-9 {
- margin-left: 75%;
- }
-
- .offset-sm-10 {
- margin-left: 83.3333333333%;
- }
-
- .offset-sm-11 {
- margin-left: 91.6666666667%;
- }
-}
-@media (min-width: 768px) {
- .col-md {
- flex-basis: 0;
- flex-grow: 1;
- 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.3333333333%;
- max-width: 33.3333333333%;
- }
-
- .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.6666666667%;
- max-width: 16.6666666667%;
- }
-
- .col-md-auto {
- flex: 0 0 auto;
- width: auto;
- max-width: 100%;
- }
-
- .col-md-1 {
- flex: 0 0 8.3333333333%;
- max-width: 8.3333333333%;
- }
-
- .col-md-2 {
- flex: 0 0 16.6666666667%;
- max-width: 16.6666666667%;
- }
-
- .col-md-3 {
- flex: 0 0 25%;
- max-width: 25%;
- }
-
- .col-md-4 {
- flex: 0 0 33.3333333333%;
- max-width: 33.3333333333%;
- }
-
- .col-md-5 {
- flex: 0 0 41.6666666667%;
- max-width: 41.6666666667%;
- }
-
- .col-md-6 {
- flex: 0 0 50%;
- max-width: 50%;
- }
-
- .col-md-7 {
- flex: 0 0 58.3333333333%;
- max-width: 58.3333333333%;
- }
-
- .col-md-8 {
- flex: 0 0 66.6666666667%;
- max-width: 66.6666666667%;
- }
-
- .col-md-9 {
- flex: 0 0 75%;
- max-width: 75%;
- }
-
- .col-md-10 {
- flex: 0 0 83.3333333333%;
- max-width: 83.3333333333%;
- }
-
- .col-md-11 {
- flex: 0 0 91.6666666667%;
- max-width: 91.6666666667%;
- }
-
- .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.3333333333%;
- }
-
- .offset-md-2 {
- margin-left: 16.6666666667%;
- }
-
- .offset-md-3 {
- margin-left: 25%;
- }
-
- .offset-md-4 {
- margin-left: 33.3333333333%;
- }
-
- .offset-md-5 {
- margin-left: 41.6666666667%;
- }
-
- .offset-md-6 {
- margin-left: 50%;
- }
-
- .offset-md-7 {
- margin-left: 58.3333333333%;
- }
-
- .offset-md-8 {
- margin-left: 66.6666666667%;
- }
-
- .offset-md-9 {
- margin-left: 75%;
- }
-
- .offset-md-10 {
- margin-left: 83.3333333333%;
- }
-
- .offset-md-11 {
- margin-left: 91.6666666667%;
- }
-}
-@media (min-width: 980px) {
- .col-lg {
- flex-basis: 0;
- flex-grow: 1;
- 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.3333333333%;
- max-width: 33.3333333333%;
- }
-
- .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.6666666667%;
- max-width: 16.6666666667%;
- }
-
- .col-lg-auto {
- flex: 0 0 auto;
- width: auto;
- max-width: 100%;
- }
-
- .col-lg-1 {
- flex: 0 0 8.3333333333%;
- max-width: 8.3333333333%;
- }
-
- .col-lg-2 {
- flex: 0 0 16.6666666667%;
- max-width: 16.6666666667%;
- }
-
- .col-lg-3 {
- flex: 0 0 25%;
- max-width: 25%;
- }
-
- .col-lg-4 {
- flex: 0 0 33.3333333333%;
- max-width: 33.3333333333%;
- }
-
- .col-lg-5 {
- flex: 0 0 41.6666666667%;
- max-width: 41.6666666667%;
- }
-
- .col-lg-6 {
- flex: 0 0 50%;
- max-width: 50%;
- }
-
- .col-lg-7 {
- flex: 0 0 58.3333333333%;
- max-width: 58.3333333333%;
- }
-
- .col-lg-8 {
- flex: 0 0 66.6666666667%;
- max-width: 66.6666666667%;
- }
-
- .col-lg-9 {
- flex: 0 0 75%;
- max-width: 75%;
- }
-
- .col-lg-10 {
- flex: 0 0 83.3333333333%;
- max-width: 83.3333333333%;
- }
-
- .col-lg-11 {
- flex: 0 0 91.6666666667%;
- max-width: 91.6666666667%;
- }
-
- .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.3333333333%;
- }
-
- .offset-lg-2 {
- margin-left: 16.6666666667%;
- }
-
- .offset-lg-3 {
- margin-left: 25%;
- }
-
- .offset-lg-4 {
- margin-left: 33.3333333333%;
- }
-
- .offset-lg-5 {
- margin-left: 41.6666666667%;
- }
-
- .offset-lg-6 {
- margin-left: 50%;
- }
-
- .offset-lg-7 {
- margin-left: 58.3333333333%;
- }
-
- .offset-lg-8 {
- margin-left: 66.6666666667%;
- }
-
- .offset-lg-9 {
- margin-left: 75%;
- }
-
- .offset-lg-10 {
- margin-left: 83.3333333333%;
- }
-
- .offset-lg-11 {
- margin-left: 91.6666666667%;
- }
-}
-@media (min-width: 1240px) {
- .col-xl {
- flex-basis: 0;
- flex-grow: 1;
- 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.3333333333%;
- max-width: 33.3333333333%;
- }
-
- .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.6666666667%;
- max-width: 16.6666666667%;
- }
-
- .col-xl-auto {
- flex: 0 0 auto;
- width: auto;
- max-width: 100%;
- }
-
- .col-xl-1 {
- flex: 0 0 8.3333333333%;
- max-width: 8.3333333333%;
- }
-
- .col-xl-2 {
- flex: 0 0 16.6666666667%;
- max-width: 16.6666666667%;
- }
-
- .col-xl-3 {
- flex: 0 0 25%;
- max-width: 25%;
- }
-
- .col-xl-4 {
- flex: 0 0 33.3333333333%;
- max-width: 33.3333333333%;
- }
-
- .col-xl-5 {
- flex: 0 0 41.6666666667%;
- max-width: 41.6666666667%;
- }
-
- .col-xl-6 {
- flex: 0 0 50%;
- max-width: 50%;
- }
-
- .col-xl-7 {
- flex: 0 0 58.3333333333%;
- max-width: 58.3333333333%;
- }
-
- .col-xl-8 {
- flex: 0 0 66.6666666667%;
- max-width: 66.6666666667%;
- }
-
- .col-xl-9 {
- flex: 0 0 75%;
- max-width: 75%;
- }
-
- .col-xl-10 {
- flex: 0 0 83.3333333333%;
- max-width: 83.3333333333%;
- }
-
- .col-xl-11 {
- flex: 0 0 91.6666666667%;
- max-width: 91.6666666667%;
- }
-
- .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.3333333333%;
- }
-
- .offset-xl-2 {
- margin-left: 16.6666666667%;
- }
-
- .offset-xl-3 {
- margin-left: 25%;
- }
-
- .offset-xl-4 {
- margin-left: 33.3333333333%;
- }
-
- .offset-xl-5 {
- margin-left: 41.6666666667%;
- }
-
- .offset-xl-6 {
- margin-left: 50%;
- }
-
- .offset-xl-7 {
- margin-left: 58.3333333333%;
- }
-
- .offset-xl-8 {
- margin-left: 66.6666666667%;
- }
-
- .offset-xl-9 {
- margin-left: 75%;
- }
-
- .offset-xl-10 {
- margin-left: 83.3333333333%;
- }
-
- .offset-xl-11 {
- margin-left: 91.6666666667%;
- }
-}
-.table {
- width: 100%;
- margin-bottom: 8px;
- color: #212529;
-}
-.table th,
-.table td {
- padding: 0.75rem;
- vertical-align: top;
- border-top: 1px solid #d6dbdf;
-}
-.table thead th {
- vertical-align: bottom;
- border-bottom: 2px solid #d6dbdf;
-}
-.table tbody + tbody {
- border-top: 2px solid #d6dbdf;
-}
-
-.table-sm th,
-.table-sm td {
- padding: 0.3rem;
-}
-
-.table-bordered {
- border: 1px solid #d6dbdf;
-}
-.table-bordered th,
-.table-bordered td {
- border: 1px solid #d6dbdf;
-}
-.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(33, 37, 41, 0.05);
-}
-
-.table-hover tbody tr:hover {
- color: #212529;
- background-color: rgba(33, 37, 41, 0.075);
-}
-
-.table-primary,
-.table-primary > th,
-.table-primary > td {
- background-color: #fff1b8;
-}
-.table-primary th,
-.table-primary td,
-.table-primary thead th,
-.table-primary tbody + tbody {
- border-color: #ffe47a;
-}
-
-.table-hover .table-primary:hover {
- background-color: #ffec9f;
-}
-.table-hover .table-primary:hover > td,
-.table-hover .table-primary:hover > th {
- background-color: #ffec9f;
-}
-
-.table-secondary,
-.table-secondary > th,
-.table-secondary > td {
- background-color: #c1c2c3;
-}
-.table-secondary th,
-.table-secondary td,
-.table-secondary thead th,
-.table-secondary tbody + tbody {
- border-color: #8c8e90;
-}
-
-.table-hover .table-secondary:hover {
- background-color: #b4b5b6;
-}
-.table-hover .table-secondary:hover > td,
-.table-hover .table-secondary:hover > th {
- background-color: #b4b5b6;
-}
-
-.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: #fbfcfd;
-}
-.table-light th,
-.table-light td,
-.table-light thead th,
-.table-light tbody + tbody {
- border-color: #f8fafc;
-}
-
-.table-hover .table-light:hover {
- background-color: #eaeff5;
-}
-.table-hover .table-light:hover > td,
-.table-hover .table-light:hover > th {
- background-color: #eaeff5;
-}
-
-.table-dark,
-.table-dark > th,
-.table-dark > td {
- background-color: #ccced0;
-}
-.table-dark th,
-.table-dark td,
-.table-dark thead th,
-.table-dark tbody + tbody {
- border-color: #a0a4a8;
-}
-
-.table-hover .table-dark:hover {
- background-color: #bfc1c4;
-}
-.table-hover .table-dark:hover > td,
-.table-hover .table-dark:hover > th {
- background-color: #bfc1c4;
-}
-
-.table-primary-light,
-.table-primary-light > th,
-.table-primary-light > td {
- background-color: #fffefb;
-}
-.table-primary-light th,
-.table-primary-light td,
-.table-primary-light thead th,
-.table-primary-light tbody + tbody {
- border-color: #fffcf7;
-}
-
-.table-hover .table-primary-light:hover {
- background-color: #fff8e2;
-}
-.table-hover .table-primary-light:hover > td,
-.table-hover .table-primary-light:hover > th {
- background-color: #fff8e2;
-}
-
-.table-secondary-light,
-.table-secondary-light > th,
-.table-secondary-light > td {
- background-color: white;
-}
-.table-secondary-light th,
-.table-secondary-light td,
-.table-secondary-light thead th,
-.table-secondary-light tbody + tbody {
- border-color: white;
-}
-
-.table-hover .table-secondary-light:hover {
- background-color: #f2f2f2;
-}
-.table-hover .table-secondary-light:hover > td,
-.table-hover .table-secondary-light:hover > th {
- background-color: #f2f2f2;
-}
-
-.table-tertiary,
-.table-tertiary > th,
-.table-tertiary > td {
- background-color: #c2dafc;
-}
-.table-tertiary th,
-.table-tertiary td,
-.table-tertiary thead th,
-.table-tertiary tbody + tbody {
- border-color: #8ebaf9;
-}
-
-.table-hover .table-tertiary:hover {
- background-color: #aacbfb;
-}
-.table-hover .table-tertiary:hover > td,
-.table-hover .table-tertiary:hover > th {
- background-color: #aacbfb;
-}
-
-.table-tertiary-light,
-.table-tertiary-light > th,
-.table-tertiary-light > td {
- background-color: #f7fbff;
-}
-.table-tertiary-light th,
-.table-tertiary-light td,
-.table-tertiary-light thead th,
-.table-tertiary-light tbody + tbody {
- border-color: #f0f8fe;
-}
-
-.table-hover .table-tertiary-light:hover {
- background-color: #deeeff;
-}
-.table-hover .table-tertiary-light:hover > td,
-.table-hover .table-tertiary-light:hover > th {
- background-color: #deeeff;
-}
-
-.table-white,
-.table-white > th,
-.table-white > td {
- background-color: white;
-}
-.table-white th,
-.table-white td,
-.table-white thead th,
-.table-white tbody + tbody {
- border-color: white;
-}
-
-.table-hover .table-white:hover {
- background-color: #f2f2f2;
-}
-.table-hover .table-white:hover > td,
-.table-hover .table-white:hover > th {
- background-color: #f2f2f2;
-}
-
-.table-black,
-.table-black > th,
-.table-black > td {
- background-color: #c1c2c3;
-}
-.table-black th,
-.table-black td,
-.table-black thead th,
-.table-black tbody + tbody {
- border-color: #8c8e90;
-}
-
-.table-hover .table-black:hover {
- background-color: #b4b5b6;
-}
-.table-hover .table-black:hover > td,
-.table-hover .table-black:hover > th {
- background-color: #b4b5b6;
-}
-
-.table-blue,
-.table-blue > th,
-.table-blue > td {
- background-color: #c2dafc;
-}
-.table-blue th,
-.table-blue td,
-.table-blue thead th,
-.table-blue tbody + tbody {
- border-color: #8ebaf9;
-}
-
-.table-hover .table-blue:hover {
- background-color: #aacbfb;
-}
-.table-hover .table-blue:hover > td,
-.table-hover .table-blue:hover > th {
- background-color: #aacbfb;
-}
-
-.table-light-blue,
-.table-light-blue > th,
-.table-light-blue > td {
- background-color: #f7fbff;
-}
-.table-light-blue th,
-.table-light-blue td,
-.table-light-blue thead th,
-.table-light-blue tbody + tbody {
- border-color: #f0f8fe;
-}
-
-.table-hover .table-light-blue:hover {
- background-color: #deeeff;
-}
-.table-hover .table-light-blue:hover > td,
-.table-hover .table-light-blue:hover > th {
- background-color: #deeeff;
-}
-
-.table-yellow,
-.table-yellow > th,
-.table-yellow > td {
- background-color: #fff1b8;
-}
-.table-yellow th,
-.table-yellow td,
-.table-yellow thead th,
-.table-yellow tbody + tbody {
- border-color: #ffe47a;
-}
-
-.table-hover .table-yellow:hover {
- background-color: #ffec9f;
-}
-.table-hover .table-yellow:hover > td,
-.table-hover .table-yellow:hover > th {
- background-color: #ffec9f;
-}
-
-.table-light-yellow,
-.table-light-yellow > th,
-.table-light-yellow > td {
- background-color: #fffefb;
-}
-.table-light-yellow th,
-.table-light-yellow td,
-.table-light-yellow thead th,
-.table-light-yellow tbody + tbody {
- border-color: #fffcf7;
-}
-
-.table-hover .table-light-yellow:hover {
- background-color: #fff8e2;
-}
-.table-hover .table-light-yellow:hover > td,
-.table-hover .table-light-yellow:hover > th {
- background-color: #fff8e2;
-}
-
-.table-orange,
-.table-orange > th,
-.table-orange > td {
- background-color: #ffdfb8;
-}
-.table-orange th,
-.table-orange td,
-.table-orange thead th,
-.table-orange tbody + tbody {
- border-color: #ffc37a;
-}
-
-.table-hover .table-orange:hover {
- background-color: #ffd49f;
-}
-.table-hover .table-orange:hover > td,
-.table-hover .table-orange:hover > th {
- background-color: #ffd49f;
-}
-
-.table-light-orange,
-.table-light-orange > th,
-.table-light-orange > td {
- background-color: #fff7ea;
-}
-.table-light-orange th,
-.table-light-orange td,
-.table-light-orange thead th,
-.table-light-orange tbody + tbody {
- border-color: #fff1d9;
-}
-
-.table-hover .table-light-orange:hover {
- background-color: #ffedd1;
-}
-.table-hover .table-light-orange:hover > td,
-.table-hover .table-light-orange:hover > th {
- background-color: #ffedd1;
-}
-
-.table-red,
-.table-red > th,
-.table-red > td {
- background-color: #ffc8c8;
-}
-.table-red th,
-.table-red td,
-.table-red thead th,
-.table-red tbody + tbody {
- border-color: #ff9898;
-}
-
-.table-hover .table-red:hover {
- background-color: #ffafaf;
-}
-.table-hover .table-red:hover > td,
-.table-hover .table-red:hover > th {
- background-color: #ffafaf;
-}
-
-.table-light-red,
-.table-light-red > th,
-.table-light-red > td {
- background-color: #fff7f7;
-}
-.table-light-red th,
-.table-light-red td,
-.table-light-red thead th,
-.table-light-red tbody + tbody {
- border-color: #fff1ef;
-}
-
-.table-hover .table-light-red:hover {
- background-color: #ffdede;
-}
-.table-hover .table-light-red:hover > td,
-.table-hover .table-light-red:hover > th {
- background-color: #ffdede;
-}
-
-.table-medium,
-.table-medium > th,
-.table-medium > td {
- background-color: #f4f5f6;
-}
-.table-medium th,
-.table-medium td,
-.table-medium thead th,
-.table-medium tbody + tbody {
- border-color: #eaecee;
-}
-
-.table-hover .table-medium:hover {
- background-color: #e6e8eb;
-}
-.table-hover .table-medium:hover > td,
-.table-hover .table-medium:hover > th {
- background-color: #e6e8eb;
-}
-
-.table-active,
-.table-active > th,
-.table-active > td {
- background-color: rgba(33, 37, 41, 0.075);
-}
-
-.table-hover .table-active:hover {
- background-color: rgba(22, 24, 27, 0.075);
-}
-.table-hover .table-active:hover > td,
-.table-hover .table-active:hover > th {
- background-color: rgba(22, 24, 27, 0.075);
-}
-
-.table .thead-dark th {
- color: #fff;
- background-color: #343a40;
- border-color: #454d55;
-}
-.table .thead-light th {
- color: #6c757d;
- background-color: #e9ecef;
- border-color: #d6dbdf;
-}
-
-.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: 399.98px) {
- .table-responsive-xs {
- display: block;
- width: 100%;
- overflow-x: auto;
- -webkit-overflow-scrolling: touch;
- }
- .table-responsive-xs > .table-bordered {
- border: 0;
- }
-}
-@media (max-width: 615.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: 979.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: 1239.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: #6c757d;
- background-color: #fff;
- background-clip: padding-box;
- border: 1px solid #ced4da;
- border-radius: 8px;
- 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 #6c757d;
-}
-.form-control:focus {
- color: #6c757d;
- background-color: #fff;
- border-color: #ffe680;
- outline: 0;
- box-shadow: 0 0 0 0.2rem rgba(255, 204, 0, 0.25);
-}
-.form-control::-moz-placeholder {
- color: #6c757d;
- opacity: 1;
-}
-.form-control:-ms-input-placeholder {
- color: #6c757d;
- opacity: 1;
-}
-.form-control::placeholder {
- color: #6c757d;
- opacity: 1;
-}
-.form-control:disabled, .form-control[readonly] {
- background-color: #e9ecef;
- opacity: 1;
-}
-
-select.form-control:focus::-ms-value {
- color: #6c757d;
- 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.125rem;
- 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: 8px;
-}
-
-.form-control-lg {
- height: calc(1.5em + 1rem + 2px);
- padding: 0.5rem 1rem;
- font-size: 1.125rem;
- line-height: 1.5;
- border-radius: 8px;
-}
-
-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: 0.1rem;
- font-size: 0.875rem;
- line-height: 1.5;
- color: #fff;
- background-color: rgba(40, 167, 69, 0.9);
- border-radius: 8px;
-}
-
-.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: 0.1rem;
- font-size: 0.875rem;
- line-height: 1.5;
- color: #fff;
- background-color: rgba(220, 53, 69, 0.9);
- border-radius: 8px;
-}
-
-.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: 616px) {
- .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-family: inherit;
- font-weight: 700;
- color: #212529;
- text-align: center;
- vertical-align: middle;
- cursor: pointer;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- background-color: transparent;
- border: 1px solid transparent;
- padding: 12px 32px;
- font-size: 0.875rem;
- line-height: 20px;
- border-radius: 8px;
- 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: none;
-}
-.btn.disabled, .btn:disabled {
- opacity: 0.65;
-}
-a.btn.disabled,
-fieldset:disabled a.btn {
- pointer-events: none;
-}
-
-.btn-primary {
- color: #495057;
- background-color: #ffcc00;
- border-color: #ffcc00;
-}
-.btn-primary:hover {
- color: #495057;
- background-color: #d9ad00;
- border-color: #cca300;
-}
-.btn-primary:focus, .btn-primary.focus {
- color: #495057;
- background-color: #d9ad00;
- border-color: #cca300;
- box-shadow: 0 0 0 0 rgba(228, 185, 13, 0.5);
-}
-.btn-primary.disabled, .btn-primary:disabled {
- color: #495057;
- background-color: #ffcc00;
- border-color: #ffcc00;
-}
-.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
- color: #495057;
- background-color: #cca300;
- border-color: #bf9900;
-}
-.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 rgba(228, 185, 13, 0.5);
-}
-
-.btn-secondary {
- color: #fff;
- background-color: #212529;
- border-color: #212529;
-}
-.btn-secondary:hover {
- color: #fff;
- background-color: #101214;
- border-color: #0a0c0d;
-}
-.btn-secondary:focus, .btn-secondary.focus {
- color: #fff;
- background-color: #101214;
- border-color: #0a0c0d;
- box-shadow: 0 0 0 0 rgba(66, 70, 73, 0.5);
-}
-.btn-secondary.disabled, .btn-secondary:disabled {
- color: #fff;
- background-color: #212529;
- border-color: #212529;
-}
-.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle {
- color: #fff;
- background-color: #0a0c0d;
- border-color: #050506;
-}
-.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 rgba(66, 70, 73, 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 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 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 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 rgba(58, 176, 195, 0.5);
-}
-
-.btn-warning {
- color: #495057;
- background-color: #ffc107;
- border-color: #ffc107;
-}
-.btn-warning:hover {
- color: #495057;
- background-color: #e0a800;
- border-color: #d39e00;
-}
-.btn-warning:focus, .btn-warning.focus {
- color: #495057;
- background-color: #e0a800;
- border-color: #d39e00;
- box-shadow: 0 0 0 0 rgba(228, 176, 19, 0.5);
-}
-.btn-warning.disabled, .btn-warning:disabled {
- color: #495057;
- 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: #495057;
- 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 rgba(228, 176, 19, 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 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 rgba(225, 83, 97, 0.5);
-}
-
-.btn-light {
- color: #495057;
- background-color: #f1f6f9;
- border-color: #f1f6f9;
-}
-.btn-light:hover {
- color: #495057;
- background-color: #d6e5ee;
- border-color: #cddfea;
-}
-.btn-light:focus, .btn-light.focus {
- color: #495057;
- background-color: #d6e5ee;
- border-color: #cddfea;
- box-shadow: 0 0 0 0 rgba(216, 221, 225, 0.5);
-}
-.btn-light.disabled, .btn-light:disabled {
- color: #495057;
- background-color: #f1f6f9;
- border-color: #f1f6f9;
-}
-.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show > .btn-light.dropdown-toggle {
- color: #495057;
- background-color: #cddfea;
- border-color: #c4d9e6;
-}
-.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 rgba(216, 221, 225, 0.5);
-}
-
-.btn-dark {
- color: #fff;
- background-color: #495057;
- border-color: #495057;
-}
-.btn-dark:hover {
- color: #fff;
- background-color: #383d42;
- border-color: #32373b;
-}
-.btn-dark:focus, .btn-dark.focus {
- color: #fff;
- background-color: #383d42;
- border-color: #32373b;
- box-shadow: 0 0 0 0 rgba(100, 106, 112, 0.5);
-}
-.btn-dark.disabled, .btn-dark:disabled {
- color: #fff;
- background-color: #495057;
- border-color: #495057;
-}
-.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, .show > .btn-dark.dropdown-toggle {
- color: #fff;
- background-color: #32373b;
- border-color: #2c3034;
-}
-.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 rgba(100, 106, 112, 0.5);
-}
-
-.btn-primary-light {
- color: #495057;
- background-color: #fffaf0;
- border-color: #fffaf0;
-}
-.btn-primary-light:hover {
- color: #495057;
- background-color: #ffedca;
- border-color: #ffe9bd;
-}
-.btn-primary-light:focus, .btn-primary-light.focus {
- color: #495057;
- background-color: #ffedca;
- border-color: #ffe9bd;
- box-shadow: 0 0 0 0 rgba(228, 225, 217, 0.5);
-}
-.btn-primary-light.disabled, .btn-primary-light:disabled {
- color: #495057;
- background-color: #fffaf0;
- border-color: #fffaf0;
-}
-.btn-primary-light:not(:disabled):not(.disabled):active, .btn-primary-light:not(:disabled):not(.disabled).active, .show > .btn-primary-light.dropdown-toggle {
- color: #495057;
- background-color: #ffe9bd;
- border-color: #ffe5b0;
-}
-.btn-primary-light:not(:disabled):not(.disabled):active:focus, .btn-primary-light:not(:disabled):not(.disabled).active:focus, .show > .btn-primary-light.dropdown-toggle:focus {
- box-shadow: 0 0 0 0 rgba(228, 225, 217, 0.5);
-}
-
-.btn-secondary-light {
- color: #495057;
- background-color: #fff;
- border-color: #fff;
-}
-.btn-secondary-light:hover {
- color: #495057;
- background-color: #ececec;
- border-color: #e6e6e6;
-}
-.btn-secondary-light:focus, .btn-secondary-light.focus {
- color: #495057;
- background-color: #ececec;
- border-color: #e6e6e6;
- box-shadow: 0 0 0 0 rgba(228, 229, 230, 0.5);
-}
-.btn-secondary-light.disabled, .btn-secondary-light:disabled {
- color: #495057;
- background-color: #fff;
- border-color: #fff;
-}
-.btn-secondary-light:not(:disabled):not(.disabled):active, .btn-secondary-light:not(:disabled):not(.disabled).active, .show > .btn-secondary-light.dropdown-toggle {
- color: #495057;
- background-color: #e6e6e6;
- border-color: #dfdfdf;
-}
-.btn-secondary-light:not(:disabled):not(.disabled):active:focus, .btn-secondary-light:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary-light.dropdown-toggle:focus {
- box-shadow: 0 0 0 0 rgba(228, 229, 230, 0.5);
-}
-
-.btn-tertiary {
- color: #fff;
- background-color: #257af4;
- border-color: #257af4;
-}
-.btn-tertiary:hover {
- color: #fff;
- background-color: #0c66e7;
- border-color: #0b60db;
-}
-.btn-tertiary:focus, .btn-tertiary.focus {
- color: #fff;
- background-color: #0c66e7;
- border-color: #0b60db;
- box-shadow: 0 0 0 0 rgba(70, 142, 246, 0.5);
-}
-.btn-tertiary.disabled, .btn-tertiary:disabled {
- color: #fff;
- background-color: #257af4;
- border-color: #257af4;
-}
-.btn-tertiary:not(:disabled):not(.disabled):active, .btn-tertiary:not(:disabled):not(.disabled).active, .show > .btn-tertiary.dropdown-toggle {
- color: #fff;
- background-color: #0b60db;
- border-color: #0a5bcf;
-}
-.btn-tertiary:not(:disabled):not(.disabled):active:focus, .btn-tertiary:not(:disabled):not(.disabled).active:focus, .show > .btn-tertiary.dropdown-toggle:focus {
- box-shadow: 0 0 0 0 rgba(70, 142, 246, 0.5);
-}
-
-.btn-tertiary-light {
- color: #495057;
- background-color: #e3f1fe;
- border-color: #e3f1fe;
-}
-.btn-tertiary-light:hover {
- color: #495057;
- background-color: #bedffd;
- border-color: #b2d8fc;
-}
-.btn-tertiary-light:focus, .btn-tertiary-light.focus {
- color: #495057;
- background-color: #bedffd;
- border-color: #b2d8fc;
- box-shadow: 0 0 0 0 rgba(204, 217, 229, 0.5);
-}
-.btn-tertiary-light.disabled, .btn-tertiary-light:disabled {
- color: #495057;
- background-color: #e3f1fe;
- border-color: #e3f1fe;
-}
-.btn-tertiary-light:not(:disabled):not(.disabled):active, .btn-tertiary-light:not(:disabled):not(.disabled).active, .show > .btn-tertiary-light.dropdown-toggle {
- color: #495057;
- background-color: #b2d8fc;
- border-color: #a5d2fc;
-}
-.btn-tertiary-light:not(:disabled):not(.disabled):active:focus, .btn-tertiary-light:not(:disabled):not(.disabled).active:focus, .show > .btn-tertiary-light.dropdown-toggle:focus {
- box-shadow: 0 0 0 0 rgba(204, 217, 229, 0.5);
-}
-
-.btn-white {
- color: #495057;
- background-color: #fff;
- border-color: #fff;
-}
-.btn-white:hover {
- color: #495057;
- background-color: #ececec;
- border-color: #e6e6e6;
-}
-.btn-white:focus, .btn-white.focus {
- color: #495057;
- background-color: #ececec;
- border-color: #e6e6e6;
- box-shadow: 0 0 0 0 rgba(228, 229, 230, 0.5);
-}
-.btn-white.disabled, .btn-white:disabled {
- color: #495057;
- background-color: #fff;
- border-color: #fff;
-}
-.btn-white:not(:disabled):not(.disabled):active, .btn-white:not(:disabled):not(.disabled).active, .show > .btn-white.dropdown-toggle {
- color: #495057;
- background-color: #e6e6e6;
- border-color: #dfdfdf;
-}
-.btn-white:not(:disabled):not(.disabled):active:focus, .btn-white:not(:disabled):not(.disabled).active:focus, .show > .btn-white.dropdown-toggle:focus {
- box-shadow: 0 0 0 0 rgba(228, 229, 230, 0.5);
-}
-
-.btn-black {
- color: #fff;
- background-color: #212529;
- border-color: #212529;
-}
-.btn-black:hover {
- color: #fff;
- background-color: #101214;
- border-color: #0a0c0d;
-}
-.btn-black:focus, .btn-black.focus {
- color: #fff;
- background-color: #101214;
- border-color: #0a0c0d;
- box-shadow: 0 0 0 0 rgba(66, 70, 73, 0.5);
-}
-.btn-black.disabled, .btn-black:disabled {
- color: #fff;
- background-color: #212529;
- border-color: #212529;
-}
-.btn-black:not(:disabled):not(.disabled):active, .btn-black:not(:disabled):not(.disabled).active, .show > .btn-black.dropdown-toggle {
- color: #fff;
- background-color: #0a0c0d;
- border-color: #050506;
-}
-.btn-black:not(:disabled):not(.disabled):active:focus, .btn-black:not(:disabled):not(.disabled).active:focus, .show > .btn-black.dropdown-toggle:focus {
- box-shadow: 0 0 0 0 rgba(66, 70, 73, 0.5);
-}
-
-.btn-blue {
- color: #fff;
- background-color: #257af4;
- border-color: #257af4;
-}
-.btn-blue:hover {
- color: #fff;
- background-color: #0c66e7;
- border-color: #0b60db;
-}
-.btn-blue:focus, .btn-blue.focus {
- color: #fff;
- background-color: #0c66e7;
- border-color: #0b60db;
- box-shadow: 0 0 0 0 rgba(70, 142, 246, 0.5);
-}
-.btn-blue.disabled, .btn-blue:disabled {
- color: #fff;
- background-color: #257af4;
- border-color: #257af4;
-}
-.btn-blue:not(:disabled):not(.disabled):active, .btn-blue:not(:disabled):not(.disabled).active, .show > .btn-blue.dropdown-toggle {
- color: #fff;
- background-color: #0b60db;
- border-color: #0a5bcf;
-}
-.btn-blue:not(:disabled):not(.disabled):active:focus, .btn-blue:not(:disabled):not(.disabled).active:focus, .show > .btn-blue.dropdown-toggle:focus {
- box-shadow: 0 0 0 0 rgba(70, 142, 246, 0.5);
-}
-
-.btn-light-blue {
- color: #495057;
- background-color: #e3f1fe;
- border-color: #e3f1fe;
-}
-.btn-light-blue:hover {
- color: #495057;
- background-color: #bedffd;
- border-color: #b2d8fc;
-}
-.btn-light-blue:focus, .btn-light-blue.focus {
- color: #495057;
- background-color: #bedffd;
- border-color: #b2d8fc;
- box-shadow: 0 0 0 0 rgba(204, 217, 229, 0.5);
-}
-.btn-light-blue.disabled, .btn-light-blue:disabled {
- color: #495057;
- background-color: #e3f1fe;
- border-color: #e3f1fe;
-}
-.btn-light-blue:not(:disabled):not(.disabled):active, .btn-light-blue:not(:disabled):not(.disabled).active, .show > .btn-light-blue.dropdown-toggle {
- color: #495057;
- background-color: #b2d8fc;
- border-color: #a5d2fc;
-}
-.btn-light-blue:not(:disabled):not(.disabled):active:focus, .btn-light-blue:not(:disabled):not(.disabled).active:focus, .show > .btn-light-blue.dropdown-toggle:focus {
- box-shadow: 0 0 0 0 rgba(204, 217, 229, 0.5);
-}
-
-.btn-yellow {
- color: #495057;
- background-color: #ffcc00;
- border-color: #ffcc00;
-}
-.btn-yellow:hover {
- color: #495057;
- background-color: #d9ad00;
- border-color: #cca300;
-}
-.btn-yellow:focus, .btn-yellow.focus {
- color: #495057;
- background-color: #d9ad00;
- border-color: #cca300;
- box-shadow: 0 0 0 0 rgba(228, 185, 13, 0.5);
-}
-.btn-yellow.disabled, .btn-yellow:disabled {
- color: #495057;
- background-color: #ffcc00;
- border-color: #ffcc00;
-}
-.btn-yellow:not(:disabled):not(.disabled):active, .btn-yellow:not(:disabled):not(.disabled).active, .show > .btn-yellow.dropdown-toggle {
- color: #495057;
- background-color: #cca300;
- border-color: #bf9900;
-}
-.btn-yellow:not(:disabled):not(.disabled):active:focus, .btn-yellow:not(:disabled):not(.disabled).active:focus, .show > .btn-yellow.dropdown-toggle:focus {
- box-shadow: 0 0 0 0 rgba(228, 185, 13, 0.5);
-}
-
-.btn-light-yellow {
- color: #495057;
- background-color: #fffaf0;
- border-color: #fffaf0;
-}
-.btn-light-yellow:hover {
- color: #495057;
- background-color: #ffedca;
- border-color: #ffe9bd;
-}
-.btn-light-yellow:focus, .btn-light-yellow.focus {
- color: #495057;
- background-color: #ffedca;
- border-color: #ffe9bd;
- box-shadow: 0 0 0 0 rgba(228, 225, 217, 0.5);
-}
-.btn-light-yellow.disabled, .btn-light-yellow:disabled {
- color: #495057;
- background-color: #fffaf0;
- border-color: #fffaf0;
-}
-.btn-light-yellow:not(:disabled):not(.disabled):active, .btn-light-yellow:not(:disabled):not(.disabled).active, .show > .btn-light-yellow.dropdown-toggle {
- color: #495057;
- background-color: #ffe9bd;
- border-color: #ffe5b0;
-}
-.btn-light-yellow:not(:disabled):not(.disabled):active:focus, .btn-light-yellow:not(:disabled):not(.disabled).active:focus, .show > .btn-light-yellow.dropdown-toggle:focus {
- box-shadow: 0 0 0 0 rgba(228, 225, 217, 0.5);
-}
-
-.btn-orange {
- color: #495057;
- background-color: #ff8c00;
- border-color: #ff8c00;
-}
-.btn-orange:hover {
- color: #fff;
- background-color: #d97700;
- border-color: #cc7000;
-}
-.btn-orange:focus, .btn-orange.focus {
- color: #fff;
- background-color: #d97700;
- border-color: #cc7000;
- box-shadow: 0 0 0 0 rgba(228, 131, 13, 0.5);
-}
-.btn-orange.disabled, .btn-orange:disabled {
- color: #495057;
- background-color: #ff8c00;
- border-color: #ff8c00;
-}
-.btn-orange:not(:disabled):not(.disabled):active, .btn-orange:not(:disabled):not(.disabled).active, .show > .btn-orange.dropdown-toggle {
- color: #fff;
- background-color: #cc7000;
- border-color: #bf6900;
-}
-.btn-orange:not(:disabled):not(.disabled):active:focus, .btn-orange:not(:disabled):not(.disabled).active:focus, .show > .btn-orange.dropdown-toggle:focus {
- box-shadow: 0 0 0 0 rgba(228, 131, 13, 0.5);
-}
-
-.btn-light-orange {
- color: #495057;
- background-color: #ffe4b5;
- border-color: #ffe4b5;
-}
-.btn-light-orange:hover {
- color: #495057;
- background-color: #ffd68f;
- border-color: #ffd182;
-}
-.btn-light-orange:focus, .btn-light-orange.focus {
- color: #495057;
- background-color: #ffd68f;
- border-color: #ffd182;
- box-shadow: 0 0 0 0 rgba(228, 206, 167, 0.5);
-}
-.btn-light-orange.disabled, .btn-light-orange:disabled {
- color: #495057;
- background-color: #ffe4b5;
- border-color: #ffe4b5;
-}
-.btn-light-orange:not(:disabled):not(.disabled):active, .btn-light-orange:not(:disabled):not(.disabled).active, .show > .btn-light-orange.dropdown-toggle {
- color: #495057;
- background-color: #ffd182;
- border-color: #ffcd75;
-}
-.btn-light-orange:not(:disabled):not(.disabled):active:focus, .btn-light-orange:not(:disabled):not(.disabled).active:focus, .show > .btn-light-orange.dropdown-toggle:focus {
- box-shadow: 0 0 0 0 rgba(228, 206, 167, 0.5);
-}
-
-.btn-red {
- color: #fff;
- background-color: #ff3939;
- border-color: #ff3939;
-}
-.btn-red:hover {
- color: #fff;
- background-color: #ff1313;
- border-color: #ff0606;
-}
-.btn-red:focus, .btn-red.focus {
- color: #fff;
- background-color: #ff1313;
- border-color: #ff0606;
- box-shadow: 0 0 0 0 rgba(255, 87, 87, 0.5);
-}
-.btn-red.disabled, .btn-red:disabled {
- color: #fff;
- background-color: #ff3939;
- border-color: #ff3939;
-}
-.btn-red:not(:disabled):not(.disabled):active, .btn-red:not(:disabled):not(.disabled).active, .show > .btn-red.dropdown-toggle {
- color: #fff;
- background-color: #ff0606;
- border-color: #f80000;
-}
-.btn-red:not(:disabled):not(.disabled):active:focus, .btn-red:not(:disabled):not(.disabled).active:focus, .show > .btn-red.dropdown-toggle:focus {
- box-shadow: 0 0 0 0 rgba(255, 87, 87, 0.5);
-}
-
-.btn-light-red {
- color: #495057;
- background-color: #ffe4e1;
- border-color: #ffe4e1;
-}
-.btn-light-red:hover {
- color: #495057;
- background-color: #ffc2bb;
- border-color: #ffb6ae;
-}
-.btn-light-red:focus, .btn-light-red.focus {
- color: #495057;
- background-color: #ffc2bb;
- border-color: #ffb6ae;
- box-shadow: 0 0 0 0 rgba(228, 206, 204, 0.5);
-}
-.btn-light-red.disabled, .btn-light-red:disabled {
- color: #495057;
- background-color: #ffe4e1;
- border-color: #ffe4e1;
-}
-.btn-light-red:not(:disabled):not(.disabled):active, .btn-light-red:not(:disabled):not(.disabled).active, .show > .btn-light-red.dropdown-toggle {
- color: #495057;
- background-color: #ffb6ae;
- border-color: #ffaba1;
-}
-.btn-light-red:not(:disabled):not(.disabled):active:focus, .btn-light-red:not(:disabled):not(.disabled).active:focus, .show > .btn-light-red.dropdown-toggle:focus {
- box-shadow: 0 0 0 0 rgba(228, 206, 204, 0.5);
-}
-
-.btn-medium {
- color: #495057;
- background-color: #d6dbdf;
- border-color: #d6dbdf;
-}
-.btn-medium:hover {
- color: #495057;
- background-color: #c1c8ce;
- border-color: #b9c2c9;
-}
-.btn-medium:focus, .btn-medium.focus {
- color: #495057;
- background-color: #c1c8ce;
- border-color: #b9c2c9;
- box-shadow: 0 0 0 0 rgba(193, 198, 203, 0.5);
-}
-.btn-medium.disabled, .btn-medium:disabled {
- color: #495057;
- background-color: #d6dbdf;
- border-color: #d6dbdf;
-}
-.btn-medium:not(:disabled):not(.disabled):active, .btn-medium:not(:disabled):not(.disabled).active, .show > .btn-medium.dropdown-toggle {
- color: #495057;
- background-color: #b9c2c9;
- border-color: #b2bcc3;
-}
-.btn-medium:not(:disabled):not(.disabled):active:focus, .btn-medium:not(:disabled):not(.disabled).active:focus, .show > .btn-medium.dropdown-toggle:focus {
- box-shadow: 0 0 0 0 rgba(193, 198, 203, 0.5);
-}
-
-.btn-outline-primary {
- color: #ffcc00;
- border-color: #ffcc00;
-}
-.btn-outline-primary:hover {
- color: #495057;
- background-color: #ffcc00;
- border-color: #ffcc00;
-}
-.btn-outline-primary:focus, .btn-outline-primary.focus {
- box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.5);
-}
-.btn-outline-primary.disabled, .btn-outline-primary:disabled {
- color: #ffcc00;
- 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: #495057;
- background-color: #ffcc00;
- border-color: #ffcc00;
-}
-.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 rgba(255, 204, 0, 0.5);
-}
-
-.btn-outline-secondary {
- color: #212529;
- border-color: #212529;
-}
-.btn-outline-secondary:hover {
- color: #fff;
- background-color: #212529;
- border-color: #212529;
-}
-.btn-outline-secondary:focus, .btn-outline-secondary.focus {
- box-shadow: 0 0 0 0 rgba(33, 37, 41, 0.5);
-}
-.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
- color: #212529;
- 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: #212529;
- border-color: #212529;
-}
-.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 rgba(33, 37, 41, 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 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 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 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 rgba(23, 162, 184, 0.5);
-}
-
-.btn-outline-warning {
- color: #ffc107;
- border-color: #ffc107;
-}
-.btn-outline-warning:hover {
- color: #495057;
- background-color: #ffc107;
- border-color: #ffc107;
-}
-.btn-outline-warning:focus, .btn-outline-warning.focus {
- box-shadow: 0 0 0 0 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: #495057;
- 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 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 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 rgba(220, 53, 69, 0.5);
-}
-
-.btn-outline-light {
- color: #f1f6f9;
- border-color: #f1f6f9;
-}
-.btn-outline-light:hover {
- color: #495057;
- background-color: #f1f6f9;
- border-color: #f1f6f9;
-}
-.btn-outline-light:focus, .btn-outline-light.focus {
- box-shadow: 0 0 0 0 rgba(241, 246, 249, 0.5);
-}
-.btn-outline-light.disabled, .btn-outline-light:disabled {
- color: #f1f6f9;
- 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: #495057;
- background-color: #f1f6f9;
- border-color: #f1f6f9;
-}
-.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 rgba(241, 246, 249, 0.5);
-}
-
-.btn-outline-dark {
- color: #495057;
- border-color: #495057;
-}
-.btn-outline-dark:hover {
- color: #fff;
- background-color: #495057;
- border-color: #495057;
-}
-.btn-outline-dark:focus, .btn-outline-dark.focus {
- box-shadow: 0 0 0 0 rgba(73, 80, 87, 0.5);
-}
-.btn-outline-dark.disabled, .btn-outline-dark:disabled {
- color: #495057;
- 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: #495057;
- border-color: #495057;
-}
-.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 rgba(73, 80, 87, 0.5);
-}
-
-.btn-outline-primary-light {
- color: #fffaf0;
- border-color: #fffaf0;
-}
-.btn-outline-primary-light:hover {
- color: #495057;
- background-color: #fffaf0;
- border-color: #fffaf0;
-}
-.btn-outline-primary-light:focus, .btn-outline-primary-light.focus {
- box-shadow: 0 0 0 0 rgba(255, 250, 240, 0.5);
-}
-.btn-outline-primary-light.disabled, .btn-outline-primary-light:disabled {
- color: #fffaf0;
- background-color: transparent;
-}
-.btn-outline-primary-light:not(:disabled):not(.disabled):active, .btn-outline-primary-light:not(:disabled):not(.disabled).active, .show > .btn-outline-primary-light.dropdown-toggle {
- color: #495057;
- background-color: #fffaf0;
- border-color: #fffaf0;
-}
-.btn-outline-primary-light:not(:disabled):not(.disabled):active:focus, .btn-outline-primary-light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary-light.dropdown-toggle:focus {
- box-shadow: 0 0 0 0 rgba(255, 250, 240, 0.5);
-}
-
-.btn-outline-secondary-light {
- color: #fff;
- border-color: #fff;
-}
-.btn-outline-secondary-light:hover {
- color: #495057;
- background-color: #fff;
- border-color: #fff;
-}
-.btn-outline-secondary-light:focus, .btn-outline-secondary-light.focus {
- box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
-}
-.btn-outline-secondary-light.disabled, .btn-outline-secondary-light:disabled {
- color: #fff;
- background-color: transparent;
-}
-.btn-outline-secondary-light:not(:disabled):not(.disabled):active, .btn-outline-secondary-light:not(:disabled):not(.disabled).active, .show > .btn-outline-secondary-light.dropdown-toggle {
- color: #495057;
- background-color: #fff;
- border-color: #fff;
-}
-.btn-outline-secondary-light:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary-light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-secondary-light.dropdown-toggle:focus {
- box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
-}
-
-.btn-outline-tertiary {
- color: #257af4;
- border-color: #257af4;
-}
-.btn-outline-tertiary:hover {
- color: #fff;
- background-color: #257af4;
- border-color: #257af4;
-}
-.btn-outline-tertiary:focus, .btn-outline-tertiary.focus {
- box-shadow: 0 0 0 0 rgba(37, 122, 244, 0.5);
-}
-.btn-outline-tertiary.disabled, .btn-outline-tertiary:disabled {
- color: #257af4;
- background-color: transparent;
-}
-.btn-outline-tertiary:not(:disabled):not(.disabled):active, .btn-outline-tertiary:not(:disabled):not(.disabled).active, .show > .btn-outline-tertiary.dropdown-toggle {
- color: #fff;
- background-color: #257af4;
- border-color: #257af4;
-}
-.btn-outline-tertiary:not(:disabled):not(.disabled):active:focus, .btn-outline-tertiary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-tertiary.dropdown-toggle:focus {
- box-shadow: 0 0 0 0 rgba(37, 122, 244, 0.5);
-}
-
-.btn-outline-tertiary-light {
- color: #e3f1fe;
- border-color: #e3f1fe;
-}
-.btn-outline-tertiary-light:hover {
- color: #495057;
- background-color: #e3f1fe;
- border-color: #e3f1fe;
-}
-.btn-outline-tertiary-light:focus, .btn-outline-tertiary-light.focus {
- box-shadow: 0 0 0 0 rgba(227, 241, 254, 0.5);
-}
-.btn-outline-tertiary-light.disabled, .btn-outline-tertiary-light:disabled {
- color: #e3f1fe;
- background-color: transparent;
-}
-.btn-outline-tertiary-light:not(:disabled):not(.disabled):active, .btn-outline-tertiary-light:not(:disabled):not(.disabled).active, .show > .btn-outline-tertiary-light.dropdown-toggle {
- color: #495057;
- background-color: #e3f1fe;
- border-color: #e3f1fe;
-}
-.btn-outline-tertiary-light:not(:disabled):not(.disabled):active:focus, .btn-outline-tertiary-light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-tertiary-light.dropdown-toggle:focus {
- box-shadow: 0 0 0 0 rgba(227, 241, 254, 0.5);
-}
-
-.btn-outline-white {
- color: #fff;
- border-color: #fff;
-}
-.btn-outline-white:hover {
- color: #495057;
- background-color: #fff;
- border-color: #fff;
-}
-.btn-outline-white:focus, .btn-outline-white.focus {
- box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
-}
-.btn-outline-white.disabled, .btn-outline-white:disabled {
- color: #fff;
- background-color: transparent;
-}
-.btn-outline-white:not(:disabled):not(.disabled):active, .btn-outline-white:not(:disabled):not(.disabled).active, .show > .btn-outline-white.dropdown-toggle {
- color: #495057;
- background-color: #fff;
- border-color: #fff;
-}
-.btn-outline-white:not(:disabled):not(.disabled):active:focus, .btn-outline-white:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-white.dropdown-toggle:focus {
- box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
-}
-
-.btn-outline-black {
- color: #212529;
- border-color: #212529;
-}
-.btn-outline-black:hover {
- color: #fff;
- background-color: #212529;
- border-color: #212529;
-}
-.btn-outline-black:focus, .btn-outline-black.focus {
- box-shadow: 0 0 0 0 rgba(33, 37, 41, 0.5);
-}
-.btn-outline-black.disabled, .btn-outline-black:disabled {
- color: #212529;
- background-color: transparent;
-}
-.btn-outline-black:not(:disabled):not(.disabled):active, .btn-outline-black:not(:disabled):not(.disabled).active, .show > .btn-outline-black.dropdown-toggle {
- color: #fff;
- background-color: #212529;
- border-color: #212529;
-}
-.btn-outline-black:not(:disabled):not(.disabled):active:focus, .btn-outline-black:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-black.dropdown-toggle:focus {
- box-shadow: 0 0 0 0 rgba(33, 37, 41, 0.5);
-}
-
-.btn-outline-blue {
- color: #257af4;
- border-color: #257af4;
-}
-.btn-outline-blue:hover {
- color: #fff;
- background-color: #257af4;
- border-color: #257af4;
-}
-.btn-outline-blue:focus, .btn-outline-blue.focus {
- box-shadow: 0 0 0 0 rgba(37, 122, 244, 0.5);
-}
-.btn-outline-blue.disabled, .btn-outline-blue:disabled {
- color: #257af4;
- background-color: transparent;
-}
-.btn-outline-blue:not(:disabled):not(.disabled):active, .btn-outline-blue:not(:disabled):not(.disabled).active, .show > .btn-outline-blue.dropdown-toggle {
- color: #fff;
- background-color: #257af4;
- border-color: #257af4;
-}
-.btn-outline-blue:not(:disabled):not(.disabled):active:focus, .btn-outline-blue:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-blue.dropdown-toggle:focus {
- box-shadow: 0 0 0 0 rgba(37, 122, 244, 0.5);
-}
-
-.btn-outline-light-blue {
- color: #e3f1fe;
- border-color: #e3f1fe;
-}
-.btn-outline-light-blue:hover {
- color: #495057;
- background-color: #e3f1fe;
- border-color: #e3f1fe;
-}
-.btn-outline-light-blue:focus, .btn-outline-light-blue.focus {
- box-shadow: 0 0 0 0 rgba(227, 241, 254, 0.5);
-}
-.btn-outline-light-blue.disabled, .btn-outline-light-blue:disabled {
- color: #e3f1fe;
- background-color: transparent;
-}
-.btn-outline-light-blue:not(:disabled):not(.disabled):active, .btn-outline-light-blue:not(:disabled):not(.disabled).active, .show > .btn-outline-light-blue.dropdown-toggle {
- color: #495057;
- background-color: #e3f1fe;
- border-color: #e3f1fe;
-}
-.btn-outline-light-blue:not(:disabled):not(.disabled):active:focus, .btn-outline-light-blue:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-light-blue.dropdown-toggle:focus {
- box-shadow: 0 0 0 0 rgba(227, 241, 254, 0.5);
-}
-
-.btn-outline-yellow {
- color: #ffcc00;
- border-color: #ffcc00;
-}
-.btn-outline-yellow:hover {
- color: #495057;
- background-color: #ffcc00;
- border-color: #ffcc00;
-}
-.btn-outline-yellow:focus, .btn-outline-yellow.focus {
- box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.5);
-}
-.btn-outline-yellow.disabled, .btn-outline-yellow:disabled {
- color: #ffcc00;
- background-color: transparent;
-}
-.btn-outline-yellow:not(:disabled):not(.disabled):active, .btn-outline-yellow:not(:disabled):not(.disabled).active, .show > .btn-outline-yellow.dropdown-toggle {
- color: #495057;
- background-color: #ffcc00;
- border-color: #ffcc00;
-}
-.btn-outline-yellow:not(:disabled):not(.disabled):active:focus, .btn-outline-yellow:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-yellow.dropdown-toggle:focus {
- box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.5);
-}
-
-.btn-outline-light-yellow {
- color: #fffaf0;
- border-color: #fffaf0;
-}
-.btn-outline-light-yellow:hover {
- color: #495057;
- background-color: #fffaf0;
- border-color: #fffaf0;
-}
-.btn-outline-light-yellow:focus, .btn-outline-light-yellow.focus {
- box-shadow: 0 0 0 0 rgba(255, 250, 240, 0.5);
-}
-.btn-outline-light-yellow.disabled, .btn-outline-light-yellow:disabled {
- color: #fffaf0;
- background-color: transparent;
-}
-.btn-outline-light-yellow:not(:disabled):not(.disabled):active, .btn-outline-light-yellow:not(:disabled):not(.disabled).active, .show > .btn-outline-light-yellow.dropdown-toggle {
- color: #495057;
- background-color: #fffaf0;
- border-color: #fffaf0;
-}
-.btn-outline-light-yellow:not(:disabled):not(.disabled):active:focus, .btn-outline-light-yellow:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-light-yellow.dropdown-toggle:focus {
- box-shadow: 0 0 0 0 rgba(255, 250, 240, 0.5);
-}
-
-.btn-outline-orange {
- color: #ff8c00;
- border-color: #ff8c00;
-}
-.btn-outline-orange:hover {
- color: #495057;
- background-color: #ff8c00;
- border-color: #ff8c00;
-}
-.btn-outline-orange:focus, .btn-outline-orange.focus {
- box-shadow: 0 0 0 0 rgba(255, 140, 0, 0.5);
-}
-.btn-outline-orange.disabled, .btn-outline-orange:disabled {
- color: #ff8c00;
- 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: #495057;
- background-color: #ff8c00;
- border-color: #ff8c00;
-}
-.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: 0 0 0 0 rgba(255, 140, 0, 0.5);
-}
-
-.btn-outline-light-orange {
- color: #ffe4b5;
- border-color: #ffe4b5;
-}
-.btn-outline-light-orange:hover {
- color: #495057;
- background-color: #ffe4b5;
- border-color: #ffe4b5;
-}
-.btn-outline-light-orange:focus, .btn-outline-light-orange.focus {
- box-shadow: 0 0 0 0 rgba(255, 228, 181, 0.5);
-}
-.btn-outline-light-orange.disabled, .btn-outline-light-orange:disabled {
- color: #ffe4b5;
- background-color: transparent;
-}
-.btn-outline-light-orange:not(:disabled):not(.disabled):active, .btn-outline-light-orange:not(:disabled):not(.disabled).active, .show > .btn-outline-light-orange.dropdown-toggle {
- color: #495057;
- background-color: #ffe4b5;
- border-color: #ffe4b5;
-}
-.btn-outline-light-orange:not(:disabled):not(.disabled):active:focus, .btn-outline-light-orange:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-light-orange.dropdown-toggle:focus {
- box-shadow: 0 0 0 0 rgba(255, 228, 181, 0.5);
-}
-
-.btn-outline-red {
- color: #ff3939;
- border-color: #ff3939;
-}
-.btn-outline-red:hover {
- color: #fff;
- background-color: #ff3939;
- border-color: #ff3939;
-}
-.btn-outline-red:focus, .btn-outline-red.focus {
- box-shadow: 0 0 0 0 rgba(255, 57, 57, 0.5);
-}
-.btn-outline-red.disabled, .btn-outline-red:disabled {
- color: #ff3939;
- background-color: transparent;
-}
-.btn-outline-red:not(:disabled):not(.disabled):active, .btn-outline-red:not(:disabled):not(.disabled).active, .show > .btn-outline-red.dropdown-toggle {
- color: #fff;
- background-color: #ff3939;
- border-color: #ff3939;
-}
-.btn-outline-red:not(:disabled):not(.disabled):active:focus, .btn-outline-red:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-red.dropdown-toggle:focus {
- box-shadow: 0 0 0 0 rgba(255, 57, 57, 0.5);
-}
-
-.btn-outline-light-red {
- color: #ffe4e1;
- border-color: #ffe4e1;
-}
-.btn-outline-light-red:hover {
- color: #495057;
- background-color: #ffe4e1;
- border-color: #ffe4e1;
-}
-.btn-outline-light-red:focus, .btn-outline-light-red.focus {
- box-shadow: 0 0 0 0 rgba(255, 228, 225, 0.5);
-}
-.btn-outline-light-red.disabled, .btn-outline-light-red:disabled {
- color: #ffe4e1;
- background-color: transparent;
-}
-.btn-outline-light-red:not(:disabled):not(.disabled):active, .btn-outline-light-red:not(:disabled):not(.disabled).active, .show > .btn-outline-light-red.dropdown-toggle {
- color: #495057;
- background-color: #ffe4e1;
- border-color: #ffe4e1;
-}
-.btn-outline-light-red:not(:disabled):not(.disabled):active:focus, .btn-outline-light-red:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-light-red.dropdown-toggle:focus {
- box-shadow: 0 0 0 0 rgba(255, 228, 225, 0.5);
-}
-
-.btn-outline-medium {
- color: #d6dbdf;
- border-color: #d6dbdf;
-}
-.btn-outline-medium:hover {
- color: #495057;
- background-color: #d6dbdf;
- border-color: #d6dbdf;
-}
-.btn-outline-medium:focus, .btn-outline-medium.focus {
- box-shadow: 0 0 0 0 rgba(214, 219, 223, 0.5);
-}
-.btn-outline-medium.disabled, .btn-outline-medium:disabled {
- color: #d6dbdf;
- background-color: transparent;
-}
-.btn-outline-medium:not(:disabled):not(.disabled):active, .btn-outline-medium:not(:disabled):not(.disabled).active, .show > .btn-outline-medium.dropdown-toggle {
- color: #495057;
- background-color: #d6dbdf;
- border-color: #d6dbdf;
-}
-.btn-outline-medium:not(:disabled):not(.disabled):active:focus, .btn-outline-medium:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-medium.dropdown-toggle:focus {
- box-shadow: 0 0 0 0 rgba(214, 219, 223, 0.5);
-}
-
-.btn-link {
- font-weight: 400;
- color: #ff8c00;
- text-decoration: none;
-}
-.btn-link:hover {
- color: #ff8c00;
- text-decoration: underline;
-}
-.btn-link:focus, .btn-link.focus {
- text-decoration: underline;
- box-shadow: none;
-}
-.btn-link:disabled, .btn-link.disabled {
- color: #d6dbdf;
- pointer-events: none;
-}
-
-.btn-lg, .btn-group-lg > .btn {
- padding: 16px 32px;
- font-size: 1.125rem;
- line-height: 26px;
- border-radius: 8px;
-}
-
-.btn-sm, .btn-group-sm > .btn {
- padding: 12px 32px;
- font-size: 0.875rem;
- line-height: 20px;
- border-radius: 8px;
-}
-
-.btn-block {
- display: block;
- width: 100%;
-}
-.btn-block + .btn-block {
- margin-top: 24px;
-}
-
-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(33, 37, 41, 0.15);
- border-radius: 8px;
-}
-
-.dropdown-menu-left {
- right: auto;
- left: 0;
-}
-
-.dropdown-menu-right {
- right: 0;
- left: auto;
-}
-
-@media (min-width: 400px) {
- .dropdown-menu-xs-left {
- right: auto;
- left: 0;
- }
-
- .dropdown-menu-xs-right {
- right: 0;
- left: auto;
- }
-}
-@media (min-width: 616px) {
- .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: 980px) {
- .dropdown-menu-lg-left {
- right: auto;
- left: 0;
- }
-
- .dropdown-menu-lg-right {
- right: 0;
- left: auto;
- }
-}
-@media (min-width: 1240px) {
- .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: 4px 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: #495057;
- text-align: inherit;
- white-space: nowrap;
- background-color: transparent;
- border: 0;
-}
-.dropdown-item:hover, .dropdown-item:focus {
- color: #3d4349;
- text-decoration: none;
- background-color: #f1f6f9;
-}
-.dropdown-item.active, .dropdown-item:active {
- color: #fff;
- text-decoration: none;
- background-color: #ffcc00;
-}
-.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: #495057;
-}
-
-.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: 24px;
- padding-left: 24px;
-}
-.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: 24px;
- padding-left: 24px;
-}
-
-.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
- padding-right: 24px;
- padding-left: 24px;
-}
-
-.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 0%;
- 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: #6c757d;
- text-align: center;
- white-space: nowrap;
- background-color: #e9ecef;
- border: 1px solid #ced4da;
- border-radius: 8px;
-}
-.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.125rem;
- line-height: 1.5;
- border-radius: 8px;
-}
-
-.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: 8px;
-}
-
-.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: #ffcc00;
- background-color: #ffcc00;
-}
-.custom-control-input:focus ~ .custom-control-label::before {
- box-shadow: 0 0 0 0.2rem rgba(255, 204, 0, 0.25);
-}
-.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
- border-color: #ffe680;
-}
-.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
- color: #fff;
- background-color: #fff0b3;
- border-color: #fff0b3;
-}
-.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: #d6dbdf 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: 8px;
-}
-.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: #ffcc00;
- background-color: #ffcc00;
-}
-.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(255, 204, 0, 0.5);
-}
-.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
- background-color: rgba(255, 204, 0, 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(255, 204, 0, 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: #d6dbdf;
- 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(255, 204, 0, 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: #6c757d;
- 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: 8px;
- -webkit-appearance: none;
- -moz-appearance: none;
- appearance: none;
-}
-.custom-select:focus {
- border-color: #ffe680;
- outline: 0;
- box-shadow: 0 0 0 0.2rem rgba(255, 204, 0, 0.25);
-}
-.custom-select:focus::-ms-value {
- color: #6c757d;
- 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 #6c757d;
-}
-
-.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.125rem;
-}
-
-.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: #ffe680;
- box-shadow: 0 0 0 0.2rem rgba(255, 204, 0, 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: #6c757d;
- background-color: #fff;
- border: 1px solid #ced4da;
- border-radius: 8px;
-}
-.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: #6c757d;
- content: "Browse";
- background-color: #e9ecef;
- border-left: inherit;
- border-radius: 0 8px 8px 0;
-}
-
-.custom-range {
- width: 100%;
- height: 1.4rem;
- padding: 0;
- background-color: transparent;
- -webkit-appearance: none;
- -moz-appearance: none;
- 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(255, 204, 0, 0.25);
-}
-.custom-range:focus::-moz-range-thumb {
- box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(255, 204, 0, 0.25);
-}
-.custom-range:focus::-ms-thumb {
- box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(255, 204, 0, 0.25);
-}
-.custom-range::-moz-focus-outer {
- border: 0;
-}
-.custom-range::-webkit-slider-thumb {
- width: 1rem;
- height: 1rem;
- margin-top: -0.25rem;
- background-color: #ffcc00;
- border: 0;
- border-radius: 1rem;
- -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
- transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
- -webkit-appearance: none;
- appearance: none;
-}
-@media (prefers-reduced-motion: reduce) {
- .custom-range::-webkit-slider-thumb {
- -webkit-transition: none;
- transition: none;
- }
-}
-.custom-range::-webkit-slider-thumb:active {
- background-color: #fff0b3;
-}
-.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: #ffcc00;
- border: 0;
- border-radius: 1rem;
- -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
- transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
- -moz-appearance: none;
- appearance: none;
-}
-@media (prefers-reduced-motion: reduce) {
- .custom-range::-moz-range-thumb {
- -moz-transition: none;
- transition: none;
- }
-}
-.custom-range::-moz-range-thumb:active {
- background-color: #fff0b3;
-}
-.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: #ffcc00;
- border: 0;
- border-radius: 1rem;
- -ms-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
- transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
- appearance: none;
-}
-@media (prefers-reduced-motion: reduce) {
- .custom-range::-ms-thumb {
- -ms-transition: none;
- transition: none;
- }
-}
-.custom-range::-ms-thumb:active {
- background-color: #fff0b3;
-}
-.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: #d6dbdf;
-}
-.custom-range:disabled::-webkit-slider-runnable-track {
- cursor: default;
-}
-.custom-range:disabled::-moz-range-thumb {
- background-color: #d6dbdf;
-}
-.custom-range:disabled::-moz-range-track {
- cursor: default;
-}
-.custom-range:disabled::-ms-thumb {
- background-color: #d6dbdf;
-}
-
-.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 0;
-}
-.nav-link:hover, .nav-link:focus {
- text-decoration: none;
-}
-.nav-link.disabled {
- color: #d6dbdf;
- pointer-events: none;
- cursor: default;
-}
-
-.nav-tabs {
- border-bottom: 1px solid #6c757d;
-}
-.nav-tabs .nav-item {
- margin-bottom: -1px;
-}
-.nav-tabs .nav-link {
- border: 1px solid transparent;
- border-top-left-radius: 8px;
- border-top-right-radius: 8px;
-}
-.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
- border-color: transparent;
-}
-.nav-tabs .nav-link.disabled {
- color: #d6dbdf;
- background-color: transparent;
- border-color: transparent;
-}
-.nav-tabs .nav-link.active,
-.nav-tabs .nav-item.show .nav-link {
- color: #257af4;
- background-color: #fff;
- border-color: #6c757d;
-}
-.nav-tabs .dropdown-menu {
- margin-top: -1px;
- border-top-left-radius: 0;
- border-top-right-radius: 0;
-}
-
-.nav-pills .nav-link {
- border-radius: 8px;
-}
-.nav-pills .nav-link.active,
-.nav-pills .show > .nav-link {
- color: #fff;
- background-color: #ffcc00;
-}
-
-.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: 24px 0;
-}
-.navbar .container,
-.navbar .container-fluid,
-.navbar .container-xs,
-.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.09375rem;
- padding-bottom: -0.09375rem;
- margin-right: 0;
- font-size: 1.125rem;
- 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;
- padding-bottom: 0;
-}
-
-.navbar-collapse {
- flex-basis: 100%;
- flex-grow: 1;
- align-items: center;
-}
-
-.navbar-toggler {
- padding: 0.25rem 0.75rem;
- font-size: 1.125rem;
- line-height: 1;
- background-color: transparent;
- border: 1px solid transparent;
- border-radius: 8px;
-}
-.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: 399.98px) {
- .navbar-expand-xs > .container,
-.navbar-expand-xs > .container-fluid,
-.navbar-expand-xs > .container-xs,
-.navbar-expand-xs > .container-sm,
-.navbar-expand-xs > .container-md,
-.navbar-expand-xs > .container-lg,
-.navbar-expand-xs > .container-xl {
- padding-right: 0;
- padding-left: 0;
- }
-}
-@media (min-width: 400px) {
- .navbar-expand-xs {
- flex-flow: row nowrap;
- justify-content: flex-start;
- }
- .navbar-expand-xs .navbar-nav {
- flex-direction: row;
- }
- .navbar-expand-xs .navbar-nav .dropdown-menu {
- position: absolute;
- }
- .navbar-expand-xs .navbar-nav .nav-link {
- padding-right: 0.5rem;
- padding-left: 0.5rem;
- }
- .navbar-expand-xs > .container,
-.navbar-expand-xs > .container-fluid,
-.navbar-expand-xs > .container-xs,
-.navbar-expand-xs > .container-sm,
-.navbar-expand-xs > .container-md,
-.navbar-expand-xs > .container-lg,
-.navbar-expand-xs > .container-xl {
- flex-wrap: nowrap;
- }
- .navbar-expand-xs .navbar-collapse {
- display: flex !important;
- flex-basis: auto;
- }
- .navbar-expand-xs .navbar-toggler {
- display: none;
- }
-}
-@media (max-width: 615.98px) {
- .navbar-expand-sm > .container,
-.navbar-expand-sm > .container-fluid,
-.navbar-expand-sm > .container-xs,
-.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: 616px) {
- .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-xs,
-.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-xs,
-.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-xs,
-.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: 979.98px) {
- .navbar-expand-lg > .container,
-.navbar-expand-lg > .container-fluid,
-.navbar-expand-lg > .container-xs,
-.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: 980px) {
- .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-xs,
-.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: 1239.98px) {
- .navbar-expand-xl > .container,
-.navbar-expand-xl > .container-fluid,
-.navbar-expand-xl > .container-xs,
-.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: 1240px) {
- .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-xs,
-.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-xs,
-.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-xs,
-.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(33, 37, 41, 0.9);
-}
-.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
- color: rgba(33, 37, 41, 0.9);
-}
-.navbar-light .navbar-nav .nav-link {
- color: rgba(33, 37, 41, 0.5);
-}
-.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
- color: rgba(33, 37, 41, 0.7);
-}
-.navbar-light .navbar-nav .nav-link.disabled {
- color: rgba(33, 37, 41, 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(33, 37, 41, 0.9);
-}
-.navbar-light .navbar-toggler {
- color: rgba(33, 37, 41, 0.5);
- border-color: rgba(33, 37, 41, 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(33, 37, 41, 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(33, 37, 41, 0.5);
-}
-.navbar-light .navbar-text a {
- color: rgba(33, 37, 41, 0.9);
-}
-.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
- color: rgba(33, 37, 41, 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(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: 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 #d6dbdf;
- border-radius: 8px;
-}
-.card > hr {
- margin-right: 0;
- margin-left: 0;
-}
-.card > .list-group:first-child .list-group-item:first-child {
- border-top-left-radius: 8px;
- border-top-right-radius: 8px;
-}
-.card > .list-group:last-child .list-group-item:last-child {
- border-bottom-right-radius: 8px;
- border-bottom-left-radius: 8px;
-}
-
-.card-body {
- flex: 1 1 auto;
- min-height: 1px;
- padding: 24px;
-}
-
-.card-title {
- margin-bottom: 24px;
-}
-
-.card-subtitle {
- margin-top: -12px;
- margin-bottom: 0;
-}
-
-.card-text:last-child {
- margin-bottom: 0;
-}
-
-.card-link:hover {
- text-decoration: none;
-}
-.card-link + .card-link {
- margin-left: 24px;
-}
-
-.card-header {
- padding: 24px 24px;
- margin-bottom: 0;
- background-color: #f1f6f9;
- border-bottom: 1px solid #d6dbdf;
-}
-.card-header:first-child {
- border-radius: subtract(8px, 1px) subtract(8px, 1px) 0 0;
-}
-.card-header + .list-group .list-group-item:first-child {
- border-top: 0;
-}
-
-.card-footer {
- padding: 24px 24px;
- background-color: #f1f6f9;
- border-top: 1px solid #d6dbdf;
-}
-.card-footer:last-child {
- border-radius: 0 0 subtract(8px, 1px) subtract(8px, 1px);
-}
-
-.card-header-tabs {
- margin-right: -12px;
- margin-bottom: -24px;
- margin-left: -12px;
- border-bottom: 0;
-}
-
-.card-header-pills {
- margin-right: -12px;
- margin-left: -12px;
-}
-
-.card-img-overlay {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- padding: 24px;
-}
-
-.card-img,
-.card-img-top,
-.card-img-bottom {
- flex-shrink: 0;
- width: 100%;
-}
-
-.card-img,
-.card-img-top {
- border-top-left-radius: subtract(8px, 1px);
- border-top-right-radius: subtract(8px, 1px);
-}
-
-.card-img,
-.card-img-bottom {
- border-bottom-right-radius: subtract(8px, 1px);
- border-bottom-left-radius: subtract(8px, 1px);
-}
-
-.card-deck .card {
- margin-bottom: 20px;
-}
-@media (min-width: 616px) {
- .card-deck {
- display: flex;
- flex-flow: row wrap;
- margin-right: -20px;
- margin-left: -20px;
- }
- .card-deck .card {
- flex: 1 0 0%;
- margin-right: 20px;
- margin-bottom: 0;
- margin-left: 20px;
- }
-}
-
-.card-group > .card {
- margin-bottom: 20px;
-}
-@media (min-width: 616px) {
- .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: 40px;
-}
-@media (min-width: 616px) {
- .card-columns {
- -moz-column-count: 3;
- column-count: 3;
- -moz-column-gap: 40px;
- column-gap: 40px;
- 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: 8px;
-}
-
-.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: 8px;
-}
-
-.page-link {
- position: relative;
- display: block;
- padding: 0.5rem 0.75rem;
- margin-left: -1px;
- line-height: 1.25;
- color: #ff8c00;
- background-color: #fff;
- border: 1px solid #dee2e6;
-}
-.page-link:hover {
- z-index: 2;
- color: #ff8c00;
- 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(255, 204, 0, 0.25);
-}
-
-.page-item:first-child .page-link {
- margin-left: 0;
- border-top-left-radius: 8px;
- border-bottom-left-radius: 8px;
-}
-.page-item:last-child .page-link {
- border-top-right-radius: 8px;
- border-bottom-right-radius: 8px;
-}
-.page-item.active .page-link {
- z-index: 3;
- color: #fff;
- background-color: #ffcc00;
- border-color: #ffcc00;
-}
-.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.125rem;
- line-height: 1.5;
-}
-.pagination-lg .page-item:first-child .page-link {
- border-top-left-radius: 8px;
- border-bottom-left-radius: 8px;
-}
-.pagination-lg .page-item:last-child .page-link {
- border-top-right-radius: 8px;
- border-bottom-right-radius: 8px;
-}
-
-.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: 8px;
- border-bottom-left-radius: 8px;
-}
-.pagination-sm .page-item:last-child .page-link {
- border-top-right-radius: 8px;
- border-bottom-right-radius: 8px;
-}
-
-.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: 8px;
- 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: #495057;
- background-color: #ffcc00;
-}
-a.badge-primary:hover, a.badge-primary:focus {
- color: #495057;
- background-color: #cca300;
-}
-a.badge-primary:focus, a.badge-primary.focus {
- outline: 0;
- box-shadow: 0 0 0 0.2rem rgba(255, 204, 0, 0.5);
-}
-
-.badge-secondary {
- color: #fff;
- background-color: #212529;
-}
-a.badge-secondary:hover, a.badge-secondary:focus {
- color: #fff;
- background-color: #0a0c0d;
-}
-a.badge-secondary:focus, a.badge-secondary.focus {
- outline: 0;
- box-shadow: 0 0 0 0.2rem rgba(33, 37, 41, 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: #495057;
- background-color: #ffc107;
-}
-a.badge-warning:hover, a.badge-warning:focus {
- color: #495057;
- 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: #495057;
- background-color: #f1f6f9;
-}
-a.badge-light:hover, a.badge-light:focus {
- color: #495057;
- background-color: #cddfea;
-}
-a.badge-light:focus, a.badge-light.focus {
- outline: 0;
- box-shadow: 0 0 0 0.2rem rgba(241, 246, 249, 0.5);
-}
-
-.badge-dark {
- color: #fff;
- background-color: #495057;
-}
-a.badge-dark:hover, a.badge-dark:focus {
- color: #fff;
- background-color: #32373b;
-}
-a.badge-dark:focus, a.badge-dark.focus {
- outline: 0;
- box-shadow: 0 0 0 0.2rem rgba(73, 80, 87, 0.5);
-}
-
-.badge-primary-light {
- color: #495057;
- background-color: #fffaf0;
-}
-a.badge-primary-light:hover, a.badge-primary-light:focus {
- color: #495057;
- background-color: #ffe9bd;
-}
-a.badge-primary-light:focus, a.badge-primary-light.focus {
- outline: 0;
- box-shadow: 0 0 0 0.2rem rgba(255, 250, 240, 0.5);
-}
-
-.badge-secondary-light {
- color: #495057;
- background-color: #fff;
-}
-a.badge-secondary-light:hover, a.badge-secondary-light:focus {
- color: #495057;
- background-color: #e6e6e6;
-}
-a.badge-secondary-light:focus, a.badge-secondary-light.focus {
- outline: 0;
- box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
-}
-
-.badge-tertiary {
- color: #fff;
- background-color: #257af4;
-}
-a.badge-tertiary:hover, a.badge-tertiary:focus {
- color: #fff;
- background-color: #0b60db;
-}
-a.badge-tertiary:focus, a.badge-tertiary.focus {
- outline: 0;
- box-shadow: 0 0 0 0.2rem rgba(37, 122, 244, 0.5);
-}
-
-.badge-tertiary-light {
- color: #495057;
- background-color: #e3f1fe;
-}
-a.badge-tertiary-light:hover, a.badge-tertiary-light:focus {
- color: #495057;
- background-color: #b2d8fc;
-}
-a.badge-tertiary-light:focus, a.badge-tertiary-light.focus {
- outline: 0;
- box-shadow: 0 0 0 0.2rem rgba(227, 241, 254, 0.5);
-}
-
-.badge-white {
- color: #495057;
- background-color: #fff;
-}
-a.badge-white:hover, a.badge-white:focus {
- color: #495057;
- background-color: #e6e6e6;
-}
-a.badge-white:focus, a.badge-white.focus {
- outline: 0;
- box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
-}
-
-.badge-black {
- color: #fff;
- background-color: #212529;
-}
-a.badge-black:hover, a.badge-black:focus {
- color: #fff;
- background-color: #0a0c0d;
-}
-a.badge-black:focus, a.badge-black.focus {
- outline: 0;
- box-shadow: 0 0 0 0.2rem rgba(33, 37, 41, 0.5);
-}
-
-.badge-blue {
- color: #fff;
- background-color: #257af4;
-}
-a.badge-blue:hover, a.badge-blue:focus {
- color: #fff;
- background-color: #0b60db;
-}
-a.badge-blue:focus, a.badge-blue.focus {
- outline: 0;
- box-shadow: 0 0 0 0.2rem rgba(37, 122, 244, 0.5);
-}
-
-.badge-light-blue {
- color: #495057;
- background-color: #e3f1fe;
-}
-a.badge-light-blue:hover, a.badge-light-blue:focus {
- color: #495057;
- background-color: #b2d8fc;
-}
-a.badge-light-blue:focus, a.badge-light-blue.focus {
- outline: 0;
- box-shadow: 0 0 0 0.2rem rgba(227, 241, 254, 0.5);
-}
-
-.badge-yellow {
- color: #495057;
- background-color: #ffcc00;
-}
-a.badge-yellow:hover, a.badge-yellow:focus {
- color: #495057;
- background-color: #cca300;
-}
-a.badge-yellow:focus, a.badge-yellow.focus {
- outline: 0;
- box-shadow: 0 0 0 0.2rem rgba(255, 204, 0, 0.5);
-}
-
-.badge-light-yellow {
- color: #495057;
- background-color: #fffaf0;
-}
-a.badge-light-yellow:hover, a.badge-light-yellow:focus {
- color: #495057;
- background-color: #ffe9bd;
-}
-a.badge-light-yellow:focus, a.badge-light-yellow.focus {
- outline: 0;
- box-shadow: 0 0 0 0.2rem rgba(255, 250, 240, 0.5);
-}
-
-.badge-orange {
- color: #495057;
- background-color: #ff8c00;
-}
-a.badge-orange:hover, a.badge-orange:focus {
- color: #495057;
- background-color: #cc7000;
-}
-a.badge-orange:focus, a.badge-orange.focus {
- outline: 0;
- box-shadow: 0 0 0 0.2rem rgba(255, 140, 0, 0.5);
-}
-
-.badge-light-orange {
- color: #495057;
- background-color: #ffe4b5;
-}
-a.badge-light-orange:hover, a.badge-light-orange:focus {
- color: #495057;
- background-color: #ffd182;
-}
-a.badge-light-orange:focus, a.badge-light-orange.focus {
- outline: 0;
- box-shadow: 0 0 0 0.2rem rgba(255, 228, 181, 0.5);
-}
-
-.badge-red {
- color: #fff;
- background-color: #ff3939;
-}
-a.badge-red:hover, a.badge-red:focus {
- color: #fff;
- background-color: #ff0606;
-}
-a.badge-red:focus, a.badge-red.focus {
- outline: 0;
- box-shadow: 0 0 0 0.2rem rgba(255, 57, 57, 0.5);
-}
-
-.badge-light-red {
- color: #495057;
- background-color: #ffe4e1;
-}
-a.badge-light-red:hover, a.badge-light-red:focus {
- color: #495057;
- background-color: #ffb6ae;
-}
-a.badge-light-red:focus, a.badge-light-red.focus {
- outline: 0;
- box-shadow: 0 0 0 0.2rem rgba(255, 228, 225, 0.5);
-}
-
-.badge-medium {
- color: #495057;
- background-color: #d6dbdf;
-}
-a.badge-medium:hover, a.badge-medium:focus {
- color: #495057;
- background-color: #b9c2c9;
-}
-a.badge-medium:focus, a.badge-medium.focus {
- outline: 0;
- box-shadow: 0 0 0 0.2rem rgba(214, 219, 223, 0.5);
-}
-
-.jumbotron {
- padding: 2rem 1rem;
- margin-bottom: 2rem;
- background-color: #e9ecef;
- border-radius: 8px;
-}
-@media (min-width: 616px) {
- .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: 8px;
-}
-
-.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: #947c14;
- background-color: #fff5cc;
- border-color: #fff1b8;
-}
-.alert-primary hr {
- border-top-color: #ffec9f;
-}
-.alert-primary .alert-link {
- color: #67560e;
-}
-
-.alert-secondary {
- color: #212529;
- background-color: #d3d3d4;
- border-color: #c1c2c3;
-}
-.alert-secondary hr {
- border-top-color: #b4b5b6;
-}
-.alert-secondary .alert-link {
- color: #0a0c0d;
-}
-
-.alert-success {
- color: #256938;
- background-color: #d4edda;
- border-color: #c3e6cb;
-}
-.alert-success hr {
- border-top-color: #b1dfbb;
-}
-.alert-success .alert-link {
- color: #184324;
-}
-
-.alert-info {
- color: #1c6673;
- background-color: #d1ecf1;
- border-color: #bee5eb;
-}
-.alert-info hr {
- border-top-color: #abdde5;
-}
-.alert-info .alert-link {
- color: #12424a;
-}
-
-.alert-warning {
- color: #947617;
- background-color: #fff3cd;
- border-color: #ffeeba;
-}
-.alert-warning hr {
- border-top-color: #ffe8a1;
-}
-.alert-warning .alert-link {
- color: #685310;
-}
-
-.alert-danger {
- color: #822d38;
- background-color: #f8d7da;
- border-color: #f5c6cb;
-}
-.alert-danger hr {
- border-top-color: #f1b0b7;
-}
-.alert-danger .alert-link {
- color: #5c2028;
-}
-
-.alert-light {
- color: #8d9295;
- background-color: #fcfdfe;
- border-color: #fbfcfd;
-}
-.alert-light hr {
- border-top-color: #eaeff5;
-}
-.alert-light .alert-link {
- color: #73797c;
-}
-
-.alert-dark {
- color: #363b41;
- background-color: #dbdcdd;
- border-color: #ccced0;
-}
-.alert-dark hr {
- border-top-color: #bfc1c4;
-}
-.alert-dark .alert-link {
- color: #1f2225;
-}
-
-.alert-primary-light {
- color: #949490;
- background-color: #fffefc;
- border-color: #fffefb;
-}
-.alert-primary-light hr {
- border-top-color: #fff8e2;
-}
-.alert-primary-light .alert-link {
- color: #7b7b76;
-}
-
-.alert-secondary-light {
- color: #949698;
- background-color: white;
- border-color: white;
-}
-.alert-secondary-light hr {
- border-top-color: #f2f2f2;
-}
-.alert-secondary-light .alert-link {
- color: #7a7d7f;
-}
-
-.alert-tertiary {
- color: #235193;
- background-color: #d3e4fd;
- border-color: #c2dafc;
-}
-.alert-tertiary hr {
- border-top-color: #aacbfb;
-}
-.alert-tertiary .alert-link {
- color: #193a6a;
-}
-
-.alert-tertiary-light {
- color: #868f98;
- background-color: #f9fcff;
- border-color: #f7fbff;
-}
-.alert-tertiary-light hr {
- border-top-color: #deeeff;
-}
-.alert-tertiary-light .alert-link {
- color: #6c767f;
-}
-
-.alert-white {
- color: #949698;
- background-color: white;
- border-color: white;
-}
-.alert-white hr {
- border-top-color: #f2f2f2;
-}
-.alert-white .alert-link {
- color: #7a7d7f;
-}
-
-.alert-black {
- color: #212529;
- background-color: #d3d3d4;
- border-color: #c1c2c3;
-}
-.alert-black hr {
- border-top-color: #b4b5b6;
-}
-.alert-black .alert-link {
- color: #0a0c0d;
-}
-
-.alert-blue {
- color: #235193;
- background-color: #d3e4fd;
- border-color: #c2dafc;
-}
-.alert-blue hr {
- border-top-color: #aacbfb;
-}
-.alert-blue .alert-link {
- color: #193a6a;
-}
-
-.alert-light-blue {
- color: #868f98;
- background-color: #f9fcff;
- border-color: #f7fbff;
-}
-.alert-light-blue hr {
- border-top-color: #deeeff;
-}
-.alert-light-blue .alert-link {
- color: #6c767f;
-}
-
-.alert-yellow {
- color: #947c14;
- background-color: #fff5cc;
- border-color: #fff1b8;
-}
-.alert-yellow hr {
- border-top-color: #ffec9f;
-}
-.alert-yellow .alert-link {
- color: #67560e;
-}
-
-.alert-light-yellow {
- color: #949490;
- background-color: #fffefc;
- border-color: #fffefb;
-}
-.alert-light-yellow hr {
- border-top-color: #fff8e2;
-}
-.alert-light-yellow .alert-link {
- color: #7b7b76;
-}
-
-.alert-orange {
- color: #945b14;
- background-color: #ffe8cc;
- border-color: #ffdfb8;
-}
-.alert-orange hr {
- border-top-color: #ffd49f;
-}
-.alert-orange .alert-link {
- color: #673f0e;
-}
-
-.alert-light-orange {
- color: #948872;
- background-color: floralwhite;
- border-color: #fff7ea;
-}
-.alert-light-orange hr {
- border-top-color: #ffedd1;
-}
-.alert-light-orange .alert-link {
- color: #786e5b;
-}
-
-.alert-red {
- color: #942f31;
- background-color: #ffd7d7;
- border-color: #ffc8c8;
-}
-.alert-red hr {
- border-top-color: #ffafaf;
-}
-.alert-red .alert-link {
- color: #6d2324;
-}
-
-.alert-light-red {
- color: #948889;
- background-color: #fffaf9;
- border-color: #fff7f7;
-}
-.alert-light-red hr {
- border-top-color: #ffdede;
-}
-.alert-light-red .alert-link {
- color: #7b6e6f;
-}
-
-.alert-medium {
- color: #7f8488;
- background-color: #f7f8f9;
- border-color: #f4f5f6;
-}
-.alert-medium hr {
- border-top-color: #e6e8eb;
-}
-.alert-medium .alert-link {
- color: #666a6e;
-}
-
-@-webkit-keyframes progress-bar-stripes {
- from {
- background-position: 1rem 0;
- }
- to {
- background-position: 0 0;
- }
-}
-
-@keyframes progress-bar-stripes {
- from {
- background-position: 1rem 0;
- }
- to {
- background-position: 0 0;
- }
-}
-.progress {
- display: flex;
- height: 1rem;
- overflow: hidden;
- font-size: 0.75rem;
- background-color: #e9ecef;
- border-radius: 8px;
-}
-
-.progress-bar {
- display: flex;
- flex-direction: column;
- justify-content: center;
- overflow: hidden;
- color: #fff;
- text-align: center;
- white-space: nowrap;
- background-color: #ffcc00;
- 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 {
- -webkit-animation: progress-bar-stripes 1s linear infinite;
- animation: progress-bar-stripes 1s linear infinite;
-}
-@media (prefers-reduced-motion: reduce) {
- .progress-bar-animated {
- -webkit-animation: none;
- 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;
-}
-
-.list-group-item-action {
- width: 100%;
- color: #6c757d;
- text-align: inherit;
-}
-.list-group-item-action:hover, .list-group-item-action:focus {
- z-index: 1;
- color: #6c757d;
- text-decoration: none;
- background-color: #f1f6f9;
-}
-.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(33, 37, 41, 0.125);
-}
-.list-group-item:first-child {
- border-top-left-radius: 8px;
- border-top-right-radius: 8px;
-}
-.list-group-item:last-child {
- border-bottom-right-radius: 8px;
- border-bottom-left-radius: 8px;
-}
-.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: #ffcc00;
- border-color: #ffcc00;
-}
-.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: 8px;
- border-top-right-radius: 0;
-}
-.list-group-horizontal .list-group-item:last-child {
- border-top-right-radius: 8px;
- 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: 400px) {
- .list-group-horizontal-xs {
- flex-direction: row;
- }
- .list-group-horizontal-xs .list-group-item:first-child {
- border-bottom-left-radius: 8px;
- border-top-right-radius: 0;
- }
- .list-group-horizontal-xs .list-group-item:last-child {
- border-top-right-radius: 8px;
- border-bottom-left-radius: 0;
- }
- .list-group-horizontal-xs .list-group-item.active {
- margin-top: 0;
- }
- .list-group-horizontal-xs .list-group-item + .list-group-item {
- border-top-width: 1px;
- border-left-width: 0;
- }
- .list-group-horizontal-xs .list-group-item + .list-group-item.active {
- margin-left: -1px;
- border-left-width: 1px;
- }
-}
-@media (min-width: 616px) {
- .list-group-horizontal-sm {
- flex-direction: row;
- }
- .list-group-horizontal-sm .list-group-item:first-child {
- border-bottom-left-radius: 8px;
- border-top-right-radius: 0;
- }
- .list-group-horizontal-sm .list-group-item:last-child {
- border-top-right-radius: 8px;
- 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: 8px;
- border-top-right-radius: 0;
- }
- .list-group-horizontal-md .list-group-item:last-child {
- border-top-right-radius: 8px;
- 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: 980px) {
- .list-group-horizontal-lg {
- flex-direction: row;
- }
- .list-group-horizontal-lg .list-group-item:first-child {
- border-bottom-left-radius: 8px;
- border-top-right-radius: 0;
- }
- .list-group-horizontal-lg .list-group-item:last-child {
- border-top-right-radius: 8px;
- 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: 1240px) {
- .list-group-horizontal-xl {
- flex-direction: row;
- }
- .list-group-horizontal-xl .list-group-item:first-child {
- border-bottom-left-radius: 8px;
- border-top-right-radius: 0;
- }
- .list-group-horizontal-xl .list-group-item:last-child {
- border-top-right-radius: 8px;
- 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 .list-group-item {
- border-right-width: 0;
- border-left-width: 0;
- border-radius: 0;
-}
-.list-group-flush .list-group-item:first-child {
- border-top-width: 0;
-}
-.list-group-flush:last-child .list-group-item:last-child {
- border-bottom-width: 0;
-}
-
-.list-group-item-primary {
- color: #947c14;
- background-color: #fff1b8;
-}
-.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
- color: #947c14;
- background-color: #ffec9f;
-}
-.list-group-item-primary.list-group-item-action.active {
- color: #fff;
- background-color: #947c14;
- border-color: #947c14;
-}
-
-.list-group-item-secondary {
- color: #212529;
- background-color: #c1c2c3;
-}
-.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
- color: #212529;
- background-color: #b4b5b6;
-}
-.list-group-item-secondary.list-group-item-action.active {
- color: #fff;
- background-color: #212529;
- border-color: #212529;
-}
-
-.list-group-item-success {
- color: #256938;
- background-color: #c3e6cb;
-}
-.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
- color: #256938;
- background-color: #b1dfbb;
-}
-.list-group-item-success.list-group-item-action.active {
- color: #fff;
- background-color: #256938;
- border-color: #256938;
-}
-
-.list-group-item-info {
- color: #1c6673;
- background-color: #bee5eb;
-}
-.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
- color: #1c6673;
- background-color: #abdde5;
-}
-.list-group-item-info.list-group-item-action.active {
- color: #fff;
- background-color: #1c6673;
- border-color: #1c6673;
-}
-
-.list-group-item-warning {
- color: #947617;
- background-color: #ffeeba;
-}
-.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
- color: #947617;
- background-color: #ffe8a1;
-}
-.list-group-item-warning.list-group-item-action.active {
- color: #fff;
- background-color: #947617;
- border-color: #947617;
-}
-
-.list-group-item-danger {
- color: #822d38;
- background-color: #f5c6cb;
-}
-.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
- color: #822d38;
- background-color: #f1b0b7;
-}
-.list-group-item-danger.list-group-item-action.active {
- color: #fff;
- background-color: #822d38;
- border-color: #822d38;
-}
-
-.list-group-item-light {
- color: #8d9295;
- background-color: #fbfcfd;
-}
-.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
- color: #8d9295;
- background-color: #eaeff5;
-}
-.list-group-item-light.list-group-item-action.active {
- color: #fff;
- background-color: #8d9295;
- border-color: #8d9295;
-}
-
-.list-group-item-dark {
- color: #363b41;
- background-color: #ccced0;
-}
-.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
- color: #363b41;
- background-color: #bfc1c4;
-}
-.list-group-item-dark.list-group-item-action.active {
- color: #fff;
- background-color: #363b41;
- border-color: #363b41;
-}
-
-.list-group-item-primary-light {
- color: #949490;
- background-color: #fffefb;
-}
-.list-group-item-primary-light.list-group-item-action:hover, .list-group-item-primary-light.list-group-item-action:focus {
- color: #949490;
- background-color: #fff8e2;
-}
-.list-group-item-primary-light.list-group-item-action.active {
- color: #fff;
- background-color: #949490;
- border-color: #949490;
-}
-
-.list-group-item-secondary-light {
- color: #949698;
- background-color: white;
-}
-.list-group-item-secondary-light.list-group-item-action:hover, .list-group-item-secondary-light.list-group-item-action:focus {
- color: #949698;
- background-color: #f2f2f2;
-}
-.list-group-item-secondary-light.list-group-item-action.active {
- color: #fff;
- background-color: #949698;
- border-color: #949698;
-}
-
-.list-group-item-tertiary {
- color: #235193;
- background-color: #c2dafc;
-}
-.list-group-item-tertiary.list-group-item-action:hover, .list-group-item-tertiary.list-group-item-action:focus {
- color: #235193;
- background-color: #aacbfb;
-}
-.list-group-item-tertiary.list-group-item-action.active {
- color: #fff;
- background-color: #235193;
- border-color: #235193;
-}
-
-.list-group-item-tertiary-light {
- color: #868f98;
- background-color: #f7fbff;
-}
-.list-group-item-tertiary-light.list-group-item-action:hover, .list-group-item-tertiary-light.list-group-item-action:focus {
- color: #868f98;
- background-color: #deeeff;
-}
-.list-group-item-tertiary-light.list-group-item-action.active {
- color: #fff;
- background-color: #868f98;
- border-color: #868f98;
-}
-
-.list-group-item-white {
- color: #949698;
- background-color: white;
-}
-.list-group-item-white.list-group-item-action:hover, .list-group-item-white.list-group-item-action:focus {
- color: #949698;
- background-color: #f2f2f2;
-}
-.list-group-item-white.list-group-item-action.active {
- color: #fff;
- background-color: #949698;
- border-color: #949698;
-}
-
-.list-group-item-black {
- color: #212529;
- background-color: #c1c2c3;
-}
-.list-group-item-black.list-group-item-action:hover, .list-group-item-black.list-group-item-action:focus {
- color: #212529;
- background-color: #b4b5b6;
-}
-.list-group-item-black.list-group-item-action.active {
- color: #fff;
- background-color: #212529;
- border-color: #212529;
-}
-
-.list-group-item-blue {
- color: #235193;
- background-color: #c2dafc;
-}
-.list-group-item-blue.list-group-item-action:hover, .list-group-item-blue.list-group-item-action:focus {
- color: #235193;
- background-color: #aacbfb;
-}
-.list-group-item-blue.list-group-item-action.active {
- color: #fff;
- background-color: #235193;
- border-color: #235193;
-}
-
-.list-group-item-light-blue {
- color: #868f98;
- background-color: #f7fbff;
-}
-.list-group-item-light-blue.list-group-item-action:hover, .list-group-item-light-blue.list-group-item-action:focus {
- color: #868f98;
- background-color: #deeeff;
-}
-.list-group-item-light-blue.list-group-item-action.active {
- color: #fff;
- background-color: #868f98;
- border-color: #868f98;
-}
-
-.list-group-item-yellow {
- color: #947c14;
- background-color: #fff1b8;
-}
-.list-group-item-yellow.list-group-item-action:hover, .list-group-item-yellow.list-group-item-action:focus {
- color: #947c14;
- background-color: #ffec9f;
-}
-.list-group-item-yellow.list-group-item-action.active {
- color: #fff;
- background-color: #947c14;
- border-color: #947c14;
-}
-
-.list-group-item-light-yellow {
- color: #949490;
- background-color: #fffefb;
-}
-.list-group-item-light-yellow.list-group-item-action:hover, .list-group-item-light-yellow.list-group-item-action:focus {
- color: #949490;
- background-color: #fff8e2;
-}
-.list-group-item-light-yellow.list-group-item-action.active {
- color: #fff;
- background-color: #949490;
- border-color: #949490;
-}
-
-.list-group-item-orange {
- color: #945b14;
- background-color: #ffdfb8;
-}
-.list-group-item-orange.list-group-item-action:hover, .list-group-item-orange.list-group-item-action:focus {
- color: #945b14;
- background-color: #ffd49f;
-}
-.list-group-item-orange.list-group-item-action.active {
- color: #fff;
- background-color: #945b14;
- border-color: #945b14;
-}
-
-.list-group-item-light-orange {
- color: #948872;
- background-color: #fff7ea;
-}
-.list-group-item-light-orange.list-group-item-action:hover, .list-group-item-light-orange.list-group-item-action:focus {
- color: #948872;
- background-color: #ffedd1;
-}
-.list-group-item-light-orange.list-group-item-action.active {
- color: #fff;
- background-color: #948872;
- border-color: #948872;
-}
-
-.list-group-item-red {
- color: #942f31;
- background-color: #ffc8c8;
-}
-.list-group-item-red.list-group-item-action:hover, .list-group-item-red.list-group-item-action:focus {
- color: #942f31;
- background-color: #ffafaf;
-}
-.list-group-item-red.list-group-item-action.active {
- color: #fff;
- background-color: #942f31;
- border-color: #942f31;
-}
-
-.list-group-item-light-red {
- color: #948889;
- background-color: #fff7f7;
-}
-.list-group-item-light-red.list-group-item-action:hover, .list-group-item-light-red.list-group-item-action:focus {
- color: #948889;
- background-color: #ffdede;
-}
-.list-group-item-light-red.list-group-item-action.active {
- color: #fff;
- background-color: #948889;
- border-color: #948889;
-}
-
-.list-group-item-medium {
- color: #7f8488;
- background-color: #f4f5f6;
-}
-.list-group-item-medium.list-group-item-action:hover, .list-group-item-medium.list-group-item-action:focus {
- color: #7f8488;
- background-color: #e6e8eb;
-}
-.list-group-item-medium.list-group-item-action.active {
- color: #fff;
- background-color: #7f8488;
- border-color: #7f8488;
-}
-
-.close {
- float: right;
- font-size: 1.5rem;
- font-weight: 700;
- line-height: 1;
- color: #212529;
- text-shadow: 0 1px 0 #fff;
- opacity: 0.5;
-}
-@media (max-width: 1200px) {
- .close {
- font-size: calc(1.275rem + 0.3vw);
- }
-}
-.close:hover {
- color: #212529;
- 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;
- -webkit-appearance: none;
- -moz-appearance: none;
- appearance: none;
-}
-
-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(33, 37, 41, 0.1);
- -webkit-backdrop-filter: blur(10px);
- 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);
- 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(33, 37, 41, 0.2);
- border-radius: 8px;
- outline: 0;
-}
-
-.modal-backdrop {
- position: fixed;
- top: 0;
- left: 0;
- z-index: 1040;
- width: 100vw;
- height: 100vh;
- background-color: #212529;
-}
-.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 #d6dbdf;
- border-top-left-radius: 7px;
- border-top-right-radius: 7px;
-}
-.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 #d6dbdf;
- border-bottom-right-radius: 7px;
- border-bottom-left-radius: 7px;
-}
-.modal-footer > * {
- margin: 0.25rem;
-}
-
-.modal-scrollbar-measure {
- position: absolute;
- top: -9999px;
- width: 50px;
- height: 50px;
- overflow: scroll;
-}
-
-@media (min-width: 616px) {
- .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);
- }
-
- .modal-sm {
- max-width: 300px;
- }
-}
-@media (min-width: 980px) {
- .modal-lg,
-.modal-xl {
- max-width: 800px;
- }
-}
-@media (min-width: 1240px) {
- .modal-xl {
- max-width: 1140px;
- }
-}
-.tooltip {
- position: absolute;
- z-index: 1070;
- display: block;
- margin: 0;
- font-family: "Noto Sans", 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.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: #212529;
-}
-
-.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: #212529;
-}
-
-.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: #212529;
-}
-
-.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: #212529;
-}
-
-.tooltip-inner {
- max-width: 200px;
- padding: 0.25rem 0.5rem;
- color: #fff;
- text-align: center;
- background-color: #212529;
- border-radius: 8px;
-}
-
-.popover {
- position: absolute;
- top: 0;
- left: 0;
- z-index: 1060;
- display: block;
- max-width: 276px;
- font-family: "Noto Sans", 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.875rem;
- word-wrap: break-word;
- background-color: #fff;
- background-clip: padding-box;
- border: 1px solid rgba(33, 37, 41, 0.2);
- border-radius: 8px;
-}
-.popover .arrow {
- position: absolute;
- display: block;
- width: 1rem;
- height: 0.5rem;
- margin: 0 8px;
-}
-.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(33, 37, 41, 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: 8px 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(33, 37, 41, 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(33, 37, 41, 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: 8px 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(33, 37, 41, 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: 7px;
- border-top-right-radius: 7px;
-}
-.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%;
- -webkit-backface-visibility: hidden;
- 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;
-}
-
-@-webkit-keyframes spinner-border {
- to {
- transform: rotate(360deg);
- }
-}
-
-@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%;
- -webkit-animation: spinner-border 0.75s linear infinite;
- animation: spinner-border 0.75s linear infinite;
-}
-
-.spinner-border-sm {
- width: 1rem;
- height: 1rem;
- border-width: 0.2em;
-}
-
-@-webkit-keyframes spinner-grow {
- 0% {
- transform: scale(0);
- }
- 50% {
- opacity: 1;
- }
-}
-
-@keyframes spinner-grow {
- 0% {
- transform: scale(0);
- }
- 50% {
- opacity: 1;
- }
-}
-.spinner-grow {
- display: inline-block;
- width: 2rem;
- height: 2rem;
- vertical-align: text-bottom;
- background-color: currentColor;
- border-radius: 50%;
- opacity: 0;
- -webkit-animation: spinner-grow 0.75s linear infinite;
- animation: spinner-grow 0.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: #ffcc00 !important;
-}
-
-a.bg-primary:hover, a.bg-primary:focus,
-button.bg-primary:hover,
-button.bg-primary:focus {
- background-color: #cca300 !important;
-}
-
-.bg-secondary {
- background-color: #212529 !important;
-}
-
-a.bg-secondary:hover, a.bg-secondary:focus,
-button.bg-secondary:hover,
-button.bg-secondary:focus {
- background-color: #0a0c0d !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: #f1f6f9 !important;
-}
-
-a.bg-light:hover, a.bg-light:focus,
-button.bg-light:hover,
-button.bg-light:focus {
- background-color: #cddfea !important;
-}
-
-.bg-dark {
- background-color: #495057 !important;
-}
-
-a.bg-dark:hover, a.bg-dark:focus,
-button.bg-dark:hover,
-button.bg-dark:focus {
- background-color: #32373b !important;
-}
-
-.bg-primary-light {
- background-color: #fffaf0 !important;
-}
-
-a.bg-primary-light:hover, a.bg-primary-light:focus,
-button.bg-primary-light:hover,
-button.bg-primary-light:focus {
- background-color: #ffe9bd !important;
-}
-
-.bg-secondary-light {
- background-color: #fff !important;
-}
-
-a.bg-secondary-light:hover, a.bg-secondary-light:focus,
-button.bg-secondary-light:hover,
-button.bg-secondary-light:focus {
- background-color: #e6e6e6 !important;
-}
-
-.bg-tertiary {
- background-color: #257af4 !important;
-}
-
-a.bg-tertiary:hover, a.bg-tertiary:focus,
-button.bg-tertiary:hover,
-button.bg-tertiary:focus {
- background-color: #0b60db !important;
-}
-
-.bg-tertiary-light {
- background-color: #e3f1fe !important;
-}
-
-a.bg-tertiary-light:hover, a.bg-tertiary-light:focus,
-button.bg-tertiary-light:hover,
-button.bg-tertiary-light:focus {
- background-color: #b2d8fc !important;
-}
-
-.bg-white {
- background-color: #fff !important;
-}
-
-a.bg-white:hover, a.bg-white:focus,
-button.bg-white:hover,
-button.bg-white:focus {
- background-color: #e6e6e6 !important;
-}
-
-.bg-black {
- background-color: #212529 !important;
-}
-
-a.bg-black:hover, a.bg-black:focus,
-button.bg-black:hover,
-button.bg-black:focus {
- background-color: #0a0c0d !important;
-}
-
-.bg-blue {
- background-color: #257af4 !important;
-}
-
-a.bg-blue:hover, a.bg-blue:focus,
-button.bg-blue:hover,
-button.bg-blue:focus {
- background-color: #0b60db !important;
-}
-
-.bg-light-blue {
- background-color: #e3f1fe !important;
-}
-
-a.bg-light-blue:hover, a.bg-light-blue:focus,
-button.bg-light-blue:hover,
-button.bg-light-blue:focus {
- background-color: #b2d8fc !important;
-}
-
-.bg-yellow {
- background-color: #ffcc00 !important;
-}
-
-a.bg-yellow:hover, a.bg-yellow:focus,
-button.bg-yellow:hover,
-button.bg-yellow:focus {
- background-color: #cca300 !important;
-}
-
-.bg-light-yellow {
- background-color: #fffaf0 !important;
-}
-
-a.bg-light-yellow:hover, a.bg-light-yellow:focus,
-button.bg-light-yellow:hover,
-button.bg-light-yellow:focus {
- background-color: #ffe9bd !important;
-}
-
-.bg-orange {
- background-color: #ff8c00 !important;
-}
-
-a.bg-orange:hover, a.bg-orange:focus,
-button.bg-orange:hover,
-button.bg-orange:focus {
- background-color: #cc7000 !important;
-}
-
-.bg-light-orange {
- background-color: #ffe4b5 !important;
-}
-
-a.bg-light-orange:hover, a.bg-light-orange:focus,
-button.bg-light-orange:hover,
-button.bg-light-orange:focus {
- background-color: #ffd182 !important;
-}
-
-.bg-red {
- background-color: #ff3939 !important;
-}
-
-a.bg-red:hover, a.bg-red:focus,
-button.bg-red:hover,
-button.bg-red:focus {
- background-color: #ff0606 !important;
-}
-
-.bg-light-red {
- background-color: #ffe4e1 !important;
-}
-
-a.bg-light-red:hover, a.bg-light-red:focus,
-button.bg-light-red:hover,
-button.bg-light-red:focus {
- background-color: #ffb6ae !important;
-}
-
-.bg-medium {
- background-color: #d6dbdf !important;
-}
-
-a.bg-medium:hover, a.bg-medium:focus,
-button.bg-medium:hover,
-button.bg-medium:focus {
- background-color: #b9c2c9 !important;
-}
-
-.bg-white {
- background-color: #fff !important;
-}
-
-.bg-transparent {
- background-color: transparent !important;
-}
-
-.border {
- border: 1px solid #d6dbdf !important;
-}
-
-.border-top {
- border-top: 1px solid #d6dbdf !important;
-}
-
-.border-right {
- border-right: 1px solid #d6dbdf !important;
-}
-
-.border-bottom {
- border-bottom: 1px solid #d6dbdf !important;
-}
-
-.border-left {
- border-left: 1px solid #d6dbdf !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: #ffcc00 !important;
-}
-
-.border-secondary {
- border-color: #212529 !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: #f1f6f9 !important;
-}
-
-.border-dark {
- border-color: #495057 !important;
-}
-
-.border-primary-light {
- border-color: #fffaf0 !important;
-}
-
-.border-secondary-light {
- border-color: #fff !important;
-}
-
-.border-tertiary {
- border-color: #257af4 !important;
-}
-
-.border-tertiary-light {
- border-color: #e3f1fe !important;
-}
-
-.border-white {
- border-color: #fff !important;
-}
-
-.border-black {
- border-color: #212529 !important;
-}
-
-.border-blue {
- border-color: #257af4 !important;
-}
-
-.border-light-blue {
- border-color: #e3f1fe !important;
-}
-
-.border-yellow {
- border-color: #ffcc00 !important;
-}
-
-.border-light-yellow {
- border-color: #fffaf0 !important;
-}
-
-.border-orange {
- border-color: #ff8c00 !important;
-}
-
-.border-light-orange {
- border-color: #ffe4b5 !important;
-}
-
-.border-red {
- border-color: #ff3939 !important;
-}
-
-.border-light-red {
- border-color: #ffe4e1 !important;
-}
-
-.border-medium {
- border-color: #d6dbdf !important;
-}
-
-.border-white {
- border-color: #fff !important;
-}
-
-.rounded-sm {
- border-radius: 8px !important;
-}
-
-.rounded {
- border-radius: 8px !important;
-}
-
-.rounded-top {
- border-top-left-radius: 8px !important;
- border-top-right-radius: 8px !important;
-}
-
-.rounded-right {
- border-top-right-radius: 8px !important;
- border-bottom-right-radius: 8px !important;
-}
-
-.rounded-bottom {
- border-bottom-right-radius: 8px !important;
- border-bottom-left-radius: 8px !important;
-}
-
-.rounded-left {
- border-top-left-radius: 8px !important;
- border-bottom-left-radius: 8px !important;
-}
-
-.rounded-lg {
- border-radius: 8px !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: 400px) {
- .d-xs-none {
- display: none !important;
- }
-
- .d-xs-inline {
- display: inline !important;
- }
-
- .d-xs-inline-block {
- display: inline-block !important;
- }
-
- .d-xs-block {
- display: block !important;
- }
-
- .d-xs-table {
- display: table !important;
- }
-
- .d-xs-table-row {
- display: table-row !important;
- }
-
- .d-xs-table-cell {
- display: table-cell !important;
- }
-
- .d-xs-flex {
- display: flex !important;
- }
-
- .d-xs-inline-flex {
- display: inline-flex !important;
- }
-}
-@media (min-width: 616px) {
- .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: 980px) {
- .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: 1240px) {
- .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.8571428571%;
-}
-
-.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: 400px) {
- .flex-xs-row {
- flex-direction: row !important;
- }
-
- .flex-xs-column {
- flex-direction: column !important;
- }
-
- .flex-xs-row-reverse {
- flex-direction: row-reverse !important;
- }
-
- .flex-xs-column-reverse {
- flex-direction: column-reverse !important;
- }
-
- .flex-xs-wrap {
- flex-wrap: wrap !important;
- }
-
- .flex-xs-nowrap {
- flex-wrap: nowrap !important;
- }
-
- .flex-xs-wrap-reverse {
- flex-wrap: wrap-reverse !important;
- }
-
- .flex-xs-fill {
- flex: 1 1 auto !important;
- }
-
- .flex-xs-grow-0 {
- flex-grow: 0 !important;
- }
-
- .flex-xs-grow-1 {
- flex-grow: 1 !important;
- }
-
- .flex-xs-shrink-0 {
- flex-shrink: 0 !important;
- }
-
- .flex-xs-shrink-1 {
- flex-shrink: 1 !important;
- }
-
- .justify-content-xs-start {
- justify-content: flex-start !important;
- }
-
- .justify-content-xs-end {
- justify-content: flex-end !important;
- }
-
- .justify-content-xs-center {
- justify-content: center !important;
- }
-
- .justify-content-xs-between {
- justify-content: space-between !important;
- }
-
- .justify-content-xs-around {
- justify-content: space-around !important;
- }
-
- .align-items-xs-start {
- align-items: flex-start !important;
- }
-
- .align-items-xs-end {
- align-items: flex-end !important;
- }
-
- .align-items-xs-center {
- align-items: center !important;
- }
-
- .align-items-xs-baseline {
- align-items: baseline !important;
- }
-
- .align-items-xs-stretch {
- align-items: stretch !important;
- }
-
- .align-content-xs-start {
- align-content: flex-start !important;
- }
-
- .align-content-xs-end {
- align-content: flex-end !important;
- }
-
- .align-content-xs-center {
- align-content: center !important;
- }
-
- .align-content-xs-between {
- align-content: space-between !important;
- }
-
- .align-content-xs-around {
- align-content: space-around !important;
- }
-
- .align-content-xs-stretch {
- align-content: stretch !important;
- }
-
- .align-self-xs-auto {
- align-self: auto !important;
- }
-
- .align-self-xs-start {
- align-self: flex-start !important;
- }
-
- .align-self-xs-end {
- align-self: flex-end !important;
- }
-
- .align-self-xs-center {
- align-self: center !important;
- }
-
- .align-self-xs-baseline {
- align-self: baseline !important;
- }
-
- .align-self-xs-stretch {
- align-self: stretch !important;
- }
-}
-@media (min-width: 616px) {
- .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: 980px) {
- .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: 1240px) {
- .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: 400px) {
- .float-xs-left {
- float: left !important;
- }
-
- .float-xs-right {
- float: right !important;
- }
-
- .float-xs-none {
- float: none !important;
- }
-}
-@media (min-width: 616px) {
- .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: 980px) {
- .float-lg-left {
- float: left !important;
- }
-
- .float-lg-right {
- float: right !important;
- }
-
- .float-lg-none {
- float: none !important;
- }
-}
-@media (min-width: 1240px) {
- .float-xl-left {
- float: left !important;
- }
-
- .float-xl-right {
- float: right !important;
- }
-
- .float-xl-none {
- float: 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 2px 14px rgba(108, 117, 125, 0.2) !important;
-}
-
-.shadow {
- box-shadow: 0 8px 20px rgba(108, 117, 125, 0.2) !important;
-}
-
-.shadow-lg {
- box-shadow: 0 12px 32px rgba(108, 117, 125, 0.2) !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;
-}
-
-.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);
-}
-
-.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: 8px !important;
-}
-
-.mt-1,
-.my-1 {
- margin-top: 8px !important;
-}
-
-.mr-1,
-.mx-1 {
- margin-right: 8px !important;
-}
-
-.mb-1,
-.my-1 {
- margin-bottom: 8px !important;
-}
-
-.ml-1,
-.mx-1 {
- margin-left: 8px !important;
-}
-
-.m-2 {
- margin: 16px !important;
-}
-
-.mt-2,
-.my-2 {
- margin-top: 16px !important;
-}
-
-.mr-2,
-.mx-2 {
- margin-right: 16px !important;
-}
-
-.mb-2,
-.my-2 {
- margin-bottom: 16px !important;
-}
-
-.ml-2,
-.mx-2 {
- margin-left: 16px !important;
-}
-
-.m-3 {
- margin: 24px !important;
-}
-
-.mt-3,
-.my-3 {
- margin-top: 24px !important;
-}
-
-.mr-3,
-.mx-3 {
- margin-right: 24px !important;
-}
-
-.mb-3,
-.my-3 {
- margin-bottom: 24px !important;
-}
-
-.ml-3,
-.mx-3 {
- margin-left: 24px !important;
-}
-
-.m-4 {
- margin: 32px !important;
-}
-
-.mt-4,
-.my-4 {
- margin-top: 32px !important;
-}
-
-.mr-4,
-.mx-4 {
- margin-right: 32px !important;
-}
-
-.mb-4,
-.my-4 {
- margin-bottom: 32px !important;
-}
-
-.ml-4,
-.mx-4 {
- margin-left: 32px !important;
-}
-
-.m-5 {
- margin: 40px !important;
-}
-
-.mt-5,
-.my-5 {
- margin-top: 40px !important;
-}
-
-.mr-5,
-.mx-5 {
- margin-right: 40px !important;
-}
-
-.mb-5,
-.my-5 {
- margin-bottom: 40px !important;
-}
-
-.ml-5,
-.mx-5 {
- margin-left: 40px !important;
-}
-
-.m-6 {
- margin: 48px !important;
-}
-
-.mt-6,
-.my-6 {
- margin-top: 48px !important;
-}
-
-.mr-6,
-.mx-6 {
- margin-right: 48px !important;
-}
-
-.mb-6,
-.my-6 {
- margin-bottom: 48px !important;
-}
-
-.ml-6,
-.mx-6 {
- margin-left: 48px !important;
-}
-
-.m-7 {
- margin: 56px !important;
-}
-
-.mt-7,
-.my-7 {
- margin-top: 56px !important;
-}
-
-.mr-7,
-.mx-7 {
- margin-right: 56px !important;
-}
-
-.mb-7,
-.my-7 {
- margin-bottom: 56px !important;
-}
-
-.ml-7,
-.mx-7 {
- margin-left: 56px !important;
-}
-
-.m-8 {
- margin: 64px !important;
-}
-
-.mt-8,
-.my-8 {
- margin-top: 64px !important;
-}
-
-.mr-8,
-.mx-8 {
- margin-right: 64px !important;
-}
-
-.mb-8,
-.my-8 {
- margin-bottom: 64px !important;
-}
-
-.ml-8,
-.mx-8 {
- margin-left: 64px !important;
-}
-
-.m-9 {
- margin: 72px !important;
-}
-
-.mt-9,
-.my-9 {
- margin-top: 72px !important;
-}
-
-.mr-9,
-.mx-9 {
- margin-right: 72px !important;
-}
-
-.mb-9,
-.my-9 {
- margin-bottom: 72px !important;
-}
-
-.ml-9,
-.mx-9 {
- margin-left: 72px !important;
-}
-
-.m-10 {
- margin: 80px !important;
-}
-
-.mt-10,
-.my-10 {
- margin-top: 80px !important;
-}
-
-.mr-10,
-.mx-10 {
- margin-right: 80px !important;
-}
-
-.mb-10,
-.my-10 {
- margin-bottom: 80px !important;
-}
-
-.ml-10,
-.mx-10 {
- margin-left: 80px !important;
-}
-
-.m-12 {
- margin: 96px !important;
-}
-
-.mt-12,
-.my-12 {
- margin-top: 96px !important;
-}
-
-.mr-12,
-.mx-12 {
- margin-right: 96px !important;
-}
-
-.mb-12,
-.my-12 {
- margin-bottom: 96px !important;
-}
-
-.ml-12,
-.mx-12 {
- margin-left: 96px !important;
-}
-
-.m-15 {
- margin: 120px !important;
-}
-
-.mt-15,
-.my-15 {
- margin-top: 120px !important;
-}
-
-.mr-15,
-.mx-15 {
- margin-right: 120px !important;
-}
-
-.mb-15,
-.my-15 {
- margin-bottom: 120px !important;
-}
-
-.ml-15,
-.mx-15 {
- margin-left: 120px !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: 8px !important;
-}
-
-.pt-1,
-.py-1 {
- padding-top: 8px !important;
-}
-
-.pr-1,
-.px-1 {
- padding-right: 8px !important;
-}
-
-.pb-1,
-.py-1 {
- padding-bottom: 8px !important;
-}
-
-.pl-1,
-.px-1 {
- padding-left: 8px !important;
-}
-
-.p-2 {
- padding: 16px !important;
-}
-
-.pt-2,
-.py-2 {
- padding-top: 16px !important;
-}
-
-.pr-2,
-.px-2 {
- padding-right: 16px !important;
-}
-
-.pb-2,
-.py-2 {
- padding-bottom: 16px !important;
-}
-
-.pl-2,
-.px-2 {
- padding-left: 16px !important;
-}
-
-.p-3 {
- padding: 24px !important;
-}
-
-.pt-3,
-.py-3 {
- padding-top: 24px !important;
-}
-
-.pr-3,
-.px-3 {
- padding-right: 24px !important;
-}
-
-.pb-3,
-.py-3 {
- padding-bottom: 24px !important;
-}
-
-.pl-3,
-.px-3 {
- padding-left: 24px !important;
-}
-
-.p-4 {
- padding: 32px !important;
-}
-
-.pt-4,
-.py-4 {
- padding-top: 32px !important;
-}
-
-.pr-4,
-.px-4 {
- padding-right: 32px !important;
-}
-
-.pb-4,
-.py-4 {
- padding-bottom: 32px !important;
-}
-
-.pl-4,
-.px-4 {
- padding-left: 32px !important;
-}
-
-.p-5 {
- padding: 40px !important;
-}
-
-.pt-5,
-.py-5 {
- padding-top: 40px !important;
-}
-
-.pr-5,
-.px-5 {
- padding-right: 40px !important;
-}
-
-.pb-5,
-.py-5 {
- padding-bottom: 40px !important;
-}
-
-.pl-5,
-.px-5 {
- padding-left: 40px !important;
-}
-
-.p-6 {
- padding: 48px !important;
-}
-
-.pt-6,
-.py-6 {
- padding-top: 48px !important;
-}
-
-.pr-6,
-.px-6 {
- padding-right: 48px !important;
-}
-
-.pb-6,
-.py-6 {
- padding-bottom: 48px !important;
-}
-
-.pl-6,
-.px-6 {
- padding-left: 48px !important;
-}
-
-.p-7 {
- padding: 56px !important;
-}
-
-.pt-7,
-.py-7 {
- padding-top: 56px !important;
-}
-
-.pr-7,
-.px-7 {
- padding-right: 56px !important;
-}
-
-.pb-7,
-.py-7 {
- padding-bottom: 56px !important;
-}
-
-.pl-7,
-.px-7 {
- padding-left: 56px !important;
-}
-
-.p-8 {
- padding: 64px !important;
-}
-
-.pt-8,
-.py-8 {
- padding-top: 64px !important;
-}
-
-.pr-8,
-.px-8 {
- padding-right: 64px !important;
-}
-
-.pb-8,
-.py-8 {
- padding-bottom: 64px !important;
-}
-
-.pl-8,
-.px-8 {
- padding-left: 64px !important;
-}
-
-.p-9 {
- padding: 72px !important;
-}
-
-.pt-9,
-.py-9 {
- padding-top: 72px !important;
-}
-
-.pr-9,
-.px-9 {
- padding-right: 72px !important;
-}
-
-.pb-9,
-.py-9 {
- padding-bottom: 72px !important;
-}
-
-.pl-9,
-.px-9 {
- padding-left: 72px !important;
-}
-
-.p-10 {
- padding: 80px !important;
-}
-
-.pt-10,
-.py-10 {
- padding-top: 80px !important;
-}
-
-.pr-10,
-.px-10 {
- padding-right: 80px !important;
-}
-
-.pb-10,
-.py-10 {
- padding-bottom: 80px !important;
-}
-
-.pl-10,
-.px-10 {
- padding-left: 80px !important;
-}
-
-.p-12 {
- padding: 96px !important;
-}
-
-.pt-12,
-.py-12 {
- padding-top: 96px !important;
-}
-
-.pr-12,
-.px-12 {
- padding-right: 96px !important;
-}
-
-.pb-12,
-.py-12 {
- padding-bottom: 96px !important;
-}
-
-.pl-12,
-.px-12 {
- padding-left: 96px !important;
-}
-
-.p-15 {
- padding: 120px !important;
-}
-
-.pt-15,
-.py-15 {
- padding-top: 120px !important;
-}
-
-.pr-15,
-.px-15 {
- padding-right: 120px !important;
-}
-
-.pb-15,
-.py-15 {
- padding-bottom: 120px !important;
-}
-
-.pl-15,
-.px-15 {
- padding-left: 120px !important;
-}
-
-.m-n1 {
- margin: -8px !important;
-}
-
-.mt-n1,
-.my-n1 {
- margin-top: -8px !important;
-}
-
-.mr-n1,
-.mx-n1 {
- margin-right: -8px !important;
-}
-
-.mb-n1,
-.my-n1 {
- margin-bottom: -8px !important;
-}
-
-.ml-n1,
-.mx-n1 {
- margin-left: -8px !important;
-}
-
-.m-n2 {
- margin: -16px !important;
-}
-
-.mt-n2,
-.my-n2 {
- margin-top: -16px !important;
-}
-
-.mr-n2,
-.mx-n2 {
- margin-right: -16px !important;
-}
-
-.mb-n2,
-.my-n2 {
- margin-bottom: -16px !important;
-}
-
-.ml-n2,
-.mx-n2 {
- margin-left: -16px !important;
-}
-
-.m-n3 {
- margin: -24px !important;
-}
-
-.mt-n3,
-.my-n3 {
- margin-top: -24px !important;
-}
-
-.mr-n3,
-.mx-n3 {
- margin-right: -24px !important;
-}
-
-.mb-n3,
-.my-n3 {
- margin-bottom: -24px !important;
-}
-
-.ml-n3,
-.mx-n3 {
- margin-left: -24px !important;
-}
-
-.m-n4 {
- margin: -32px !important;
-}
-
-.mt-n4,
-.my-n4 {
- margin-top: -32px !important;
-}
-
-.mr-n4,
-.mx-n4 {
- margin-right: -32px !important;
-}
-
-.mb-n4,
-.my-n4 {
- margin-bottom: -32px !important;
-}
-
-.ml-n4,
-.mx-n4 {
- margin-left: -32px !important;
-}
-
-.m-n5 {
- margin: -40px !important;
-}
-
-.mt-n5,
-.my-n5 {
- margin-top: -40px !important;
-}
-
-.mr-n5,
-.mx-n5 {
- margin-right: -40px !important;
-}
-
-.mb-n5,
-.my-n5 {
- margin-bottom: -40px !important;
-}
-
-.ml-n5,
-.mx-n5 {
- margin-left: -40px !important;
-}
-
-.m-n6 {
- margin: -48px !important;
-}
-
-.mt-n6,
-.my-n6 {
- margin-top: -48px !important;
-}
-
-.mr-n6,
-.mx-n6 {
- margin-right: -48px !important;
-}
-
-.mb-n6,
-.my-n6 {
- margin-bottom: -48px !important;
-}
-
-.ml-n6,
-.mx-n6 {
- margin-left: -48px !important;
-}
-
-.m-n7 {
- margin: -56px !important;
-}
-
-.mt-n7,
-.my-n7 {
- margin-top: -56px !important;
-}
-
-.mr-n7,
-.mx-n7 {
- margin-right: -56px !important;
-}
-
-.mb-n7,
-.my-n7 {
- margin-bottom: -56px !important;
-}
-
-.ml-n7,
-.mx-n7 {
- margin-left: -56px !important;
-}
-
-.m-n8 {
- margin: -64px !important;
-}
-
-.mt-n8,
-.my-n8 {
- margin-top: -64px !important;
-}
-
-.mr-n8,
-.mx-n8 {
- margin-right: -64px !important;
-}
-
-.mb-n8,
-.my-n8 {
- margin-bottom: -64px !important;
-}
-
-.ml-n8,
-.mx-n8 {
- margin-left: -64px !important;
-}
-
-.m-n9 {
- margin: -72px !important;
-}
-
-.mt-n9,
-.my-n9 {
- margin-top: -72px !important;
-}
-
-.mr-n9,
-.mx-n9 {
- margin-right: -72px !important;
-}
-
-.mb-n9,
-.my-n9 {
- margin-bottom: -72px !important;
-}
-
-.ml-n9,
-.mx-n9 {
- margin-left: -72px !important;
-}
-
-.m-n10 {
- margin: -80px !important;
-}
-
-.mt-n10,
-.my-n10 {
- margin-top: -80px !important;
-}
-
-.mr-n10,
-.mx-n10 {
- margin-right: -80px !important;
-}
-
-.mb-n10,
-.my-n10 {
- margin-bottom: -80px !important;
-}
-
-.ml-n10,
-.mx-n10 {
- margin-left: -80px !important;
-}
-
-.m-n12 {
- margin: -96px !important;
-}
-
-.mt-n12,
-.my-n12 {
- margin-top: -96px !important;
-}
-
-.mr-n12,
-.mx-n12 {
- margin-right: -96px !important;
-}
-
-.mb-n12,
-.my-n12 {
- margin-bottom: -96px !important;
-}
-
-.ml-n12,
-.mx-n12 {
- margin-left: -96px !important;
-}
-
-.m-n15 {
- margin: -120px !important;
-}
-
-.mt-n15,
-.my-n15 {
- margin-top: -120px !important;
-}
-
-.mr-n15,
-.mx-n15 {
- margin-right: -120px !important;
-}
-
-.mb-n15,
-.my-n15 {
- margin-bottom: -120px !important;
-}
-
-.ml-n15,
-.mx-n15 {
- margin-left: -120px !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: 400px) {
- .m-xs-0 {
- margin: 0 !important;
- }
-
- .mt-xs-0,
-.my-xs-0 {
- margin-top: 0 !important;
- }
-
- .mr-xs-0,
-.mx-xs-0 {
- margin-right: 0 !important;
- }
-
- .mb-xs-0,
-.my-xs-0 {
- margin-bottom: 0 !important;
- }
-
- .ml-xs-0,
-.mx-xs-0 {
- margin-left: 0 !important;
- }
-
- .m-xs-1 {
- margin: 8px !important;
- }
-
- .mt-xs-1,
-.my-xs-1 {
- margin-top: 8px !important;
- }
-
- .mr-xs-1,
-.mx-xs-1 {
- margin-right: 8px !important;
- }
-
- .mb-xs-1,
-.my-xs-1 {
- margin-bottom: 8px !important;
- }
-
- .ml-xs-1,
-.mx-xs-1 {
- margin-left: 8px !important;
- }
-
- .m-xs-2 {
- margin: 16px !important;
- }
-
- .mt-xs-2,
-.my-xs-2 {
- margin-top: 16px !important;
- }
-
- .mr-xs-2,
-.mx-xs-2 {
- margin-right: 16px !important;
- }
-
- .mb-xs-2,
-.my-xs-2 {
- margin-bottom: 16px !important;
- }
-
- .ml-xs-2,
-.mx-xs-2 {
- margin-left: 16px !important;
- }
-
- .m-xs-3 {
- margin: 24px !important;
- }
-
- .mt-xs-3,
-.my-xs-3 {
- margin-top: 24px !important;
- }
-
- .mr-xs-3,
-.mx-xs-3 {
- margin-right: 24px !important;
- }
-
- .mb-xs-3,
-.my-xs-3 {
- margin-bottom: 24px !important;
- }
-
- .ml-xs-3,
-.mx-xs-3 {
- margin-left: 24px !important;
- }
-
- .m-xs-4 {
- margin: 32px !important;
- }
-
- .mt-xs-4,
-.my-xs-4 {
- margin-top: 32px !important;
- }
-
- .mr-xs-4,
-.mx-xs-4 {
- margin-right: 32px !important;
- }
-
- .mb-xs-4,
-.my-xs-4 {
- margin-bottom: 32px !important;
- }
-
- .ml-xs-4,
-.mx-xs-4 {
- margin-left: 32px !important;
- }
-
- .m-xs-5 {
- margin: 40px !important;
- }
-
- .mt-xs-5,
-.my-xs-5 {
- margin-top: 40px !important;
- }
-
- .mr-xs-5,
-.mx-xs-5 {
- margin-right: 40px !important;
- }
-
- .mb-xs-5,
-.my-xs-5 {
- margin-bottom: 40px !important;
- }
-
- .ml-xs-5,
-.mx-xs-5 {
- margin-left: 40px !important;
- }
-
- .m-xs-6 {
- margin: 48px !important;
- }
-
- .mt-xs-6,
-.my-xs-6 {
- margin-top: 48px !important;
- }
-
- .mr-xs-6,
-.mx-xs-6 {
- margin-right: 48px !important;
- }
-
- .mb-xs-6,
-.my-xs-6 {
- margin-bottom: 48px !important;
- }
-
- .ml-xs-6,
-.mx-xs-6 {
- margin-left: 48px !important;
- }
-
- .m-xs-7 {
- margin: 56px !important;
- }
-
- .mt-xs-7,
-.my-xs-7 {
- margin-top: 56px !important;
- }
-
- .mr-xs-7,
-.mx-xs-7 {
- margin-right: 56px !important;
- }
-
- .mb-xs-7,
-.my-xs-7 {
- margin-bottom: 56px !important;
- }
-
- .ml-xs-7,
-.mx-xs-7 {
- margin-left: 56px !important;
- }
-
- .m-xs-8 {
- margin: 64px !important;
- }
-
- .mt-xs-8,
-.my-xs-8 {
- margin-top: 64px !important;
- }
-
- .mr-xs-8,
-.mx-xs-8 {
- margin-right: 64px !important;
- }
-
- .mb-xs-8,
-.my-xs-8 {
- margin-bottom: 64px !important;
- }
-
- .ml-xs-8,
-.mx-xs-8 {
- margin-left: 64px !important;
- }
-
- .m-xs-9 {
- margin: 72px !important;
- }
-
- .mt-xs-9,
-.my-xs-9 {
- margin-top: 72px !important;
- }
-
- .mr-xs-9,
-.mx-xs-9 {
- margin-right: 72px !important;
- }
-
- .mb-xs-9,
-.my-xs-9 {
- margin-bottom: 72px !important;
- }
-
- .ml-xs-9,
-.mx-xs-9 {
- margin-left: 72px !important;
- }
-
- .m-xs-10 {
- margin: 80px !important;
- }
-
- .mt-xs-10,
-.my-xs-10 {
- margin-top: 80px !important;
- }
-
- .mr-xs-10,
-.mx-xs-10 {
- margin-right: 80px !important;
- }
-
- .mb-xs-10,
-.my-xs-10 {
- margin-bottom: 80px !important;
- }
-
- .ml-xs-10,
-.mx-xs-10 {
- margin-left: 80px !important;
- }
-
- .m-xs-12 {
- margin: 96px !important;
- }
-
- .mt-xs-12,
-.my-xs-12 {
- margin-top: 96px !important;
- }
-
- .mr-xs-12,
-.mx-xs-12 {
- margin-right: 96px !important;
- }
-
- .mb-xs-12,
-.my-xs-12 {
- margin-bottom: 96px !important;
- }
-
- .ml-xs-12,
-.mx-xs-12 {
- margin-left: 96px !important;
- }
-
- .m-xs-15 {
- margin: 120px !important;
- }
-
- .mt-xs-15,
-.my-xs-15 {
- margin-top: 120px !important;
- }
-
- .mr-xs-15,
-.mx-xs-15 {
- margin-right: 120px !important;
- }
-
- .mb-xs-15,
-.my-xs-15 {
- margin-bottom: 120px !important;
- }
-
- .ml-xs-15,
-.mx-xs-15 {
- margin-left: 120px !important;
- }
-
- .p-xs-0 {
- padding: 0 !important;
- }
-
- .pt-xs-0,
-.py-xs-0 {
- padding-top: 0 !important;
- }
-
- .pr-xs-0,
-.px-xs-0 {
- padding-right: 0 !important;
- }
-
- .pb-xs-0,
-.py-xs-0 {
- padding-bottom: 0 !important;
- }
-
- .pl-xs-0,
-.px-xs-0 {
- padding-left: 0 !important;
- }
-
- .p-xs-1 {
- padding: 8px !important;
- }
-
- .pt-xs-1,
-.py-xs-1 {
- padding-top: 8px !important;
- }
-
- .pr-xs-1,
-.px-xs-1 {
- padding-right: 8px !important;
- }
-
- .pb-xs-1,
-.py-xs-1 {
- padding-bottom: 8px !important;
- }
-
- .pl-xs-1,
-.px-xs-1 {
- padding-left: 8px !important;
- }
-
- .p-xs-2 {
- padding: 16px !important;
- }
-
- .pt-xs-2,
-.py-xs-2 {
- padding-top: 16px !important;
- }
-
- .pr-xs-2,
-.px-xs-2 {
- padding-right: 16px !important;
- }
-
- .pb-xs-2,
-.py-xs-2 {
- padding-bottom: 16px !important;
- }
-
- .pl-xs-2,
-.px-xs-2 {
- padding-left: 16px !important;
- }
-
- .p-xs-3 {
- padding: 24px !important;
- }
-
- .pt-xs-3,
-.py-xs-3 {
- padding-top: 24px !important;
- }
-
- .pr-xs-3,
-.px-xs-3 {
- padding-right: 24px !important;
- }
-
- .pb-xs-3,
-.py-xs-3 {
- padding-bottom: 24px !important;
- }
-
- .pl-xs-3,
-.px-xs-3 {
- padding-left: 24px !important;
- }
-
- .p-xs-4 {
- padding: 32px !important;
- }
-
- .pt-xs-4,
-.py-xs-4 {
- padding-top: 32px !important;
- }
-
- .pr-xs-4,
-.px-xs-4 {
- padding-right: 32px !important;
- }
-
- .pb-xs-4,
-.py-xs-4 {
- padding-bottom: 32px !important;
- }
-
- .pl-xs-4,
-.px-xs-4 {
- padding-left: 32px !important;
- }
-
- .p-xs-5 {
- padding: 40px !important;
- }
-
- .pt-xs-5,
-.py-xs-5 {
- padding-top: 40px !important;
- }
-
- .pr-xs-5,
-.px-xs-5 {
- padding-right: 40px !important;
- }
-
- .pb-xs-5,
-.py-xs-5 {
- padding-bottom: 40px !important;
- }
-
- .pl-xs-5,
-.px-xs-5 {
- padding-left: 40px !important;
- }
-
- .p-xs-6 {
- padding: 48px !important;
- }
-
- .pt-xs-6,
-.py-xs-6 {
- padding-top: 48px !important;
- }
-
- .pr-xs-6,
-.px-xs-6 {
- padding-right: 48px !important;
- }
-
- .pb-xs-6,
-.py-xs-6 {
- padding-bottom: 48px !important;
- }
-
- .pl-xs-6,
-.px-xs-6 {
- padding-left: 48px !important;
- }
-
- .p-xs-7 {
- padding: 56px !important;
- }
-
- .pt-xs-7,
-.py-xs-7 {
- padding-top: 56px !important;
- }
-
- .pr-xs-7,
-.px-xs-7 {
- padding-right: 56px !important;
- }
-
- .pb-xs-7,
-.py-xs-7 {
- padding-bottom: 56px !important;
- }
-
- .pl-xs-7,
-.px-xs-7 {
- padding-left: 56px !important;
- }
-
- .p-xs-8 {
- padding: 64px !important;
- }
-
- .pt-xs-8,
-.py-xs-8 {
- padding-top: 64px !important;
- }
-
- .pr-xs-8,
-.px-xs-8 {
- padding-right: 64px !important;
- }
-
- .pb-xs-8,
-.py-xs-8 {
- padding-bottom: 64px !important;
- }
-
- .pl-xs-8,
-.px-xs-8 {
- padding-left: 64px !important;
- }
-
- .p-xs-9 {
- padding: 72px !important;
- }
-
- .pt-xs-9,
-.py-xs-9 {
- padding-top: 72px !important;
- }
-
- .pr-xs-9,
-.px-xs-9 {
- padding-right: 72px !important;
- }
-
- .pb-xs-9,
-.py-xs-9 {
- padding-bottom: 72px !important;
- }
-
- .pl-xs-9,
-.px-xs-9 {
- padding-left: 72px !important;
- }
-
- .p-xs-10 {
- padding: 80px !important;
- }
-
- .pt-xs-10,
-.py-xs-10 {
- padding-top: 80px !important;
- }
-
- .pr-xs-10,
-.px-xs-10 {
- padding-right: 80px !important;
- }
-
- .pb-xs-10,
-.py-xs-10 {
- padding-bottom: 80px !important;
- }
-
- .pl-xs-10,
-.px-xs-10 {
- padding-left: 80px !important;
- }
-
- .p-xs-12 {
- padding: 96px !important;
- }
-
- .pt-xs-12,
-.py-xs-12 {
- padding-top: 96px !important;
- }
-
- .pr-xs-12,
-.px-xs-12 {
- padding-right: 96px !important;
- }
-
- .pb-xs-12,
-.py-xs-12 {
- padding-bottom: 96px !important;
- }
-
- .pl-xs-12,
-.px-xs-12 {
- padding-left: 96px !important;
- }
-
- .p-xs-15 {
- padding: 120px !important;
- }
-
- .pt-xs-15,
-.py-xs-15 {
- padding-top: 120px !important;
- }
-
- .pr-xs-15,
-.px-xs-15 {
- padding-right: 120px !important;
- }
-
- .pb-xs-15,
-.py-xs-15 {
- padding-bottom: 120px !important;
- }
-
- .pl-xs-15,
-.px-xs-15 {
- padding-left: 120px !important;
- }
-
- .m-xs-n1 {
- margin: -8px !important;
- }
-
- .mt-xs-n1,
-.my-xs-n1 {
- margin-top: -8px !important;
- }
-
- .mr-xs-n1,
-.mx-xs-n1 {
- margin-right: -8px !important;
- }
-
- .mb-xs-n1,
-.my-xs-n1 {
- margin-bottom: -8px !important;
- }
-
- .ml-xs-n1,
-.mx-xs-n1 {
- margin-left: -8px !important;
- }
-
- .m-xs-n2 {
- margin: -16px !important;
- }
-
- .mt-xs-n2,
-.my-xs-n2 {
- margin-top: -16px !important;
- }
-
- .mr-xs-n2,
-.mx-xs-n2 {
- margin-right: -16px !important;
- }
-
- .mb-xs-n2,
-.my-xs-n2 {
- margin-bottom: -16px !important;
- }
-
- .ml-xs-n2,
-.mx-xs-n2 {
- margin-left: -16px !important;
- }
-
- .m-xs-n3 {
- margin: -24px !important;
- }
-
- .mt-xs-n3,
-.my-xs-n3 {
- margin-top: -24px !important;
- }
-
- .mr-xs-n3,
-.mx-xs-n3 {
- margin-right: -24px !important;
- }
-
- .mb-xs-n3,
-.my-xs-n3 {
- margin-bottom: -24px !important;
- }
-
- .ml-xs-n3,
-.mx-xs-n3 {
- margin-left: -24px !important;
- }
-
- .m-xs-n4 {
- margin: -32px !important;
- }
-
- .mt-xs-n4,
-.my-xs-n4 {
- margin-top: -32px !important;
- }
-
- .mr-xs-n4,
-.mx-xs-n4 {
- margin-right: -32px !important;
- }
-
- .mb-xs-n4,
-.my-xs-n4 {
- margin-bottom: -32px !important;
- }
-
- .ml-xs-n4,
-.mx-xs-n4 {
- margin-left: -32px !important;
- }
-
- .m-xs-n5 {
- margin: -40px !important;
- }
-
- .mt-xs-n5,
-.my-xs-n5 {
- margin-top: -40px !important;
- }
-
- .mr-xs-n5,
-.mx-xs-n5 {
- margin-right: -40px !important;
- }
-
- .mb-xs-n5,
-.my-xs-n5 {
- margin-bottom: -40px !important;
- }
-
- .ml-xs-n5,
-.mx-xs-n5 {
- margin-left: -40px !important;
- }
-
- .m-xs-n6 {
- margin: -48px !important;
- }
-
- .mt-xs-n6,
-.my-xs-n6 {
- margin-top: -48px !important;
- }
-
- .mr-xs-n6,
-.mx-xs-n6 {
- margin-right: -48px !important;
- }
-
- .mb-xs-n6,
-.my-xs-n6 {
- margin-bottom: -48px !important;
- }
-
- .ml-xs-n6,
-.mx-xs-n6 {
- margin-left: -48px !important;
- }
-
- .m-xs-n7 {
- margin: -56px !important;
- }
-
- .mt-xs-n7,
-.my-xs-n7 {
- margin-top: -56px !important;
- }
-
- .mr-xs-n7,
-.mx-xs-n7 {
- margin-right: -56px !important;
- }
-
- .mb-xs-n7,
-.my-xs-n7 {
- margin-bottom: -56px !important;
- }
-
- .ml-xs-n7,
-.mx-xs-n7 {
- margin-left: -56px !important;
- }
-
- .m-xs-n8 {
- margin: -64px !important;
- }
-
- .mt-xs-n8,
-.my-xs-n8 {
- margin-top: -64px !important;
- }
-
- .mr-xs-n8,
-.mx-xs-n8 {
- margin-right: -64px !important;
- }
-
- .mb-xs-n8,
-.my-xs-n8 {
- margin-bottom: -64px !important;
- }
-
- .ml-xs-n8,
-.mx-xs-n8 {
- margin-left: -64px !important;
- }
-
- .m-xs-n9 {
- margin: -72px !important;
- }
-
- .mt-xs-n9,
-.my-xs-n9 {
- margin-top: -72px !important;
- }
-
- .mr-xs-n9,
-.mx-xs-n9 {
- margin-right: -72px !important;
- }
-
- .mb-xs-n9,
-.my-xs-n9 {
- margin-bottom: -72px !important;
- }
-
- .ml-xs-n9,
-.mx-xs-n9 {
- margin-left: -72px !important;
- }
-
- .m-xs-n10 {
- margin: -80px !important;
- }
-
- .mt-xs-n10,
-.my-xs-n10 {
- margin-top: -80px !important;
- }
-
- .mr-xs-n10,
-.mx-xs-n10 {
- margin-right: -80px !important;
- }
-
- .mb-xs-n10,
-.my-xs-n10 {
- margin-bottom: -80px !important;
- }
-
- .ml-xs-n10,
-.mx-xs-n10 {
- margin-left: -80px !important;
- }
-
- .m-xs-n12 {
- margin: -96px !important;
- }
-
- .mt-xs-n12,
-.my-xs-n12 {
- margin-top: -96px !important;
- }
-
- .mr-xs-n12,
-.mx-xs-n12 {
- margin-right: -96px !important;
- }
-
- .mb-xs-n12,
-.my-xs-n12 {
- margin-bottom: -96px !important;
- }
-
- .ml-xs-n12,
-.mx-xs-n12 {
- margin-left: -96px !important;
- }
-
- .m-xs-n15 {
- margin: -120px !important;
- }
-
- .mt-xs-n15,
-.my-xs-n15 {
- margin-top: -120px !important;
- }
-
- .mr-xs-n15,
-.mx-xs-n15 {
- margin-right: -120px !important;
- }
-
- .mb-xs-n15,
-.my-xs-n15 {
- margin-bottom: -120px !important;
- }
-
- .ml-xs-n15,
-.mx-xs-n15 {
- margin-left: -120px !important;
- }
-
- .m-xs-auto {
- margin: auto !important;
- }
-
- .mt-xs-auto,
-.my-xs-auto {
- margin-top: auto !important;
- }
-
- .mr-xs-auto,
-.mx-xs-auto {
- margin-right: auto !important;
- }
-
- .mb-xs-auto,
-.my-xs-auto {
- margin-bottom: auto !important;
- }
-
- .ml-xs-auto,
-.mx-xs-auto {
- margin-left: auto !important;
- }
-}
-@media (min-width: 616px) {
- .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: 8px !important;
- }
-
- .mt-sm-1,
-.my-sm-1 {
- margin-top: 8px !important;
- }
-
- .mr-sm-1,
-.mx-sm-1 {
- margin-right: 8px !important;
- }
-
- .mb-sm-1,
-.my-sm-1 {
- margin-bottom: 8px !important;
- }
-
- .ml-sm-1,
-.mx-sm-1 {
- margin-left: 8px !important;
- }
-
- .m-sm-2 {
- margin: 16px !important;
- }
-
- .mt-sm-2,
-.my-sm-2 {
- margin-top: 16px !important;
- }
-
- .mr-sm-2,
-.mx-sm-2 {
- margin-right: 16px !important;
- }
-
- .mb-sm-2,
-.my-sm-2 {
- margin-bottom: 16px !important;
- }
-
- .ml-sm-2,
-.mx-sm-2 {
- margin-left: 16px !important;
- }
-
- .m-sm-3 {
- margin: 24px !important;
- }
-
- .mt-sm-3,
-.my-sm-3 {
- margin-top: 24px !important;
- }
-
- .mr-sm-3,
-.mx-sm-3 {
- margin-right: 24px !important;
- }
-
- .mb-sm-3,
-.my-sm-3 {
- margin-bottom: 24px !important;
- }
-
- .ml-sm-3,
-.mx-sm-3 {
- margin-left: 24px !important;
- }
-
- .m-sm-4 {
- margin: 32px !important;
- }
-
- .mt-sm-4,
-.my-sm-4 {
- margin-top: 32px !important;
- }
-
- .mr-sm-4,
-.mx-sm-4 {
- margin-right: 32px !important;
- }
-
- .mb-sm-4,
-.my-sm-4 {
- margin-bottom: 32px !important;
- }
-
- .ml-sm-4,
-.mx-sm-4 {
- margin-left: 32px !important;
- }
-
- .m-sm-5 {
- margin: 40px !important;
- }
-
- .mt-sm-5,
-.my-sm-5 {
- margin-top: 40px !important;
- }
-
- .mr-sm-5,
-.mx-sm-5 {
- margin-right: 40px !important;
- }
-
- .mb-sm-5,
-.my-sm-5 {
- margin-bottom: 40px !important;
- }
-
- .ml-sm-5,
-.mx-sm-5 {
- margin-left: 40px !important;
- }
-
- .m-sm-6 {
- margin: 48px !important;
- }
-
- .mt-sm-6,
-.my-sm-6 {
- margin-top: 48px !important;
- }
-
- .mr-sm-6,
-.mx-sm-6 {
- margin-right: 48px !important;
- }
-
- .mb-sm-6,
-.my-sm-6 {
- margin-bottom: 48px !important;
- }
-
- .ml-sm-6,
-.mx-sm-6 {
- margin-left: 48px !important;
- }
-
- .m-sm-7 {
- margin: 56px !important;
- }
-
- .mt-sm-7,
-.my-sm-7 {
- margin-top: 56px !important;
- }
-
- .mr-sm-7,
-.mx-sm-7 {
- margin-right: 56px !important;
- }
-
- .mb-sm-7,
-.my-sm-7 {
- margin-bottom: 56px !important;
- }
-
- .ml-sm-7,
-.mx-sm-7 {
- margin-left: 56px !important;
- }
-
- .m-sm-8 {
- margin: 64px !important;
- }
-
- .mt-sm-8,
-.my-sm-8 {
- margin-top: 64px !important;
- }
-
- .mr-sm-8,
-.mx-sm-8 {
- margin-right: 64px !important;
- }
-
- .mb-sm-8,
-.my-sm-8 {
- margin-bottom: 64px !important;
- }
-
- .ml-sm-8,
-.mx-sm-8 {
- margin-left: 64px !important;
- }
-
- .m-sm-9 {
- margin: 72px !important;
- }
-
- .mt-sm-9,
-.my-sm-9 {
- margin-top: 72px !important;
- }
-
- .mr-sm-9,
-.mx-sm-9 {
- margin-right: 72px !important;
- }
-
- .mb-sm-9,
-.my-sm-9 {
- margin-bottom: 72px !important;
- }
-
- .ml-sm-9,
-.mx-sm-9 {
- margin-left: 72px !important;
- }
-
- .m-sm-10 {
- margin: 80px !important;
- }
-
- .mt-sm-10,
-.my-sm-10 {
- margin-top: 80px !important;
- }
-
- .mr-sm-10,
-.mx-sm-10 {
- margin-right: 80px !important;
- }
-
- .mb-sm-10,
-.my-sm-10 {
- margin-bottom: 80px !important;
- }
-
- .ml-sm-10,
-.mx-sm-10 {
- margin-left: 80px !important;
- }
-
- .m-sm-12 {
- margin: 96px !important;
- }
-
- .mt-sm-12,
-.my-sm-12 {
- margin-top: 96px !important;
- }
-
- .mr-sm-12,
-.mx-sm-12 {
- margin-right: 96px !important;
- }
-
- .mb-sm-12,
-.my-sm-12 {
- margin-bottom: 96px !important;
- }
-
- .ml-sm-12,
-.mx-sm-12 {
- margin-left: 96px !important;
- }
-
- .m-sm-15 {
- margin: 120px !important;
- }
-
- .mt-sm-15,
-.my-sm-15 {
- margin-top: 120px !important;
- }
-
- .mr-sm-15,
-.mx-sm-15 {
- margin-right: 120px !important;
- }
-
- .mb-sm-15,
-.my-sm-15 {
- margin-bottom: 120px !important;
- }
-
- .ml-sm-15,
-.mx-sm-15 {
- margin-left: 120px !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: 8px !important;
- }
-
- .pt-sm-1,
-.py-sm-1 {
- padding-top: 8px !important;
- }
-
- .pr-sm-1,
-.px-sm-1 {
- padding-right: 8px !important;
- }
-
- .pb-sm-1,
-.py-sm-1 {
- padding-bottom: 8px !important;
- }
-
- .pl-sm-1,
-.px-sm-1 {
- padding-left: 8px !important;
- }
-
- .p-sm-2 {
- padding: 16px !important;
- }
-
- .pt-sm-2,
-.py-sm-2 {
- padding-top: 16px !important;
- }
-
- .pr-sm-2,
-.px-sm-2 {
- padding-right: 16px !important;
- }
-
- .pb-sm-2,
-.py-sm-2 {
- padding-bottom: 16px !important;
- }
-
- .pl-sm-2,
-.px-sm-2 {
- padding-left: 16px !important;
- }
-
- .p-sm-3 {
- padding: 24px !important;
- }
-
- .pt-sm-3,
-.py-sm-3 {
- padding-top: 24px !important;
- }
-
- .pr-sm-3,
-.px-sm-3 {
- padding-right: 24px !important;
- }
-
- .pb-sm-3,
-.py-sm-3 {
- padding-bottom: 24px !important;
- }
-
- .pl-sm-3,
-.px-sm-3 {
- padding-left: 24px !important;
- }
-
- .p-sm-4 {
- padding: 32px !important;
- }
-
- .pt-sm-4,
-.py-sm-4 {
- padding-top: 32px !important;
- }
-
- .pr-sm-4,
-.px-sm-4 {
- padding-right: 32px !important;
- }
-
- .pb-sm-4,
-.py-sm-4 {
- padding-bottom: 32px !important;
- }
-
- .pl-sm-4,
-.px-sm-4 {
- padding-left: 32px !important;
- }
-
- .p-sm-5 {
- padding: 40px !important;
- }
-
- .pt-sm-5,
-.py-sm-5 {
- padding-top: 40px !important;
- }
-
- .pr-sm-5,
-.px-sm-5 {
- padding-right: 40px !important;
- }
-
- .pb-sm-5,
-.py-sm-5 {
- padding-bottom: 40px !important;
- }
-
- .pl-sm-5,
-.px-sm-5 {
- padding-left: 40px !important;
- }
-
- .p-sm-6 {
- padding: 48px !important;
- }
-
- .pt-sm-6,
-.py-sm-6 {
- padding-top: 48px !important;
- }
-
- .pr-sm-6,
-.px-sm-6 {
- padding-right: 48px !important;
- }
-
- .pb-sm-6,
-.py-sm-6 {
- padding-bottom: 48px !important;
- }
-
- .pl-sm-6,
-.px-sm-6 {
- padding-left: 48px !important;
- }
-
- .p-sm-7 {
- padding: 56px !important;
- }
-
- .pt-sm-7,
-.py-sm-7 {
- padding-top: 56px !important;
- }
-
- .pr-sm-7,
-.px-sm-7 {
- padding-right: 56px !important;
- }
-
- .pb-sm-7,
-.py-sm-7 {
- padding-bottom: 56px !important;
- }
-
- .pl-sm-7,
-.px-sm-7 {
- padding-left: 56px !important;
- }
-
- .p-sm-8 {
- padding: 64px !important;
- }
-
- .pt-sm-8,
-.py-sm-8 {
- padding-top: 64px !important;
- }
-
- .pr-sm-8,
-.px-sm-8 {
- padding-right: 64px !important;
- }
-
- .pb-sm-8,
-.py-sm-8 {
- padding-bottom: 64px !important;
- }
-
- .pl-sm-8,
-.px-sm-8 {
- padding-left: 64px !important;
- }
-
- .p-sm-9 {
- padding: 72px !important;
- }
-
- .pt-sm-9,
-.py-sm-9 {
- padding-top: 72px !important;
- }
-
- .pr-sm-9,
-.px-sm-9 {
- padding-right: 72px !important;
- }
-
- .pb-sm-9,
-.py-sm-9 {
- padding-bottom: 72px !important;
- }
-
- .pl-sm-9,
-.px-sm-9 {
- padding-left: 72px !important;
- }
-
- .p-sm-10 {
- padding: 80px !important;
- }
-
- .pt-sm-10,
-.py-sm-10 {
- padding-top: 80px !important;
- }
-
- .pr-sm-10,
-.px-sm-10 {
- padding-right: 80px !important;
- }
-
- .pb-sm-10,
-.py-sm-10 {
- padding-bottom: 80px !important;
- }
-
- .pl-sm-10,
-.px-sm-10 {
- padding-left: 80px !important;
- }
-
- .p-sm-12 {
- padding: 96px !important;
- }
-
- .pt-sm-12,
-.py-sm-12 {
- padding-top: 96px !important;
- }
-
- .pr-sm-12,
-.px-sm-12 {
- padding-right: 96px !important;
- }
-
- .pb-sm-12,
-.py-sm-12 {
- padding-bottom: 96px !important;
- }
-
- .pl-sm-12,
-.px-sm-12 {
- padding-left: 96px !important;
- }
-
- .p-sm-15 {
- padding: 120px !important;
- }
-
- .pt-sm-15,
-.py-sm-15 {
- padding-top: 120px !important;
- }
-
- .pr-sm-15,
-.px-sm-15 {
- padding-right: 120px !important;
- }
-
- .pb-sm-15,
-.py-sm-15 {
- padding-bottom: 120px !important;
- }
-
- .pl-sm-15,
-.px-sm-15 {
- padding-left: 120px !important;
- }
-
- .m-sm-n1 {
- margin: -8px !important;
- }
-
- .mt-sm-n1,
-.my-sm-n1 {
- margin-top: -8px !important;
- }
-
- .mr-sm-n1,
-.mx-sm-n1 {
- margin-right: -8px !important;
- }
-
- .mb-sm-n1,
-.my-sm-n1 {
- margin-bottom: -8px !important;
- }
-
- .ml-sm-n1,
-.mx-sm-n1 {
- margin-left: -8px !important;
- }
-
- .m-sm-n2 {
- margin: -16px !important;
- }
-
- .mt-sm-n2,
-.my-sm-n2 {
- margin-top: -16px !important;
- }
-
- .mr-sm-n2,
-.mx-sm-n2 {
- margin-right: -16px !important;
- }
-
- .mb-sm-n2,
-.my-sm-n2 {
- margin-bottom: -16px !important;
- }
-
- .ml-sm-n2,
-.mx-sm-n2 {
- margin-left: -16px !important;
- }
-
- .m-sm-n3 {
- margin: -24px !important;
- }
-
- .mt-sm-n3,
-.my-sm-n3 {
- margin-top: -24px !important;
- }
-
- .mr-sm-n3,
-.mx-sm-n3 {
- margin-right: -24px !important;
- }
-
- .mb-sm-n3,
-.my-sm-n3 {
- margin-bottom: -24px !important;
- }
-
- .ml-sm-n3,
-.mx-sm-n3 {
- margin-left: -24px !important;
- }
-
- .m-sm-n4 {
- margin: -32px !important;
- }
-
- .mt-sm-n4,
-.my-sm-n4 {
- margin-top: -32px !important;
- }
-
- .mr-sm-n4,
-.mx-sm-n4 {
- margin-right: -32px !important;
- }
-
- .mb-sm-n4,
-.my-sm-n4 {
- margin-bottom: -32px !important;
- }
-
- .ml-sm-n4,
-.mx-sm-n4 {
- margin-left: -32px !important;
- }
-
- .m-sm-n5 {
- margin: -40px !important;
- }
-
- .mt-sm-n5,
-.my-sm-n5 {
- margin-top: -40px !important;
- }
-
- .mr-sm-n5,
-.mx-sm-n5 {
- margin-right: -40px !important;
- }
-
- .mb-sm-n5,
-.my-sm-n5 {
- margin-bottom: -40px !important;
- }
-
- .ml-sm-n5,
-.mx-sm-n5 {
- margin-left: -40px !important;
- }
-
- .m-sm-n6 {
- margin: -48px !important;
- }
-
- .mt-sm-n6,
-.my-sm-n6 {
- margin-top: -48px !important;
- }
-
- .mr-sm-n6,
-.mx-sm-n6 {
- margin-right: -48px !important;
- }
-
- .mb-sm-n6,
-.my-sm-n6 {
- margin-bottom: -48px !important;
- }
-
- .ml-sm-n6,
-.mx-sm-n6 {
- margin-left: -48px !important;
- }
-
- .m-sm-n7 {
- margin: -56px !important;
- }
-
- .mt-sm-n7,
-.my-sm-n7 {
- margin-top: -56px !important;
- }
-
- .mr-sm-n7,
-.mx-sm-n7 {
- margin-right: -56px !important;
- }
-
- .mb-sm-n7,
-.my-sm-n7 {
- margin-bottom: -56px !important;
- }
-
- .ml-sm-n7,
-.mx-sm-n7 {
- margin-left: -56px !important;
- }
-
- .m-sm-n8 {
- margin: -64px !important;
- }
-
- .mt-sm-n8,
-.my-sm-n8 {
- margin-top: -64px !important;
- }
-
- .mr-sm-n8,
-.mx-sm-n8 {
- margin-right: -64px !important;
- }
-
- .mb-sm-n8,
-.my-sm-n8 {
- margin-bottom: -64px !important;
- }
-
- .ml-sm-n8,
-.mx-sm-n8 {
- margin-left: -64px !important;
- }
-
- .m-sm-n9 {
- margin: -72px !important;
- }
-
- .mt-sm-n9,
-.my-sm-n9 {
- margin-top: -72px !important;
- }
-
- .mr-sm-n9,
-.mx-sm-n9 {
- margin-right: -72px !important;
- }
-
- .mb-sm-n9,
-.my-sm-n9 {
- margin-bottom: -72px !important;
- }
-
- .ml-sm-n9,
-.mx-sm-n9 {
- margin-left: -72px !important;
- }
-
- .m-sm-n10 {
- margin: -80px !important;
- }
-
- .mt-sm-n10,
-.my-sm-n10 {
- margin-top: -80px !important;
- }
-
- .mr-sm-n10,
-.mx-sm-n10 {
- margin-right: -80px !important;
- }
-
- .mb-sm-n10,
-.my-sm-n10 {
- margin-bottom: -80px !important;
- }
-
- .ml-sm-n10,
-.mx-sm-n10 {
- margin-left: -80px !important;
- }
-
- .m-sm-n12 {
- margin: -96px !important;
- }
-
- .mt-sm-n12,
-.my-sm-n12 {
- margin-top: -96px !important;
- }
-
- .mr-sm-n12,
-.mx-sm-n12 {
- margin-right: -96px !important;
- }
-
- .mb-sm-n12,
-.my-sm-n12 {
- margin-bottom: -96px !important;
- }
-
- .ml-sm-n12,
-.mx-sm-n12 {
- margin-left: -96px !important;
- }
-
- .m-sm-n15 {
- margin: -120px !important;
- }
-
- .mt-sm-n15,
-.my-sm-n15 {
- margin-top: -120px !important;
- }
-
- .mr-sm-n15,
-.mx-sm-n15 {
- margin-right: -120px !important;
- }
-
- .mb-sm-n15,
-.my-sm-n15 {
- margin-bottom: -120px !important;
- }
-
- .ml-sm-n15,
-.mx-sm-n15 {
- margin-left: -120px !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: 8px !important;
- }
-
- .mt-md-1,
-.my-md-1 {
- margin-top: 8px !important;
- }
-
- .mr-md-1,
-.mx-md-1 {
- margin-right: 8px !important;
- }
-
- .mb-md-1,
-.my-md-1 {
- margin-bottom: 8px !important;
- }
-
- .ml-md-1,
-.mx-md-1 {
- margin-left: 8px !important;
- }
-
- .m-md-2 {
- margin: 16px !important;
- }
-
- .mt-md-2,
-.my-md-2 {
- margin-top: 16px !important;
- }
-
- .mr-md-2,
-.mx-md-2 {
- margin-right: 16px !important;
- }
-
- .mb-md-2,
-.my-md-2 {
- margin-bottom: 16px !important;
- }
-
- .ml-md-2,
-.mx-md-2 {
- margin-left: 16px !important;
- }
-
- .m-md-3 {
- margin: 24px !important;
- }
-
- .mt-md-3,
-.my-md-3 {
- margin-top: 24px !important;
- }
-
- .mr-md-3,
-.mx-md-3 {
- margin-right: 24px !important;
- }
-
- .mb-md-3,
-.my-md-3 {
- margin-bottom: 24px !important;
- }
-
- .ml-md-3,
-.mx-md-3 {
- margin-left: 24px !important;
- }
-
- .m-md-4 {
- margin: 32px !important;
- }
-
- .mt-md-4,
-.my-md-4 {
- margin-top: 32px !important;
- }
-
- .mr-md-4,
-.mx-md-4 {
- margin-right: 32px !important;
- }
-
- .mb-md-4,
-.my-md-4 {
- margin-bottom: 32px !important;
- }
-
- .ml-md-4,
-.mx-md-4 {
- margin-left: 32px !important;
- }
-
- .m-md-5 {
- margin: 40px !important;
- }
-
- .mt-md-5,
-.my-md-5 {
- margin-top: 40px !important;
- }
-
- .mr-md-5,
-.mx-md-5 {
- margin-right: 40px !important;
- }
-
- .mb-md-5,
-.my-md-5 {
- margin-bottom: 40px !important;
- }
-
- .ml-md-5,
-.mx-md-5 {
- margin-left: 40px !important;
- }
-
- .m-md-6 {
- margin: 48px !important;
- }
-
- .mt-md-6,
-.my-md-6 {
- margin-top: 48px !important;
- }
-
- .mr-md-6,
-.mx-md-6 {
- margin-right: 48px !important;
- }
-
- .mb-md-6,
-.my-md-6 {
- margin-bottom: 48px !important;
- }
-
- .ml-md-6,
-.mx-md-6 {
- margin-left: 48px !important;
- }
-
- .m-md-7 {
- margin: 56px !important;
- }
-
- .mt-md-7,
-.my-md-7 {
- margin-top: 56px !important;
- }
-
- .mr-md-7,
-.mx-md-7 {
- margin-right: 56px !important;
- }
-
- .mb-md-7,
-.my-md-7 {
- margin-bottom: 56px !important;
- }
-
- .ml-md-7,
-.mx-md-7 {
- margin-left: 56px !important;
- }
-
- .m-md-8 {
- margin: 64px !important;
- }
-
- .mt-md-8,
-.my-md-8 {
- margin-top: 64px !important;
- }
-
- .mr-md-8,
-.mx-md-8 {
- margin-right: 64px !important;
- }
-
- .mb-md-8,
-.my-md-8 {
- margin-bottom: 64px !important;
- }
-
- .ml-md-8,
-.mx-md-8 {
- margin-left: 64px !important;
- }
-
- .m-md-9 {
- margin: 72px !important;
- }
-
- .mt-md-9,
-.my-md-9 {
- margin-top: 72px !important;
- }
-
- .mr-md-9,
-.mx-md-9 {
- margin-right: 72px !important;
- }
-
- .mb-md-9,
-.my-md-9 {
- margin-bottom: 72px !important;
- }
-
- .ml-md-9,
-.mx-md-9 {
- margin-left: 72px !important;
- }
-
- .m-md-10 {
- margin: 80px !important;
- }
-
- .mt-md-10,
-.my-md-10 {
- margin-top: 80px !important;
- }
-
- .mr-md-10,
-.mx-md-10 {
- margin-right: 80px !important;
- }
-
- .mb-md-10,
-.my-md-10 {
- margin-bottom: 80px !important;
- }
-
- .ml-md-10,
-.mx-md-10 {
- margin-left: 80px !important;
- }
-
- .m-md-12 {
- margin: 96px !important;
- }
-
- .mt-md-12,
-.my-md-12 {
- margin-top: 96px !important;
- }
-
- .mr-md-12,
-.mx-md-12 {
- margin-right: 96px !important;
- }
-
- .mb-md-12,
-.my-md-12 {
- margin-bottom: 96px !important;
- }
-
- .ml-md-12,
-.mx-md-12 {
- margin-left: 96px !important;
- }
-
- .m-md-15 {
- margin: 120px !important;
- }
-
- .mt-md-15,
-.my-md-15 {
- margin-top: 120px !important;
- }
-
- .mr-md-15,
-.mx-md-15 {
- margin-right: 120px !important;
- }
-
- .mb-md-15,
-.my-md-15 {
- margin-bottom: 120px !important;
- }
-
- .ml-md-15,
-.mx-md-15 {
- margin-left: 120px !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: 8px !important;
- }
-
- .pt-md-1,
-.py-md-1 {
- padding-top: 8px !important;
- }
-
- .pr-md-1,
-.px-md-1 {
- padding-right: 8px !important;
- }
-
- .pb-md-1,
-.py-md-1 {
- padding-bottom: 8px !important;
- }
-
- .pl-md-1,
-.px-md-1 {
- padding-left: 8px !important;
- }
-
- .p-md-2 {
- padding: 16px !important;
- }
-
- .pt-md-2,
-.py-md-2 {
- padding-top: 16px !important;
- }
-
- .pr-md-2,
-.px-md-2 {
- padding-right: 16px !important;
- }
-
- .pb-md-2,
-.py-md-2 {
- padding-bottom: 16px !important;
- }
-
- .pl-md-2,
-.px-md-2 {
- padding-left: 16px !important;
- }
-
- .p-md-3 {
- padding: 24px !important;
- }
-
- .pt-md-3,
-.py-md-3 {
- padding-top: 24px !important;
- }
-
- .pr-md-3,
-.px-md-3 {
- padding-right: 24px !important;
- }
-
- .pb-md-3,
-.py-md-3 {
- padding-bottom: 24px !important;
- }
-
- .pl-md-3,
-.px-md-3 {
- padding-left: 24px !important;
- }
-
- .p-md-4 {
- padding: 32px !important;
- }
-
- .pt-md-4,
-.py-md-4 {
- padding-top: 32px !important;
- }
-
- .pr-md-4,
-.px-md-4 {
- padding-right: 32px !important;
- }
-
- .pb-md-4,
-.py-md-4 {
- padding-bottom: 32px !important;
- }
-
- .pl-md-4,
-.px-md-4 {
- padding-left: 32px !important;
- }
-
- .p-md-5 {
- padding: 40px !important;
- }
-
- .pt-md-5,
-.py-md-5 {
- padding-top: 40px !important;
- }
-
- .pr-md-5,
-.px-md-5 {
- padding-right: 40px !important;
- }
-
- .pb-md-5,
-.py-md-5 {
- padding-bottom: 40px !important;
- }
-
- .pl-md-5,
-.px-md-5 {
- padding-left: 40px !important;
- }
-
- .p-md-6 {
- padding: 48px !important;
- }
-
- .pt-md-6,
-.py-md-6 {
- padding-top: 48px !important;
- }
-
- .pr-md-6,
-.px-md-6 {
- padding-right: 48px !important;
- }
-
- .pb-md-6,
-.py-md-6 {
- padding-bottom: 48px !important;
- }
-
- .pl-md-6,
-.px-md-6 {
- padding-left: 48px !important;
- }
-
- .p-md-7 {
- padding: 56px !important;
- }
-
- .pt-md-7,
-.py-md-7 {
- padding-top: 56px !important;
- }
-
- .pr-md-7,
-.px-md-7 {
- padding-right: 56px !important;
- }
-
- .pb-md-7,
-.py-md-7 {
- padding-bottom: 56px !important;
- }
-
- .pl-md-7,
-.px-md-7 {
- padding-left: 56px !important;
- }
-
- .p-md-8 {
- padding: 64px !important;
- }
-
- .pt-md-8,
-.py-md-8 {
- padding-top: 64px !important;
- }
-
- .pr-md-8,
-.px-md-8 {
- padding-right: 64px !important;
- }
-
- .pb-md-8,
-.py-md-8 {
- padding-bottom: 64px !important;
- }
-
- .pl-md-8,
-.px-md-8 {
- padding-left: 64px !important;
- }
-
- .p-md-9 {
- padding: 72px !important;
- }
-
- .pt-md-9,
-.py-md-9 {
- padding-top: 72px !important;
- }
-
- .pr-md-9,
-.px-md-9 {
- padding-right: 72px !important;
- }
-
- .pb-md-9,
-.py-md-9 {
- padding-bottom: 72px !important;
- }
-
- .pl-md-9,
-.px-md-9 {
- padding-left: 72px !important;
- }
-
- .p-md-10 {
- padding: 80px !important;
- }
-
- .pt-md-10,
-.py-md-10 {
- padding-top: 80px !important;
- }
-
- .pr-md-10,
-.px-md-10 {
- padding-right: 80px !important;
- }
-
- .pb-md-10,
-.py-md-10 {
- padding-bottom: 80px !important;
- }
-
- .pl-md-10,
-.px-md-10 {
- padding-left: 80px !important;
- }
-
- .p-md-12 {
- padding: 96px !important;
- }
-
- .pt-md-12,
-.py-md-12 {
- padding-top: 96px !important;
- }
-
- .pr-md-12,
-.px-md-12 {
- padding-right: 96px !important;
- }
-
- .pb-md-12,
-.py-md-12 {
- padding-bottom: 96px !important;
- }
-
- .pl-md-12,
-.px-md-12 {
- padding-left: 96px !important;
- }
-
- .p-md-15 {
- padding: 120px !important;
- }
-
- .pt-md-15,
-.py-md-15 {
- padding-top: 120px !important;
- }
-
- .pr-md-15,
-.px-md-15 {
- padding-right: 120px !important;
- }
-
- .pb-md-15,
-.py-md-15 {
- padding-bottom: 120px !important;
- }
-
- .pl-md-15,
-.px-md-15 {
- padding-left: 120px !important;
- }
-
- .m-md-n1 {
- margin: -8px !important;
- }
-
- .mt-md-n1,
-.my-md-n1 {
- margin-top: -8px !important;
- }
-
- .mr-md-n1,
-.mx-md-n1 {
- margin-right: -8px !important;
- }
-
- .mb-md-n1,
-.my-md-n1 {
- margin-bottom: -8px !important;
- }
-
- .ml-md-n1,
-.mx-md-n1 {
- margin-left: -8px !important;
- }
-
- .m-md-n2 {
- margin: -16px !important;
- }
-
- .mt-md-n2,
-.my-md-n2 {
- margin-top: -16px !important;
- }
-
- .mr-md-n2,
-.mx-md-n2 {
- margin-right: -16px !important;
- }
-
- .mb-md-n2,
-.my-md-n2 {
- margin-bottom: -16px !important;
- }
-
- .ml-md-n2,
-.mx-md-n2 {
- margin-left: -16px !important;
- }
-
- .m-md-n3 {
- margin: -24px !important;
- }
-
- .mt-md-n3,
-.my-md-n3 {
- margin-top: -24px !important;
- }
-
- .mr-md-n3,
-.mx-md-n3 {
- margin-right: -24px !important;
- }
-
- .mb-md-n3,
-.my-md-n3 {
- margin-bottom: -24px !important;
- }
-
- .ml-md-n3,
-.mx-md-n3 {
- margin-left: -24px !important;
- }
-
- .m-md-n4 {
- margin: -32px !important;
- }
-
- .mt-md-n4,
-.my-md-n4 {
- margin-top: -32px !important;
- }
-
- .mr-md-n4,
-.mx-md-n4 {
- margin-right: -32px !important;
- }
-
- .mb-md-n4,
-.my-md-n4 {
- margin-bottom: -32px !important;
- }
-
- .ml-md-n4,
-.mx-md-n4 {
- margin-left: -32px !important;
- }
-
- .m-md-n5 {
- margin: -40px !important;
- }
-
- .mt-md-n5,
-.my-md-n5 {
- margin-top: -40px !important;
- }
-
- .mr-md-n5,
-.mx-md-n5 {
- margin-right: -40px !important;
- }
-
- .mb-md-n5,
-.my-md-n5 {
- margin-bottom: -40px !important;
- }
-
- .ml-md-n5,
-.mx-md-n5 {
- margin-left: -40px !important;
- }
-
- .m-md-n6 {
- margin: -48px !important;
- }
-
- .mt-md-n6,
-.my-md-n6 {
- margin-top: -48px !important;
- }
-
- .mr-md-n6,
-.mx-md-n6 {
- margin-right: -48px !important;
- }
-
- .mb-md-n6,
-.my-md-n6 {
- margin-bottom: -48px !important;
- }
-
- .ml-md-n6,
-.mx-md-n6 {
- margin-left: -48px !important;
- }
-
- .m-md-n7 {
- margin: -56px !important;
- }
-
- .mt-md-n7,
-.my-md-n7 {
- margin-top: -56px !important;
- }
-
- .mr-md-n7,
-.mx-md-n7 {
- margin-right: -56px !important;
- }
-
- .mb-md-n7,
-.my-md-n7 {
- margin-bottom: -56px !important;
- }
-
- .ml-md-n7,
-.mx-md-n7 {
- margin-left: -56px !important;
- }
-
- .m-md-n8 {
- margin: -64px !important;
- }
-
- .mt-md-n8,
-.my-md-n8 {
- margin-top: -64px !important;
- }
-
- .mr-md-n8,
-.mx-md-n8 {
- margin-right: -64px !important;
- }
-
- .mb-md-n8,
-.my-md-n8 {
- margin-bottom: -64px !important;
- }
-
- .ml-md-n8,
-.mx-md-n8 {
- margin-left: -64px !important;
- }
-
- .m-md-n9 {
- margin: -72px !important;
- }
-
- .mt-md-n9,
-.my-md-n9 {
- margin-top: -72px !important;
- }
-
- .mr-md-n9,
-.mx-md-n9 {
- margin-right: -72px !important;
- }
-
- .mb-md-n9,
-.my-md-n9 {
- margin-bottom: -72px !important;
- }
-
- .ml-md-n9,
-.mx-md-n9 {
- margin-left: -72px !important;
- }
-
- .m-md-n10 {
- margin: -80px !important;
- }
-
- .mt-md-n10,
-.my-md-n10 {
- margin-top: -80px !important;
- }
-
- .mr-md-n10,
-.mx-md-n10 {
- margin-right: -80px !important;
- }
-
- .mb-md-n10,
-.my-md-n10 {
- margin-bottom: -80px !important;
- }
-
- .ml-md-n10,
-.mx-md-n10 {
- margin-left: -80px !important;
- }
-
- .m-md-n12 {
- margin: -96px !important;
- }
-
- .mt-md-n12,
-.my-md-n12 {
- margin-top: -96px !important;
- }
-
- .mr-md-n12,
-.mx-md-n12 {
- margin-right: -96px !important;
- }
-
- .mb-md-n12,
-.my-md-n12 {
- margin-bottom: -96px !important;
- }
-
- .ml-md-n12,
-.mx-md-n12 {
- margin-left: -96px !important;
- }
-
- .m-md-n15 {
- margin: -120px !important;
- }
-
- .mt-md-n15,
-.my-md-n15 {
- margin-top: -120px !important;
- }
-
- .mr-md-n15,
-.mx-md-n15 {
- margin-right: -120px !important;
- }
-
- .mb-md-n15,
-.my-md-n15 {
- margin-bottom: -120px !important;
- }
-
- .ml-md-n15,
-.mx-md-n15 {
- margin-left: -120px !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: 980px) {
- .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: 8px !important;
- }
-
- .mt-lg-1,
-.my-lg-1 {
- margin-top: 8px !important;
- }
-
- .mr-lg-1,
-.mx-lg-1 {
- margin-right: 8px !important;
- }
-
- .mb-lg-1,
-.my-lg-1 {
- margin-bottom: 8px !important;
- }
-
- .ml-lg-1,
-.mx-lg-1 {
- margin-left: 8px !important;
- }
-
- .m-lg-2 {
- margin: 16px !important;
- }
-
- .mt-lg-2,
-.my-lg-2 {
- margin-top: 16px !important;
- }
-
- .mr-lg-2,
-.mx-lg-2 {
- margin-right: 16px !important;
- }
-
- .mb-lg-2,
-.my-lg-2 {
- margin-bottom: 16px !important;
- }
-
- .ml-lg-2,
-.mx-lg-2 {
- margin-left: 16px !important;
- }
-
- .m-lg-3 {
- margin: 24px !important;
- }
-
- .mt-lg-3,
-.my-lg-3 {
- margin-top: 24px !important;
- }
-
- .mr-lg-3,
-.mx-lg-3 {
- margin-right: 24px !important;
- }
-
- .mb-lg-3,
-.my-lg-3 {
- margin-bottom: 24px !important;
- }
-
- .ml-lg-3,
-.mx-lg-3 {
- margin-left: 24px !important;
- }
-
- .m-lg-4 {
- margin: 32px !important;
- }
-
- .mt-lg-4,
-.my-lg-4 {
- margin-top: 32px !important;
- }
-
- .mr-lg-4,
-.mx-lg-4 {
- margin-right: 32px !important;
- }
-
- .mb-lg-4,
-.my-lg-4 {
- margin-bottom: 32px !important;
- }
-
- .ml-lg-4,
-.mx-lg-4 {
- margin-left: 32px !important;
- }
-
- .m-lg-5 {
- margin: 40px !important;
- }
-
- .mt-lg-5,
-.my-lg-5 {
- margin-top: 40px !important;
- }
-
- .mr-lg-5,
-.mx-lg-5 {
- margin-right: 40px !important;
- }
-
- .mb-lg-5,
-.my-lg-5 {
- margin-bottom: 40px !important;
- }
-
- .ml-lg-5,
-.mx-lg-5 {
- margin-left: 40px !important;
- }
-
- .m-lg-6 {
- margin: 48px !important;
- }
-
- .mt-lg-6,
-.my-lg-6 {
- margin-top: 48px !important;
- }
-
- .mr-lg-6,
-.mx-lg-6 {
- margin-right: 48px !important;
- }
-
- .mb-lg-6,
-.my-lg-6 {
- margin-bottom: 48px !important;
- }
-
- .ml-lg-6,
-.mx-lg-6 {
- margin-left: 48px !important;
- }
-
- .m-lg-7 {
- margin: 56px !important;
- }
-
- .mt-lg-7,
-.my-lg-7 {
- margin-top: 56px !important;
- }
-
- .mr-lg-7,
-.mx-lg-7 {
- margin-right: 56px !important;
- }
-
- .mb-lg-7,
-.my-lg-7 {
- margin-bottom: 56px !important;
- }
-
- .ml-lg-7,
-.mx-lg-7 {
- margin-left: 56px !important;
- }
-
- .m-lg-8 {
- margin: 64px !important;
- }
-
- .mt-lg-8,
-.my-lg-8 {
- margin-top: 64px !important;
- }
-
- .mr-lg-8,
-.mx-lg-8 {
- margin-right: 64px !important;
- }
-
- .mb-lg-8,
-.my-lg-8 {
- margin-bottom: 64px !important;
- }
-
- .ml-lg-8,
-.mx-lg-8 {
- margin-left: 64px !important;
- }
-
- .m-lg-9 {
- margin: 72px !important;
- }
-
- .mt-lg-9,
-.my-lg-9 {
- margin-top: 72px !important;
- }
-
- .mr-lg-9,
-.mx-lg-9 {
- margin-right: 72px !important;
- }
-
- .mb-lg-9,
-.my-lg-9 {
- margin-bottom: 72px !important;
- }
-
- .ml-lg-9,
-.mx-lg-9 {
- margin-left: 72px !important;
- }
-
- .m-lg-10 {
- margin: 80px !important;
- }
-
- .mt-lg-10,
-.my-lg-10 {
- margin-top: 80px !important;
- }
-
- .mr-lg-10,
-.mx-lg-10 {
- margin-right: 80px !important;
- }
-
- .mb-lg-10,
-.my-lg-10 {
- margin-bottom: 80px !important;
- }
-
- .ml-lg-10,
-.mx-lg-10 {
- margin-left: 80px !important;
- }
-
- .m-lg-12 {
- margin: 96px !important;
- }
-
- .mt-lg-12,
-.my-lg-12 {
- margin-top: 96px !important;
- }
-
- .mr-lg-12,
-.mx-lg-12 {
- margin-right: 96px !important;
- }
-
- .mb-lg-12,
-.my-lg-12 {
- margin-bottom: 96px !important;
- }
-
- .ml-lg-12,
-.mx-lg-12 {
- margin-left: 96px !important;
- }
-
- .m-lg-15 {
- margin: 120px !important;
- }
-
- .mt-lg-15,
-.my-lg-15 {
- margin-top: 120px !important;
- }
-
- .mr-lg-15,
-.mx-lg-15 {
- margin-right: 120px !important;
- }
-
- .mb-lg-15,
-.my-lg-15 {
- margin-bottom: 120px !important;
- }
-
- .ml-lg-15,
-.mx-lg-15 {
- margin-left: 120px !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: 8px !important;
- }
-
- .pt-lg-1,
-.py-lg-1 {
- padding-top: 8px !important;
- }
-
- .pr-lg-1,
-.px-lg-1 {
- padding-right: 8px !important;
- }
-
- .pb-lg-1,
-.py-lg-1 {
- padding-bottom: 8px !important;
- }
-
- .pl-lg-1,
-.px-lg-1 {
- padding-left: 8px !important;
- }
-
- .p-lg-2 {
- padding: 16px !important;
- }
-
- .pt-lg-2,
-.py-lg-2 {
- padding-top: 16px !important;
- }
-
- .pr-lg-2,
-.px-lg-2 {
- padding-right: 16px !important;
- }
-
- .pb-lg-2,
-.py-lg-2 {
- padding-bottom: 16px !important;
- }
-
- .pl-lg-2,
-.px-lg-2 {
- padding-left: 16px !important;
- }
-
- .p-lg-3 {
- padding: 24px !important;
- }
-
- .pt-lg-3,
-.py-lg-3 {
- padding-top: 24px !important;
- }
-
- .pr-lg-3,
-.px-lg-3 {
- padding-right: 24px !important;
- }
-
- .pb-lg-3,
-.py-lg-3 {
- padding-bottom: 24px !important;
- }
-
- .pl-lg-3,
-.px-lg-3 {
- padding-left: 24px !important;
- }
-
- .p-lg-4 {
- padding: 32px !important;
- }
-
- .pt-lg-4,
-.py-lg-4 {
- padding-top: 32px !important;
- }
-
- .pr-lg-4,
-.px-lg-4 {
- padding-right: 32px !important;
- }
-
- .pb-lg-4,
-.py-lg-4 {
- padding-bottom: 32px !important;
- }
-
- .pl-lg-4,
-.px-lg-4 {
- padding-left: 32px !important;
- }
-
- .p-lg-5 {
- padding: 40px !important;
- }
-
- .pt-lg-5,
-.py-lg-5 {
- padding-top: 40px !important;
- }
-
- .pr-lg-5,
-.px-lg-5 {
- padding-right: 40px !important;
- }
-
- .pb-lg-5,
-.py-lg-5 {
- padding-bottom: 40px !important;
- }
-
- .pl-lg-5,
-.px-lg-5 {
- padding-left: 40px !important;
- }
-
- .p-lg-6 {
- padding: 48px !important;
- }
-
- .pt-lg-6,
-.py-lg-6 {
- padding-top: 48px !important;
- }
-
- .pr-lg-6,
-.px-lg-6 {
- padding-right: 48px !important;
- }
-
- .pb-lg-6,
-.py-lg-6 {
- padding-bottom: 48px !important;
- }
-
- .pl-lg-6,
-.px-lg-6 {
- padding-left: 48px !important;
- }
-
- .p-lg-7 {
- padding: 56px !important;
- }
-
- .pt-lg-7,
-.py-lg-7 {
- padding-top: 56px !important;
- }
-
- .pr-lg-7,
-.px-lg-7 {
- padding-right: 56px !important;
- }
-
- .pb-lg-7,
-.py-lg-7 {
- padding-bottom: 56px !important;
- }
-
- .pl-lg-7,
-.px-lg-7 {
- padding-left: 56px !important;
- }
-
- .p-lg-8 {
- padding: 64px !important;
- }
-
- .pt-lg-8,
-.py-lg-8 {
- padding-top: 64px !important;
- }
-
- .pr-lg-8,
-.px-lg-8 {
- padding-right: 64px !important;
- }
-
- .pb-lg-8,
-.py-lg-8 {
- padding-bottom: 64px !important;
- }
-
- .pl-lg-8,
-.px-lg-8 {
- padding-left: 64px !important;
- }
-
- .p-lg-9 {
- padding: 72px !important;
- }
-
- .pt-lg-9,
-.py-lg-9 {
- padding-top: 72px !important;
- }
-
- .pr-lg-9,
-.px-lg-9 {
- padding-right: 72px !important;
- }
-
- .pb-lg-9,
-.py-lg-9 {
- padding-bottom: 72px !important;
- }
-
- .pl-lg-9,
-.px-lg-9 {
- padding-left: 72px !important;
- }
-
- .p-lg-10 {
- padding: 80px !important;
- }
-
- .pt-lg-10,
-.py-lg-10 {
- padding-top: 80px !important;
- }
-
- .pr-lg-10,
-.px-lg-10 {
- padding-right: 80px !important;
- }
-
- .pb-lg-10,
-.py-lg-10 {
- padding-bottom: 80px !important;
- }
-
- .pl-lg-10,
-.px-lg-10 {
- padding-left: 80px !important;
- }
-
- .p-lg-12 {
- padding: 96px !important;
- }
-
- .pt-lg-12,
-.py-lg-12 {
- padding-top: 96px !important;
- }
-
- .pr-lg-12,
-.px-lg-12 {
- padding-right: 96px !important;
- }
-
- .pb-lg-12,
-.py-lg-12 {
- padding-bottom: 96px !important;
- }
-
- .pl-lg-12,
-.px-lg-12 {
- padding-left: 96px !important;
- }
-
- .p-lg-15 {
- padding: 120px !important;
- }
-
- .pt-lg-15,
-.py-lg-15 {
- padding-top: 120px !important;
- }
-
- .pr-lg-15,
-.px-lg-15 {
- padding-right: 120px !important;
- }
-
- .pb-lg-15,
-.py-lg-15 {
- padding-bottom: 120px !important;
- }
-
- .pl-lg-15,
-.px-lg-15 {
- padding-left: 120px !important;
- }
-
- .m-lg-n1 {
- margin: -8px !important;
- }
-
- .mt-lg-n1,
-.my-lg-n1 {
- margin-top: -8px !important;
- }
-
- .mr-lg-n1,
-.mx-lg-n1 {
- margin-right: -8px !important;
- }
-
- .mb-lg-n1,
-.my-lg-n1 {
- margin-bottom: -8px !important;
- }
-
- .ml-lg-n1,
-.mx-lg-n1 {
- margin-left: -8px !important;
- }
-
- .m-lg-n2 {
- margin: -16px !important;
- }
-
- .mt-lg-n2,
-.my-lg-n2 {
- margin-top: -16px !important;
- }
-
- .mr-lg-n2,
-.mx-lg-n2 {
- margin-right: -16px !important;
- }
-
- .mb-lg-n2,
-.my-lg-n2 {
- margin-bottom: -16px !important;
- }
-
- .ml-lg-n2,
-.mx-lg-n2 {
- margin-left: -16px !important;
- }
-
- .m-lg-n3 {
- margin: -24px !important;
- }
-
- .mt-lg-n3,
-.my-lg-n3 {
- margin-top: -24px !important;
- }
-
- .mr-lg-n3,
-.mx-lg-n3 {
- margin-right: -24px !important;
- }
-
- .mb-lg-n3,
-.my-lg-n3 {
- margin-bottom: -24px !important;
- }
-
- .ml-lg-n3,
-.mx-lg-n3 {
- margin-left: -24px !important;
- }
-
- .m-lg-n4 {
- margin: -32px !important;
- }
-
- .mt-lg-n4,
-.my-lg-n4 {
- margin-top: -32px !important;
- }
-
- .mr-lg-n4,
-.mx-lg-n4 {
- margin-right: -32px !important;
- }
-
- .mb-lg-n4,
-.my-lg-n4 {
- margin-bottom: -32px !important;
- }
-
- .ml-lg-n4,
-.mx-lg-n4 {
- margin-left: -32px !important;
- }
-
- .m-lg-n5 {
- margin: -40px !important;
- }
-
- .mt-lg-n5,
-.my-lg-n5 {
- margin-top: -40px !important;
- }
-
- .mr-lg-n5,
-.mx-lg-n5 {
- margin-right: -40px !important;
- }
-
- .mb-lg-n5,
-.my-lg-n5 {
- margin-bottom: -40px !important;
- }
-
- .ml-lg-n5,
-.mx-lg-n5 {
- margin-left: -40px !important;
- }
-
- .m-lg-n6 {
- margin: -48px !important;
- }
-
- .mt-lg-n6,
-.my-lg-n6 {
- margin-top: -48px !important;
- }
-
- .mr-lg-n6,
-.mx-lg-n6 {
- margin-right: -48px !important;
- }
-
- .mb-lg-n6,
-.my-lg-n6 {
- margin-bottom: -48px !important;
- }
-
- .ml-lg-n6,
-.mx-lg-n6 {
- margin-left: -48px !important;
- }
-
- .m-lg-n7 {
- margin: -56px !important;
- }
-
- .mt-lg-n7,
-.my-lg-n7 {
- margin-top: -56px !important;
- }
-
- .mr-lg-n7,
-.mx-lg-n7 {
- margin-right: -56px !important;
- }
-
- .mb-lg-n7,
-.my-lg-n7 {
- margin-bottom: -56px !important;
- }
-
- .ml-lg-n7,
-.mx-lg-n7 {
- margin-left: -56px !important;
- }
-
- .m-lg-n8 {
- margin: -64px !important;
- }
-
- .mt-lg-n8,
-.my-lg-n8 {
- margin-top: -64px !important;
- }
-
- .mr-lg-n8,
-.mx-lg-n8 {
- margin-right: -64px !important;
- }
-
- .mb-lg-n8,
-.my-lg-n8 {
- margin-bottom: -64px !important;
- }
-
- .ml-lg-n8,
-.mx-lg-n8 {
- margin-left: -64px !important;
- }
-
- .m-lg-n9 {
- margin: -72px !important;
- }
-
- .mt-lg-n9,
-.my-lg-n9 {
- margin-top: -72px !important;
- }
-
- .mr-lg-n9,
-.mx-lg-n9 {
- margin-right: -72px !important;
- }
-
- .mb-lg-n9,
-.my-lg-n9 {
- margin-bottom: -72px !important;
- }
-
- .ml-lg-n9,
-.mx-lg-n9 {
- margin-left: -72px !important;
- }
-
- .m-lg-n10 {
- margin: -80px !important;
- }
-
- .mt-lg-n10,
-.my-lg-n10 {
- margin-top: -80px !important;
- }
-
- .mr-lg-n10,
-.mx-lg-n10 {
- margin-right: -80px !important;
- }
-
- .mb-lg-n10,
-.my-lg-n10 {
- margin-bottom: -80px !important;
- }
-
- .ml-lg-n10,
-.mx-lg-n10 {
- margin-left: -80px !important;
- }
-
- .m-lg-n12 {
- margin: -96px !important;
- }
-
- .mt-lg-n12,
-.my-lg-n12 {
- margin-top: -96px !important;
- }
-
- .mr-lg-n12,
-.mx-lg-n12 {
- margin-right: -96px !important;
- }
-
- .mb-lg-n12,
-.my-lg-n12 {
- margin-bottom: -96px !important;
- }
-
- .ml-lg-n12,
-.mx-lg-n12 {
- margin-left: -96px !important;
- }
-
- .m-lg-n15 {
- margin: -120px !important;
- }
-
- .mt-lg-n15,
-.my-lg-n15 {
- margin-top: -120px !important;
- }
-
- .mr-lg-n15,
-.mx-lg-n15 {
- margin-right: -120px !important;
- }
-
- .mb-lg-n15,
-.my-lg-n15 {
- margin-bottom: -120px !important;
- }
-
- .ml-lg-n15,
-.mx-lg-n15 {
- margin-left: -120px !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: 1240px) {
- .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: 8px !important;
- }
-
- .mt-xl-1,
-.my-xl-1 {
- margin-top: 8px !important;
- }
-
- .mr-xl-1,
-.mx-xl-1 {
- margin-right: 8px !important;
- }
-
- .mb-xl-1,
-.my-xl-1 {
- margin-bottom: 8px !important;
- }
-
- .ml-xl-1,
-.mx-xl-1 {
- margin-left: 8px !important;
- }
-
- .m-xl-2 {
- margin: 16px !important;
- }
-
- .mt-xl-2,
-.my-xl-2 {
- margin-top: 16px !important;
- }
-
- .mr-xl-2,
-.mx-xl-2 {
- margin-right: 16px !important;
- }
-
- .mb-xl-2,
-.my-xl-2 {
- margin-bottom: 16px !important;
- }
-
- .ml-xl-2,
-.mx-xl-2 {
- margin-left: 16px !important;
- }
-
- .m-xl-3 {
- margin: 24px !important;
- }
-
- .mt-xl-3,
-.my-xl-3 {
- margin-top: 24px !important;
- }
-
- .mr-xl-3,
-.mx-xl-3 {
- margin-right: 24px !important;
- }
-
- .mb-xl-3,
-.my-xl-3 {
- margin-bottom: 24px !important;
- }
-
- .ml-xl-3,
-.mx-xl-3 {
- margin-left: 24px !important;
- }
-
- .m-xl-4 {
- margin: 32px !important;
- }
-
- .mt-xl-4,
-.my-xl-4 {
- margin-top: 32px !important;
- }
-
- .mr-xl-4,
-.mx-xl-4 {
- margin-right: 32px !important;
- }
-
- .mb-xl-4,
-.my-xl-4 {
- margin-bottom: 32px !important;
- }
-
- .ml-xl-4,
-.mx-xl-4 {
- margin-left: 32px !important;
- }
-
- .m-xl-5 {
- margin: 40px !important;
- }
-
- .mt-xl-5,
-.my-xl-5 {
- margin-top: 40px !important;
- }
-
- .mr-xl-5,
-.mx-xl-5 {
- margin-right: 40px !important;
- }
-
- .mb-xl-5,
-.my-xl-5 {
- margin-bottom: 40px !important;
- }
-
- .ml-xl-5,
-.mx-xl-5 {
- margin-left: 40px !important;
- }
-
- .m-xl-6 {
- margin: 48px !important;
- }
-
- .mt-xl-6,
-.my-xl-6 {
- margin-top: 48px !important;
- }
-
- .mr-xl-6,
-.mx-xl-6 {
- margin-right: 48px !important;
- }
-
- .mb-xl-6,
-.my-xl-6 {
- margin-bottom: 48px !important;
- }
-
- .ml-xl-6,
-.mx-xl-6 {
- margin-left: 48px !important;
- }
-
- .m-xl-7 {
- margin: 56px !important;
- }
-
- .mt-xl-7,
-.my-xl-7 {
- margin-top: 56px !important;
- }
-
- .mr-xl-7,
-.mx-xl-7 {
- margin-right: 56px !important;
- }
-
- .mb-xl-7,
-.my-xl-7 {
- margin-bottom: 56px !important;
- }
-
- .ml-xl-7,
-.mx-xl-7 {
- margin-left: 56px !important;
- }
-
- .m-xl-8 {
- margin: 64px !important;
- }
-
- .mt-xl-8,
-.my-xl-8 {
- margin-top: 64px !important;
- }
-
- .mr-xl-8,
-.mx-xl-8 {
- margin-right: 64px !important;
- }
-
- .mb-xl-8,
-.my-xl-8 {
- margin-bottom: 64px !important;
- }
-
- .ml-xl-8,
-.mx-xl-8 {
- margin-left: 64px !important;
- }
-
- .m-xl-9 {
- margin: 72px !important;
- }
-
- .mt-xl-9,
-.my-xl-9 {
- margin-top: 72px !important;
- }
-
- .mr-xl-9,
-.mx-xl-9 {
- margin-right: 72px !important;
- }
-
- .mb-xl-9,
-.my-xl-9 {
- margin-bottom: 72px !important;
- }
-
- .ml-xl-9,
-.mx-xl-9 {
- margin-left: 72px !important;
- }
-
- .m-xl-10 {
- margin: 80px !important;
- }
-
- .mt-xl-10,
-.my-xl-10 {
- margin-top: 80px !important;
- }
-
- .mr-xl-10,
-.mx-xl-10 {
- margin-right: 80px !important;
- }
-
- .mb-xl-10,
-.my-xl-10 {
- margin-bottom: 80px !important;
- }
-
- .ml-xl-10,
-.mx-xl-10 {
- margin-left: 80px !important;
- }
-
- .m-xl-12 {
- margin: 96px !important;
- }
-
- .mt-xl-12,
-.my-xl-12 {
- margin-top: 96px !important;
- }
-
- .mr-xl-12,
-.mx-xl-12 {
- margin-right: 96px !important;
- }
-
- .mb-xl-12,
-.my-xl-12 {
- margin-bottom: 96px !important;
- }
-
- .ml-xl-12,
-.mx-xl-12 {
- margin-left: 96px !important;
- }
-
- .m-xl-15 {
- margin: 120px !important;
- }
-
- .mt-xl-15,
-.my-xl-15 {
- margin-top: 120px !important;
- }
-
- .mr-xl-15,
-.mx-xl-15 {
- margin-right: 120px !important;
- }
-
- .mb-xl-15,
-.my-xl-15 {
- margin-bottom: 120px !important;
- }
-
- .ml-xl-15,
-.mx-xl-15 {
- margin-left: 120px !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: 8px !important;
- }
-
- .pt-xl-1,
-.py-xl-1 {
- padding-top: 8px !important;
- }
-
- .pr-xl-1,
-.px-xl-1 {
- padding-right: 8px !important;
- }
-
- .pb-xl-1,
-.py-xl-1 {
- padding-bottom: 8px !important;
- }
-
- .pl-xl-1,
-.px-xl-1 {
- padding-left: 8px !important;
- }
-
- .p-xl-2 {
- padding: 16px !important;
- }
-
- .pt-xl-2,
-.py-xl-2 {
- padding-top: 16px !important;
- }
-
- .pr-xl-2,
-.px-xl-2 {
- padding-right: 16px !important;
- }
-
- .pb-xl-2,
-.py-xl-2 {
- padding-bottom: 16px !important;
- }
-
- .pl-xl-2,
-.px-xl-2 {
- padding-left: 16px !important;
- }
-
- .p-xl-3 {
- padding: 24px !important;
- }
-
- .pt-xl-3,
-.py-xl-3 {
- padding-top: 24px !important;
- }
-
- .pr-xl-3,
-.px-xl-3 {
- padding-right: 24px !important;
- }
-
- .pb-xl-3,
-.py-xl-3 {
- padding-bottom: 24px !important;
- }
-
- .pl-xl-3,
-.px-xl-3 {
- padding-left: 24px !important;
- }
-
- .p-xl-4 {
- padding: 32px !important;
- }
-
- .pt-xl-4,
-.py-xl-4 {
- padding-top: 32px !important;
- }
-
- .pr-xl-4,
-.px-xl-4 {
- padding-right: 32px !important;
- }
-
- .pb-xl-4,
-.py-xl-4 {
- padding-bottom: 32px !important;
- }
-
- .pl-xl-4,
-.px-xl-4 {
- padding-left: 32px !important;
- }
-
- .p-xl-5 {
- padding: 40px !important;
- }
-
- .pt-xl-5,
-.py-xl-5 {
- padding-top: 40px !important;
- }
-
- .pr-xl-5,
-.px-xl-5 {
- padding-right: 40px !important;
- }
-
- .pb-xl-5,
-.py-xl-5 {
- padding-bottom: 40px !important;
- }
-
- .pl-xl-5,
-.px-xl-5 {
- padding-left: 40px !important;
- }
-
- .p-xl-6 {
- padding: 48px !important;
- }
-
- .pt-xl-6,
-.py-xl-6 {
- padding-top: 48px !important;
- }
-
- .pr-xl-6,
-.px-xl-6 {
- padding-right: 48px !important;
- }
-
- .pb-xl-6,
-.py-xl-6 {
- padding-bottom: 48px !important;
- }
-
- .pl-xl-6,
-.px-xl-6 {
- padding-left: 48px !important;
- }
-
- .p-xl-7 {
- padding: 56px !important;
- }
-
- .pt-xl-7,
-.py-xl-7 {
- padding-top: 56px !important;
- }
-
- .pr-xl-7,
-.px-xl-7 {
- padding-right: 56px !important;
- }
-
- .pb-xl-7,
-.py-xl-7 {
- padding-bottom: 56px !important;
- }
-
- .pl-xl-7,
-.px-xl-7 {
- padding-left: 56px !important;
- }
-
- .p-xl-8 {
- padding: 64px !important;
- }
-
- .pt-xl-8,
-.py-xl-8 {
- padding-top: 64px !important;
- }
-
- .pr-xl-8,
-.px-xl-8 {
- padding-right: 64px !important;
- }
-
- .pb-xl-8,
-.py-xl-8 {
- padding-bottom: 64px !important;
- }
-
- .pl-xl-8,
-.px-xl-8 {
- padding-left: 64px !important;
- }
-
- .p-xl-9 {
- padding: 72px !important;
- }
-
- .pt-xl-9,
-.py-xl-9 {
- padding-top: 72px !important;
- }
-
- .pr-xl-9,
-.px-xl-9 {
- padding-right: 72px !important;
- }
-
- .pb-xl-9,
-.py-xl-9 {
- padding-bottom: 72px !important;
- }
-
- .pl-xl-9,
-.px-xl-9 {
- padding-left: 72px !important;
- }
-
- .p-xl-10 {
- padding: 80px !important;
- }
-
- .pt-xl-10,
-.py-xl-10 {
- padding-top: 80px !important;
- }
-
- .pr-xl-10,
-.px-xl-10 {
- padding-right: 80px !important;
- }
-
- .pb-xl-10,
-.py-xl-10 {
- padding-bottom: 80px !important;
- }
-
- .pl-xl-10,
-.px-xl-10 {
- padding-left: 80px !important;
- }
-
- .p-xl-12 {
- padding: 96px !important;
- }
-
- .pt-xl-12,
-.py-xl-12 {
- padding-top: 96px !important;
- }
-
- .pr-xl-12,
-.px-xl-12 {
- padding-right: 96px !important;
- }
-
- .pb-xl-12,
-.py-xl-12 {
- padding-bottom: 96px !important;
- }
-
- .pl-xl-12,
-.px-xl-12 {
- padding-left: 96px !important;
- }
-
- .p-xl-15 {
- padding: 120px !important;
- }
-
- .pt-xl-15,
-.py-xl-15 {
- padding-top: 120px !important;
- }
-
- .pr-xl-15,
-.px-xl-15 {
- padding-right: 120px !important;
- }
-
- .pb-xl-15,
-.py-xl-15 {
- padding-bottom: 120px !important;
- }
-
- .pl-xl-15,
-.px-xl-15 {
- padding-left: 120px !important;
- }
-
- .m-xl-n1 {
- margin: -8px !important;
- }
-
- .mt-xl-n1,
-.my-xl-n1 {
- margin-top: -8px !important;
- }
-
- .mr-xl-n1,
-.mx-xl-n1 {
- margin-right: -8px !important;
- }
-
- .mb-xl-n1,
-.my-xl-n1 {
- margin-bottom: -8px !important;
- }
-
- .ml-xl-n1,
-.mx-xl-n1 {
- margin-left: -8px !important;
- }
-
- .m-xl-n2 {
- margin: -16px !important;
- }
-
- .mt-xl-n2,
-.my-xl-n2 {
- margin-top: -16px !important;
- }
-
- .mr-xl-n2,
-.mx-xl-n2 {
- margin-right: -16px !important;
- }
-
- .mb-xl-n2,
-.my-xl-n2 {
- margin-bottom: -16px !important;
- }
-
- .ml-xl-n2,
-.mx-xl-n2 {
- margin-left: -16px !important;
- }
-
- .m-xl-n3 {
- margin: -24px !important;
- }
-
- .mt-xl-n3,
-.my-xl-n3 {
- margin-top: -24px !important;
- }
-
- .mr-xl-n3,
-.mx-xl-n3 {
- margin-right: -24px !important;
- }
-
- .mb-xl-n3,
-.my-xl-n3 {
- margin-bottom: -24px !important;
- }
-
- .ml-xl-n3,
-.mx-xl-n3 {
- margin-left: -24px !important;
- }
-
- .m-xl-n4 {
- margin: -32px !important;
- }
-
- .mt-xl-n4,
-.my-xl-n4 {
- margin-top: -32px !important;
- }
-
- .mr-xl-n4,
-.mx-xl-n4 {
- margin-right: -32px !important;
- }
-
- .mb-xl-n4,
-.my-xl-n4 {
- margin-bottom: -32px !important;
- }
-
- .ml-xl-n4,
-.mx-xl-n4 {
- margin-left: -32px !important;
- }
-
- .m-xl-n5 {
- margin: -40px !important;
- }
-
- .mt-xl-n5,
-.my-xl-n5 {
- margin-top: -40px !important;
- }
-
- .mr-xl-n5,
-.mx-xl-n5 {
- margin-right: -40px !important;
- }
-
- .mb-xl-n5,
-.my-xl-n5 {
- margin-bottom: -40px !important;
- }
-
- .ml-xl-n5,
-.mx-xl-n5 {
- margin-left: -40px !important;
- }
-
- .m-xl-n6 {
- margin: -48px !important;
- }
-
- .mt-xl-n6,
-.my-xl-n6 {
- margin-top: -48px !important;
- }
-
- .mr-xl-n6,
-.mx-xl-n6 {
- margin-right: -48px !important;
- }
-
- .mb-xl-n6,
-.my-xl-n6 {
- margin-bottom: -48px !important;
- }
-
- .ml-xl-n6,
-.mx-xl-n6 {
- margin-left: -48px !important;
- }
-
- .m-xl-n7 {
- margin: -56px !important;
- }
-
- .mt-xl-n7,
-.my-xl-n7 {
- margin-top: -56px !important;
- }
-
- .mr-xl-n7,
-.mx-xl-n7 {
- margin-right: -56px !important;
- }
-
- .mb-xl-n7,
-.my-xl-n7 {
- margin-bottom: -56px !important;
- }
-
- .ml-xl-n7,
-.mx-xl-n7 {
- margin-left: -56px !important;
- }
-
- .m-xl-n8 {
- margin: -64px !important;
- }
-
- .mt-xl-n8,
-.my-xl-n8 {
- margin-top: -64px !important;
- }
-
- .mr-xl-n8,
-.mx-xl-n8 {
- margin-right: -64px !important;
- }
-
- .mb-xl-n8,
-.my-xl-n8 {
- margin-bottom: -64px !important;
- }
-
- .ml-xl-n8,
-.mx-xl-n8 {
- margin-left: -64px !important;
- }
-
- .m-xl-n9 {
- margin: -72px !important;
- }
-
- .mt-xl-n9,
-.my-xl-n9 {
- margin-top: -72px !important;
- }
-
- .mr-xl-n9,
-.mx-xl-n9 {
- margin-right: -72px !important;
- }
-
- .mb-xl-n9,
-.my-xl-n9 {
- margin-bottom: -72px !important;
- }
-
- .ml-xl-n9,
-.mx-xl-n9 {
- margin-left: -72px !important;
- }
-
- .m-xl-n10 {
- margin: -80px !important;
- }
-
- .mt-xl-n10,
-.my-xl-n10 {
- margin-top: -80px !important;
- }
-
- .mr-xl-n10,
-.mx-xl-n10 {
- margin-right: -80px !important;
- }
-
- .mb-xl-n10,
-.my-xl-n10 {
- margin-bottom: -80px !important;
- }
-
- .ml-xl-n10,
-.mx-xl-n10 {
- margin-left: -80px !important;
- }
-
- .m-xl-n12 {
- margin: -96px !important;
- }
-
- .mt-xl-n12,
-.my-xl-n12 {
- margin-top: -96px !important;
- }
-
- .mr-xl-n12,
-.mx-xl-n12 {
- margin-right: -96px !important;
- }
-
- .mb-xl-n12,
-.my-xl-n12 {
- margin-bottom: -96px !important;
- }
-
- .ml-xl-n12,
-.mx-xl-n12 {
- margin-left: -96px !important;
- }
-
- .m-xl-n15 {
- margin: -120px !important;
- }
-
- .mt-xl-n15,
-.my-xl-n15 {
- margin-top: -120px !important;
- }
-
- .mr-xl-n15,
-.mx-xl-n15 {
- margin-right: -120px !important;
- }
-
- .mb-xl-n15,
-.my-xl-n15 {
- margin-bottom: -120px !important;
- }
-
- .ml-xl-n15,
-.mx-xl-n15 {
- margin-left: -120px !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;
- }
-}
-.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: 400px) {
- .text-xs-left {
- text-align: left !important;
- }
-
- .text-xs-right {
- text-align: right !important;
- }
-
- .text-xs-center {
- text-align: center !important;
- }
-}
-@media (min-width: 616px) {
- .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: 980px) {
- .text-lg-left {
- text-align: left !important;
- }
-
- .text-lg-right {
- text-align: right !important;
- }
-
- .text-lg-center {
- text-align: center !important;
- }
-}
-@media (min-width: 1240px) {
- .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: #ffcc00 !important;
-}
-
-a.text-primary:hover, a.text-primary:focus {
- color: #b38f00 !important;
-}
-
-.text-secondary {
- color: #212529 !important;
-}
-
-a.text-secondary:hover, a.text-secondary:focus {
- color: black !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: #f1f6f9 !important;
-}
-
-a.text-light:hover, a.text-light:focus {
- color: #bbd4e2 !important;
-}
-
-.text-dark {
- color: #495057 !important;
-}
-
-a.text-dark:hover, a.text-dark:focus {
- color: #262a2d !important;
-}
-
-.text-primary-light {
- color: #fffaf0 !important;
-}
-
-a.text-primary-light:hover, a.text-primary-light:focus {
- color: #ffe1a4 !important;
-}
-
-.text-secondary-light {
- color: #fff !important;
-}
-
-a.text-secondary-light:hover, a.text-secondary-light:focus {
- color: #d9d9d9 !important;
-}
-
-.text-tertiary {
- color: #257af4 !important;
-}
-
-a.text-tertiary:hover, a.text-tertiary:focus {
- color: #0a56c3 !important;
-}
-
-.text-tertiary-light {
- color: #e3f1fe !important;
-}
-
-a.text-tertiary-light:hover, a.text-tertiary-light:focus {
- color: #99ccfb !important;
-}
-
-.text-white {
- color: #fff !important;
-}
-
-a.text-white:hover, a.text-white:focus {
- color: #d9d9d9 !important;
-}
-
-.text-black {
- color: #212529 !important;
-}
-
-a.text-black:hover, a.text-black:focus {
- color: black !important;
-}
-
-.text-blue {
- color: #257af4 !important;
-}
-
-a.text-blue:hover, a.text-blue:focus {
- color: #0a56c3 !important;
-}
-
-.text-light-blue {
- color: #e3f1fe !important;
-}
-
-a.text-light-blue:hover, a.text-light-blue:focus {
- color: #99ccfb !important;
-}
-
-.text-yellow {
- color: #ffcc00 !important;
-}
-
-a.text-yellow:hover, a.text-yellow:focus {
- color: #b38f00 !important;
-}
-
-.text-light-yellow {
- color: #fffaf0 !important;
-}
-
-a.text-light-yellow:hover, a.text-light-yellow:focus {
- color: #ffe1a4 !important;
-}
-
-.text-orange {
- color: #ff8c00 !important;
-}
-
-a.text-orange:hover, a.text-orange:focus {
- color: #b36200 !important;
-}
-
-.text-light-orange {
- color: #ffe4b5 !important;
-}
-
-a.text-light-orange:hover, a.text-light-orange:focus {
- color: #ffc869 !important;
-}
-
-.text-red {
- color: #ff3939 !important;
-}
-
-a.text-red:hover, a.text-red:focus {
- color: #ec0000 !important;
-}
-
-.text-light-red {
- color: #ffe4e1 !important;
-}
-
-a.text-light-red:hover, a.text-light-red:focus {
- color: #ff9f95 !important;
-}
-
-.text-medium {
- color: #d6dbdf !important;
-}
-
-a.text-medium:hover, a.text-medium:focus {
- color: #abb5bd !important;
-}
-
-.text-body {
- color: #212529 !important;
-}
-
-.text-muted {
- color: #6c757d !important;
-}
-
-.text-black-50 {
- color: rgba(33, 37, 41, 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-break: break-word !important;
- overflow-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 #d6dbdf;
- 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: 980px !important;
- }
-
- .container {
- min-width: 980px !important;
- }
-
- .navbar {
- display: none;
- }
-
- .badge {
- border: 1px solid #212529;
- }
-
- .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: #d6dbdf;
- }
-
- .table .thead-dark th {
- color: inherit;
- border-color: #d6dbdf;
- }
-}
\ No newline at end of file
+ */:root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--gray:#6c757d;--gray-dark:#343a40;--brand-primary:#fc0;--brand-secondary:#ff3939;--primary-accent-yellow:#fc0;--primary-accent-light-yellow:#fffaf0;--primary-accent-blue:#257af4;--primary-accent-light-blue:#e3f1fe;--secondary-accent-orange:#ff8c00;--secondary-accent-light-orange:#ffe4b5;--secondary-accent-red:#ff3939;--secondary-accent-light-red:#ffe4e1;--primary:#fc0;--secondary:#212529;--success:#28a745;--info:#17a2b8;--warning:#ffc107;--danger:#dc3545;--light:#f1f6f9;--dark:#495057;--primary-light:#fffaf0;--secondary-light:#fff;--tertiary:#257af4;--tertiary-light:#e3f1fe;--white:#fff;--black:#212529;--blue:#257af4;--light-blue:#e3f1fe;--yellow:#fc0;--light-yellow:#fffaf0;--orange:#ff8c00;--light-orange:#ffe4b5;--red:#ff3939;--light-red:#ffe4e1;--medium:#d6dbdf;--breakpoint-xxs:0;--breakpoint-xs:400px;--breakpoint-sm:616px;--breakpoint-md:768px;--breakpoint-lg:980px;--breakpoint-xl:1240px;--font-family-sans-serif:"Noto Sans",sans-serif;--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(33,37,41,0)}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:Noto Sans,sans-serif;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:16px}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0;-webkit-text-decoration-skip-ink:none;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:.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{text-decoration:none;background-color:transparent}a,a:hover{color:#ff8c00}a:hover{text-decoration:underline}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}figure{margin:0 0 1rem}img{border-style:none}img,svg{vertical-align:middle}svg{overflow:hidden}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.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}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}input[type=date],input[type=datetime-local],input[type=month],input[type=time]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;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 + .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:16px;font-family:Hind Siliguri,sans-serif;font-weight:500;line-height:1.125}.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 + .9vw)}}.h3,h3{font-size:1.75rem}@media(max-width:1200px){.h3,h3{font-size:calc(1.3rem + .6vw)}}.h4,h4{font-size:1.5rem}@media(max-width:1200px){.h4,h4{font-size:calc(1.275rem + .3vw)}}.h5,h5{font-size:1.125rem}.h6,h6{font-size:.875rem}.lead{font-size:1.375rem;font-weight:400}@media(max-width:1200px){.lead{font-size:calc(1.2625rem + .15vw)}}.display-1{font-size:4rem;font-weight:600;line-height:1.125}@media(max-width:1200px){.display-1{font-size:calc(1.525rem + 3.3vw)}}.display-2{font-size:2.5rem;font-weight:600;line-height:1.125}@media(max-width:1200px){.display-2{font-size:calc(1.375rem + 1.5vw)}}.display-3{font-size:2rem;font-weight:500;line-height:1.125}@media(max-width:1200px){.display-3{font-size:calc(1.325rem + .9vw)}}.display-4{font-size:1.75rem;font-weight:500;line-height:1.125}@media(max-width:1200px){.display-4{font-size:calc(1.3rem + .6vw)}}hr{margin-top:8px;margin-bottom:8px;border:0;border-top:1px solid rgba(33,37,41,.1)}.small,small{font-size:80%;font-weight:400}.mark,mark{padding:.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:.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{margin-bottom:8px;font-size:1.25rem}.blockquote-footer{display:block;font-size:80%;color:#6c757d}.blockquote-footer:before{content:"— "}.img-fluid,.img-thumbnail{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:8px}.figure{display:inline-block}.figure-img{margin-bottom:4px;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:.2rem .4rem;font-size:87.5%;color:#fff;background-color:#495057;border-radius:8px}kbd kbd{padding:0;font-size:100%;font-weight:700}pre{display:block;font-size:87.5%;color:#495057}pre code{font-size:inherit;color:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{width:100%;padding-right:20px;padding-left:20px;margin-right:auto;margin-left:auto}@media(min-width:400px){.container{max-width:576px}}@media(min-width:616px){.container{max-width:576px}}@media(min-width:768px){.container{max-width:958px}}@media(min-width:980px){.container{max-width:1008px}}@media(min-width:1240px){.container{max-width:1118px}}.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xs{width:100%;padding-right:20px;padding-left:20px;margin-right:auto;margin-left:auto}@media(min-width:400px){.container,.container-xs{max-width:576px}}@media(min-width:616px){.container,.container-sm,.container-xs{max-width:576px}}@media(min-width:768px){.container,.container-md,.container-sm,.container-xs{max-width:958px}}@media(min-width:980px){.container,.container-lg,.container-md,.container-sm,.container-xs{max-width:1008px}}@media(min-width:1240px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xs{max-width:1118px}}.row{display:flex;flex-wrap:wrap;margin-right:-20px;margin-left:-20px}.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,.col-xs,.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-auto{position:relative;width:100%;padding-right:20px;padding-left:20px}.col{flex-basis:0;flex-grow:1;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.3333333333%;max-width:33.3333333333%}.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.6666666667%;max-width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto;max-width:100%}.col-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-3{flex:0 0 25%;max-width:25%}.col-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-6{flex:0 0 50%;max-width:50%}.col-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-9{flex:0 0 75%;max-width:75%}.col-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.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.3333333333%}.offset-2{margin-left:16.6666666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.3333333333%}.offset-5{margin-left:41.6666666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.3333333333%}.offset-8{margin-left:66.6666666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.3333333333%}.offset-11{margin-left:91.6666666667%}@media(min-width:400px){.col-xs{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-xs-1>*{flex:0 0 100%;max-width:100%}.row-cols-xs-2>*{flex:0 0 50%;max-width:50%}.row-cols-xs-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-xs-4>*{flex:0 0 25%;max-width:25%}.row-cols-xs-5>*{flex:0 0 20%;max-width:20%}.row-cols-xs-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-xs-auto{flex:0 0 auto;width:auto;max-width:100%}.col-xs-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-xs-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-xs-3{flex:0 0 25%;max-width:25%}.col-xs-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-xs-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-xs-6{flex:0 0 50%;max-width:50%}.col-xs-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-xs-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-xs-9{flex:0 0 75%;max-width:75%}.col-xs-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-xs-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-xs-12{flex:0 0 100%;max-width:100%}.order-xs-first{order:-1}.order-xs-last{order:13}.order-xs-0{order:0}.order-xs-1{order:1}.order-xs-2{order:2}.order-xs-3{order:3}.order-xs-4{order:4}.order-xs-5{order:5}.order-xs-6{order:6}.order-xs-7{order:7}.order-xs-8{order:8}.order-xs-9{order:9}.order-xs-10{order:10}.order-xs-11{order:11}.order-xs-12{order:12}.offset-xs-0{margin-left:0}.offset-xs-1{margin-left:8.3333333333%}.offset-xs-2{margin-left:16.6666666667%}.offset-xs-3{margin-left:25%}.offset-xs-4{margin-left:33.3333333333%}.offset-xs-5{margin-left:41.6666666667%}.offset-xs-6{margin-left:50%}.offset-xs-7{margin-left:58.3333333333%}.offset-xs-8{margin-left:66.6666666667%}.offset-xs-9{margin-left:75%}.offset-xs-10{margin-left:83.3333333333%}.offset-xs-11{margin-left:91.6666666667%}}@media(min-width:616px){.col-sm{flex-basis:0;flex-grow:1;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.3333333333%;max-width:33.3333333333%}.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.6666666667%;max-width:16.6666666667%}.col-sm-auto{flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-sm-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-sm-3{flex:0 0 25%;max-width:25%}.col-sm-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-sm-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-sm-6{flex:0 0 50%;max-width:50%}.col-sm-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-sm-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-sm-9{flex:0 0 75%;max-width:75%}.col-sm-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-sm-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.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.3333333333%}.offset-sm-2{margin-left:16.6666666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.3333333333%}.offset-sm-5{margin-left:41.6666666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.3333333333%}.offset-sm-8{margin-left:66.6666666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.3333333333%}.offset-sm-11{margin-left:91.6666666667%}}@media(min-width:768px){.col-md{flex-basis:0;flex-grow:1;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.3333333333%;max-width:33.3333333333%}.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.6666666667%;max-width:16.6666666667%}.col-md-auto{flex:0 0 auto;width:auto;max-width:100%}.col-md-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-md-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-md-3{flex:0 0 25%;max-width:25%}.col-md-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-md-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-md-6{flex:0 0 50%;max-width:50%}.col-md-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-md-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-md-9{flex:0 0 75%;max-width:75%}.col-md-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-md-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.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.3333333333%}.offset-md-2{margin-left:16.6666666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.3333333333%}.offset-md-5{margin-left:41.6666666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.3333333333%}.offset-md-8{margin-left:66.6666666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.3333333333%}.offset-md-11{margin-left:91.6666666667%}}@media(min-width:980px){.col-lg{flex-basis:0;flex-grow:1;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.3333333333%;max-width:33.3333333333%}.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.6666666667%;max-width:16.6666666667%}.col-lg-auto{flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-lg-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-lg-3{flex:0 0 25%;max-width:25%}.col-lg-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-lg-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-lg-6{flex:0 0 50%;max-width:50%}.col-lg-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-lg-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-lg-9{flex:0 0 75%;max-width:75%}.col-lg-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-lg-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.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.3333333333%}.offset-lg-2{margin-left:16.6666666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.3333333333%}.offset-lg-5{margin-left:41.6666666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.3333333333%}.offset-lg-8{margin-left:66.6666666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.3333333333%}.offset-lg-11{margin-left:91.6666666667%}}@media(min-width:1240px){.col-xl{flex-basis:0;flex-grow:1;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.3333333333%;max-width:33.3333333333%}.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.6666666667%;max-width:16.6666666667%}.col-xl-auto{flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-xl-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-xl-3{flex:0 0 25%;max-width:25%}.col-xl-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-xl-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-xl-6{flex:0 0 50%;max-width:50%}.col-xl-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-xl-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-xl-9{flex:0 0 75%;max-width:75%}.col-xl-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-xl-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.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.3333333333%}.offset-xl-2{margin-left:16.6666666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.3333333333%}.offset-xl-5{margin-left:41.6666666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.3333333333%}.offset-xl-8{margin-left:66.6666666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.3333333333%}.offset-xl-11{margin-left:91.6666666667%}}.table{width:100%;margin-bottom:8px;color:#212529}.table td,.table th{padding:.75rem;vertical-align:top;border-top:1px solid #d6dbdf}.table thead th{vertical-align:bottom;border-bottom:2px solid #d6dbdf}.table tbody+tbody{border-top:2px solid #d6dbdf}.table-sm td,.table-sm th{padding:.3rem}.table-bordered,.table-bordered td,.table-bordered th{border:1px solid #d6dbdf}.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(33,37,41,.05)}.table-hover tbody tr:hover{color:#212529;background-color:rgba(33,37,41,.075)}.table-primary,.table-primary>td,.table-primary>th{background-color:#fff1b8}.table-primary tbody+tbody,.table-primary td,.table-primary th,.table-primary thead th{border-color:#ffe47a}.table-hover .table-primary:hover,.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#ffec9f}.table-secondary,.table-secondary>td,.table-secondary>th{background-color:#c1c2c3}.table-secondary tbody+tbody,.table-secondary td,.table-secondary th,.table-secondary thead th{border-color:#8c8e90}.table-hover .table-secondary:hover,.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#b4b5b6}.table-success,.table-success>td,.table-success>th{background-color:#c3e6cb}.table-success tbody+tbody,.table-success td,.table-success th,.table-success thead th{border-color:#8fd19e}.table-hover .table-success:hover,.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#b1dfbb}.table-info,.table-info>td,.table-info>th{background-color:#bee5eb}.table-info tbody+tbody,.table-info td,.table-info th,.table-info thead th{border-color:#86cfda}.table-hover .table-info:hover,.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#abdde5}.table-warning,.table-warning>td,.table-warning>th{background-color:#ffeeba}.table-warning tbody+tbody,.table-warning td,.table-warning th,.table-warning thead th{border-color:#ffdf7e}.table-hover .table-warning:hover,.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#ffe8a1}.table-danger,.table-danger>td,.table-danger>th{background-color:#f5c6cb}.table-danger tbody+tbody,.table-danger td,.table-danger th,.table-danger thead th{border-color:#ed969e}.table-hover .table-danger:hover,.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f1b0b7}.table-light,.table-light>td,.table-light>th{background-color:#fbfcfd}.table-light tbody+tbody,.table-light td,.table-light th,.table-light thead th{border-color:#f8fafc}.table-hover .table-light:hover,.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#eaeff5}.table-dark,.table-dark>td,.table-dark>th{background-color:#ccced0}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#a0a4a8}.table-hover .table-dark:hover,.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#bfc1c4}.table-primary-light,.table-primary-light>td,.table-primary-light>th{background-color:#fffefb}.table-primary-light tbody+tbody,.table-primary-light td,.table-primary-light th,.table-primary-light thead th{border-color:#fffcf7}.table-hover .table-primary-light:hover,.table-hover .table-primary-light:hover>td,.table-hover .table-primary-light:hover>th{background-color:#fff8e2}.table-secondary-light,.table-secondary-light>td,.table-secondary-light>th{background-color:#fff}.table-secondary-light tbody+tbody,.table-secondary-light td,.table-secondary-light th,.table-secondary-light thead th{border-color:#fff}.table-hover .table-secondary-light:hover,.table-hover .table-secondary-light:hover>td,.table-hover .table-secondary-light:hover>th{background-color:#f2f2f2}.table-tertiary,.table-tertiary>td,.table-tertiary>th{background-color:#c2dafc}.table-tertiary tbody+tbody,.table-tertiary td,.table-tertiary th,.table-tertiary thead th{border-color:#8ebaf9}.table-hover .table-tertiary:hover,.table-hover .table-tertiary:hover>td,.table-hover .table-tertiary:hover>th{background-color:#aacbfb}.table-tertiary-light,.table-tertiary-light>td,.table-tertiary-light>th{background-color:#f7fbff}.table-tertiary-light tbody+tbody,.table-tertiary-light td,.table-tertiary-light th,.table-tertiary-light thead th{border-color:#f0f8fe}.table-hover .table-tertiary-light:hover,.table-hover .table-tertiary-light:hover>td,.table-hover .table-tertiary-light:hover>th{background-color:#deeeff}.table-white,.table-white>td,.table-white>th{background-color:#fff}.table-white tbody+tbody,.table-white td,.table-white th,.table-white thead th{border-color:#fff}.table-hover .table-white:hover,.table-hover .table-white:hover>td,.table-hover .table-white:hover>th{background-color:#f2f2f2}.table-black,.table-black>td,.table-black>th{background-color:#c1c2c3}.table-black tbody+tbody,.table-black td,.table-black th,.table-black thead th{border-color:#8c8e90}.table-hover .table-black:hover,.table-hover .table-black:hover>td,.table-hover .table-black:hover>th{background-color:#b4b5b6}.table-blue,.table-blue>td,.table-blue>th{background-color:#c2dafc}.table-blue tbody+tbody,.table-blue td,.table-blue th,.table-blue thead th{border-color:#8ebaf9}.table-hover .table-blue:hover,.table-hover .table-blue:hover>td,.table-hover .table-blue:hover>th{background-color:#aacbfb}.table-light-blue,.table-light-blue>td,.table-light-blue>th{background-color:#f7fbff}.table-light-blue tbody+tbody,.table-light-blue td,.table-light-blue th,.table-light-blue thead th{border-color:#f0f8fe}.table-hover .table-light-blue:hover,.table-hover .table-light-blue:hover>td,.table-hover .table-light-blue:hover>th{background-color:#deeeff}.table-yellow,.table-yellow>td,.table-yellow>th{background-color:#fff1b8}.table-yellow tbody+tbody,.table-yellow td,.table-yellow th,.table-yellow thead th{border-color:#ffe47a}.table-hover .table-yellow:hover,.table-hover .table-yellow:hover>td,.table-hover .table-yellow:hover>th{background-color:#ffec9f}.table-light-yellow,.table-light-yellow>td,.table-light-yellow>th{background-color:#fffefb}.table-light-yellow tbody+tbody,.table-light-yellow td,.table-light-yellow th,.table-light-yellow thead th{border-color:#fffcf7}.table-hover .table-light-yellow:hover,.table-hover .table-light-yellow:hover>td,.table-hover .table-light-yellow:hover>th{background-color:#fff8e2}.table-orange,.table-orange>td,.table-orange>th{background-color:#ffdfb8}.table-orange tbody+tbody,.table-orange td,.table-orange th,.table-orange thead th{border-color:#ffc37a}.table-hover .table-orange:hover,.table-hover .table-orange:hover>td,.table-hover .table-orange:hover>th{background-color:#ffd49f}.table-light-orange,.table-light-orange>td,.table-light-orange>th{background-color:#fff7ea}.table-light-orange tbody+tbody,.table-light-orange td,.table-light-orange th,.table-light-orange thead th{border-color:#fff1d9}.table-hover .table-light-orange:hover,.table-hover .table-light-orange:hover>td,.table-hover .table-light-orange:hover>th{background-color:#ffedd1}.table-red,.table-red>td,.table-red>th{background-color:#ffc8c8}.table-red tbody+tbody,.table-red td,.table-red th,.table-red thead th{border-color:#ff9898}.table-hover .table-red:hover,.table-hover .table-red:hover>td,.table-hover .table-red:hover>th{background-color:#ffafaf}.table-light-red,.table-light-red>td,.table-light-red>th{background-color:#fff7f7}.table-light-red tbody+tbody,.table-light-red td,.table-light-red th,.table-light-red thead th{border-color:#fff1ef}.table-hover .table-light-red:hover,.table-hover .table-light-red:hover>td,.table-hover .table-light-red:hover>th{background-color:#ffdede}.table-medium,.table-medium>td,.table-medium>th{background-color:#f4f5f6}.table-medium tbody+tbody,.table-medium td,.table-medium th,.table-medium thead th{border-color:#eaecee}.table-hover .table-medium:hover,.table-hover .table-medium:hover>td,.table-hover .table-medium:hover>th{background-color:#e6e8eb}.table-active,.table-active>td,.table-active>th{background-color:rgba(33,37,41,.075)}.table-hover .table-active:hover,.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:rgba(22,24,27,.075)}.table .thead-dark th{color:#fff;background-color:#343a40;border-color:#454d55}.table .thead-light th{color:#6c757d;background-color:#e9ecef;border-color:#d6dbdf}.table-dark{color:#fff;background-color:#343a40}.table-dark td,.table-dark th,.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:hsla(0,0%,100%,.05)}.table-dark.table-hover tbody tr:hover{color:#fff;background-color:hsla(0,0%,100%,.075)}@media(max-width:399.98px){.table-responsive-xs{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-xs>.table-bordered{border:0}}@media(max-width:615.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:979.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:1239.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 + .75rem + 2px);padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#6c757d;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:8px;transition:border-color .15s ease-in-out,box-shadow .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 #6c757d}.form-control:focus{color:#6c757d;background-color:#fff;border-color:#ffe680;outline:0;box-shadow:0 0 0 .2rem rgba(255,204,0,.25)}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control:-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}select.form-control:focus::-ms-value{color:#6c757d;background-color:#fff}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.125rem;line-height:1.5}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding:.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-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:8px}.form-control-lg{height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.125rem;line-height:1.5;border-radius:8px}select.form-control[multiple],select.form-control[size],textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.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:.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:.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#28a745}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(40,167,69,.9);border-radius:8px}.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:#28a745;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='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(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.custom-select.is-valid,.was-validated .custom-select:valid{border-color:#28a745;padding-right:calc(.75em + 2.3125rem);background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='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(.75em + .375rem) calc(.75em + .375rem)}.custom-select.is-valid:focus,.was-validated .custom-select:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#28a745}.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:#28a745}.custom-control-input.is-valid~.custom-control-label:before,.was-validated .custom-control-input:valid~.custom-control-label:before{border-color:#28a745}.custom-control-input.is-valid:checked~.custom-control-label:before,.was-validated .custom-control-input:valid:checked~.custom-control-label:before{border-color:#34ce57;background-color:#34ce57}.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 .2rem rgba(40,167,69,.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:#28a745}.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(220,53,69,.9);border-radius:8px}.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:#dc3545;padding-right:calc(1.5em + .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='%23dc3545'%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(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.custom-select.is-invalid,.was-validated .custom-select:invalid{border-color:#dc3545;padding-right:calc(.75em + 2.3125rem);background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .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='%23dc3545'%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(.75em + .375rem) calc(.75em + .375rem)}.custom-select.is-invalid:focus,.was-validated .custom-select:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.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:#dc3545}.custom-control-input.is-invalid~.custom-control-label:before,.was-validated .custom-control-input:invalid~.custom-control-label:before{border-color:#dc3545}.custom-control-input.is-invalid:checked~.custom-control-label:before,.was-validated .custom-control-input:invalid:checked~.custom-control-label:before{border-color:#e4606d;background-color:#e4606d}.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 .2rem rgba(220,53,69,.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:#dc3545}.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-inline{display:flex;flex-flow:row wrap;align-items:center}.form-inline .form-check{width:100%}@media(min-width:616px){.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:.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-family:inherit;font-weight:700;color:#212529;text-align:center;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:12px 32px;font-size:.875rem;line-height:20px;border-radius:8px;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .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:none}.btn.disabled,.btn:disabled{opacity:.65}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#495057;background-color:#fc0;border-color:#fc0}.btn-primary.focus,.btn-primary:focus,.btn-primary:hover{color:#495057;background-color:#d9ad00;border-color:#cca300}.btn-primary.focus,.btn-primary:focus{box-shadow:0 0 0 0 rgba(228,185,13,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#495057;background-color:#fc0;border-color:#fc0}.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{color:#495057;background-color:#cca300;border-color:#bf9900}.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 rgba(228,185,13,.5)}.btn-secondary{color:#fff;background-color:#212529;border-color:#212529}.btn-secondary.focus,.btn-secondary:focus,.btn-secondary:hover{color:#fff;background-color:#101214;border-color:#0a0c0d}.btn-secondary.focus,.btn-secondary:focus{box-shadow:0 0 0 0 rgba(66,70,73,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#212529;border-color:#212529}.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#0a0c0d;border-color:#050506}.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 rgba(66,70,73,.5)}.btn-success{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success.focus,.btn-success:focus,.btn-success:hover{color:#fff;background-color:#218838;border-color:#1e7e34}.btn-success.focus,.btn-success:focus{box-shadow:0 0 0 0 rgba(72,180,97,.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 rgba(72,180,97,.5)}.btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info.focus,.btn-info:focus,.btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}.btn-info.focus,.btn-info:focus{box-shadow:0 0 0 0 rgba(58,176,195,.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 rgba(58,176,195,.5)}.btn-warning{color:#495057;background-color:#ffc107;border-color:#ffc107}.btn-warning.focus,.btn-warning:focus,.btn-warning:hover{color:#495057;background-color:#e0a800;border-color:#d39e00}.btn-warning.focus,.btn-warning:focus{box-shadow:0 0 0 0 rgba(228,176,19,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#495057;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:#495057;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 rgba(228,176,19,.5)}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger.focus,.btn-danger:focus,.btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.btn-danger.focus,.btn-danger:focus{box-shadow:0 0 0 0 rgba(225,83,97,.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 rgba(225,83,97,.5)}.btn-light{color:#495057;background-color:#f1f6f9;border-color:#f1f6f9}.btn-light.focus,.btn-light:focus,.btn-light:hover{color:#495057;background-color:#d6e5ee;border-color:#cddfea}.btn-light.focus,.btn-light:focus{box-shadow:0 0 0 0 rgba(216,221,225,.5)}.btn-light.disabled,.btn-light:disabled{color:#495057;background-color:#f1f6f9;border-color:#f1f6f9}.btn-light:not(:disabled):not(.disabled).active,.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle{color:#495057;background-color:#cddfea;border-color:#c4d9e6}.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 rgba(216,221,225,.5)}.btn-dark{color:#fff;background-color:#495057;border-color:#495057}.btn-dark.focus,.btn-dark:focus,.btn-dark:hover{color:#fff;background-color:#383d42;border-color:#32373b}.btn-dark.focus,.btn-dark:focus{box-shadow:0 0 0 0 rgba(100,106,112,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#495057;border-color:#495057}.btn-dark:not(:disabled):not(.disabled).active,.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#32373b;border-color:#2c3034}.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 rgba(100,106,112,.5)}.btn-primary-light{color:#495057;background-color:#fffaf0;border-color:#fffaf0}.btn-primary-light.focus,.btn-primary-light:focus,.btn-primary-light:hover{color:#495057;background-color:#ffedca;border-color:#ffe9bd}.btn-primary-light.focus,.btn-primary-light:focus{box-shadow:0 0 0 0 rgba(228,225,217,.5)}.btn-primary-light.disabled,.btn-primary-light:disabled{color:#495057;background-color:#fffaf0;border-color:#fffaf0}.btn-primary-light:not(:disabled):not(.disabled).active,.btn-primary-light:not(:disabled):not(.disabled):active,.show>.btn-primary-light.dropdown-toggle{color:#495057;background-color:#ffe9bd;border-color:#ffe5b0}.btn-primary-light:not(:disabled):not(.disabled).active:focus,.btn-primary-light:not(:disabled):not(.disabled):active:focus,.show>.btn-primary-light.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(228,225,217,.5)}.btn-secondary-light{color:#495057;background-color:#fff;border-color:#fff}.btn-secondary-light.focus,.btn-secondary-light:focus,.btn-secondary-light:hover{color:#495057;background-color:#ececec;border-color:#e6e6e6}.btn-secondary-light.focus,.btn-secondary-light:focus{box-shadow:0 0 0 0 rgba(228,229,230,.5)}.btn-secondary-light.disabled,.btn-secondary-light:disabled{color:#495057;background-color:#fff;border-color:#fff}.btn-secondary-light:not(:disabled):not(.disabled).active,.btn-secondary-light:not(:disabled):not(.disabled):active,.show>.btn-secondary-light.dropdown-toggle{color:#495057;background-color:#e6e6e6;border-color:#dfdfdf}.btn-secondary-light:not(:disabled):not(.disabled).active:focus,.btn-secondary-light:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary-light.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(228,229,230,.5)}.btn-tertiary{color:#fff;background-color:#257af4;border-color:#257af4}.btn-tertiary.focus,.btn-tertiary:focus,.btn-tertiary:hover{color:#fff;background-color:#0c66e7;border-color:#0b60db}.btn-tertiary.focus,.btn-tertiary:focus{box-shadow:0 0 0 0 rgba(70,142,246,.5)}.btn-tertiary.disabled,.btn-tertiary:disabled{color:#fff;background-color:#257af4;border-color:#257af4}.btn-tertiary:not(:disabled):not(.disabled).active,.btn-tertiary:not(:disabled):not(.disabled):active,.show>.btn-tertiary.dropdown-toggle{color:#fff;background-color:#0b60db;border-color:#0a5bcf}.btn-tertiary:not(:disabled):not(.disabled).active:focus,.btn-tertiary:not(:disabled):not(.disabled):active:focus,.show>.btn-tertiary.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(70,142,246,.5)}.btn-tertiary-light{color:#495057;background-color:#e3f1fe;border-color:#e3f1fe}.btn-tertiary-light.focus,.btn-tertiary-light:focus,.btn-tertiary-light:hover{color:#495057;background-color:#bedffd;border-color:#b2d8fc}.btn-tertiary-light.focus,.btn-tertiary-light:focus{box-shadow:0 0 0 0 rgba(204,217,229,.5)}.btn-tertiary-light.disabled,.btn-tertiary-light:disabled{color:#495057;background-color:#e3f1fe;border-color:#e3f1fe}.btn-tertiary-light:not(:disabled):not(.disabled).active,.btn-tertiary-light:not(:disabled):not(.disabled):active,.show>.btn-tertiary-light.dropdown-toggle{color:#495057;background-color:#b2d8fc;border-color:#a5d2fc}.btn-tertiary-light:not(:disabled):not(.disabled).active:focus,.btn-tertiary-light:not(:disabled):not(.disabled):active:focus,.show>.btn-tertiary-light.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(204,217,229,.5)}.btn-white{color:#495057;background-color:#fff;border-color:#fff}.btn-white.focus,.btn-white:focus,.btn-white:hover{color:#495057;background-color:#ececec;border-color:#e6e6e6}.btn-white.focus,.btn-white:focus{box-shadow:0 0 0 0 rgba(228,229,230,.5)}.btn-white.disabled,.btn-white:disabled{color:#495057;background-color:#fff;border-color:#fff}.btn-white:not(:disabled):not(.disabled).active,.btn-white:not(:disabled):not(.disabled):active,.show>.btn-white.dropdown-toggle{color:#495057;background-color:#e6e6e6;border-color:#dfdfdf}.btn-white:not(:disabled):not(.disabled).active:focus,.btn-white:not(:disabled):not(.disabled):active:focus,.show>.btn-white.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(228,229,230,.5)}.btn-black{color:#fff;background-color:#212529;border-color:#212529}.btn-black.focus,.btn-black:focus,.btn-black:hover{color:#fff;background-color:#101214;border-color:#0a0c0d}.btn-black.focus,.btn-black:focus{box-shadow:0 0 0 0 rgba(66,70,73,.5)}.btn-black.disabled,.btn-black:disabled{color:#fff;background-color:#212529;border-color:#212529}.btn-black:not(:disabled):not(.disabled).active,.btn-black:not(:disabled):not(.disabled):active,.show>.btn-black.dropdown-toggle{color:#fff;background-color:#0a0c0d;border-color:#050506}.btn-black:not(:disabled):not(.disabled).active:focus,.btn-black:not(:disabled):not(.disabled):active:focus,.show>.btn-black.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(66,70,73,.5)}.btn-blue{color:#fff;background-color:#257af4;border-color:#257af4}.btn-blue.focus,.btn-blue:focus,.btn-blue:hover{color:#fff;background-color:#0c66e7;border-color:#0b60db}.btn-blue.focus,.btn-blue:focus{box-shadow:0 0 0 0 rgba(70,142,246,.5)}.btn-blue.disabled,.btn-blue:disabled{color:#fff;background-color:#257af4;border-color:#257af4}.btn-blue:not(:disabled):not(.disabled).active,.btn-blue:not(:disabled):not(.disabled):active,.show>.btn-blue.dropdown-toggle{color:#fff;background-color:#0b60db;border-color:#0a5bcf}.btn-blue:not(:disabled):not(.disabled).active:focus,.btn-blue:not(:disabled):not(.disabled):active:focus,.show>.btn-blue.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(70,142,246,.5)}.btn-light-blue{color:#495057;background-color:#e3f1fe;border-color:#e3f1fe}.btn-light-blue.focus,.btn-light-blue:focus,.btn-light-blue:hover{color:#495057;background-color:#bedffd;border-color:#b2d8fc}.btn-light-blue.focus,.btn-light-blue:focus{box-shadow:0 0 0 0 rgba(204,217,229,.5)}.btn-light-blue.disabled,.btn-light-blue:disabled{color:#495057;background-color:#e3f1fe;border-color:#e3f1fe}.btn-light-blue:not(:disabled):not(.disabled).active,.btn-light-blue:not(:disabled):not(.disabled):active,.show>.btn-light-blue.dropdown-toggle{color:#495057;background-color:#b2d8fc;border-color:#a5d2fc}.btn-light-blue:not(:disabled):not(.disabled).active:focus,.btn-light-blue:not(:disabled):not(.disabled):active:focus,.show>.btn-light-blue.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(204,217,229,.5)}.btn-yellow{color:#495057;background-color:#fc0;border-color:#fc0}.btn-yellow.focus,.btn-yellow:focus,.btn-yellow:hover{color:#495057;background-color:#d9ad00;border-color:#cca300}.btn-yellow.focus,.btn-yellow:focus{box-shadow:0 0 0 0 rgba(228,185,13,.5)}.btn-yellow.disabled,.btn-yellow:disabled{color:#495057;background-color:#fc0;border-color:#fc0}.btn-yellow:not(:disabled):not(.disabled).active,.btn-yellow:not(:disabled):not(.disabled):active,.show>.btn-yellow.dropdown-toggle{color:#495057;background-color:#cca300;border-color:#bf9900}.btn-yellow:not(:disabled):not(.disabled).active:focus,.btn-yellow:not(:disabled):not(.disabled):active:focus,.show>.btn-yellow.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(228,185,13,.5)}.btn-light-yellow{color:#495057;background-color:#fffaf0;border-color:#fffaf0}.btn-light-yellow.focus,.btn-light-yellow:focus,.btn-light-yellow:hover{color:#495057;background-color:#ffedca;border-color:#ffe9bd}.btn-light-yellow.focus,.btn-light-yellow:focus{box-shadow:0 0 0 0 rgba(228,225,217,.5)}.btn-light-yellow.disabled,.btn-light-yellow:disabled{color:#495057;background-color:#fffaf0;border-color:#fffaf0}.btn-light-yellow:not(:disabled):not(.disabled).active,.btn-light-yellow:not(:disabled):not(.disabled):active,.show>.btn-light-yellow.dropdown-toggle{color:#495057;background-color:#ffe9bd;border-color:#ffe5b0}.btn-light-yellow:not(:disabled):not(.disabled).active:focus,.btn-light-yellow:not(:disabled):not(.disabled):active:focus,.show>.btn-light-yellow.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(228,225,217,.5)}.btn-orange{color:#495057;background-color:#ff8c00;border-color:#ff8c00}.btn-orange.focus,.btn-orange:focus,.btn-orange:hover{color:#fff;background-color:#d97700;border-color:#cc7000}.btn-orange.focus,.btn-orange:focus{box-shadow:0 0 0 0 rgba(228,131,13,.5)}.btn-orange.disabled,.btn-orange:disabled{color:#495057;background-color:#ff8c00;border-color:#ff8c00}.btn-orange:not(:disabled):not(.disabled).active,.btn-orange:not(:disabled):not(.disabled):active,.show>.btn-orange.dropdown-toggle{color:#fff;background-color:#cc7000;border-color:#bf6900}.btn-orange:not(:disabled):not(.disabled).active:focus,.btn-orange:not(:disabled):not(.disabled):active:focus,.show>.btn-orange.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(228,131,13,.5)}.btn-light-orange{color:#495057;background-color:#ffe4b5;border-color:#ffe4b5}.btn-light-orange.focus,.btn-light-orange:focus,.btn-light-orange:hover{color:#495057;background-color:#ffd68f;border-color:#ffd182}.btn-light-orange.focus,.btn-light-orange:focus{box-shadow:0 0 0 0 rgba(228,206,167,.5)}.btn-light-orange.disabled,.btn-light-orange:disabled{color:#495057;background-color:#ffe4b5;border-color:#ffe4b5}.btn-light-orange:not(:disabled):not(.disabled).active,.btn-light-orange:not(:disabled):not(.disabled):active,.show>.btn-light-orange.dropdown-toggle{color:#495057;background-color:#ffd182;border-color:#ffcd75}.btn-light-orange:not(:disabled):not(.disabled).active:focus,.btn-light-orange:not(:disabled):not(.disabled):active:focus,.show>.btn-light-orange.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(228,206,167,.5)}.btn-red{color:#fff;background-color:#ff3939;border-color:#ff3939}.btn-red.focus,.btn-red:focus,.btn-red:hover{color:#fff;background-color:#ff1313;border-color:#ff0606}.btn-red.focus,.btn-red:focus{box-shadow:0 0 0 0 rgba(255,87,87,.5)}.btn-red.disabled,.btn-red:disabled{color:#fff;background-color:#ff3939;border-color:#ff3939}.btn-red:not(:disabled):not(.disabled).active,.btn-red:not(:disabled):not(.disabled):active,.show>.btn-red.dropdown-toggle{color:#fff;background-color:#ff0606;border-color:#f80000}.btn-red:not(:disabled):not(.disabled).active:focus,.btn-red:not(:disabled):not(.disabled):active:focus,.show>.btn-red.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(255,87,87,.5)}.btn-light-red{color:#495057;background-color:#ffe4e1;border-color:#ffe4e1}.btn-light-red.focus,.btn-light-red:focus,.btn-light-red:hover{color:#495057;background-color:#ffc2bb;border-color:#ffb6ae}.btn-light-red.focus,.btn-light-red:focus{box-shadow:0 0 0 0 rgba(228,206,204,.5)}.btn-light-red.disabled,.btn-light-red:disabled{color:#495057;background-color:#ffe4e1;border-color:#ffe4e1}.btn-light-red:not(:disabled):not(.disabled).active,.btn-light-red:not(:disabled):not(.disabled):active,.show>.btn-light-red.dropdown-toggle{color:#495057;background-color:#ffb6ae;border-color:#ffaba1}.btn-light-red:not(:disabled):not(.disabled).active:focus,.btn-light-red:not(:disabled):not(.disabled):active:focus,.show>.btn-light-red.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(228,206,204,.5)}.btn-medium{color:#495057;background-color:#d6dbdf;border-color:#d6dbdf}.btn-medium.focus,.btn-medium:focus,.btn-medium:hover{color:#495057;background-color:#c1c8ce;border-color:#b9c2c9}.btn-medium.focus,.btn-medium:focus{box-shadow:0 0 0 0 rgba(193,198,203,.5)}.btn-medium.disabled,.btn-medium:disabled{color:#495057;background-color:#d6dbdf;border-color:#d6dbdf}.btn-medium:not(:disabled):not(.disabled).active,.btn-medium:not(:disabled):not(.disabled):active,.show>.btn-medium.dropdown-toggle{color:#495057;background-color:#b9c2c9;border-color:#b2bcc3}.btn-medium:not(:disabled):not(.disabled).active:focus,.btn-medium:not(:disabled):not(.disabled):active:focus,.show>.btn-medium.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(193,198,203,.5)}.btn-outline-primary{color:#fc0;border-color:#fc0}.btn-outline-primary:hover{color:#495057;background-color:#fc0;border-color:#fc0}.btn-outline-primary.focus,.btn-outline-primary:focus{box-shadow:0 0 0 0 rgba(255,204,0,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#fc0;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:#495057;background-color:#fc0;border-color:#fc0}.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 rgba(255,204,0,.5)}.btn-outline-secondary{color:#212529;border-color:#212529}.btn-outline-secondary:hover{color:#fff;background-color:#212529;border-color:#212529}.btn-outline-secondary.focus,.btn-outline-secondary:focus{box-shadow:0 0 0 0 rgba(33,37,41,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#212529;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:#212529;border-color:#212529}.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 rgba(33,37,41,.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 rgba(40,167,69,.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 rgba(40,167,69,.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 rgba(23,162,184,.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 rgba(23,162,184,.5)}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover{color:#495057;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning.focus,.btn-outline-warning:focus{box-shadow:0 0 0 0 rgba(255,193,7,.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:#495057;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 rgba(255,193,7,.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 rgba(220,53,69,.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 rgba(220,53,69,.5)}.btn-outline-light{color:#f1f6f9;border-color:#f1f6f9}.btn-outline-light:hover{color:#495057;background-color:#f1f6f9;border-color:#f1f6f9}.btn-outline-light.focus,.btn-outline-light:focus{box-shadow:0 0 0 0 rgba(241,246,249,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f1f6f9;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:#495057;background-color:#f1f6f9;border-color:#f1f6f9}.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 rgba(241,246,249,.5)}.btn-outline-dark{color:#495057;border-color:#495057}.btn-outline-dark:hover{color:#fff;background-color:#495057;border-color:#495057}.btn-outline-dark.focus,.btn-outline-dark:focus{box-shadow:0 0 0 0 rgba(73,80,87,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#495057;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:#495057;border-color:#495057}.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 rgba(73,80,87,.5)}.btn-outline-primary-light{color:#fffaf0;border-color:#fffaf0}.btn-outline-primary-light:hover{color:#495057;background-color:#fffaf0;border-color:#fffaf0}.btn-outline-primary-light.focus,.btn-outline-primary-light:focus{box-shadow:0 0 0 0 rgba(255,250,240,.5)}.btn-outline-primary-light.disabled,.btn-outline-primary-light:disabled{color:#fffaf0;background-color:transparent}.btn-outline-primary-light:not(:disabled):not(.disabled).active,.btn-outline-primary-light:not(:disabled):not(.disabled):active,.show>.btn-outline-primary-light.dropdown-toggle{color:#495057;background-color:#fffaf0;border-color:#fffaf0}.btn-outline-primary-light:not(:disabled):not(.disabled).active:focus,.btn-outline-primary-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-primary-light.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(255,250,240,.5)}.btn-outline-secondary-light{color:#fff;border-color:#fff}.btn-outline-secondary-light:hover{color:#495057;background-color:#fff;border-color:#fff}.btn-outline-secondary-light.focus,.btn-outline-secondary-light:focus{box-shadow:0 0 0 0 hsla(0,0%,100%,.5)}.btn-outline-secondary-light.disabled,.btn-outline-secondary-light:disabled{color:#fff;background-color:transparent}.btn-outline-secondary-light:not(:disabled):not(.disabled).active,.btn-outline-secondary-light:not(:disabled):not(.disabled):active,.show>.btn-outline-secondary-light.dropdown-toggle{color:#495057;background-color:#fff;border-color:#fff}.btn-outline-secondary-light:not(:disabled):not(.disabled).active:focus,.btn-outline-secondary-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-secondary-light.dropdown-toggle:focus{box-shadow:0 0 0 0 hsla(0,0%,100%,.5)}.btn-outline-tertiary{color:#257af4;border-color:#257af4}.btn-outline-tertiary:hover{color:#fff;background-color:#257af4;border-color:#257af4}.btn-outline-tertiary.focus,.btn-outline-tertiary:focus{box-shadow:0 0 0 0 rgba(37,122,244,.5)}.btn-outline-tertiary.disabled,.btn-outline-tertiary:disabled{color:#257af4;background-color:transparent}.btn-outline-tertiary:not(:disabled):not(.disabled).active,.btn-outline-tertiary:not(:disabled):not(.disabled):active,.show>.btn-outline-tertiary.dropdown-toggle{color:#fff;background-color:#257af4;border-color:#257af4}.btn-outline-tertiary:not(:disabled):not(.disabled).active:focus,.btn-outline-tertiary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-tertiary.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(37,122,244,.5)}.btn-outline-tertiary-light{color:#e3f1fe;border-color:#e3f1fe}.btn-outline-tertiary-light:hover{color:#495057;background-color:#e3f1fe;border-color:#e3f1fe}.btn-outline-tertiary-light.focus,.btn-outline-tertiary-light:focus{box-shadow:0 0 0 0 rgba(227,241,254,.5)}.btn-outline-tertiary-light.disabled,.btn-outline-tertiary-light:disabled{color:#e3f1fe;background-color:transparent}.btn-outline-tertiary-light:not(:disabled):not(.disabled).active,.btn-outline-tertiary-light:not(:disabled):not(.disabled):active,.show>.btn-outline-tertiary-light.dropdown-toggle{color:#495057;background-color:#e3f1fe;border-color:#e3f1fe}.btn-outline-tertiary-light:not(:disabled):not(.disabled).active:focus,.btn-outline-tertiary-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-tertiary-light.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(227,241,254,.5)}.btn-outline-white{color:#fff;border-color:#fff}.btn-outline-white:hover{color:#495057;background-color:#fff;border-color:#fff}.btn-outline-white.focus,.btn-outline-white:focus{box-shadow:0 0 0 0 hsla(0,0%,100%,.5)}.btn-outline-white.disabled,.btn-outline-white:disabled{color:#fff;background-color:transparent}.btn-outline-white:not(:disabled):not(.disabled).active,.btn-outline-white:not(:disabled):not(.disabled):active,.show>.btn-outline-white.dropdown-toggle{color:#495057;background-color:#fff;border-color:#fff}.btn-outline-white:not(:disabled):not(.disabled).active:focus,.btn-outline-white:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-white.dropdown-toggle:focus{box-shadow:0 0 0 0 hsla(0,0%,100%,.5)}.btn-outline-black{color:#212529;border-color:#212529}.btn-outline-black:hover{color:#fff;background-color:#212529;border-color:#212529}.btn-outline-black.focus,.btn-outline-black:focus{box-shadow:0 0 0 0 rgba(33,37,41,.5)}.btn-outline-black.disabled,.btn-outline-black:disabled{color:#212529;background-color:transparent}.btn-outline-black:not(:disabled):not(.disabled).active,.btn-outline-black:not(:disabled):not(.disabled):active,.show>.btn-outline-black.dropdown-toggle{color:#fff;background-color:#212529;border-color:#212529}.btn-outline-black:not(:disabled):not(.disabled).active:focus,.btn-outline-black:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-black.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(33,37,41,.5)}.btn-outline-blue{color:#257af4;border-color:#257af4}.btn-outline-blue:hover{color:#fff;background-color:#257af4;border-color:#257af4}.btn-outline-blue.focus,.btn-outline-blue:focus{box-shadow:0 0 0 0 rgba(37,122,244,.5)}.btn-outline-blue.disabled,.btn-outline-blue:disabled{color:#257af4;background-color:transparent}.btn-outline-blue:not(:disabled):not(.disabled).active,.btn-outline-blue:not(:disabled):not(.disabled):active,.show>.btn-outline-blue.dropdown-toggle{color:#fff;background-color:#257af4;border-color:#257af4}.btn-outline-blue:not(:disabled):not(.disabled).active:focus,.btn-outline-blue:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-blue.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(37,122,244,.5)}.btn-outline-light-blue{color:#e3f1fe;border-color:#e3f1fe}.btn-outline-light-blue:hover{color:#495057;background-color:#e3f1fe;border-color:#e3f1fe}.btn-outline-light-blue.focus,.btn-outline-light-blue:focus{box-shadow:0 0 0 0 rgba(227,241,254,.5)}.btn-outline-light-blue.disabled,.btn-outline-light-blue:disabled{color:#e3f1fe;background-color:transparent}.btn-outline-light-blue:not(:disabled):not(.disabled).active,.btn-outline-light-blue:not(:disabled):not(.disabled):active,.show>.btn-outline-light-blue.dropdown-toggle{color:#495057;background-color:#e3f1fe;border-color:#e3f1fe}.btn-outline-light-blue:not(:disabled):not(.disabled).active:focus,.btn-outline-light-blue:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light-blue.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(227,241,254,.5)}.btn-outline-yellow{color:#fc0;border-color:#fc0}.btn-outline-yellow:hover{color:#495057;background-color:#fc0;border-color:#fc0}.btn-outline-yellow.focus,.btn-outline-yellow:focus{box-shadow:0 0 0 0 rgba(255,204,0,.5)}.btn-outline-yellow.disabled,.btn-outline-yellow:disabled{color:#fc0;background-color:transparent}.btn-outline-yellow:not(:disabled):not(.disabled).active,.btn-outline-yellow:not(:disabled):not(.disabled):active,.show>.btn-outline-yellow.dropdown-toggle{color:#495057;background-color:#fc0;border-color:#fc0}.btn-outline-yellow:not(:disabled):not(.disabled).active:focus,.btn-outline-yellow:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-yellow.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(255,204,0,.5)}.btn-outline-light-yellow{color:#fffaf0;border-color:#fffaf0}.btn-outline-light-yellow:hover{color:#495057;background-color:#fffaf0;border-color:#fffaf0}.btn-outline-light-yellow.focus,.btn-outline-light-yellow:focus{box-shadow:0 0 0 0 rgba(255,250,240,.5)}.btn-outline-light-yellow.disabled,.btn-outline-light-yellow:disabled{color:#fffaf0;background-color:transparent}.btn-outline-light-yellow:not(:disabled):not(.disabled).active,.btn-outline-light-yellow:not(:disabled):not(.disabled):active,.show>.btn-outline-light-yellow.dropdown-toggle{color:#495057;background-color:#fffaf0;border-color:#fffaf0}.btn-outline-light-yellow:not(:disabled):not(.disabled).active:focus,.btn-outline-light-yellow:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light-yellow.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(255,250,240,.5)}.btn-outline-orange{color:#ff8c00;border-color:#ff8c00}.btn-outline-orange:hover{color:#495057;background-color:#ff8c00;border-color:#ff8c00}.btn-outline-orange.focus,.btn-outline-orange:focus{box-shadow:0 0 0 0 rgba(255,140,0,.5)}.btn-outline-orange.disabled,.btn-outline-orange:disabled{color:#ff8c00;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:#495057;background-color:#ff8c00;border-color:#ff8c00}.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:0 0 0 0 rgba(255,140,0,.5)}.btn-outline-light-orange{color:#ffe4b5;border-color:#ffe4b5}.btn-outline-light-orange:hover{color:#495057;background-color:#ffe4b5;border-color:#ffe4b5}.btn-outline-light-orange.focus,.btn-outline-light-orange:focus{box-shadow:0 0 0 0 rgba(255,228,181,.5)}.btn-outline-light-orange.disabled,.btn-outline-light-orange:disabled{color:#ffe4b5;background-color:transparent}.btn-outline-light-orange:not(:disabled):not(.disabled).active,.btn-outline-light-orange:not(:disabled):not(.disabled):active,.show>.btn-outline-light-orange.dropdown-toggle{color:#495057;background-color:#ffe4b5;border-color:#ffe4b5}.btn-outline-light-orange:not(:disabled):not(.disabled).active:focus,.btn-outline-light-orange:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light-orange.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(255,228,181,.5)}.btn-outline-red{color:#ff3939;border-color:#ff3939}.btn-outline-red:hover{color:#fff;background-color:#ff3939;border-color:#ff3939}.btn-outline-red.focus,.btn-outline-red:focus{box-shadow:0 0 0 0 rgba(255,57,57,.5)}.btn-outline-red.disabled,.btn-outline-red:disabled{color:#ff3939;background-color:transparent}.btn-outline-red:not(:disabled):not(.disabled).active,.btn-outline-red:not(:disabled):not(.disabled):active,.show>.btn-outline-red.dropdown-toggle{color:#fff;background-color:#ff3939;border-color:#ff3939}.btn-outline-red:not(:disabled):not(.disabled).active:focus,.btn-outline-red:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-red.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(255,57,57,.5)}.btn-outline-light-red{color:#ffe4e1;border-color:#ffe4e1}.btn-outline-light-red:hover{color:#495057;background-color:#ffe4e1;border-color:#ffe4e1}.btn-outline-light-red.focus,.btn-outline-light-red:focus{box-shadow:0 0 0 0 rgba(255,228,225,.5)}.btn-outline-light-red.disabled,.btn-outline-light-red:disabled{color:#ffe4e1;background-color:transparent}.btn-outline-light-red:not(:disabled):not(.disabled).active,.btn-outline-light-red:not(:disabled):not(.disabled):active,.show>.btn-outline-light-red.dropdown-toggle{color:#495057;background-color:#ffe4e1;border-color:#ffe4e1}.btn-outline-light-red:not(:disabled):not(.disabled).active:focus,.btn-outline-light-red:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light-red.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(255,228,225,.5)}.btn-outline-medium{color:#d6dbdf;border-color:#d6dbdf}.btn-outline-medium:hover{color:#495057;background-color:#d6dbdf;border-color:#d6dbdf}.btn-outline-medium.focus,.btn-outline-medium:focus{box-shadow:0 0 0 0 rgba(214,219,223,.5)}.btn-outline-medium.disabled,.btn-outline-medium:disabled{color:#d6dbdf;background-color:transparent}.btn-outline-medium:not(:disabled):not(.disabled).active,.btn-outline-medium:not(:disabled):not(.disabled):active,.show>.btn-outline-medium.dropdown-toggle{color:#495057;background-color:#d6dbdf;border-color:#d6dbdf}.btn-outline-medium:not(:disabled):not(.disabled).active:focus,.btn-outline-medium:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-medium.dropdown-toggle:focus{box-shadow:0 0 0 0 rgba(214,219,223,.5)}.btn-link{font-weight:400;color:#ff8c00;text-decoration:none}.btn-link:hover{color:#ff8c00;text-decoration:underline}.btn-link.focus,.btn-link:focus{text-decoration:underline;box-shadow:none}.btn-link.disabled,.btn-link:disabled{color:#d6dbdf;pointer-events:none}.btn-group-lg>.btn,.btn-lg{padding:16px 32px;font-size:1.125rem;line-height:26px;border-radius:8px}.btn-group-sm>.btn,.btn-sm{padding:12px 32px;font-size:.875rem;line-height:20px;border-radius:8px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:24px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{transition:opacity .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 .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:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.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:.5rem 0;margin:.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(33,37,41,.15);border-radius:8px}.dropdown-menu-left{right:auto;left:0}.dropdown-menu-right{right:0;left:auto}@media(min-width:400px){.dropdown-menu-xs-left{right:auto;left:0}.dropdown-menu-xs-right{right:0;left:auto}}@media(min-width:616px){.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:980px){.dropdown-menu-lg-left{right:auto;left:0}.dropdown-menu-lg-right{right:0;left:auto}}@media(min-width:1240px){.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:.125rem}.dropup .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.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:.125rem}.dropright .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.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:.125rem}.dropleft .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";display:none}.dropleft .dropdown-toggle:before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.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:4px 0;overflow:hidden;border-top:1px solid #e9ecef}.dropdown-item{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#495057;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#3d4349;text-decoration:none;background-color:#f1f6f9}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#fc0}.dropdown-item.disabled,.dropdown-item:disabled{color:#6c757d;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1.5rem;color:#495057}.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:24px;padding-left:24px}.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-lg>.btn+.dropdown-toggle-split,.btn-group-sm>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:24px;padding-left:24px}.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 0%;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:.375rem .75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.5;color:#6c757d;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:8px}.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:.5rem 1rem;font-size:1.125rem;line-height:1.5;border-radius:8px}.input-group-sm>.custom-select,.input-group-sm>.form-control:not(textarea){height:calc(1.5em + .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:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:8px}.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: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:#fc0;background-color:#fc0}.custom-control-input:focus~.custom-control-label:before{box-shadow:0 0 0 .2rem rgba(255,204,0,.25)}.custom-control-input:focus:not(:checked)~.custom-control-label:before{border-color:#ffe680}.custom-control-input:not(:disabled):active~.custom-control-label:before{color:#fff;background-color:#fff0b3;border-color:#fff0b3}.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 #d6dbdf}.custom-control-label:after,.custom-control-label:before{position:absolute;top:.25rem;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:8px}.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'%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:#fc0;background-color:#fc0}.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'%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(255,204,0,.5)}.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label:before{background-color:rgba(255,204,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(255,204,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:.5rem}.custom-switch .custom-control-label:after{top:calc(.25rem + 2px);left:calc(-2.25rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);background-color:#d6dbdf;border-radius:.5rem;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .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(.75rem)}.custom-switch .custom-control-input:disabled:checked~.custom-control-label:before{background-color:rgba(255,204,0,.5)}.custom-select{display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem 1.75rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#6c757d;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'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center/8px 10px;border:1px solid #ced4da;border-radius:8px;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-select:focus{border-color:#ffe680;outline:0;box-shadow:0 0 0 .2rem rgba(255,204,0,.25)}.custom-select:focus::-ms-value{color:#6c757d;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:.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 #6c757d}.custom-select-sm{height:calc(1.5em + .5rem + 2px);padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}.custom-select-lg{height:calc(1.5em + 1rem + 2px);padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.125rem}.custom-file{display:inline-block;margin-bottom:0}.custom-file,.custom-file-input{position:relative;width:100%;height:calc(1.5em + .75rem + 2px)}.custom-file-input{z-index:2;margin:0;opacity:0}.custom-file-input:focus~.custom-file-label{border-color:#ffe680;box-shadow:0 0 0 .2rem rgba(255,204,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 + .75rem + 2px);font-weight:400;background-color:#fff;border:1px solid #ced4da;border-radius:8px}.custom-file-label,.custom-file-label:after{position:absolute;top:0;right:0;padding:.375rem .75rem;line-height:1.5;color:#6c757d}.custom-file-label:after{bottom:0;z-index:3;display:block;height:calc(1.5em + .75rem);content:"Browse";background-color:#e9ecef;border-left:inherit;border-radius:0 8px 8px 0}.custom-range{width:100%;height:1.4rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-range:focus{outline:none}.custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(255,204,0,.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(255,204,0,.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(255,204,0,.25)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#fc0;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media(prefers-reduced-motion:reduce){.custom-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.custom-range::-webkit-slider-thumb:active{background-color:#fff0b3}.custom-range::-webkit-slider-runnable-track{width:100%;height:.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:#fc0;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media(prefers-reduced-motion:reduce){.custom-range::-moz-range-thumb{-moz-transition:none;transition:none}}.custom-range::-moz-range-thumb:active{background-color:#fff0b3}.custom-range::-moz-range-track{width:100%;height:.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:.2rem;margin-left:.2rem;background-color:#fc0;border:0;border-radius:1rem;-ms-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media(prefers-reduced-motion:reduce){.custom-range::-ms-thumb{-ms-transition:none;transition:none}}.custom-range::-ms-thumb:active{background-color:#fff0b3}.custom-range::-ms-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:.5rem}.custom-range::-ms-fill-lower,.custom-range::-ms-fill-upper{background-color:#dee2e6;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px}.custom-range:disabled::-webkit-slider-thumb{background-color:#d6dbdf}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#d6dbdf}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#d6dbdf}.custom-control-label:before,.custom-file-label,.custom-select{transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .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}.nav-link:focus,.nav-link:hover{text-decoration:none}.nav-link.disabled{color:#d6dbdf;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #6c757d}.nav-tabs .nav-item{margin-bottom:-1px}.nav-tabs .nav-link{border:1px solid transparent;border-top-left-radius:8px;border-top-right-radius:8px}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:transparent}.nav-tabs .nav-link.disabled{color:#d6dbdf;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#257af4;background-color:#fff;border-color:#6c757d}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{border-radius:8px}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#fc0}.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:24px 0}.navbar,.navbar .container,.navbar .container-fluid,.navbar .container-lg,.navbar .container-md,.navbar .container-sm,.navbar .container-xl,.navbar .container-xs{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between}.navbar-brand{display:inline-block;padding-top:-.09375rem;padding-bottom:-.09375rem;margin-right:0;font-size:1.125rem;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;padding-bottom:0}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.125rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:8px}.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:399.98px){.navbar-expand-xs>.container,.navbar-expand-xs>.container-fluid,.navbar-expand-xs>.container-lg,.navbar-expand-xs>.container-md,.navbar-expand-xs>.container-sm,.navbar-expand-xs>.container-xl,.navbar-expand-xs>.container-xs{padding-right:0;padding-left:0}}@media(min-width:400px){.navbar-expand-xs{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-xs .navbar-nav{flex-direction:row}.navbar-expand-xs .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xs .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xs>.container,.navbar-expand-xs>.container-fluid,.navbar-expand-xs>.container-lg,.navbar-expand-xs>.container-md,.navbar-expand-xs>.container-sm,.navbar-expand-xs>.container-xl,.navbar-expand-xs>.container-xs{flex-wrap:nowrap}.navbar-expand-xs .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xs .navbar-toggler{display:none}}@media(max-width:615.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,.navbar-expand-sm>.container-xs{padding-right:0;padding-left:0}}@media(min-width:616px){.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:.5rem;padding-left:.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,.navbar-expand-sm>.container-xs{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,.navbar-expand-md>.container-xs{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:.5rem;padding-left:.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,.navbar-expand-md>.container-xs{flex-wrap:nowrap}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media(max-width:979.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,.navbar-expand-lg>.container-xs{padding-right:0;padding-left:0}}@media(min-width:980px){.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:.5rem;padding-left:.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,.navbar-expand-lg>.container-xs{flex-wrap:nowrap}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media(max-width:1239.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,.navbar-expand-xl>.container-xs{padding-right:0;padding-left:0}}@media(min-width:1240px){.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:.5rem;padding-left:.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,.navbar-expand-xl>.container-xs{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,.navbar-expand>.container-xs{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:.5rem;padding-left:.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-lg,.navbar-expand>.container-md,.navbar-expand>.container-sm,.navbar-expand>.container-xl,.navbar-expand>.container-xs{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(33,37,41,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(33,37,41,.5)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(33,37,41,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(33,37,41,.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(33,37,41,.9)}.navbar-light .navbar-toggler{color:rgba(33,37,41,.5);border-color:rgba(33,37,41,.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'%3E%3Cpath stroke='rgba(33, 37, 41, 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(33,37,41,.5)}.navbar-light .navbar-text a,.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(33,37,41,.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%,.5)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:hsla(0,0%,100%,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:hsla(0,0%,100%,.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%,.5);border-color:hsla(0,0%,100%,.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'%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%,.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 #d6dbdf;border-radius:8px}.card>hr{margin-right:0;margin-left:0}.card>.list-group:first-child .list-group-item:first-child{border-top-left-radius:8px;border-top-right-radius:8px}.card>.list-group:last-child .list-group-item:last-child{border-bottom-right-radius:8px;border-bottom-left-radius:8px}.card-body{flex:1 1 auto;min-height:1px;padding:24px}.card-title{margin-bottom:24px}.card-subtitle{margin-top:-12px}.card-subtitle,.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:24px}.card-header{padding:24px;margin-bottom:0;background-color:#f1f6f9;border-bottom:1px solid #d6dbdf}.card-header:first-child{border-radius:subtract(8px,1px) subtract(8px,1px) 0 0}.card-header+.list-group .list-group-item:first-child{border-top:0}.card-footer{padding:24px;background-color:#f1f6f9;border-top:1px solid #d6dbdf}.card-footer:last-child{border-radius:0 0 subtract(8px,1px) subtract(8px,1px)}.card-header-tabs{margin-bottom:-24px;border-bottom:0}.card-header-pills,.card-header-tabs{margin-right:-12px;margin-left:-12px}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:24px}.card-img,.card-img-bottom,.card-img-top{flex-shrink:0;width:100%}.card-img,.card-img-top{border-top-left-radius:subtract(8px,1px);border-top-right-radius:subtract(8px,1px)}.card-img,.card-img-bottom{border-bottom-right-radius:subtract(8px,1px);border-bottom-left-radius:subtract(8px,1px)}.card-deck .card{margin-bottom:20px}@media(min-width:616px){.card-deck{display:flex;flex-flow:row wrap;margin-right:-20px;margin-left:-20px}.card-deck .card{flex:1 0 0%;margin-right:20px;margin-bottom:0;margin-left:20px}}.card-group>.card{margin-bottom:20px}@media(min-width:616px){.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:40px}@media(min-width:616px){.card-columns{-moz-column-count:3;column-count:3;-moz-column-gap:40px;column-gap:40px;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:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#e9ecef;border-radius:8px}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item:before{display:inline-block;padding-right:.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:8px}.page-link{position:relative;display:block;padding:.5rem .75rem;margin-left:-1px;line-height:1.25;color:#ff8c00;background-color:#fff;border:1px solid #dee2e6}.page-link:hover{z-index:2;color:#ff8c00;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:3;outline:0;box-shadow:0 0 0 .2rem rgba(255,204,0,.25)}.page-item:first-child .page-link{margin-left:0;border-top-left-radius:8px;border-bottom-left-radius:8px}.page-item:last-child .page-link{border-top-right-radius:8px;border-bottom-right-radius:8px}.page-item.active .page-link{z-index:3;color:#fff;background-color:#fc0;border-color:#fc0}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.125rem;line-height:1.5}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:8px;border-bottom-left-radius:8px}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:8px;border-bottom-right-radius:8px}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem;line-height:1.5}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:8px;border-bottom-left-radius:8px}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:8px;border-bottom-right-radius:8px}.badge{display:inline-block;padding:.25em .4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:8px;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .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:.6em;padding-left:.6em;border-radius:10rem}.badge-primary{color:#495057;background-color:#fc0}a.badge-primary:focus,a.badge-primary:hover{color:#495057;background-color:#cca300}a.badge-primary.focus,a.badge-primary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,204,0,.5)}.badge-secondary{color:#fff;background-color:#212529}a.badge-secondary:focus,a.badge-secondary:hover{color:#fff;background-color:#0a0c0d}a.badge-secondary.focus,a.badge-secondary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(33,37,41,.5)}.badge-success{color:#fff;background-color:#28a745}a.badge-success:focus,a.badge-success:hover{color:#fff;background-color:#1e7e34}a.badge-success.focus,a.badge-success:focus{outline:0;box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.badge-info{color:#fff;background-color:#17a2b8}a.badge-info:focus,a.badge-info:hover{color:#fff;background-color:#117a8b}a.badge-info.focus,a.badge-info:focus{outline:0;box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.badge-warning{color:#495057;background-color:#ffc107}a.badge-warning:focus,a.badge-warning:hover{color:#495057;background-color:#d39e00}a.badge-warning.focus,a.badge-warning:focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.badge-danger{color:#fff;background-color:#dc3545}a.badge-danger:focus,a.badge-danger:hover{color:#fff;background-color:#bd2130}a.badge-danger.focus,a.badge-danger:focus{outline:0;box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.badge-light{color:#495057;background-color:#f1f6f9}a.badge-light:focus,a.badge-light:hover{color:#495057;background-color:#cddfea}a.badge-light.focus,a.badge-light:focus{outline:0;box-shadow:0 0 0 .2rem rgba(241,246,249,.5)}.badge-dark{color:#fff;background-color:#495057}a.badge-dark:focus,a.badge-dark:hover{color:#fff;background-color:#32373b}a.badge-dark.focus,a.badge-dark:focus{outline:0;box-shadow:0 0 0 .2rem rgba(73,80,87,.5)}.badge-primary-light{color:#495057;background-color:#fffaf0}a.badge-primary-light:focus,a.badge-primary-light:hover{color:#495057;background-color:#ffe9bd}a.badge-primary-light.focus,a.badge-primary-light:focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,250,240,.5)}.badge-secondary-light{color:#495057;background-color:#fff}a.badge-secondary-light:focus,a.badge-secondary-light:hover{color:#495057;background-color:#e6e6e6}a.badge-secondary-light.focus,a.badge-secondary-light:focus{outline:0;box-shadow:0 0 0 .2rem hsla(0,0%,100%,.5)}.badge-tertiary{color:#fff;background-color:#257af4}a.badge-tertiary:focus,a.badge-tertiary:hover{color:#fff;background-color:#0b60db}a.badge-tertiary.focus,a.badge-tertiary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(37,122,244,.5)}.badge-tertiary-light{color:#495057;background-color:#e3f1fe}a.badge-tertiary-light:focus,a.badge-tertiary-light:hover{color:#495057;background-color:#b2d8fc}a.badge-tertiary-light.focus,a.badge-tertiary-light:focus{outline:0;box-shadow:0 0 0 .2rem rgba(227,241,254,.5)}.badge-white{color:#495057;background-color:#fff}a.badge-white:focus,a.badge-white:hover{color:#495057;background-color:#e6e6e6}a.badge-white.focus,a.badge-white:focus{outline:0;box-shadow:0 0 0 .2rem hsla(0,0%,100%,.5)}.badge-black{color:#fff;background-color:#212529}a.badge-black:focus,a.badge-black:hover{color:#fff;background-color:#0a0c0d}a.badge-black.focus,a.badge-black:focus{outline:0;box-shadow:0 0 0 .2rem rgba(33,37,41,.5)}.badge-blue{color:#fff;background-color:#257af4}a.badge-blue:focus,a.badge-blue:hover{color:#fff;background-color:#0b60db}a.badge-blue.focus,a.badge-blue:focus{outline:0;box-shadow:0 0 0 .2rem rgba(37,122,244,.5)}.badge-light-blue{color:#495057;background-color:#e3f1fe}a.badge-light-blue:focus,a.badge-light-blue:hover{color:#495057;background-color:#b2d8fc}a.badge-light-blue.focus,a.badge-light-blue:focus{outline:0;box-shadow:0 0 0 .2rem rgba(227,241,254,.5)}.badge-yellow{color:#495057;background-color:#fc0}a.badge-yellow:focus,a.badge-yellow:hover{color:#495057;background-color:#cca300}a.badge-yellow.focus,a.badge-yellow:focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,204,0,.5)}.badge-light-yellow{color:#495057;background-color:#fffaf0}a.badge-light-yellow:focus,a.badge-light-yellow:hover{color:#495057;background-color:#ffe9bd}a.badge-light-yellow.focus,a.badge-light-yellow:focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,250,240,.5)}.badge-orange{color:#495057;background-color:#ff8c00}a.badge-orange:focus,a.badge-orange:hover{color:#495057;background-color:#cc7000}a.badge-orange.focus,a.badge-orange:focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,140,0,.5)}.badge-light-orange{color:#495057;background-color:#ffe4b5}a.badge-light-orange:focus,a.badge-light-orange:hover{color:#495057;background-color:#ffd182}a.badge-light-orange.focus,a.badge-light-orange:focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,228,181,.5)}.badge-red{color:#fff;background-color:#ff3939}a.badge-red:focus,a.badge-red:hover{color:#fff;background-color:#ff0606}a.badge-red.focus,a.badge-red:focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,57,57,.5)}.badge-light-red{color:#495057;background-color:#ffe4e1}a.badge-light-red:focus,a.badge-light-red:hover{color:#495057;background-color:#ffb6ae}a.badge-light-red.focus,a.badge-light-red:focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,228,225,.5)}.badge-medium{color:#495057;background-color:#d6dbdf}a.badge-medium:focus,a.badge-medium:hover{color:#495057;background-color:#b9c2c9}a.badge-medium.focus,a.badge-medium:focus{outline:0;box-shadow:0 0 0 .2rem rgba(214,219,223,.5)}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#e9ecef;border-radius:8px}@media(min-width:616px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:8px}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:4rem}.alert-dismissible .close{position:absolute;top:0;right:0;padding:.75rem 1.25rem;color:inherit}.alert-primary{color:#947c14;background-color:#fff5cc;border-color:#fff1b8}.alert-primary hr{border-top-color:#ffec9f}.alert-primary .alert-link{color:#67560e}.alert-secondary{color:#212529;background-color:#d3d3d4;border-color:#c1c2c3}.alert-secondary hr{border-top-color:#b4b5b6}.alert-secondary .alert-link{color:#0a0c0d}.alert-success{color:#256938;background-color:#d4edda;border-color:#c3e6cb}.alert-success hr{border-top-color:#b1dfbb}.alert-success .alert-link{color:#184324}.alert-info{color:#1c6673;background-color:#d1ecf1;border-color:#bee5eb}.alert-info hr{border-top-color:#abdde5}.alert-info .alert-link{color:#12424a}.alert-warning{color:#947617;background-color:#fff3cd;border-color:#ffeeba}.alert-warning hr{border-top-color:#ffe8a1}.alert-warning .alert-link{color:#685310}.alert-danger{color:#822d38;background-color:#f8d7da;border-color:#f5c6cb}.alert-danger hr{border-top-color:#f1b0b7}.alert-danger .alert-link{color:#5c2028}.alert-light{color:#8d9295;background-color:#fcfdfe;border-color:#fbfcfd}.alert-light hr{border-top-color:#eaeff5}.alert-light .alert-link{color:#73797c}.alert-dark{color:#363b41;background-color:#dbdcdd;border-color:#ccced0}.alert-dark hr{border-top-color:#bfc1c4}.alert-dark .alert-link{color:#1f2225}.alert-primary-light{color:#949490;background-color:#fffefc;border-color:#fffefb}.alert-primary-light hr{border-top-color:#fff8e2}.alert-primary-light .alert-link{color:#7b7b76}.alert-secondary-light{color:#949698;background-color:#fff;border-color:#fff}.alert-secondary-light hr{border-top-color:#f2f2f2}.alert-secondary-light .alert-link{color:#7a7d7f}.alert-tertiary{color:#235193;background-color:#d3e4fd;border-color:#c2dafc}.alert-tertiary hr{border-top-color:#aacbfb}.alert-tertiary .alert-link{color:#193a6a}.alert-tertiary-light{color:#868f98;background-color:#f9fcff;border-color:#f7fbff}.alert-tertiary-light hr{border-top-color:#deeeff}.alert-tertiary-light .alert-link{color:#6c767f}.alert-white{color:#949698;background-color:#fff;border-color:#fff}.alert-white hr{border-top-color:#f2f2f2}.alert-white .alert-link{color:#7a7d7f}.alert-black{color:#212529;background-color:#d3d3d4;border-color:#c1c2c3}.alert-black hr{border-top-color:#b4b5b6}.alert-black .alert-link{color:#0a0c0d}.alert-blue{color:#235193;background-color:#d3e4fd;border-color:#c2dafc}.alert-blue hr{border-top-color:#aacbfb}.alert-blue .alert-link{color:#193a6a}.alert-light-blue{color:#868f98;background-color:#f9fcff;border-color:#f7fbff}.alert-light-blue hr{border-top-color:#deeeff}.alert-light-blue .alert-link{color:#6c767f}.alert-yellow{color:#947c14;background-color:#fff5cc;border-color:#fff1b8}.alert-yellow hr{border-top-color:#ffec9f}.alert-yellow .alert-link{color:#67560e}.alert-light-yellow{color:#949490;background-color:#fffefc;border-color:#fffefb}.alert-light-yellow hr{border-top-color:#fff8e2}.alert-light-yellow .alert-link{color:#7b7b76}.alert-orange{color:#945b14;background-color:#ffe8cc;border-color:#ffdfb8}.alert-orange hr{border-top-color:#ffd49f}.alert-orange .alert-link{color:#673f0e}.alert-light-orange{color:#948872;background-color:#fffaf0;border-color:#fff7ea}.alert-light-orange hr{border-top-color:#ffedd1}.alert-light-orange .alert-link{color:#786e5b}.alert-red{color:#942f31;background-color:#ffd7d7;border-color:#ffc8c8}.alert-red hr{border-top-color:#ffafaf}.alert-red .alert-link{color:#6d2324}.alert-light-red{color:#948889;background-color:#fffaf9;border-color:#fff7f7}.alert-light-red hr{border-top-color:#ffdede}.alert-light-red .alert-link{color:#7b6e6f}.alert-medium{color:#7f8488;background-color:#f7f8f9;border-color:#f4f5f6}.alert-medium hr{border-top-color:#e6e8eb}.alert-medium .alert-link{color:#666a6e}@-webkit-keyframes progress-bar-stripes{0%{background-position:1rem 0}to{background-position:0 0}}@keyframes progress-bar-stripes{0%{background-position:1rem 0}to{background-position:0 0}}.progress{height:1rem;font-size:.75rem;background-color:#e9ecef;border-radius:8px}.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:#fc0;transition:width .6s ease}@media(prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:progress-bar-stripes 1s linear infinite;animation:progress-bar-stripes 1s linear infinite}@media(prefers-reduced-motion:reduce){.progress-bar-animated{-webkit-animation:none;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}.list-group-item-action{width:100%;color:#6c757d;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:#6c757d;text-decoration:none;background-color:#f1f6f9}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.75rem 1.25rem;background-color:#fff;border:1px solid rgba(33,37,41,.125)}.list-group-item:first-child{border-top-left-radius:8px;border-top-right-radius:8px}.list-group-item:last-child{border-bottom-right-radius:8px;border-bottom-left-radius:8px}.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:#fc0;border-color:#fc0}.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:8px;border-top-right-radius:0}.list-group-horizontal .list-group-item:last-child{border-top-right-radius:8px;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:400px){.list-group-horizontal-xs{flex-direction:row}.list-group-horizontal-xs .list-group-item:first-child{border-bottom-left-radius:8px;border-top-right-radius:0}.list-group-horizontal-xs .list-group-item:last-child{border-top-right-radius:8px;border-bottom-left-radius:0}.list-group-horizontal-xs .list-group-item.active{margin-top:0}.list-group-horizontal-xs .list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xs .list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media(min-width:616px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm .list-group-item:first-child{border-bottom-left-radius:8px;border-top-right-radius:0}.list-group-horizontal-sm .list-group-item:last-child{border-top-right-radius:8px;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:8px;border-top-right-radius:0}.list-group-horizontal-md .list-group-item:last-child{border-top-right-radius:8px;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:980px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg .list-group-item:first-child{border-bottom-left-radius:8px;border-top-right-radius:0}.list-group-horizontal-lg .list-group-item:last-child{border-top-right-radius:8px;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:1240px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl .list-group-item:first-child{border-bottom-left-radius:8px;border-top-right-radius:0}.list-group-horizontal-xl .list-group-item:last-child{border-top-right-radius:8px;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 .list-group-item{border-right-width:0;border-left-width:0;border-radius:0}.list-group-flush .list-group-item:first-child{border-top-width:0}.list-group-flush:last-child .list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{color:#947c14;background-color:#fff1b8}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#947c14;background-color:#ffec9f}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#947c14;border-color:#947c14}.list-group-item-secondary{color:#212529;background-color:#c1c2c3}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#212529;background-color:#b4b5b6}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#212529;border-color:#212529}.list-group-item-success{color:#256938;background-color:#c3e6cb}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#256938;background-color:#b1dfbb}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#256938;border-color:#256938}.list-group-item-info{color:#1c6673;background-color:#bee5eb}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#1c6673;background-color:#abdde5}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#1c6673;border-color:#1c6673}.list-group-item-warning{color:#947617;background-color:#ffeeba}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#947617;background-color:#ffe8a1}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#947617;border-color:#947617}.list-group-item-danger{color:#822d38;background-color:#f5c6cb}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#822d38;background-color:#f1b0b7}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#822d38;border-color:#822d38}.list-group-item-light{color:#8d9295;background-color:#fbfcfd}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#8d9295;background-color:#eaeff5}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#8d9295;border-color:#8d9295}.list-group-item-dark{color:#363b41;background-color:#ccced0}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#363b41;background-color:#bfc1c4}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#363b41;border-color:#363b41}.list-group-item-primary-light{color:#949490;background-color:#fffefb}.list-group-item-primary-light.list-group-item-action:focus,.list-group-item-primary-light.list-group-item-action:hover{color:#949490;background-color:#fff8e2}.list-group-item-primary-light.list-group-item-action.active{color:#fff;background-color:#949490;border-color:#949490}.list-group-item-secondary-light{color:#949698;background-color:#fff}.list-group-item-secondary-light.list-group-item-action:focus,.list-group-item-secondary-light.list-group-item-action:hover{color:#949698;background-color:#f2f2f2}.list-group-item-secondary-light.list-group-item-action.active{color:#fff;background-color:#949698;border-color:#949698}.list-group-item-tertiary{color:#235193;background-color:#c2dafc}.list-group-item-tertiary.list-group-item-action:focus,.list-group-item-tertiary.list-group-item-action:hover{color:#235193;background-color:#aacbfb}.list-group-item-tertiary.list-group-item-action.active{color:#fff;background-color:#235193;border-color:#235193}.list-group-item-tertiary-light{color:#868f98;background-color:#f7fbff}.list-group-item-tertiary-light.list-group-item-action:focus,.list-group-item-tertiary-light.list-group-item-action:hover{color:#868f98;background-color:#deeeff}.list-group-item-tertiary-light.list-group-item-action.active{color:#fff;background-color:#868f98;border-color:#868f98}.list-group-item-white{color:#949698;background-color:#fff}.list-group-item-white.list-group-item-action:focus,.list-group-item-white.list-group-item-action:hover{color:#949698;background-color:#f2f2f2}.list-group-item-white.list-group-item-action.active{color:#fff;background-color:#949698;border-color:#949698}.list-group-item-black{color:#212529;background-color:#c1c2c3}.list-group-item-black.list-group-item-action:focus,.list-group-item-black.list-group-item-action:hover{color:#212529;background-color:#b4b5b6}.list-group-item-black.list-group-item-action.active{color:#fff;background-color:#212529;border-color:#212529}.list-group-item-blue{color:#235193;background-color:#c2dafc}.list-group-item-blue.list-group-item-action:focus,.list-group-item-blue.list-group-item-action:hover{color:#235193;background-color:#aacbfb}.list-group-item-blue.list-group-item-action.active{color:#fff;background-color:#235193;border-color:#235193}.list-group-item-light-blue{color:#868f98;background-color:#f7fbff}.list-group-item-light-blue.list-group-item-action:focus,.list-group-item-light-blue.list-group-item-action:hover{color:#868f98;background-color:#deeeff}.list-group-item-light-blue.list-group-item-action.active{color:#fff;background-color:#868f98;border-color:#868f98}.list-group-item-yellow{color:#947c14;background-color:#fff1b8}.list-group-item-yellow.list-group-item-action:focus,.list-group-item-yellow.list-group-item-action:hover{color:#947c14;background-color:#ffec9f}.list-group-item-yellow.list-group-item-action.active{color:#fff;background-color:#947c14;border-color:#947c14}.list-group-item-light-yellow{color:#949490;background-color:#fffefb}.list-group-item-light-yellow.list-group-item-action:focus,.list-group-item-light-yellow.list-group-item-action:hover{color:#949490;background-color:#fff8e2}.list-group-item-light-yellow.list-group-item-action.active{color:#fff;background-color:#949490;border-color:#949490}.list-group-item-orange{color:#945b14;background-color:#ffdfb8}.list-group-item-orange.list-group-item-action:focus,.list-group-item-orange.list-group-item-action:hover{color:#945b14;background-color:#ffd49f}.list-group-item-orange.list-group-item-action.active{color:#fff;background-color:#945b14;border-color:#945b14}.list-group-item-light-orange{color:#948872;background-color:#fff7ea}.list-group-item-light-orange.list-group-item-action:focus,.list-group-item-light-orange.list-group-item-action:hover{color:#948872;background-color:#ffedd1}.list-group-item-light-orange.list-group-item-action.active{color:#fff;background-color:#948872;border-color:#948872}.list-group-item-red{color:#942f31;background-color:#ffc8c8}.list-group-item-red.list-group-item-action:focus,.list-group-item-red.list-group-item-action:hover{color:#942f31;background-color:#ffafaf}.list-group-item-red.list-group-item-action.active{color:#fff;background-color:#942f31;border-color:#942f31}.list-group-item-light-red{color:#948889;background-color:#fff7f7}.list-group-item-light-red.list-group-item-action:focus,.list-group-item-light-red.list-group-item-action:hover{color:#948889;background-color:#ffdede}.list-group-item-light-red.list-group-item-action.active{color:#fff;background-color:#948889;border-color:#948889}.list-group-item-medium{color:#7f8488;background-color:#f4f5f6}.list-group-item-medium.list-group-item-action:focus,.list-group-item-medium.list-group-item-action:hover{color:#7f8488;background-color:#e6e8eb}.list-group-item-medium.list-group-item-action.active{color:#fff;background-color:#7f8488;border-color:#7f8488}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#212529;text-shadow:0 1px 0 #fff;opacity:.5}@media(max-width:1200px){.close{font-size:calc(1.275rem + .3vw)}}.close:hover{color:#212529;text-decoration:none}.close:not(:disabled):not(.disabled):focus,.close:not(:disabled):not(.disabled):hover{opacity:.75}button.close{padding:0;background-color:transparent;border:0;-webkit-appearance:none;-moz-appearance:none;appearance:none}a.close.disabled{pointer-events:none}.toast{max-width:350px;overflow:hidden;font-size:.875rem;background-color:hsla(0,0%,100%,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .25rem .75rem rgba(33,37,41,.1);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);opacity:0;border-radius:.25rem}.toast:not(:last-child){margin-bottom:.75rem}.toast.showing{opacity:1}.toast.show{display:block;opacity:1}.toast.hide{display:none}.toast-header{display:flex;align-items:center;padding:.25rem .75rem;color:#6c757d;background-color:hsla(0,0%,100%,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05)}.toast-body{padding:.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:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform .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);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(33,37,41,.2);border-radius:8px;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#212529}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;align-items:flex-start;justify-content:space-between;padding:1rem;border-bottom:1px solid #d6dbdf;border-top-left-radius:7px;border-top-right-radius:7px}.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:.75rem;border-top:1px solid #d6dbdf;border-bottom-right-radius:7px;border-bottom-left-radius:7px}.modal-footer>*{margin:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media(min-width:616px){.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)}.modal-sm{max-width:300px}}@media(min-width:980px){.modal-lg,.modal-xl{max-width:800px}}@media(min-width:1240px){.modal-xl{max-width:1140px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:Noto Sans,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:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow:before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[x-placement^=top],.bs-tooltip-top{padding:.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:.4rem .4rem 0;border-top-color:#212529}.bs-tooltip-auto[x-placement^=right],.bs-tooltip-right{padding:0 .4rem}.bs-tooltip-auto[x-placement^=right] .arrow,.bs-tooltip-right .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=right] .arrow:before,.bs-tooltip-right .arrow:before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#212529}.bs-tooltip-auto[x-placement^=bottom],.bs-tooltip-bottom{padding:.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 .4rem .4rem;border-bottom-color:#212529}.bs-tooltip-auto[x-placement^=left],.bs-tooltip-left{padding:0 .4rem}.bs-tooltip-auto[x-placement^=left] .arrow,.bs-tooltip-left .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=left] .arrow:before,.bs-tooltip-left .arrow:before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#212529}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#212529;border-radius:8px}.popover{top:0;left:0;z-index:1060;max-width:276px;font-family:Noto Sans,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:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(33,37,41,.2);border-radius:8px}.popover,.popover .arrow{position:absolute;display:block}.popover .arrow{width:1rem;height:.5rem;margin:0 8px}.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:.5rem}.bs-popover-auto[x-placement^=top]>.arrow,.bs-popover-top>.arrow{bottom:calc(-.5rem - 1px)}.bs-popover-auto[x-placement^=top]>.arrow:before,.bs-popover-top>.arrow:before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(33,37,41,.25)}.bs-popover-auto[x-placement^=top]>.arrow:after,.bs-popover-top>.arrow:after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-auto[x-placement^=right],.bs-popover-right{margin-left:.5rem}.bs-popover-auto[x-placement^=right]>.arrow,.bs-popover-right>.arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem;margin:8px 0}.bs-popover-auto[x-placement^=right]>.arrow:before,.bs-popover-right>.arrow:before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(33,37,41,.25)}.bs-popover-auto[x-placement^=right]>.arrow:after,.bs-popover-right>.arrow:after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-auto[x-placement^=bottom],.bs-popover-bottom{margin-top:.5rem}.bs-popover-auto[x-placement^=bottom]>.arrow,.bs-popover-bottom>.arrow{top:calc(-.5rem - 1px)}.bs-popover-auto[x-placement^=bottom]>.arrow:before,.bs-popover-bottom>.arrow:before{top:0;border-width:0 .5rem .5rem;border-bottom-color:rgba(33,37,41,.25)}.bs-popover-auto[x-placement^=bottom]>.arrow:after,.bs-popover-bottom>.arrow:after{top:1px;border-width:0 .5rem .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:-.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-auto[x-placement^=left],.bs-popover-left{margin-right:.5rem}.bs-popover-auto[x-placement^=left]>.arrow,.bs-popover-left>.arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem;margin:8px 0}.bs-popover-auto[x-placement^=left]>.arrow:before,.bs-popover-left>.arrow:before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(33,37,41,.25)}.bs-popover-auto[x-placement^=left]>.arrow:after,.bs-popover-left>.arrow:after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:7px;border-top-right-radius:7px}.popover-header:empty{display:none}.popover-body{padding:.5rem .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%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:transform .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 .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:.5;transition:opacity .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:.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'%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'%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 .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}@-webkit-keyframes spinner-border{to{transform:rotate(1turn)}}@keyframes spinner-border{to{transform:rotate(1turn)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;border:.25em solid;border-right:.25em solid transparent;border-radius:50%;-webkit-animation:spinner-border .75s linear infinite;animation:spinner-border .75s linear infinite}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@-webkit-keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1}}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:spinner-grow .75s linear infinite;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:#fc0!important}a.bg-primary:focus,a.bg-primary:hover,button.bg-primary:focus,button.bg-primary:hover{background-color:#cca300!important}.bg-secondary{background-color:#212529!important}a.bg-secondary:focus,a.bg-secondary:hover,button.bg-secondary:focus,button.bg-secondary:hover{background-color:#0a0c0d!important}.bg-success{background-color:#28a745!important}a.bg-success:focus,a.bg-success:hover,button.bg-success:focus,button.bg-success:hover{background-color:#1e7e34!important}.bg-info{background-color:#17a2b8!important}a.bg-info:focus,a.bg-info:hover,button.bg-info:focus,button.bg-info:hover{background-color:#117a8b!important}.bg-warning{background-color:#ffc107!important}a.bg-warning:focus,a.bg-warning:hover,button.bg-warning:focus,button.bg-warning:hover{background-color:#d39e00!important}.bg-danger{background-color:#dc3545!important}a.bg-danger:focus,a.bg-danger:hover,button.bg-danger:focus,button.bg-danger:hover{background-color:#bd2130!important}.bg-light{background-color:#f1f6f9!important}a.bg-light:focus,a.bg-light:hover,button.bg-light:focus,button.bg-light:hover{background-color:#cddfea!important}.bg-dark{background-color:#495057!important}a.bg-dark:focus,a.bg-dark:hover,button.bg-dark:focus,button.bg-dark:hover{background-color:#32373b!important}.bg-primary-light{background-color:#fffaf0!important}a.bg-primary-light:focus,a.bg-primary-light:hover,button.bg-primary-light:focus,button.bg-primary-light:hover{background-color:#ffe9bd!important}.bg-secondary-light{background-color:#fff!important}a.bg-secondary-light:focus,a.bg-secondary-light:hover,button.bg-secondary-light:focus,button.bg-secondary-light:hover{background-color:#e6e6e6!important}.bg-tertiary{background-color:#257af4!important}a.bg-tertiary:focus,a.bg-tertiary:hover,button.bg-tertiary:focus,button.bg-tertiary:hover{background-color:#0b60db!important}.bg-tertiary-light{background-color:#e3f1fe!important}a.bg-tertiary-light:focus,a.bg-tertiary-light:hover,button.bg-tertiary-light:focus,button.bg-tertiary-light:hover{background-color:#b2d8fc!important}a.bg-white:focus,a.bg-white:hover,button.bg-white:focus,button.bg-white:hover{background-color:#e6e6e6!important}.bg-black{background-color:#212529!important}a.bg-black:focus,a.bg-black:hover,button.bg-black:focus,button.bg-black:hover{background-color:#0a0c0d!important}.bg-blue{background-color:#257af4!important}a.bg-blue:focus,a.bg-blue:hover,button.bg-blue:focus,button.bg-blue:hover{background-color:#0b60db!important}.bg-light-blue{background-color:#e3f1fe!important}a.bg-light-blue:focus,a.bg-light-blue:hover,button.bg-light-blue:focus,button.bg-light-blue:hover{background-color:#b2d8fc!important}.bg-yellow{background-color:#fc0!important}a.bg-yellow:focus,a.bg-yellow:hover,button.bg-yellow:focus,button.bg-yellow:hover{background-color:#cca300!important}.bg-light-yellow{background-color:#fffaf0!important}a.bg-light-yellow:focus,a.bg-light-yellow:hover,button.bg-light-yellow:focus,button.bg-light-yellow:hover{background-color:#ffe9bd!important}.bg-orange{background-color:#ff8c00!important}a.bg-orange:focus,a.bg-orange:hover,button.bg-orange:focus,button.bg-orange:hover{background-color:#cc7000!important}.bg-light-orange{background-color:#ffe4b5!important}a.bg-light-orange:focus,a.bg-light-orange:hover,button.bg-light-orange:focus,button.bg-light-orange:hover{background-color:#ffd182!important}.bg-red{background-color:#ff3939!important}a.bg-red:focus,a.bg-red:hover,button.bg-red:focus,button.bg-red:hover{background-color:#ff0606!important}.bg-light-red{background-color:#ffe4e1!important}a.bg-light-red:focus,a.bg-light-red:hover,button.bg-light-red:focus,button.bg-light-red:hover{background-color:#ffb6ae!important}.bg-medium{background-color:#d6dbdf!important}a.bg-medium:focus,a.bg-medium:hover,button.bg-medium:focus,button.bg-medium:hover{background-color:#b9c2c9!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.border{border:1px solid #d6dbdf!important}.border-top{border-top:1px solid #d6dbdf!important}.border-right{border-right:1px solid #d6dbdf!important}.border-bottom{border-bottom:1px solid #d6dbdf!important}.border-left{border-left:1px solid #d6dbdf!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:#fc0!important}.border-secondary{border-color:#212529!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:#f1f6f9!important}.border-dark{border-color:#495057!important}.border-primary-light{border-color:#fffaf0!important}.border-secondary-light{border-color:#fff!important}.border-tertiary{border-color:#257af4!important}.border-tertiary-light{border-color:#e3f1fe!important}.border-black{border-color:#212529!important}.border-blue{border-color:#257af4!important}.border-light-blue{border-color:#e3f1fe!important}.border-yellow{border-color:#fc0!important}.border-light-yellow{border-color:#fffaf0!important}.border-orange{border-color:#ff8c00!important}.border-light-orange{border-color:#ffe4b5!important}.border-red{border-color:#ff3939!important}.border-light-red{border-color:#ffe4e1!important}.border-medium{border-color:#d6dbdf!important}.border-white{border-color:#fff!important}.rounded,.rounded-sm{border-radius:8px!important}.rounded-top{border-top-left-radius:8px!important}.rounded-right,.rounded-top{border-top-right-radius:8px!important}.rounded-bottom,.rounded-right{border-bottom-right-radius:8px!important}.rounded-bottom,.rounded-left{border-bottom-left-radius:8px!important}.rounded-left{border-top-left-radius:8px!important}.rounded-lg{border-radius:8px!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:400px){.d-xs-none{display:none!important}.d-xs-inline{display:inline!important}.d-xs-inline-block{display:inline-block!important}.d-xs-block{display:block!important}.d-xs-table{display:table!important}.d-xs-table-row{display:table-row!important}.d-xs-table-cell{display:table-cell!important}.d-xs-flex{display:flex!important}.d-xs-inline-flex{display:inline-flex!important}}@media(min-width:616px){.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:980px){.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:1240px){.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.8571428571%}.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:400px){.flex-xs-row{flex-direction:row!important}.flex-xs-column{flex-direction:column!important}.flex-xs-row-reverse{flex-direction:row-reverse!important}.flex-xs-column-reverse{flex-direction:column-reverse!important}.flex-xs-wrap{flex-wrap:wrap!important}.flex-xs-nowrap{flex-wrap:nowrap!important}.flex-xs-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-xs-fill{flex:1 1 auto!important}.flex-xs-grow-0{flex-grow:0!important}.flex-xs-grow-1{flex-grow:1!important}.flex-xs-shrink-0{flex-shrink:0!important}.flex-xs-shrink-1{flex-shrink:1!important}.justify-content-xs-start{justify-content:flex-start!important}.justify-content-xs-end{justify-content:flex-end!important}.justify-content-xs-center{justify-content:center!important}.justify-content-xs-between{justify-content:space-between!important}.justify-content-xs-around{justify-content:space-around!important}.align-items-xs-start{align-items:flex-start!important}.align-items-xs-end{align-items:flex-end!important}.align-items-xs-center{align-items:center!important}.align-items-xs-baseline{align-items:baseline!important}.align-items-xs-stretch{align-items:stretch!important}.align-content-xs-start{align-content:flex-start!important}.align-content-xs-end{align-content:flex-end!important}.align-content-xs-center{align-content:center!important}.align-content-xs-between{align-content:space-between!important}.align-content-xs-around{align-content:space-around!important}.align-content-xs-stretch{align-content:stretch!important}.align-self-xs-auto{align-self:auto!important}.align-self-xs-start{align-self:flex-start!important}.align-self-xs-end{align-self:flex-end!important}.align-self-xs-center{align-self:center!important}.align-self-xs-baseline{align-self:baseline!important}.align-self-xs-stretch{align-self:stretch!important}}@media(min-width:616px){.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:980px){.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:1240px){.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:400px){.float-xs-left{float:left!important}.float-xs-right{float:right!important}.float-xs-none{float:none!important}}@media(min-width:616px){.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:980px){.float-lg-left{float:left!important}.float-lg-right{float:right!important}.float-lg-none{float:none!important}}@media(min-width:1240px){.float-xl-left{float:left!important}.float-xl-right{float:right!important}.float-xl-none{float: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-sm{box-shadow:0 2px 14px rgba(108,117,125,.2)!important}.shadow{box-shadow:0 8px 20px rgba(108,117,125,.2)!important}.shadow-lg{box-shadow:0 12px 32px rgba(108,117,125,.2)!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}.stretched-link:after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:transparent}.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:8px!important}.mt-1,.my-1{margin-top:8px!important}.mr-1,.mx-1{margin-right:8px!important}.mb-1,.my-1{margin-bottom:8px!important}.ml-1,.mx-1{margin-left:8px!important}.m-2{margin:16px!important}.mt-2,.my-2{margin-top:16px!important}.mr-2,.mx-2{margin-right:16px!important}.mb-2,.my-2{margin-bottom:16px!important}.ml-2,.mx-2{margin-left:16px!important}.m-3{margin:24px!important}.mt-3,.my-3{margin-top:24px!important}.mr-3,.mx-3{margin-right:24px!important}.mb-3,.my-3{margin-bottom:24px!important}.ml-3,.mx-3{margin-left:24px!important}.m-4{margin:32px!important}.mt-4,.my-4{margin-top:32px!important}.mr-4,.mx-4{margin-right:32px!important}.mb-4,.my-4{margin-bottom:32px!important}.ml-4,.mx-4{margin-left:32px!important}.m-5{margin:40px!important}.mt-5,.my-5{margin-top:40px!important}.mr-5,.mx-5{margin-right:40px!important}.mb-5,.my-5{margin-bottom:40px!important}.ml-5,.mx-5{margin-left:40px!important}.m-6{margin:48px!important}.mt-6,.my-6{margin-top:48px!important}.mr-6,.mx-6{margin-right:48px!important}.mb-6,.my-6{margin-bottom:48px!important}.ml-6,.mx-6{margin-left:48px!important}.m-7{margin:56px!important}.mt-7,.my-7{margin-top:56px!important}.mr-7,.mx-7{margin-right:56px!important}.mb-7,.my-7{margin-bottom:56px!important}.ml-7,.mx-7{margin-left:56px!important}.m-8{margin:64px!important}.mt-8,.my-8{margin-top:64px!important}.mr-8,.mx-8{margin-right:64px!important}.mb-8,.my-8{margin-bottom:64px!important}.ml-8,.mx-8{margin-left:64px!important}.m-9{margin:72px!important}.mt-9,.my-9{margin-top:72px!important}.mr-9,.mx-9{margin-right:72px!important}.mb-9,.my-9{margin-bottom:72px!important}.ml-9,.mx-9{margin-left:72px!important}.m-10{margin:80px!important}.mt-10,.my-10{margin-top:80px!important}.mr-10,.mx-10{margin-right:80px!important}.mb-10,.my-10{margin-bottom:80px!important}.ml-10,.mx-10{margin-left:80px!important}.m-12{margin:96px!important}.mt-12,.my-12{margin-top:96px!important}.mr-12,.mx-12{margin-right:96px!important}.mb-12,.my-12{margin-bottom:96px!important}.ml-12,.mx-12{margin-left:96px!important}.m-15{margin:120px!important}.mt-15,.my-15{margin-top:120px!important}.mr-15,.mx-15{margin-right:120px!important}.mb-15,.my-15{margin-bottom:120px!important}.ml-15,.mx-15{margin-left:120px!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:8px!important}.pt-1,.py-1{padding-top:8px!important}.pr-1,.px-1{padding-right:8px!important}.pb-1,.py-1{padding-bottom:8px!important}.pl-1,.px-1{padding-left:8px!important}.p-2{padding:16px!important}.pt-2,.py-2{padding-top:16px!important}.pr-2,.px-2{padding-right:16px!important}.pb-2,.py-2{padding-bottom:16px!important}.pl-2,.px-2{padding-left:16px!important}.p-3{padding:24px!important}.pt-3,.py-3{padding-top:24px!important}.pr-3,.px-3{padding-right:24px!important}.pb-3,.py-3{padding-bottom:24px!important}.pl-3,.px-3{padding-left:24px!important}.p-4{padding:32px!important}.pt-4,.py-4{padding-top:32px!important}.pr-4,.px-4{padding-right:32px!important}.pb-4,.py-4{padding-bottom:32px!important}.pl-4,.px-4{padding-left:32px!important}.p-5{padding:40px!important}.pt-5,.py-5{padding-top:40px!important}.pr-5,.px-5{padding-right:40px!important}.pb-5,.py-5{padding-bottom:40px!important}.pl-5,.px-5{padding-left:40px!important}.p-6{padding:48px!important}.pt-6,.py-6{padding-top:48px!important}.pr-6,.px-6{padding-right:48px!important}.pb-6,.py-6{padding-bottom:48px!important}.pl-6,.px-6{padding-left:48px!important}.p-7{padding:56px!important}.pt-7,.py-7{padding-top:56px!important}.pr-7,.px-7{padding-right:56px!important}.pb-7,.py-7{padding-bottom:56px!important}.pl-7,.px-7{padding-left:56px!important}.p-8{padding:64px!important}.pt-8,.py-8{padding-top:64px!important}.pr-8,.px-8{padding-right:64px!important}.pb-8,.py-8{padding-bottom:64px!important}.pl-8,.px-8{padding-left:64px!important}.p-9{padding:72px!important}.pt-9,.py-9{padding-top:72px!important}.pr-9,.px-9{padding-right:72px!important}.pb-9,.py-9{padding-bottom:72px!important}.pl-9,.px-9{padding-left:72px!important}.p-10{padding:80px!important}.pt-10,.py-10{padding-top:80px!important}.pr-10,.px-10{padding-right:80px!important}.pb-10,.py-10{padding-bottom:80px!important}.pl-10,.px-10{padding-left:80px!important}.p-12{padding:96px!important}.pt-12,.py-12{padding-top:96px!important}.pr-12,.px-12{padding-right:96px!important}.pb-12,.py-12{padding-bottom:96px!important}.pl-12,.px-12{padding-left:96px!important}.p-15{padding:120px!important}.pt-15,.py-15{padding-top:120px!important}.pr-15,.px-15{padding-right:120px!important}.pb-15,.py-15{padding-bottom:120px!important}.pl-15,.px-15{padding-left:120px!important}.m-n1{margin:-8px!important}.mt-n1,.my-n1{margin-top:-8px!important}.mr-n1,.mx-n1{margin-right:-8px!important}.mb-n1,.my-n1{margin-bottom:-8px!important}.ml-n1,.mx-n1{margin-left:-8px!important}.m-n2{margin:-16px!important}.mt-n2,.my-n2{margin-top:-16px!important}.mr-n2,.mx-n2{margin-right:-16px!important}.mb-n2,.my-n2{margin-bottom:-16px!important}.ml-n2,.mx-n2{margin-left:-16px!important}.m-n3{margin:-24px!important}.mt-n3,.my-n3{margin-top:-24px!important}.mr-n3,.mx-n3{margin-right:-24px!important}.mb-n3,.my-n3{margin-bottom:-24px!important}.ml-n3,.mx-n3{margin-left:-24px!important}.m-n4{margin:-32px!important}.mt-n4,.my-n4{margin-top:-32px!important}.mr-n4,.mx-n4{margin-right:-32px!important}.mb-n4,.my-n4{margin-bottom:-32px!important}.ml-n4,.mx-n4{margin-left:-32px!important}.m-n5{margin:-40px!important}.mt-n5,.my-n5{margin-top:-40px!important}.mr-n5,.mx-n5{margin-right:-40px!important}.mb-n5,.my-n5{margin-bottom:-40px!important}.ml-n5,.mx-n5{margin-left:-40px!important}.m-n6{margin:-48px!important}.mt-n6,.my-n6{margin-top:-48px!important}.mr-n6,.mx-n6{margin-right:-48px!important}.mb-n6,.my-n6{margin-bottom:-48px!important}.ml-n6,.mx-n6{margin-left:-48px!important}.m-n7{margin:-56px!important}.mt-n7,.my-n7{margin-top:-56px!important}.mr-n7,.mx-n7{margin-right:-56px!important}.mb-n7,.my-n7{margin-bottom:-56px!important}.ml-n7,.mx-n7{margin-left:-56px!important}.m-n8{margin:-64px!important}.mt-n8,.my-n8{margin-top:-64px!important}.mr-n8,.mx-n8{margin-right:-64px!important}.mb-n8,.my-n8{margin-bottom:-64px!important}.ml-n8,.mx-n8{margin-left:-64px!important}.m-n9{margin:-72px!important}.mt-n9,.my-n9{margin-top:-72px!important}.mr-n9,.mx-n9{margin-right:-72px!important}.mb-n9,.my-n9{margin-bottom:-72px!important}.ml-n9,.mx-n9{margin-left:-72px!important}.m-n10{margin:-80px!important}.mt-n10,.my-n10{margin-top:-80px!important}.mr-n10,.mx-n10{margin-right:-80px!important}.mb-n10,.my-n10{margin-bottom:-80px!important}.ml-n10,.mx-n10{margin-left:-80px!important}.m-n12{margin:-96px!important}.mt-n12,.my-n12{margin-top:-96px!important}.mr-n12,.mx-n12{margin-right:-96px!important}.mb-n12,.my-n12{margin-bottom:-96px!important}.ml-n12,.mx-n12{margin-left:-96px!important}.m-n15{margin:-120px!important}.mt-n15,.my-n15{margin-top:-120px!important}.mr-n15,.mx-n15{margin-right:-120px!important}.mb-n15,.my-n15{margin-bottom:-120px!important}.ml-n15,.mx-n15{margin-left:-120px!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:400px){.m-xs-0{margin:0!important}.mt-xs-0,.my-xs-0{margin-top:0!important}.mr-xs-0,.mx-xs-0{margin-right:0!important}.mb-xs-0,.my-xs-0{margin-bottom:0!important}.ml-xs-0,.mx-xs-0{margin-left:0!important}.m-xs-1{margin:8px!important}.mt-xs-1,.my-xs-1{margin-top:8px!important}.mr-xs-1,.mx-xs-1{margin-right:8px!important}.mb-xs-1,.my-xs-1{margin-bottom:8px!important}.ml-xs-1,.mx-xs-1{margin-left:8px!important}.m-xs-2{margin:16px!important}.mt-xs-2,.my-xs-2{margin-top:16px!important}.mr-xs-2,.mx-xs-2{margin-right:16px!important}.mb-xs-2,.my-xs-2{margin-bottom:16px!important}.ml-xs-2,.mx-xs-2{margin-left:16px!important}.m-xs-3{margin:24px!important}.mt-xs-3,.my-xs-3{margin-top:24px!important}.mr-xs-3,.mx-xs-3{margin-right:24px!important}.mb-xs-3,.my-xs-3{margin-bottom:24px!important}.ml-xs-3,.mx-xs-3{margin-left:24px!important}.m-xs-4{margin:32px!important}.mt-xs-4,.my-xs-4{margin-top:32px!important}.mr-xs-4,.mx-xs-4{margin-right:32px!important}.mb-xs-4,.my-xs-4{margin-bottom:32px!important}.ml-xs-4,.mx-xs-4{margin-left:32px!important}.m-xs-5{margin:40px!important}.mt-xs-5,.my-xs-5{margin-top:40px!important}.mr-xs-5,.mx-xs-5{margin-right:40px!important}.mb-xs-5,.my-xs-5{margin-bottom:40px!important}.ml-xs-5,.mx-xs-5{margin-left:40px!important}.m-xs-6{margin:48px!important}.mt-xs-6,.my-xs-6{margin-top:48px!important}.mr-xs-6,.mx-xs-6{margin-right:48px!important}.mb-xs-6,.my-xs-6{margin-bottom:48px!important}.ml-xs-6,.mx-xs-6{margin-left:48px!important}.m-xs-7{margin:56px!important}.mt-xs-7,.my-xs-7{margin-top:56px!important}.mr-xs-7,.mx-xs-7{margin-right:56px!important}.mb-xs-7,.my-xs-7{margin-bottom:56px!important}.ml-xs-7,.mx-xs-7{margin-left:56px!important}.m-xs-8{margin:64px!important}.mt-xs-8,.my-xs-8{margin-top:64px!important}.mr-xs-8,.mx-xs-8{margin-right:64px!important}.mb-xs-8,.my-xs-8{margin-bottom:64px!important}.ml-xs-8,.mx-xs-8{margin-left:64px!important}.m-xs-9{margin:72px!important}.mt-xs-9,.my-xs-9{margin-top:72px!important}.mr-xs-9,.mx-xs-9{margin-right:72px!important}.mb-xs-9,.my-xs-9{margin-bottom:72px!important}.ml-xs-9,.mx-xs-9{margin-left:72px!important}.m-xs-10{margin:80px!important}.mt-xs-10,.my-xs-10{margin-top:80px!important}.mr-xs-10,.mx-xs-10{margin-right:80px!important}.mb-xs-10,.my-xs-10{margin-bottom:80px!important}.ml-xs-10,.mx-xs-10{margin-left:80px!important}.m-xs-12{margin:96px!important}.mt-xs-12,.my-xs-12{margin-top:96px!important}.mr-xs-12,.mx-xs-12{margin-right:96px!important}.mb-xs-12,.my-xs-12{margin-bottom:96px!important}.ml-xs-12,.mx-xs-12{margin-left:96px!important}.m-xs-15{margin:120px!important}.mt-xs-15,.my-xs-15{margin-top:120px!important}.mr-xs-15,.mx-xs-15{margin-right:120px!important}.mb-xs-15,.my-xs-15{margin-bottom:120px!important}.ml-xs-15,.mx-xs-15{margin-left:120px!important}.p-xs-0{padding:0!important}.pt-xs-0,.py-xs-0{padding-top:0!important}.pr-xs-0,.px-xs-0{padding-right:0!important}.pb-xs-0,.py-xs-0{padding-bottom:0!important}.pl-xs-0,.px-xs-0{padding-left:0!important}.p-xs-1{padding:8px!important}.pt-xs-1,.py-xs-1{padding-top:8px!important}.pr-xs-1,.px-xs-1{padding-right:8px!important}.pb-xs-1,.py-xs-1{padding-bottom:8px!important}.pl-xs-1,.px-xs-1{padding-left:8px!important}.p-xs-2{padding:16px!important}.pt-xs-2,.py-xs-2{padding-top:16px!important}.pr-xs-2,.px-xs-2{padding-right:16px!important}.pb-xs-2,.py-xs-2{padding-bottom:16px!important}.pl-xs-2,.px-xs-2{padding-left:16px!important}.p-xs-3{padding:24px!important}.pt-xs-3,.py-xs-3{padding-top:24px!important}.pr-xs-3,.px-xs-3{padding-right:24px!important}.pb-xs-3,.py-xs-3{padding-bottom:24px!important}.pl-xs-3,.px-xs-3{padding-left:24px!important}.p-xs-4{padding:32px!important}.pt-xs-4,.py-xs-4{padding-top:32px!important}.pr-xs-4,.px-xs-4{padding-right:32px!important}.pb-xs-4,.py-xs-4{padding-bottom:32px!important}.pl-xs-4,.px-xs-4{padding-left:32px!important}.p-xs-5{padding:40px!important}.pt-xs-5,.py-xs-5{padding-top:40px!important}.pr-xs-5,.px-xs-5{padding-right:40px!important}.pb-xs-5,.py-xs-5{padding-bottom:40px!important}.pl-xs-5,.px-xs-5{padding-left:40px!important}.p-xs-6{padding:48px!important}.pt-xs-6,.py-xs-6{padding-top:48px!important}.pr-xs-6,.px-xs-6{padding-right:48px!important}.pb-xs-6,.py-xs-6{padding-bottom:48px!important}.pl-xs-6,.px-xs-6{padding-left:48px!important}.p-xs-7{padding:56px!important}.pt-xs-7,.py-xs-7{padding-top:56px!important}.pr-xs-7,.px-xs-7{padding-right:56px!important}.pb-xs-7,.py-xs-7{padding-bottom:56px!important}.pl-xs-7,.px-xs-7{padding-left:56px!important}.p-xs-8{padding:64px!important}.pt-xs-8,.py-xs-8{padding-top:64px!important}.pr-xs-8,.px-xs-8{padding-right:64px!important}.pb-xs-8,.py-xs-8{padding-bottom:64px!important}.pl-xs-8,.px-xs-8{padding-left:64px!important}.p-xs-9{padding:72px!important}.pt-xs-9,.py-xs-9{padding-top:72px!important}.pr-xs-9,.px-xs-9{padding-right:72px!important}.pb-xs-9,.py-xs-9{padding-bottom:72px!important}.pl-xs-9,.px-xs-9{padding-left:72px!important}.p-xs-10{padding:80px!important}.pt-xs-10,.py-xs-10{padding-top:80px!important}.pr-xs-10,.px-xs-10{padding-right:80px!important}.pb-xs-10,.py-xs-10{padding-bottom:80px!important}.pl-xs-10,.px-xs-10{padding-left:80px!important}.p-xs-12{padding:96px!important}.pt-xs-12,.py-xs-12{padding-top:96px!important}.pr-xs-12,.px-xs-12{padding-right:96px!important}.pb-xs-12,.py-xs-12{padding-bottom:96px!important}.pl-xs-12,.px-xs-12{padding-left:96px!important}.p-xs-15{padding:120px!important}.pt-xs-15,.py-xs-15{padding-top:120px!important}.pr-xs-15,.px-xs-15{padding-right:120px!important}.pb-xs-15,.py-xs-15{padding-bottom:120px!important}.pl-xs-15,.px-xs-15{padding-left:120px!important}.m-xs-n1{margin:-8px!important}.mt-xs-n1,.my-xs-n1{margin-top:-8px!important}.mr-xs-n1,.mx-xs-n1{margin-right:-8px!important}.mb-xs-n1,.my-xs-n1{margin-bottom:-8px!important}.ml-xs-n1,.mx-xs-n1{margin-left:-8px!important}.m-xs-n2{margin:-16px!important}.mt-xs-n2,.my-xs-n2{margin-top:-16px!important}.mr-xs-n2,.mx-xs-n2{margin-right:-16px!important}.mb-xs-n2,.my-xs-n2{margin-bottom:-16px!important}.ml-xs-n2,.mx-xs-n2{margin-left:-16px!important}.m-xs-n3{margin:-24px!important}.mt-xs-n3,.my-xs-n3{margin-top:-24px!important}.mr-xs-n3,.mx-xs-n3{margin-right:-24px!important}.mb-xs-n3,.my-xs-n3{margin-bottom:-24px!important}.ml-xs-n3,.mx-xs-n3{margin-left:-24px!important}.m-xs-n4{margin:-32px!important}.mt-xs-n4,.my-xs-n4{margin-top:-32px!important}.mr-xs-n4,.mx-xs-n4{margin-right:-32px!important}.mb-xs-n4,.my-xs-n4{margin-bottom:-32px!important}.ml-xs-n4,.mx-xs-n4{margin-left:-32px!important}.m-xs-n5{margin:-40px!important}.mt-xs-n5,.my-xs-n5{margin-top:-40px!important}.mr-xs-n5,.mx-xs-n5{margin-right:-40px!important}.mb-xs-n5,.my-xs-n5{margin-bottom:-40px!important}.ml-xs-n5,.mx-xs-n5{margin-left:-40px!important}.m-xs-n6{margin:-48px!important}.mt-xs-n6,.my-xs-n6{margin-top:-48px!important}.mr-xs-n6,.mx-xs-n6{margin-right:-48px!important}.mb-xs-n6,.my-xs-n6{margin-bottom:-48px!important}.ml-xs-n6,.mx-xs-n6{margin-left:-48px!important}.m-xs-n7{margin:-56px!important}.mt-xs-n7,.my-xs-n7{margin-top:-56px!important}.mr-xs-n7,.mx-xs-n7{margin-right:-56px!important}.mb-xs-n7,.my-xs-n7{margin-bottom:-56px!important}.ml-xs-n7,.mx-xs-n7{margin-left:-56px!important}.m-xs-n8{margin:-64px!important}.mt-xs-n8,.my-xs-n8{margin-top:-64px!important}.mr-xs-n8,.mx-xs-n8{margin-right:-64px!important}.mb-xs-n8,.my-xs-n8{margin-bottom:-64px!important}.ml-xs-n8,.mx-xs-n8{margin-left:-64px!important}.m-xs-n9{margin:-72px!important}.mt-xs-n9,.my-xs-n9{margin-top:-72px!important}.mr-xs-n9,.mx-xs-n9{margin-right:-72px!important}.mb-xs-n9,.my-xs-n9{margin-bottom:-72px!important}.ml-xs-n9,.mx-xs-n9{margin-left:-72px!important}.m-xs-n10{margin:-80px!important}.mt-xs-n10,.my-xs-n10{margin-top:-80px!important}.mr-xs-n10,.mx-xs-n10{margin-right:-80px!important}.mb-xs-n10,.my-xs-n10{margin-bottom:-80px!important}.ml-xs-n10,.mx-xs-n10{margin-left:-80px!important}.m-xs-n12{margin:-96px!important}.mt-xs-n12,.my-xs-n12{margin-top:-96px!important}.mr-xs-n12,.mx-xs-n12{margin-right:-96px!important}.mb-xs-n12,.my-xs-n12{margin-bottom:-96px!important}.ml-xs-n12,.mx-xs-n12{margin-left:-96px!important}.m-xs-n15{margin:-120px!important}.mt-xs-n15,.my-xs-n15{margin-top:-120px!important}.mr-xs-n15,.mx-xs-n15{margin-right:-120px!important}.mb-xs-n15,.my-xs-n15{margin-bottom:-120px!important}.ml-xs-n15,.mx-xs-n15{margin-left:-120px!important}.m-xs-auto{margin:auto!important}.mt-xs-auto,.my-xs-auto{margin-top:auto!important}.mr-xs-auto,.mx-xs-auto{margin-right:auto!important}.mb-xs-auto,.my-xs-auto{margin-bottom:auto!important}.ml-xs-auto,.mx-xs-auto{margin-left:auto!important}}@media(min-width:616px){.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:8px!important}.mt-sm-1,.my-sm-1{margin-top:8px!important}.mr-sm-1,.mx-sm-1{margin-right:8px!important}.mb-sm-1,.my-sm-1{margin-bottom:8px!important}.ml-sm-1,.mx-sm-1{margin-left:8px!important}.m-sm-2{margin:16px!important}.mt-sm-2,.my-sm-2{margin-top:16px!important}.mr-sm-2,.mx-sm-2{margin-right:16px!important}.mb-sm-2,.my-sm-2{margin-bottom:16px!important}.ml-sm-2,.mx-sm-2{margin-left:16px!important}.m-sm-3{margin:24px!important}.mt-sm-3,.my-sm-3{margin-top:24px!important}.mr-sm-3,.mx-sm-3{margin-right:24px!important}.mb-sm-3,.my-sm-3{margin-bottom:24px!important}.ml-sm-3,.mx-sm-3{margin-left:24px!important}.m-sm-4{margin:32px!important}.mt-sm-4,.my-sm-4{margin-top:32px!important}.mr-sm-4,.mx-sm-4{margin-right:32px!important}.mb-sm-4,.my-sm-4{margin-bottom:32px!important}.ml-sm-4,.mx-sm-4{margin-left:32px!important}.m-sm-5{margin:40px!important}.mt-sm-5,.my-sm-5{margin-top:40px!important}.mr-sm-5,.mx-sm-5{margin-right:40px!important}.mb-sm-5,.my-sm-5{margin-bottom:40px!important}.ml-sm-5,.mx-sm-5{margin-left:40px!important}.m-sm-6{margin:48px!important}.mt-sm-6,.my-sm-6{margin-top:48px!important}.mr-sm-6,.mx-sm-6{margin-right:48px!important}.mb-sm-6,.my-sm-6{margin-bottom:48px!important}.ml-sm-6,.mx-sm-6{margin-left:48px!important}.m-sm-7{margin:56px!important}.mt-sm-7,.my-sm-7{margin-top:56px!important}.mr-sm-7,.mx-sm-7{margin-right:56px!important}.mb-sm-7,.my-sm-7{margin-bottom:56px!important}.ml-sm-7,.mx-sm-7{margin-left:56px!important}.m-sm-8{margin:64px!important}.mt-sm-8,.my-sm-8{margin-top:64px!important}.mr-sm-8,.mx-sm-8{margin-right:64px!important}.mb-sm-8,.my-sm-8{margin-bottom:64px!important}.ml-sm-8,.mx-sm-8{margin-left:64px!important}.m-sm-9{margin:72px!important}.mt-sm-9,.my-sm-9{margin-top:72px!important}.mr-sm-9,.mx-sm-9{margin-right:72px!important}.mb-sm-9,.my-sm-9{margin-bottom:72px!important}.ml-sm-9,.mx-sm-9{margin-left:72px!important}.m-sm-10{margin:80px!important}.mt-sm-10,.my-sm-10{margin-top:80px!important}.mr-sm-10,.mx-sm-10{margin-right:80px!important}.mb-sm-10,.my-sm-10{margin-bottom:80px!important}.ml-sm-10,.mx-sm-10{margin-left:80px!important}.m-sm-12{margin:96px!important}.mt-sm-12,.my-sm-12{margin-top:96px!important}.mr-sm-12,.mx-sm-12{margin-right:96px!important}.mb-sm-12,.my-sm-12{margin-bottom:96px!important}.ml-sm-12,.mx-sm-12{margin-left:96px!important}.m-sm-15{margin:120px!important}.mt-sm-15,.my-sm-15{margin-top:120px!important}.mr-sm-15,.mx-sm-15{margin-right:120px!important}.mb-sm-15,.my-sm-15{margin-bottom:120px!important}.ml-sm-15,.mx-sm-15{margin-left:120px!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:8px!important}.pt-sm-1,.py-sm-1{padding-top:8px!important}.pr-sm-1,.px-sm-1{padding-right:8px!important}.pb-sm-1,.py-sm-1{padding-bottom:8px!important}.pl-sm-1,.px-sm-1{padding-left:8px!important}.p-sm-2{padding:16px!important}.pt-sm-2,.py-sm-2{padding-top:16px!important}.pr-sm-2,.px-sm-2{padding-right:16px!important}.pb-sm-2,.py-sm-2{padding-bottom:16px!important}.pl-sm-2,.px-sm-2{padding-left:16px!important}.p-sm-3{padding:24px!important}.pt-sm-3,.py-sm-3{padding-top:24px!important}.pr-sm-3,.px-sm-3{padding-right:24px!important}.pb-sm-3,.py-sm-3{padding-bottom:24px!important}.pl-sm-3,.px-sm-3{padding-left:24px!important}.p-sm-4{padding:32px!important}.pt-sm-4,.py-sm-4{padding-top:32px!important}.pr-sm-4,.px-sm-4{padding-right:32px!important}.pb-sm-4,.py-sm-4{padding-bottom:32px!important}.pl-sm-4,.px-sm-4{padding-left:32px!important}.p-sm-5{padding:40px!important}.pt-sm-5,.py-sm-5{padding-top:40px!important}.pr-sm-5,.px-sm-5{padding-right:40px!important}.pb-sm-5,.py-sm-5{padding-bottom:40px!important}.pl-sm-5,.px-sm-5{padding-left:40px!important}.p-sm-6{padding:48px!important}.pt-sm-6,.py-sm-6{padding-top:48px!important}.pr-sm-6,.px-sm-6{padding-right:48px!important}.pb-sm-6,.py-sm-6{padding-bottom:48px!important}.pl-sm-6,.px-sm-6{padding-left:48px!important}.p-sm-7{padding:56px!important}.pt-sm-7,.py-sm-7{padding-top:56px!important}.pr-sm-7,.px-sm-7{padding-right:56px!important}.pb-sm-7,.py-sm-7{padding-bottom:56px!important}.pl-sm-7,.px-sm-7{padding-left:56px!important}.p-sm-8{padding:64px!important}.pt-sm-8,.py-sm-8{padding-top:64px!important}.pr-sm-8,.px-sm-8{padding-right:64px!important}.pb-sm-8,.py-sm-8{padding-bottom:64px!important}.pl-sm-8,.px-sm-8{padding-left:64px!important}.p-sm-9{padding:72px!important}.pt-sm-9,.py-sm-9{padding-top:72px!important}.pr-sm-9,.px-sm-9{padding-right:72px!important}.pb-sm-9,.py-sm-9{padding-bottom:72px!important}.pl-sm-9,.px-sm-9{padding-left:72px!important}.p-sm-10{padding:80px!important}.pt-sm-10,.py-sm-10{padding-top:80px!important}.pr-sm-10,.px-sm-10{padding-right:80px!important}.pb-sm-10,.py-sm-10{padding-bottom:80px!important}.pl-sm-10,.px-sm-10{padding-left:80px!important}.p-sm-12{padding:96px!important}.pt-sm-12,.py-sm-12{padding-top:96px!important}.pr-sm-12,.px-sm-12{padding-right:96px!important}.pb-sm-12,.py-sm-12{padding-bottom:96px!important}.pl-sm-12,.px-sm-12{padding-left:96px!important}.p-sm-15{padding:120px!important}.pt-sm-15,.py-sm-15{padding-top:120px!important}.pr-sm-15,.px-sm-15{padding-right:120px!important}.pb-sm-15,.py-sm-15{padding-bottom:120px!important}.pl-sm-15,.px-sm-15{padding-left:120px!important}.m-sm-n1{margin:-8px!important}.mt-sm-n1,.my-sm-n1{margin-top:-8px!important}.mr-sm-n1,.mx-sm-n1{margin-right:-8px!important}.mb-sm-n1,.my-sm-n1{margin-bottom:-8px!important}.ml-sm-n1,.mx-sm-n1{margin-left:-8px!important}.m-sm-n2{margin:-16px!important}.mt-sm-n2,.my-sm-n2{margin-top:-16px!important}.mr-sm-n2,.mx-sm-n2{margin-right:-16px!important}.mb-sm-n2,.my-sm-n2{margin-bottom:-16px!important}.ml-sm-n2,.mx-sm-n2{margin-left:-16px!important}.m-sm-n3{margin:-24px!important}.mt-sm-n3,.my-sm-n3{margin-top:-24px!important}.mr-sm-n3,.mx-sm-n3{margin-right:-24px!important}.mb-sm-n3,.my-sm-n3{margin-bottom:-24px!important}.ml-sm-n3,.mx-sm-n3{margin-left:-24px!important}.m-sm-n4{margin:-32px!important}.mt-sm-n4,.my-sm-n4{margin-top:-32px!important}.mr-sm-n4,.mx-sm-n4{margin-right:-32px!important}.mb-sm-n4,.my-sm-n4{margin-bottom:-32px!important}.ml-sm-n4,.mx-sm-n4{margin-left:-32px!important}.m-sm-n5{margin:-40px!important}.mt-sm-n5,.my-sm-n5{margin-top:-40px!important}.mr-sm-n5,.mx-sm-n5{margin-right:-40px!important}.mb-sm-n5,.my-sm-n5{margin-bottom:-40px!important}.ml-sm-n5,.mx-sm-n5{margin-left:-40px!important}.m-sm-n6{margin:-48px!important}.mt-sm-n6,.my-sm-n6{margin-top:-48px!important}.mr-sm-n6,.mx-sm-n6{margin-right:-48px!important}.mb-sm-n6,.my-sm-n6{margin-bottom:-48px!important}.ml-sm-n6,.mx-sm-n6{margin-left:-48px!important}.m-sm-n7{margin:-56px!important}.mt-sm-n7,.my-sm-n7{margin-top:-56px!important}.mr-sm-n7,.mx-sm-n7{margin-right:-56px!important}.mb-sm-n7,.my-sm-n7{margin-bottom:-56px!important}.ml-sm-n7,.mx-sm-n7{margin-left:-56px!important}.m-sm-n8{margin:-64px!important}.mt-sm-n8,.my-sm-n8{margin-top:-64px!important}.mr-sm-n8,.mx-sm-n8{margin-right:-64px!important}.mb-sm-n8,.my-sm-n8{margin-bottom:-64px!important}.ml-sm-n8,.mx-sm-n8{margin-left:-64px!important}.m-sm-n9{margin:-72px!important}.mt-sm-n9,.my-sm-n9{margin-top:-72px!important}.mr-sm-n9,.mx-sm-n9{margin-right:-72px!important}.mb-sm-n9,.my-sm-n9{margin-bottom:-72px!important}.ml-sm-n9,.mx-sm-n9{margin-left:-72px!important}.m-sm-n10{margin:-80px!important}.mt-sm-n10,.my-sm-n10{margin-top:-80px!important}.mr-sm-n10,.mx-sm-n10{margin-right:-80px!important}.mb-sm-n10,.my-sm-n10{margin-bottom:-80px!important}.ml-sm-n10,.mx-sm-n10{margin-left:-80px!important}.m-sm-n12{margin:-96px!important}.mt-sm-n12,.my-sm-n12{margin-top:-96px!important}.mr-sm-n12,.mx-sm-n12{margin-right:-96px!important}.mb-sm-n12,.my-sm-n12{margin-bottom:-96px!important}.ml-sm-n12,.mx-sm-n12{margin-left:-96px!important}.m-sm-n15{margin:-120px!important}.mt-sm-n15,.my-sm-n15{margin-top:-120px!important}.mr-sm-n15,.mx-sm-n15{margin-right:-120px!important}.mb-sm-n15,.my-sm-n15{margin-bottom:-120px!important}.ml-sm-n15,.mx-sm-n15{margin-left:-120px!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:8px!important}.mt-md-1,.my-md-1{margin-top:8px!important}.mr-md-1,.mx-md-1{margin-right:8px!important}.mb-md-1,.my-md-1{margin-bottom:8px!important}.ml-md-1,.mx-md-1{margin-left:8px!important}.m-md-2{margin:16px!important}.mt-md-2,.my-md-2{margin-top:16px!important}.mr-md-2,.mx-md-2{margin-right:16px!important}.mb-md-2,.my-md-2{margin-bottom:16px!important}.ml-md-2,.mx-md-2{margin-left:16px!important}.m-md-3{margin:24px!important}.mt-md-3,.my-md-3{margin-top:24px!important}.mr-md-3,.mx-md-3{margin-right:24px!important}.mb-md-3,.my-md-3{margin-bottom:24px!important}.ml-md-3,.mx-md-3{margin-left:24px!important}.m-md-4{margin:32px!important}.mt-md-4,.my-md-4{margin-top:32px!important}.mr-md-4,.mx-md-4{margin-right:32px!important}.mb-md-4,.my-md-4{margin-bottom:32px!important}.ml-md-4,.mx-md-4{margin-left:32px!important}.m-md-5{margin:40px!important}.mt-md-5,.my-md-5{margin-top:40px!important}.mr-md-5,.mx-md-5{margin-right:40px!important}.mb-md-5,.my-md-5{margin-bottom:40px!important}.ml-md-5,.mx-md-5{margin-left:40px!important}.m-md-6{margin:48px!important}.mt-md-6,.my-md-6{margin-top:48px!important}.mr-md-6,.mx-md-6{margin-right:48px!important}.mb-md-6,.my-md-6{margin-bottom:48px!important}.ml-md-6,.mx-md-6{margin-left:48px!important}.m-md-7{margin:56px!important}.mt-md-7,.my-md-7{margin-top:56px!important}.mr-md-7,.mx-md-7{margin-right:56px!important}.mb-md-7,.my-md-7{margin-bottom:56px!important}.ml-md-7,.mx-md-7{margin-left:56px!important}.m-md-8{margin:64px!important}.mt-md-8,.my-md-8{margin-top:64px!important}.mr-md-8,.mx-md-8{margin-right:64px!important}.mb-md-8,.my-md-8{margin-bottom:64px!important}.ml-md-8,.mx-md-8{margin-left:64px!important}.m-md-9{margin:72px!important}.mt-md-9,.my-md-9{margin-top:72px!important}.mr-md-9,.mx-md-9{margin-right:72px!important}.mb-md-9,.my-md-9{margin-bottom:72px!important}.ml-md-9,.mx-md-9{margin-left:72px!important}.m-md-10{margin:80px!important}.mt-md-10,.my-md-10{margin-top:80px!important}.mr-md-10,.mx-md-10{margin-right:80px!important}.mb-md-10,.my-md-10{margin-bottom:80px!important}.ml-md-10,.mx-md-10{margin-left:80px!important}.m-md-12{margin:96px!important}.mt-md-12,.my-md-12{margin-top:96px!important}.mr-md-12,.mx-md-12{margin-right:96px!important}.mb-md-12,.my-md-12{margin-bottom:96px!important}.ml-md-12,.mx-md-12{margin-left:96px!important}.m-md-15{margin:120px!important}.mt-md-15,.my-md-15{margin-top:120px!important}.mr-md-15,.mx-md-15{margin-right:120px!important}.mb-md-15,.my-md-15{margin-bottom:120px!important}.ml-md-15,.mx-md-15{margin-left:120px!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:8px!important}.pt-md-1,.py-md-1{padding-top:8px!important}.pr-md-1,.px-md-1{padding-right:8px!important}.pb-md-1,.py-md-1{padding-bottom:8px!important}.pl-md-1,.px-md-1{padding-left:8px!important}.p-md-2{padding:16px!important}.pt-md-2,.py-md-2{padding-top:16px!important}.pr-md-2,.px-md-2{padding-right:16px!important}.pb-md-2,.py-md-2{padding-bottom:16px!important}.pl-md-2,.px-md-2{padding-left:16px!important}.p-md-3{padding:24px!important}.pt-md-3,.py-md-3{padding-top:24px!important}.pr-md-3,.px-md-3{padding-right:24px!important}.pb-md-3,.py-md-3{padding-bottom:24px!important}.pl-md-3,.px-md-3{padding-left:24px!important}.p-md-4{padding:32px!important}.pt-md-4,.py-md-4{padding-top:32px!important}.pr-md-4,.px-md-4{padding-right:32px!important}.pb-md-4,.py-md-4{padding-bottom:32px!important}.pl-md-4,.px-md-4{padding-left:32px!important}.p-md-5{padding:40px!important}.pt-md-5,.py-md-5{padding-top:40px!important}.pr-md-5,.px-md-5{padding-right:40px!important}.pb-md-5,.py-md-5{padding-bottom:40px!important}.pl-md-5,.px-md-5{padding-left:40px!important}.p-md-6{padding:48px!important}.pt-md-6,.py-md-6{padding-top:48px!important}.pr-md-6,.px-md-6{padding-right:48px!important}.pb-md-6,.py-md-6{padding-bottom:48px!important}.pl-md-6,.px-md-6{padding-left:48px!important}.p-md-7{padding:56px!important}.pt-md-7,.py-md-7{padding-top:56px!important}.pr-md-7,.px-md-7{padding-right:56px!important}.pb-md-7,.py-md-7{padding-bottom:56px!important}.pl-md-7,.px-md-7{padding-left:56px!important}.p-md-8{padding:64px!important}.pt-md-8,.py-md-8{padding-top:64px!important}.pr-md-8,.px-md-8{padding-right:64px!important}.pb-md-8,.py-md-8{padding-bottom:64px!important}.pl-md-8,.px-md-8{padding-left:64px!important}.p-md-9{padding:72px!important}.pt-md-9,.py-md-9{padding-top:72px!important}.pr-md-9,.px-md-9{padding-right:72px!important}.pb-md-9,.py-md-9{padding-bottom:72px!important}.pl-md-9,.px-md-9{padding-left:72px!important}.p-md-10{padding:80px!important}.pt-md-10,.py-md-10{padding-top:80px!important}.pr-md-10,.px-md-10{padding-right:80px!important}.pb-md-10,.py-md-10{padding-bottom:80px!important}.pl-md-10,.px-md-10{padding-left:80px!important}.p-md-12{padding:96px!important}.pt-md-12,.py-md-12{padding-top:96px!important}.pr-md-12,.px-md-12{padding-right:96px!important}.pb-md-12,.py-md-12{padding-bottom:96px!important}.pl-md-12,.px-md-12{padding-left:96px!important}.p-md-15{padding:120px!important}.pt-md-15,.py-md-15{padding-top:120px!important}.pr-md-15,.px-md-15{padding-right:120px!important}.pb-md-15,.py-md-15{padding-bottom:120px!important}.pl-md-15,.px-md-15{padding-left:120px!important}.m-md-n1{margin:-8px!important}.mt-md-n1,.my-md-n1{margin-top:-8px!important}.mr-md-n1,.mx-md-n1{margin-right:-8px!important}.mb-md-n1,.my-md-n1{margin-bottom:-8px!important}.ml-md-n1,.mx-md-n1{margin-left:-8px!important}.m-md-n2{margin:-16px!important}.mt-md-n2,.my-md-n2{margin-top:-16px!important}.mr-md-n2,.mx-md-n2{margin-right:-16px!important}.mb-md-n2,.my-md-n2{margin-bottom:-16px!important}.ml-md-n2,.mx-md-n2{margin-left:-16px!important}.m-md-n3{margin:-24px!important}.mt-md-n3,.my-md-n3{margin-top:-24px!important}.mr-md-n3,.mx-md-n3{margin-right:-24px!important}.mb-md-n3,.my-md-n3{margin-bottom:-24px!important}.ml-md-n3,.mx-md-n3{margin-left:-24px!important}.m-md-n4{margin:-32px!important}.mt-md-n4,.my-md-n4{margin-top:-32px!important}.mr-md-n4,.mx-md-n4{margin-right:-32px!important}.mb-md-n4,.my-md-n4{margin-bottom:-32px!important}.ml-md-n4,.mx-md-n4{margin-left:-32px!important}.m-md-n5{margin:-40px!important}.mt-md-n5,.my-md-n5{margin-top:-40px!important}.mr-md-n5,.mx-md-n5{margin-right:-40px!important}.mb-md-n5,.my-md-n5{margin-bottom:-40px!important}.ml-md-n5,.mx-md-n5{margin-left:-40px!important}.m-md-n6{margin:-48px!important}.mt-md-n6,.my-md-n6{margin-top:-48px!important}.mr-md-n6,.mx-md-n6{margin-right:-48px!important}.mb-md-n6,.my-md-n6{margin-bottom:-48px!important}.ml-md-n6,.mx-md-n6{margin-left:-48px!important}.m-md-n7{margin:-56px!important}.mt-md-n7,.my-md-n7{margin-top:-56px!important}.mr-md-n7,.mx-md-n7{margin-right:-56px!important}.mb-md-n7,.my-md-n7{margin-bottom:-56px!important}.ml-md-n7,.mx-md-n7{margin-left:-56px!important}.m-md-n8{margin:-64px!important}.mt-md-n8,.my-md-n8{margin-top:-64px!important}.mr-md-n8,.mx-md-n8{margin-right:-64px!important}.mb-md-n8,.my-md-n8{margin-bottom:-64px!important}.ml-md-n8,.mx-md-n8{margin-left:-64px!important}.m-md-n9{margin:-72px!important}.mt-md-n9,.my-md-n9{margin-top:-72px!important}.mr-md-n9,.mx-md-n9{margin-right:-72px!important}.mb-md-n9,.my-md-n9{margin-bottom:-72px!important}.ml-md-n9,.mx-md-n9{margin-left:-72px!important}.m-md-n10{margin:-80px!important}.mt-md-n10,.my-md-n10{margin-top:-80px!important}.mr-md-n10,.mx-md-n10{margin-right:-80px!important}.mb-md-n10,.my-md-n10{margin-bottom:-80px!important}.ml-md-n10,.mx-md-n10{margin-left:-80px!important}.m-md-n12{margin:-96px!important}.mt-md-n12,.my-md-n12{margin-top:-96px!important}.mr-md-n12,.mx-md-n12{margin-right:-96px!important}.mb-md-n12,.my-md-n12{margin-bottom:-96px!important}.ml-md-n12,.mx-md-n12{margin-left:-96px!important}.m-md-n15{margin:-120px!important}.mt-md-n15,.my-md-n15{margin-top:-120px!important}.mr-md-n15,.mx-md-n15{margin-right:-120px!important}.mb-md-n15,.my-md-n15{margin-bottom:-120px!important}.ml-md-n15,.mx-md-n15{margin-left:-120px!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:980px){.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:8px!important}.mt-lg-1,.my-lg-1{margin-top:8px!important}.mr-lg-1,.mx-lg-1{margin-right:8px!important}.mb-lg-1,.my-lg-1{margin-bottom:8px!important}.ml-lg-1,.mx-lg-1{margin-left:8px!important}.m-lg-2{margin:16px!important}.mt-lg-2,.my-lg-2{margin-top:16px!important}.mr-lg-2,.mx-lg-2{margin-right:16px!important}.mb-lg-2,.my-lg-2{margin-bottom:16px!important}.ml-lg-2,.mx-lg-2{margin-left:16px!important}.m-lg-3{margin:24px!important}.mt-lg-3,.my-lg-3{margin-top:24px!important}.mr-lg-3,.mx-lg-3{margin-right:24px!important}.mb-lg-3,.my-lg-3{margin-bottom:24px!important}.ml-lg-3,.mx-lg-3{margin-left:24px!important}.m-lg-4{margin:32px!important}.mt-lg-4,.my-lg-4{margin-top:32px!important}.mr-lg-4,.mx-lg-4{margin-right:32px!important}.mb-lg-4,.my-lg-4{margin-bottom:32px!important}.ml-lg-4,.mx-lg-4{margin-left:32px!important}.m-lg-5{margin:40px!important}.mt-lg-5,.my-lg-5{margin-top:40px!important}.mr-lg-5,.mx-lg-5{margin-right:40px!important}.mb-lg-5,.my-lg-5{margin-bottom:40px!important}.ml-lg-5,.mx-lg-5{margin-left:40px!important}.m-lg-6{margin:48px!important}.mt-lg-6,.my-lg-6{margin-top:48px!important}.mr-lg-6,.mx-lg-6{margin-right:48px!important}.mb-lg-6,.my-lg-6{margin-bottom:48px!important}.ml-lg-6,.mx-lg-6{margin-left:48px!important}.m-lg-7{margin:56px!important}.mt-lg-7,.my-lg-7{margin-top:56px!important}.mr-lg-7,.mx-lg-7{margin-right:56px!important}.mb-lg-7,.my-lg-7{margin-bottom:56px!important}.ml-lg-7,.mx-lg-7{margin-left:56px!important}.m-lg-8{margin:64px!important}.mt-lg-8,.my-lg-8{margin-top:64px!important}.mr-lg-8,.mx-lg-8{margin-right:64px!important}.mb-lg-8,.my-lg-8{margin-bottom:64px!important}.ml-lg-8,.mx-lg-8{margin-left:64px!important}.m-lg-9{margin:72px!important}.mt-lg-9,.my-lg-9{margin-top:72px!important}.mr-lg-9,.mx-lg-9{margin-right:72px!important}.mb-lg-9,.my-lg-9{margin-bottom:72px!important}.ml-lg-9,.mx-lg-9{margin-left:72px!important}.m-lg-10{margin:80px!important}.mt-lg-10,.my-lg-10{margin-top:80px!important}.mr-lg-10,.mx-lg-10{margin-right:80px!important}.mb-lg-10,.my-lg-10{margin-bottom:80px!important}.ml-lg-10,.mx-lg-10{margin-left:80px!important}.m-lg-12{margin:96px!important}.mt-lg-12,.my-lg-12{margin-top:96px!important}.mr-lg-12,.mx-lg-12{margin-right:96px!important}.mb-lg-12,.my-lg-12{margin-bottom:96px!important}.ml-lg-12,.mx-lg-12{margin-left:96px!important}.m-lg-15{margin:120px!important}.mt-lg-15,.my-lg-15{margin-top:120px!important}.mr-lg-15,.mx-lg-15{margin-right:120px!important}.mb-lg-15,.my-lg-15{margin-bottom:120px!important}.ml-lg-15,.mx-lg-15{margin-left:120px!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:8px!important}.pt-lg-1,.py-lg-1{padding-top:8px!important}.pr-lg-1,.px-lg-1{padding-right:8px!important}.pb-lg-1,.py-lg-1{padding-bottom:8px!important}.pl-lg-1,.px-lg-1{padding-left:8px!important}.p-lg-2{padding:16px!important}.pt-lg-2,.py-lg-2{padding-top:16px!important}.pr-lg-2,.px-lg-2{padding-right:16px!important}.pb-lg-2,.py-lg-2{padding-bottom:16px!important}.pl-lg-2,.px-lg-2{padding-left:16px!important}.p-lg-3{padding:24px!important}.pt-lg-3,.py-lg-3{padding-top:24px!important}.pr-lg-3,.px-lg-3{padding-right:24px!important}.pb-lg-3,.py-lg-3{padding-bottom:24px!important}.pl-lg-3,.px-lg-3{padding-left:24px!important}.p-lg-4{padding:32px!important}.pt-lg-4,.py-lg-4{padding-top:32px!important}.pr-lg-4,.px-lg-4{padding-right:32px!important}.pb-lg-4,.py-lg-4{padding-bottom:32px!important}.pl-lg-4,.px-lg-4{padding-left:32px!important}.p-lg-5{padding:40px!important}.pt-lg-5,.py-lg-5{padding-top:40px!important}.pr-lg-5,.px-lg-5{padding-right:40px!important}.pb-lg-5,.py-lg-5{padding-bottom:40px!important}.pl-lg-5,.px-lg-5{padding-left:40px!important}.p-lg-6{padding:48px!important}.pt-lg-6,.py-lg-6{padding-top:48px!important}.pr-lg-6,.px-lg-6{padding-right:48px!important}.pb-lg-6,.py-lg-6{padding-bottom:48px!important}.pl-lg-6,.px-lg-6{padding-left:48px!important}.p-lg-7{padding:56px!important}.pt-lg-7,.py-lg-7{padding-top:56px!important}.pr-lg-7,.px-lg-7{padding-right:56px!important}.pb-lg-7,.py-lg-7{padding-bottom:56px!important}.pl-lg-7,.px-lg-7{padding-left:56px!important}.p-lg-8{padding:64px!important}.pt-lg-8,.py-lg-8{padding-top:64px!important}.pr-lg-8,.px-lg-8{padding-right:64px!important}.pb-lg-8,.py-lg-8{padding-bottom:64px!important}.pl-lg-8,.px-lg-8{padding-left:64px!important}.p-lg-9{padding:72px!important}.pt-lg-9,.py-lg-9{padding-top:72px!important}.pr-lg-9,.px-lg-9{padding-right:72px!important}.pb-lg-9,.py-lg-9{padding-bottom:72px!important}.pl-lg-9,.px-lg-9{padding-left:72px!important}.p-lg-10{padding:80px!important}.pt-lg-10,.py-lg-10{padding-top:80px!important}.pr-lg-10,.px-lg-10{padding-right:80px!important}.pb-lg-10,.py-lg-10{padding-bottom:80px!important}.pl-lg-10,.px-lg-10{padding-left:80px!important}.p-lg-12{padding:96px!important}.pt-lg-12,.py-lg-12{padding-top:96px!important}.pr-lg-12,.px-lg-12{padding-right:96px!important}.pb-lg-12,.py-lg-12{padding-bottom:96px!important}.pl-lg-12,.px-lg-12{padding-left:96px!important}.p-lg-15{padding:120px!important}.pt-lg-15,.py-lg-15{padding-top:120px!important}.pr-lg-15,.px-lg-15{padding-right:120px!important}.pb-lg-15,.py-lg-15{padding-bottom:120px!important}.pl-lg-15,.px-lg-15{padding-left:120px!important}.m-lg-n1{margin:-8px!important}.mt-lg-n1,.my-lg-n1{margin-top:-8px!important}.mr-lg-n1,.mx-lg-n1{margin-right:-8px!important}.mb-lg-n1,.my-lg-n1{margin-bottom:-8px!important}.ml-lg-n1,.mx-lg-n1{margin-left:-8px!important}.m-lg-n2{margin:-16px!important}.mt-lg-n2,.my-lg-n2{margin-top:-16px!important}.mr-lg-n2,.mx-lg-n2{margin-right:-16px!important}.mb-lg-n2,.my-lg-n2{margin-bottom:-16px!important}.ml-lg-n2,.mx-lg-n2{margin-left:-16px!important}.m-lg-n3{margin:-24px!important}.mt-lg-n3,.my-lg-n3{margin-top:-24px!important}.mr-lg-n3,.mx-lg-n3{margin-right:-24px!important}.mb-lg-n3,.my-lg-n3{margin-bottom:-24px!important}.ml-lg-n3,.mx-lg-n3{margin-left:-24px!important}.m-lg-n4{margin:-32px!important}.mt-lg-n4,.my-lg-n4{margin-top:-32px!important}.mr-lg-n4,.mx-lg-n4{margin-right:-32px!important}.mb-lg-n4,.my-lg-n4{margin-bottom:-32px!important}.ml-lg-n4,.mx-lg-n4{margin-left:-32px!important}.m-lg-n5{margin:-40px!important}.mt-lg-n5,.my-lg-n5{margin-top:-40px!important}.mr-lg-n5,.mx-lg-n5{margin-right:-40px!important}.mb-lg-n5,.my-lg-n5{margin-bottom:-40px!important}.ml-lg-n5,.mx-lg-n5{margin-left:-40px!important}.m-lg-n6{margin:-48px!important}.mt-lg-n6,.my-lg-n6{margin-top:-48px!important}.mr-lg-n6,.mx-lg-n6{margin-right:-48px!important}.mb-lg-n6,.my-lg-n6{margin-bottom:-48px!important}.ml-lg-n6,.mx-lg-n6{margin-left:-48px!important}.m-lg-n7{margin:-56px!important}.mt-lg-n7,.my-lg-n7{margin-top:-56px!important}.mr-lg-n7,.mx-lg-n7{margin-right:-56px!important}.mb-lg-n7,.my-lg-n7{margin-bottom:-56px!important}.ml-lg-n7,.mx-lg-n7{margin-left:-56px!important}.m-lg-n8{margin:-64px!important}.mt-lg-n8,.my-lg-n8{margin-top:-64px!important}.mr-lg-n8,.mx-lg-n8{margin-right:-64px!important}.mb-lg-n8,.my-lg-n8{margin-bottom:-64px!important}.ml-lg-n8,.mx-lg-n8{margin-left:-64px!important}.m-lg-n9{margin:-72px!important}.mt-lg-n9,.my-lg-n9{margin-top:-72px!important}.mr-lg-n9,.mx-lg-n9{margin-right:-72px!important}.mb-lg-n9,.my-lg-n9{margin-bottom:-72px!important}.ml-lg-n9,.mx-lg-n9{margin-left:-72px!important}.m-lg-n10{margin:-80px!important}.mt-lg-n10,.my-lg-n10{margin-top:-80px!important}.mr-lg-n10,.mx-lg-n10{margin-right:-80px!important}.mb-lg-n10,.my-lg-n10{margin-bottom:-80px!important}.ml-lg-n10,.mx-lg-n10{margin-left:-80px!important}.m-lg-n12{margin:-96px!important}.mt-lg-n12,.my-lg-n12{margin-top:-96px!important}.mr-lg-n12,.mx-lg-n12{margin-right:-96px!important}.mb-lg-n12,.my-lg-n12{margin-bottom:-96px!important}.ml-lg-n12,.mx-lg-n12{margin-left:-96px!important}.m-lg-n15{margin:-120px!important}.mt-lg-n15,.my-lg-n15{margin-top:-120px!important}.mr-lg-n15,.mx-lg-n15{margin-right:-120px!important}.mb-lg-n15,.my-lg-n15{margin-bottom:-120px!important}.ml-lg-n15,.mx-lg-n15{margin-left:-120px!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:1240px){.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:8px!important}.mt-xl-1,.my-xl-1{margin-top:8px!important}.mr-xl-1,.mx-xl-1{margin-right:8px!important}.mb-xl-1,.my-xl-1{margin-bottom:8px!important}.ml-xl-1,.mx-xl-1{margin-left:8px!important}.m-xl-2{margin:16px!important}.mt-xl-2,.my-xl-2{margin-top:16px!important}.mr-xl-2,.mx-xl-2{margin-right:16px!important}.mb-xl-2,.my-xl-2{margin-bottom:16px!important}.ml-xl-2,.mx-xl-2{margin-left:16px!important}.m-xl-3{margin:24px!important}.mt-xl-3,.my-xl-3{margin-top:24px!important}.mr-xl-3,.mx-xl-3{margin-right:24px!important}.mb-xl-3,.my-xl-3{margin-bottom:24px!important}.ml-xl-3,.mx-xl-3{margin-left:24px!important}.m-xl-4{margin:32px!important}.mt-xl-4,.my-xl-4{margin-top:32px!important}.mr-xl-4,.mx-xl-4{margin-right:32px!important}.mb-xl-4,.my-xl-4{margin-bottom:32px!important}.ml-xl-4,.mx-xl-4{margin-left:32px!important}.m-xl-5{margin:40px!important}.mt-xl-5,.my-xl-5{margin-top:40px!important}.mr-xl-5,.mx-xl-5{margin-right:40px!important}.mb-xl-5,.my-xl-5{margin-bottom:40px!important}.ml-xl-5,.mx-xl-5{margin-left:40px!important}.m-xl-6{margin:48px!important}.mt-xl-6,.my-xl-6{margin-top:48px!important}.mr-xl-6,.mx-xl-6{margin-right:48px!important}.mb-xl-6,.my-xl-6{margin-bottom:48px!important}.ml-xl-6,.mx-xl-6{margin-left:48px!important}.m-xl-7{margin:56px!important}.mt-xl-7,.my-xl-7{margin-top:56px!important}.mr-xl-7,.mx-xl-7{margin-right:56px!important}.mb-xl-7,.my-xl-7{margin-bottom:56px!important}.ml-xl-7,.mx-xl-7{margin-left:56px!important}.m-xl-8{margin:64px!important}.mt-xl-8,.my-xl-8{margin-top:64px!important}.mr-xl-8,.mx-xl-8{margin-right:64px!important}.mb-xl-8,.my-xl-8{margin-bottom:64px!important}.ml-xl-8,.mx-xl-8{margin-left:64px!important}.m-xl-9{margin:72px!important}.mt-xl-9,.my-xl-9{margin-top:72px!important}.mr-xl-9,.mx-xl-9{margin-right:72px!important}.mb-xl-9,.my-xl-9{margin-bottom:72px!important}.ml-xl-9,.mx-xl-9{margin-left:72px!important}.m-xl-10{margin:80px!important}.mt-xl-10,.my-xl-10{margin-top:80px!important}.mr-xl-10,.mx-xl-10{margin-right:80px!important}.mb-xl-10,.my-xl-10{margin-bottom:80px!important}.ml-xl-10,.mx-xl-10{margin-left:80px!important}.m-xl-12{margin:96px!important}.mt-xl-12,.my-xl-12{margin-top:96px!important}.mr-xl-12,.mx-xl-12{margin-right:96px!important}.mb-xl-12,.my-xl-12{margin-bottom:96px!important}.ml-xl-12,.mx-xl-12{margin-left:96px!important}.m-xl-15{margin:120px!important}.mt-xl-15,.my-xl-15{margin-top:120px!important}.mr-xl-15,.mx-xl-15{margin-right:120px!important}.mb-xl-15,.my-xl-15{margin-bottom:120px!important}.ml-xl-15,.mx-xl-15{margin-left:120px!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:8px!important}.pt-xl-1,.py-xl-1{padding-top:8px!important}.pr-xl-1,.px-xl-1{padding-right:8px!important}.pb-xl-1,.py-xl-1{padding-bottom:8px!important}.pl-xl-1,.px-xl-1{padding-left:8px!important}.p-xl-2{padding:16px!important}.pt-xl-2,.py-xl-2{padding-top:16px!important}.pr-xl-2,.px-xl-2{padding-right:16px!important}.pb-xl-2,.py-xl-2{padding-bottom:16px!important}.pl-xl-2,.px-xl-2{padding-left:16px!important}.p-xl-3{padding:24px!important}.pt-xl-3,.py-xl-3{padding-top:24px!important}.pr-xl-3,.px-xl-3{padding-right:24px!important}.pb-xl-3,.py-xl-3{padding-bottom:24px!important}.pl-xl-3,.px-xl-3{padding-left:24px!important}.p-xl-4{padding:32px!important}.pt-xl-4,.py-xl-4{padding-top:32px!important}.pr-xl-4,.px-xl-4{padding-right:32px!important}.pb-xl-4,.py-xl-4{padding-bottom:32px!important}.pl-xl-4,.px-xl-4{padding-left:32px!important}.p-xl-5{padding:40px!important}.pt-xl-5,.py-xl-5{padding-top:40px!important}.pr-xl-5,.px-xl-5{padding-right:40px!important}.pb-xl-5,.py-xl-5{padding-bottom:40px!important}.pl-xl-5,.px-xl-5{padding-left:40px!important}.p-xl-6{padding:48px!important}.pt-xl-6,.py-xl-6{padding-top:48px!important}.pr-xl-6,.px-xl-6{padding-right:48px!important}.pb-xl-6,.py-xl-6{padding-bottom:48px!important}.pl-xl-6,.px-xl-6{padding-left:48px!important}.p-xl-7{padding:56px!important}.pt-xl-7,.py-xl-7{padding-top:56px!important}.pr-xl-7,.px-xl-7{padding-right:56px!important}.pb-xl-7,.py-xl-7{padding-bottom:56px!important}.pl-xl-7,.px-xl-7{padding-left:56px!important}.p-xl-8{padding:64px!important}.pt-xl-8,.py-xl-8{padding-top:64px!important}.pr-xl-8,.px-xl-8{padding-right:64px!important}.pb-xl-8,.py-xl-8{padding-bottom:64px!important}.pl-xl-8,.px-xl-8{padding-left:64px!important}.p-xl-9{padding:72px!important}.pt-xl-9,.py-xl-9{padding-top:72px!important}.pr-xl-9,.px-xl-9{padding-right:72px!important}.pb-xl-9,.py-xl-9{padding-bottom:72px!important}.pl-xl-9,.px-xl-9{padding-left:72px!important}.p-xl-10{padding:80px!important}.pt-xl-10,.py-xl-10{padding-top:80px!important}.pr-xl-10,.px-xl-10{padding-right:80px!important}.pb-xl-10,.py-xl-10{padding-bottom:80px!important}.pl-xl-10,.px-xl-10{padding-left:80px!important}.p-xl-12{padding:96px!important}.pt-xl-12,.py-xl-12{padding-top:96px!important}.pr-xl-12,.px-xl-12{padding-right:96px!important}.pb-xl-12,.py-xl-12{padding-bottom:96px!important}.pl-xl-12,.px-xl-12{padding-left:96px!important}.p-xl-15{padding:120px!important}.pt-xl-15,.py-xl-15{padding-top:120px!important}.pr-xl-15,.px-xl-15{padding-right:120px!important}.pb-xl-15,.py-xl-15{padding-bottom:120px!important}.pl-xl-15,.px-xl-15{padding-left:120px!important}.m-xl-n1{margin:-8px!important}.mt-xl-n1,.my-xl-n1{margin-top:-8px!important}.mr-xl-n1,.mx-xl-n1{margin-right:-8px!important}.mb-xl-n1,.my-xl-n1{margin-bottom:-8px!important}.ml-xl-n1,.mx-xl-n1{margin-left:-8px!important}.m-xl-n2{margin:-16px!important}.mt-xl-n2,.my-xl-n2{margin-top:-16px!important}.mr-xl-n2,.mx-xl-n2{margin-right:-16px!important}.mb-xl-n2,.my-xl-n2{margin-bottom:-16px!important}.ml-xl-n2,.mx-xl-n2{margin-left:-16px!important}.m-xl-n3{margin:-24px!important}.mt-xl-n3,.my-xl-n3{margin-top:-24px!important}.mr-xl-n3,.mx-xl-n3{margin-right:-24px!important}.mb-xl-n3,.my-xl-n3{margin-bottom:-24px!important}.ml-xl-n3,.mx-xl-n3{margin-left:-24px!important}.m-xl-n4{margin:-32px!important}.mt-xl-n4,.my-xl-n4{margin-top:-32px!important}.mr-xl-n4,.mx-xl-n4{margin-right:-32px!important}.mb-xl-n4,.my-xl-n4{margin-bottom:-32px!important}.ml-xl-n4,.mx-xl-n4{margin-left:-32px!important}.m-xl-n5{margin:-40px!important}.mt-xl-n5,.my-xl-n5{margin-top:-40px!important}.mr-xl-n5,.mx-xl-n5{margin-right:-40px!important}.mb-xl-n5,.my-xl-n5{margin-bottom:-40px!important}.ml-xl-n5,.mx-xl-n5{margin-left:-40px!important}.m-xl-n6{margin:-48px!important}.mt-xl-n6,.my-xl-n6{margin-top:-48px!important}.mr-xl-n6,.mx-xl-n6{margin-right:-48px!important}.mb-xl-n6,.my-xl-n6{margin-bottom:-48px!important}.ml-xl-n6,.mx-xl-n6{margin-left:-48px!important}.m-xl-n7{margin:-56px!important}.mt-xl-n7,.my-xl-n7{margin-top:-56px!important}.mr-xl-n7,.mx-xl-n7{margin-right:-56px!important}.mb-xl-n7,.my-xl-n7{margin-bottom:-56px!important}.ml-xl-n7,.mx-xl-n7{margin-left:-56px!important}.m-xl-n8{margin:-64px!important}.mt-xl-n8,.my-xl-n8{margin-top:-64px!important}.mr-xl-n8,.mx-xl-n8{margin-right:-64px!important}.mb-xl-n8,.my-xl-n8{margin-bottom:-64px!important}.ml-xl-n8,.mx-xl-n8{margin-left:-64px!important}.m-xl-n9{margin:-72px!important}.mt-xl-n9,.my-xl-n9{margin-top:-72px!important}.mr-xl-n9,.mx-xl-n9{margin-right:-72px!important}.mb-xl-n9,.my-xl-n9{margin-bottom:-72px!important}.ml-xl-n9,.mx-xl-n9{margin-left:-72px!important}.m-xl-n10{margin:-80px!important}.mt-xl-n10,.my-xl-n10{margin-top:-80px!important}.mr-xl-n10,.mx-xl-n10{margin-right:-80px!important}.mb-xl-n10,.my-xl-n10{margin-bottom:-80px!important}.ml-xl-n10,.mx-xl-n10{margin-left:-80px!important}.m-xl-n12{margin:-96px!important}.mt-xl-n12,.my-xl-n12{margin-top:-96px!important}.mr-xl-n12,.mx-xl-n12{margin-right:-96px!important}.mb-xl-n12,.my-xl-n12{margin-bottom:-96px!important}.ml-xl-n12,.mx-xl-n12{margin-left:-96px!important}.m-xl-n15{margin:-120px!important}.mt-xl-n15,.my-xl-n15{margin-top:-120px!important}.mr-xl-n15,.mx-xl-n15{margin-right:-120px!important}.mb-xl-n15,.my-xl-n15{margin-bottom:-120px!important}.ml-xl-n15,.mx-xl-n15{margin-left:-120px!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}}.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:400px){.text-xs-left{text-align:left!important}.text-xs-right{text-align:right!important}.text-xs-center{text-align:center!important}}@media(min-width:616px){.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:980px){.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}@media(min-width:1240px){.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:#fc0!important}a.text-primary:focus,a.text-primary:hover{color:#b38f00!important}.text-secondary{color:#212529!important}a.text-secondary:focus,a.text-secondary:hover{color:#000!important}.text-success{color:#28a745!important}a.text-success:focus,a.text-success:hover{color:#19692c!important}.text-info{color:#17a2b8!important}a.text-info:focus,a.text-info:hover{color:#0f6674!important}.text-warning{color:#ffc107!important}a.text-warning:focus,a.text-warning:hover{color:#ba8b00!important}.text-danger{color:#dc3545!important}a.text-danger:focus,a.text-danger:hover{color:#a71d2a!important}.text-light{color:#f1f6f9!important}a.text-light:focus,a.text-light:hover{color:#bbd4e2!important}.text-dark{color:#495057!important}a.text-dark:focus,a.text-dark:hover{color:#262a2d!important}.text-primary-light{color:#fffaf0!important}a.text-primary-light:focus,a.text-primary-light:hover{color:#ffe1a4!important}.text-secondary-light{color:#fff!important}a.text-secondary-light:focus,a.text-secondary-light:hover{color:#d9d9d9!important}.text-tertiary{color:#257af4!important}a.text-tertiary:focus,a.text-tertiary:hover{color:#0a56c3!important}.text-tertiary-light{color:#e3f1fe!important}a.text-tertiary-light:focus,a.text-tertiary-light:hover{color:#99ccfb!important}.text-white{color:#fff!important}a.text-white:focus,a.text-white:hover{color:#d9d9d9!important}.text-black{color:#212529!important}a.text-black:focus,a.text-black:hover{color:#000!important}.text-blue{color:#257af4!important}a.text-blue:focus,a.text-blue:hover{color:#0a56c3!important}.text-light-blue{color:#e3f1fe!important}a.text-light-blue:focus,a.text-light-blue:hover{color:#99ccfb!important}.text-yellow{color:#fc0!important}a.text-yellow:focus,a.text-yellow:hover{color:#b38f00!important}.text-light-yellow{color:#fffaf0!important}a.text-light-yellow:focus,a.text-light-yellow:hover{color:#ffe1a4!important}.text-orange{color:#ff8c00!important}a.text-orange:focus,a.text-orange:hover{color:#b36200!important}.text-light-orange{color:#ffe4b5!important}a.text-light-orange:focus,a.text-light-orange:hover{color:#ffc869!important}.text-red{color:#ff3939!important}a.text-red:focus,a.text-red:hover{color:#ec0000!important}.text-light-red{color:#ffe4e1!important}a.text-light-red:focus,a.text-light-red:hover{color:#ff9f95!important}.text-medium{color:#d6dbdf!important}a.text-medium:focus,a.text-medium:hover{color:#abb5bd!important}.text-body{color:#212529!important}.text-muted{color:#6c757d!important}.text-black-50{color:rgba(33,37,41,.5)!important}.text-white-50{color:hsla(0,0%,100%,.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-break:break-word!important;overflow-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 #d6dbdf;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:980px!important}.navbar{display:none}.badge{border:1px solid #212529}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #dee2e6!important}.table-dark{color:inherit}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#d6dbdf}.table .thead-dark th{color:inherit;border-color:#d6dbdf}}
\ No newline at end of file
diff --git a/website/css/greenhouse.css b/website/css/greenhouse.css
new file mode 100644
index 00000000000..76812a169e8
--- /dev/null
+++ b/website/css/greenhouse.css
@@ -0,0 +1 @@
+#main{padding-bottom:0;padding-top:0}#wrapper{max-width:1078px;padding:0}body>#wrapper>#main>#wrapper>#content,body>#wrapper>#main>#wrapper>#logo,body>#wrapper>#main>#wrapper>h1{display:none}body>#wrapper>#main>#wrapper>#board_title{margin-top:0}body>#wrapper>#main>#logo{margin-top:80px}body>#wrapper>#main>:last-child{margin-bottom:120px}
\ No newline at end of file
diff --git a/website/css/main.css b/website/css/main.css
index 9b676804eba..229b74cb3f7 100644
--- a/website/css/main.css
+++ b/website/css/main.css
@@ -1,1039 +1 @@
-@media screen and (max-width: 978.98px) {
- .btn {
- padding: 8px 16px;
- }
-}
-
-@media screen and (max-width: 978.98px) {
- .btn-lg {
- padding: 12px 24px;
- }
-}
-
-.btn-primary {
- color: #212529;
-}
-.btn-primary:active, .btn-primary:hover {
- color: #212529;
-}
-
-.btn-outline-primary {
- background: #fffaf0;
- border-color: #ffcc00;
- color: #212529;
-}
-.btn-outline-primary:active, .btn-outline-primary:hover {
- background: #ffcc00;
- border-color: #ffcc00;
- color: #212529;
-}
-
-.btn-secondary {
- border-color: #212529;
- color: #fff;
-}
-.btn-secondary:active, .btn-secondary:hover {
- background: #fff;
- border-color: #212529;
- color: #212529;
-}
-
-.btn-outline-secondary {
- background: #fff;
- border-color: #212529;
- color: #212529;
-}
-.btn-outline-secondary:active, .btn-outline-secondary:hover {
- background: #212529;
- border-color: #212529;
- color: #fff;
-}
-
-.btn-tertiary {
- border-color: #257af4;
- color: #fff;
-}
-.btn-tertiary:active, .btn-tertiary:hover {
- background: #257af4;
- border-color: #257af4;
- color: #fff;
-}
-
-.btn-outline-tertiary {
- background: #e3f1fe;
- color: #257af4;
-}
-.btn-outline-tertiary:active, .btn-outline-tertiary:hover {
- background: #257af4;
- color: #fff;
-}
-
-.btns {
- align-items: center;
- display: flex;
- justify-content: center;
-}
-.btns .btn + .btn {
- margin-left: 24px;
-}
-.btns .btn-lg + .btn-lg {
- margin-left: 40px;
-}
-
-.card {
- box-shadow: 0 8px 20px rgba(108, 117, 125, 0.2);
- overflow: hidden;
- position: relative;
- transition: box-shadow 0.2s, transform 0.2s;
- width: 100%;
-}
-.card-body {
- position: relative;
- z-index: 10;
-}
-
-.card.is-large .card-body {
- padding: 40px;
-}
-
-.card.bg-primary-light {
- border-color: #ffcc00;
-}
-
-.card.has-dark-border {
- border-color: #6c757d;
-}
-
-.card.has-pattern:before,
-.card.has-pattern:after {
- background-repeat: no-repeat;
- background-size: auto 100%;
- bottom: 0;
- content: "";
- display: block;
- position: absolute;
- top: 0;
- width: 72px;
-}
-
-.card.has-pattern:before {
- background-image: url(../images/backgrounds/bg-card-pattern-blue-1.png);
- background-position: left top;
- left: 0;
-}
-
-.card.has-pattern:after {
- background-image: url(../images/backgrounds/bg-card-pattern-blue-2.png);
- background-position: right top;
- right: 0;
-}
-
-a.card:active,
-a.card:hover,
-.card.has-hover:active,
-.card.has-hover:hover {
- box-shadow: 0 12px 32px rgba(108, 117, 125, 0.2);
- transform: translateY(-8px);
-}
-
-a.card:after,
-.card.has-hover:after,
-.card.has-highlight:after {
- content: "";
- display: block;
- height: 8px;
- margin-top: auto;
- transition: background 0.2s;
- width: 100%;
-}
-
-a.card:active:after,
-a.card:hover:after,
-.card.has-hover:active:after,
-.card.has-hover:hover:after,
-.card.has-highlight:after {
- background: #e3f1fe;
-}
-
-.case-study-cards {
- -moz-column-gap: 40px;
- column-gap: 40px;
- display: grid;
- grid-template-columns: 1fr;
- row-gap: 40px;
- padding-bottom: 40px;
- position: relative;
-}
-.case-study-cards > div {
- align-items: stretch;
- display: flex;
-}
-.case-study-cards:before {
- background: #d6dbdf;
- bottom: 0;
- content: "";
- display: block;
- left: 20px;
- position: absolute;
- top: 40px;
- width: 100vw;
-}
-@media screen and (min-width: 980px) {
- .case-study-cards {
- grid-template-columns: repeat(2, minmax(0, 1fr));
- row-gap: 80px;
- padding-bottom: 120px;
- }
- .case-study-cards:before {
- left: -40px;
- top: 120px;
- }
-}
-
-.case-study-card {
- align-items: stretch;
- flex-direction: row;
- flex-shrink: 0;
- left: 0;
- transition: 0.2s box-shadow, 0.4s left, 0.4s width, 0s z-index;
- transition-delay: 0s, 0.6s, 0.6s, 0s;
- width: 100%;
- z-index: 2;
-}
-@media screen and (max-width: 979.98px) {
- .case-study-card .row {
- min-height: 0 !important;
- }
-}
-@media screen and (min-width: 980px) {
- .case-study-card:active, .case-study-card:hover {
- box-shadow: 0 12px 32px rgba(108, 117, 125, 0.2);
- }
- .case-study-card:not(.is-open) {
- cursor: pointer;
- }
- .case-study-card.is-open {
- transform: none !important;
- transition-delay: 0s, 0s, 0s, 0s;
- width: calc(200% + 40px);
- z-index: 10;
- }
- .case-study-card.is-closing {
- z-index: 10;
- }
- .case-study-card.open-left.is-open {
- left: calc(-100% - 40px);
- }
- .case-study-card:before {
- background: no-repeat url(../images/backgrounds/bg-card-pattern-red.png);
- background-position: right center;
- background-size: contain;
- content: "";
- display: block;
- height: calc(100% - 80px);
- max-height: 224px;
- max-width: 234px;
- position: absolute;
- right: 0;
- top: 40px;
- transform: translateX(30%);
- transition: 0.4s transform;
- transition-delay: 0.6s;
- width: 100%;
- z-index: 1;
- }
-}
-@media screen and (min-width: 980px) and (min-width: 1240px) {
- .case-study-card:before {
- transform: translateX(10%);
- }
-}
-@media screen and (min-width: 980px) {
- .case-study-card.is-open:before {
- transform: translateX(60%);
- transition-delay: 0s;
- }
-}
-@media screen and (min-width: 980px) {
- .case-study-card-wrap {
- align-items: stretch;
- display: flex;
- flex-shrink: 0;
- min-height: 304px;
- position: relative;
- transition: 0.4s width;
- transition-delay: 0.6s;
- width: calc(200% + 42px);
- z-index: 2;
- }
-}
-@media screen and (min-width: 980px) {
- .case-study-card.is-open .case-study-card-wrap {
- transition-delay: 0s;
- width: 100%;
- }
-}
-@media screen and (min-width: 980px) {
- .case-study-card-body {
- display: flex;
- flex-direction: column;
- padding-right: 80px !important;
- }
- .case-study-card-body > .row {
- align-self: stretch;
- }
-}
-@media screen and (min-width: 980px) {
- .case-study-card-toggle {
- background: #fff;
- box-shadow: 0 8px 20px rgba(108, 117, 125, 0.2);
- border-radius: 100%;
- cursor: pointer;
- height: 56px;
- position: relative;
- width: 56px;
- }
- .case-study-card-toggle:before, .case-study-card-toggle:after {
- background: #257af4;
- content: "";
- display: block;
- height: 4px;
- left: calc(50% - 15px);
- position: absolute;
- top: calc(50% - 2px);
- transition: opacity 0.2s, transform 0.2s;
- width: 30px;
- }
- .case-study-card-toggle:after {
- transform: rotate(90deg);
- }
-}
-@media screen and (min-width: 980px) {
- .case-study-card.is-open .case-study-card-toggle:before {
- opacity: 0;
- transform: rotate(-90deg);
- }
-}
-@media screen and (min-width: 980px) {
- .case-study-card.is-open .case-study-card-toggle:after {
- transform: rotate(0);
- }
-}
-@media screen and (min-width: 980px) {
- .case-study-card .col-lg-3,
-.case-study-card .col-lg-auto {
- opacity: 0;
- transform: translateX(24px);
- transition: 0.4s opacity, 0.4s transform;
- }
-}
-@media screen and (min-width: 980px) {
- .case-study-card .col-lg-3 {
- transition-delay: 0s;
- }
-}
-@media screen and (min-width: 980px) {
- .case-study-card .col-lg-auto {
- transition-delay: 0.2s;
- }
-}
-@media screen and (min-width: 980px) and (min-width: 980px) {
- .case-study-card .col-lg-auto {
- max-width: 605px;
- width: calc(100% - 319px);
- }
-}
-@media screen and (min-width: 980px) {
- .case-study-card.is-open .col-lg-3, .case-study-card.is-open .col-lg-auto {
- opacity: 1;
- transform: none;
- }
-}
-@media screen and (min-width: 980px) {
- .case-study-card.is-open .col-lg-3 {
- transition-delay: 0.4s;
- }
-}
-@media screen and (min-width: 980px) {
- .case-study-card.is-open .col-lg-auto {
- transition-delay: 0.2s;
- }
-}
-
-.footer-copy {
- white-space: nowrap;
-}
-
-form .form-control {
- border: 1px solid #6c757d;
- border-radius: 6px;
- box-shadow: 0 8px 20px rgba(108, 117, 125, 0.2);
- color: #212529;
- height: auto;
- line-height: 20px;
- min-height: 44px;
- padding: 12px 16px;
- width: 100%;
-}
-form .form-control:focus {
- border-color: #212529;
- box-shadow: 0 8px 20px rgba(108, 117, 125, 0.2);
- color: #212529;
-}
-form .form-control::-moz-placeholder {
- color: #6c757d;
-}
-form .form-control:-ms-input-placeholder {
- color: #6c757d;
-}
-form .form-control::placeholder {
- color: #6c757d;
-}
-form select.form-control {
- -webkit-appearance: none;
- -moz-appearance: none;
- appearance: none;
-}
-form select.form-control:not([data-chosen]) {
- color: #6c757d;
-}
-form .btn-secondary:active,
-form .btn-secondary:hover {
- color: #212529;
- background: #ffcc00;
- border-color: #ffcc00;
-}
-
-.hero {
- background-repeat: no-repeat;
- background-position: center;
- background-size: cover;
- overflow: visible;
- position: relative;
-}
-.hero-bg {
- background-repeat: no-repeat;
- background-position: center;
- background-size: cover;
- display: block;
- height: 100%;
- left: 50%;
- position: absolute;
- top: 0;
- transform: translateX(-50%);
- z-index: 1;
-}
-.hero > .container {
- position: relative;
- z-index: 2;
-}
-
-.hero.has-offset {
- margin-bottom: -160px;
- padding-bottom: 160px;
-}
-
-hr {
- background: #f1f6f9;
- border: 0;
- display: block;
- height: 4px;
- margin: 0;
- width: 100%;
-}
-
-hr.is-small {
- height: 2px;
-}
-
-hr.is-large {
- height: 8px;
-}
-
-hr.is-medium {
- background: #d6dbdf;
-}
-
-hr.is-dark {
- background: #495057;
-}
-
-hr.is-yellow {
- background: linear-gradient(90deg, #ff8c00 0, #ff8c00 8px, #ffcc00 16px, rgba(255, 204, 0, 0) 100%);
- -webkit-clip-path: polygon(8px 100%, 0 100%, 0 0, 8px 0, 8px 100%, 16px 100%, 16px 0, 100% 0, 100% 100%);
- clip-path: polygon(8px 100%, 0 100%, 0 0, 8px 0, 8px 100%, 16px 100%, 16px 0, 100% 0, 100% 100%);
- height: 8px;
-}
-
-.icon {
- display: block;
- height: 48px;
- margin-bottom: 24px;
- -o-object-fit: contain;
- object-fit: contain;
- -o-object-position: center;
- object-position: center;
-}
-@media screen and (min-width: 576px) {
- .icon {
- height: 64px;
- }
-}
-@media screen and (min-width: 980px) {
- .icon {
- height: 80px;
- }
-}
-
-img {
- max-width: 100%;
-}
-
-.kicker {
- color: #6c757d;
- font-family: "Hind Siliguri", sans-serif;
- font-size: 0.875rem;
- font-weight: 600;
- letter-spacing: 1px;
- margin: 0;
-}
-
-@media screen and (max-width: 978.98px) {
- .lead {
- font-size: 1.125rem;
- }
-}
-
-.navbar-clickhouse {
- border-bottom: 4px solid #f1f6f9 !important;
- height: 142px !important;
-}
-.navbar-clickhouse > .container {
- flex-wrap: wrap !important;
-}
-.navbar-super {
- flex-shrink: 0;
- width: 100%;
-}
-.navbar-super ul {
- list-style: none;
-}
-.navbar-super li:not(:last-child) {
- margin-bottom: 0;
- margin-right: 24px;
-}
-.navbar-super a {
- align-items: center;
- color: #212529;
- display: flex;
- font-size: 0.875rem;
-}
-.navbar-super a:active, .navbar-super a:hover {
- color: #257af4;
- text-decoration: none;
-}
-.navbar-super img {
- flex-shrink: 0;
- margin-right: 4px;
-}
-.navbar-brand-clickhouse {
- background: no-repeat url(/images/logo-clickhouse.svg);
- background-size: contain;
- flex-shrink: 0;
- height: 28px;
- margin-right: 48px;
- padding: 0;
- width: 180px;
-}
-.navbar-nav {
- align-items: center;
- height: 46px;
-}
-.navbar .nav-item:not(:last-child) {
- margin-bottom: 0;
- margin-right: 24px;
-}
-.navbar .nav-link {
- color: #212529;
-}
-.navbar .nav-link:active, .navbar .nav-link:hover {
- color: #257af4;
-}
-.navbar .navbar-nav {
- flex-direction: row;
-}
-@media screen and (max-width: 978.98px) {
- .navbar > .container {
- padding-left: 20px;
- padding-right: 20px;
- }
- .navbar .navbar-toggler {
- height: 24px;
- padding: 0;
- width: 24px;
- }
- .navbar .navbar-toggler:focus {
- outline: none;
- }
- .navbar .navbar-toggler-icon {
- background: no-repeat url(../images/icons/icon-menu.svg);
- background-position: center;
- background-size: contain;
- height: 24px;
- width: 24px;
- }
- .navbar .navbar-collapse {
- background: #fff;
- border-bottom: 4px solid #f1f6f9;
- height: 56px;
- left: 0;
- padding: 0 20px 16px;
- position: absolute;
- right: 0;
- top: 100%;
- }
- .navbar .nav-link {
- font-size: 0.875rem;
- white-space: nowrap;
- }
-}
-@media screen and (max-width: 615.98px) {
- .navbar .navbar-collapse {
- height: auto;
- }
- .navbar .navbar-nav {
- flex-direction: column;
- height: auto;
- }
- .navbar .nav-item:not(:last-child) {
- margin-bottom: 16px;
- margin-right: 0;
- }
-}
-@media screen and (max-width: 399.98px) {
- .navbar {
- height: 80px;
- }
-}
-
-.page {
- overflow: hidden;
- width: 100vw;
-}
-
-.photo-frame {
- background: rgba(255, 255, 255, 0.6);
- border-radius: 100%;
- box-shadow: 0 8px 20px rgba(108, 117, 125, 0.2);
- display: block;
- margin-bottom: 24px;
- max-width: 160px;
- overflow: hidden;
- position: relative;
- width: 100%;
-}
-.photo-frame:before {
- content: "";
- display: block;
- padding-bottom: 100%;
- width: 100%;
-}
-.photo-frame img {
- display: block;
- height: 100%;
- left: 0;
- -o-object-fit: contain;
- object-fit: contain;
- -o-object-position: center;
- object-position: center;
- position: absolute;
- top: 0;
- width: 100%;
-}
-
-.pullquote {
- position: relative;
- width: 70%;
-}
-.pullquote:before {
- background: no-repeat url(../images/backgrounds/bg-quotes.svg);
- background-position: center;
- background-size: 100%;
- bottom: 0;
- content: "";
- display: block;
- mix-blend-mode: multiply;
- position: absolute;
- right: 56px;
- top: 0;
- width: calc(100% - 16px);
- z-index: 2;
-}
-.pullquote-bg {
- bottom: 0;
- display: block;
- position: absolute;
- right: 0;
- top: 0;
- width: calc(50vw + 28.5714285714%);
- z-index: 1;
-}
-.pullquote-body {
- padding: 64px 40px 64px 0;
- position: relative;
- z-index: 3;
-}
-.pullquote-quote {
- font-family: "Hind Siliguri", sans-serif;
- font-size: 32px;
- font-weight: 700;
-}
-.pullquote-citation {
- font-size: 1.125rem;
-}
-
-.section {
- background-repeat: no-repeat;
- background-position: center;
- background-size: cover;
- overflow: visible;
- position: relative;
-}
-.section-bg {
- background-repeat: no-repeat;
- background-position: center;
- background-size: cover;
- display: block;
- height: 100%;
- left: 50%;
- position: absolute;
- top: 0;
- transform: translateX(-50%);
- z-index: 1;
-}
-.section > .container {
- position: relative;
- z-index: 2;
-}
-
-.social-icons {
- align-items: center;
- display: flex;
-}
-.social-icons > a {
- aspect-ratio: 24/24;
- background: #6c757d;
- display: block;
- height: 24px;
- width: 24px;
- -webkit-mask-position: center;
- mask-position: center;
- -webkit-mask-repeat: no-repeat;
- mask-repeat: no-repeat;
- -webkit-mask-size: contain;
- mask-size: contain;
- transition: 0.2s background;
-}
-.social-icons > a:active, .social-icons > a:hover {
- background: #212529;
-}
-.social-icons > a + a {
- margin-left: 32px;
-}
-.social-icons-facebook {
- -webkit-mask-image: url("/images/icons/icon-facebook-gray.svg");
- mask-image: url("/images/icons/icon-facebook-gray.svg");
-}
-.social-icons-twitter {
- -webkit-mask-image: url("/images/icons/icon-twitter-gray.svg");
- mask-image: url("/images/icons/icon-twitter-gray.svg");
- width: 31px;
-}
-.social-icons-linkedin {
- -webkit-mask-image: url("/images/icons/icon-linkedin-gray.svg");
- mask-image: url("/images/icons/icon-linkedin-gray.svg");
-}
-.social-icons-linkedin-alt {
- -webkit-mask-image: url("/images/icons/icon-linkedin-alt-gray.svg");
- mask-image: url("/images/icons/icon-linkedin-alt-gray.svg");
-}
-
-.social-icons.size-small > a {
- height: 20px;
- width: 20px;
-}
-.social-icons.size-small > a:active, .social-icons.size-small > a:hover {
- background: #212529;
-}
-.social-icons.size-small > a + a {
- margin-left: 16px;
-}
-
-.tabs {
- position: relative;
-}
-.tabs:before {
- background: #fff;
- border-radius: 7px 7px 0 0;
- content: "";
- display: block;
- height: 8px;
- left: 1px;
- position: absolute;
- right: 1px;
- top: 68px;
- z-index: 10;
-}
-@media screen and (min-width: 1240px) {
- .tabs:before {
- top: 76px;
- }
-}
-.tabs-body {
- background: #fff;
- border-color: #6c757d;
- border-radius: 8px;
- border-style: solid;
- border-width: 1px;
- box-shadow: 0 8px 20px rgba(108, 117, 125, 0.2);
- padding: 24px;
-}
-@media screen and (min-width: 980px) {
- .tabs-body {
- padding: 32px;
- }
-}
-@media screen and (min-width: 1240px) {
- .tabs-body {
- padding: 40px;
- }
-}
-.tabs .nav-tabs {
- border-bottom: 0;
- flex-wrap: nowrap;
- height: 76px;
- margin: -20px -20px -9px;
- -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 20px, #000 calc(100% - 20px), transparent 100%);
- mask-image: linear-gradient(90deg, transparent 0%, #000 20px, #000 calc(100% - 20px), transparent 100%);
- overflow: scroll;
- overflow-x: scroll;
- overflow-y: visible;
- padding: 20px 20px 0;
- position: relative;
-}
-@media screen and (min-width: 940px) {
- .tabs .nav-tabs {
- overflow: visible;
- }
-}
-@media screen and (min-width: 1240px) {
- .tabs .nav-tabs {
- height: 84px;
- }
-}
-.tabs .nav-link {
- align-items: center;
- border-bottom: 0;
- color: #6c757d;
- display: flex;
- font-size: 0.875rem;
- flex-shrink: 0;
- height: 56px;
- justify-content: center;
- padding: 0 12px 8px;
- text-align: center;
- white-space: nowrap;
-}
-@media screen and (min-width: 1240px) {
- .tabs .nav-link {
- height: 64px;
- padding: 0 16px 8px;
- }
-}
-.tabs .nav-link.active {
- background: #fff;
- box-shadow: 0 -4px 8px rgba(108, 117, 125, 0.1);
- font-weight: 700;
- padding: 0 16px 8px;
-}
-@media screen and (min-width: 980px) {
- .tabs .nav-link.active {
- padding: 0 24px 8px;
- }
-}
-@media screen and (min-width: 1240px) {
- .tabs .nav-link.active {
- padding: 0 32px 8px;
- }
-}
-
-.tab-pane pre {
- background: #212529;
- border-radius: 16px;
- color: #fff;
- padding: 24px 16px;
-}
-@media screen and (min-width: 1240px) {
- .tab-pane pre {
- padding: 32px 24px;
- }
-}
-
-.trailing-link {
- align-items: center;
- color: #212529;
- display: flex;
- font-size: 0.875rem;
- font-weight: 700;
-}
-.trailing-link:after {
- background: no-repeat url(../images/icons/icon-arrow.svg);
- background-position: right center;
- background-size: contain;
- content: "";
- display: block;
- height: 12px;
- transition: 0.2s transform;
- width: 20px;
-}
-.trailing-link:active, .trailing-link:hover {
- color: #212529;
- text-decoration: none;
-}
-.trailing-link:active:after, .trailing-link:hover:after {
- transform: translateX(8px);
-}
-.trailing-link.span-full:after {
- margin-left: auto;
-}
-
-ul {
- list-style-type: square;
- padding-left: 1.25em;
-}
-ul li:not(:last-child) {
- margin-bottom: 16px;
-}
-ul li::marker {
- color: #ff3939;
-}
-
-ul.has-separators {
- list-style: none;
- padding: 0;
-}
-ul.has-separators li:not(:last-child) {
- border-bottom: 4px solid #f1f6f9;
- margin-bottom: 24px;
- padding-bottom: 24px;
-}
-
-.bg-gradient-secondary {
- background-image: linear-gradient(58deg, #FF6443 3%, #FE561D 24%, #E32F0D 93%);
-}
-
-.bg-gradient-light-orange {
- background-image: linear-gradient(90deg, rgba(255, 203, 128, 0) 0%, #FFCB80 100%);
-}
-
-.bg-offset-right {
- bottom: 0;
- left: -24px;
- position: absolute;
- top: 0;
- width: calc(100vw + 24px);
- z-index: -1;
-}
-@media screen and (min-width: 1240px) {
- .bg-offset-right {
- left: -96px;
- width: calc(100vw + 96px);
- }
-}
-
-.bg-inset-right {
- bottom: 0;
- left: 40px;
- position: absolute;
- top: 0;
- width: calc(100vw - 40px);
- z-index: -1;
-}
-@media screen and (min-width: 980px) {
- .bg-inset-right {
- left: 96px;
- width: calc(100vw - 96px);
- }
-}
-
-.has-border-left {
- border-left: 8px solid #f1f6f9;
- padding-left: 16px;
-}
-
-.font-xl {
- font-size: 1.25rem;
-}
-
-.font-lg {
- font-size: 1.125rem;
-}
-
-.font-sm {
- font-size: 0.875rem;
-}
-
-.font-xs {
- font-size: 0.625rem;
-}
-
-.font-weight-semibold {
- font-weight: 600;
-}
-
-.display-5 {
- color: #212529;
- font-size: 20px;
- font-weight: 500;
-}
-
-.display-6 {
- color: #212529;
- font-size: 14px;
- font-weight: 700;
-}
-
-.text-decoration-underline {
- text-decoration: underline;
-}
-
-.text-upper {
- text-transform: uppercase;
-}
-.base-hero {
- height:22.5vw;
- max-height:324px;
- min-height:280px;
-}
-.index-hero {
- background-image:url('/images/backgrounds/bg-hero-home.svg');
- height:68vw;
- max-height:980px;
- max-width:2448px;
- width:170vw;
-}
-.other-hero {
- background-image: url('/images/backgrounds/bg-hero.svg');
- max-width: 2448px;
- width: 170vw;
-}
-.bg-footer-cta {
- background-image:url('/images/backgrounds/bg-footer-cta.svg');
- width:2448px;
-}
-.quickstart-bg {
- background-image:url('/images/backgrounds/bg-quick-start.svg');
- height:40vw;
- top:220px;
- width:170vw;
-}
+@media screen and (max-width:978.98px){.btn{padding:8px 16px}}@media screen and (max-width:978.98px){.btn-lg{padding:12px 24px}}.btn-primary,.btn-primary:active,.btn-primary:hover{color:#212529}.btn-outline-primary{background:#fffaf0;border-color:#fc0;color:#212529}.btn-outline-primary:active,.btn-outline-primary:hover{background:#fc0;border-color:#fc0;color:#212529}.btn-secondary{border-color:#212529;color:#fff}.btn-outline-secondary,.btn-secondary:active,.btn-secondary:hover{background:#fff;border-color:#212529;color:#212529}.btn-outline-secondary:active,.btn-outline-secondary:hover{background:#212529;border-color:#212529;color:#fff}.btn-tertiary{border-color:#257af4;color:#fff}.btn-tertiary:active,.btn-tertiary:hover{background:#257af4;border-color:#257af4;color:#fff}.btn-outline-tertiary{background:#e3f1fe;color:#257af4}.btn-outline-tertiary:active,.btn-outline-tertiary:hover{background:#257af4;color:#fff}.btns{align-items:center;display:flex;justify-content:center}.btns .btn+.btn{margin-left:24px}.btns .btn-lg+.btn-lg{margin-left:40px}.card{box-shadow:0 8px 20px rgba(108,117,125,.2);overflow:hidden;transition:box-shadow .2s,transform .2s;width:100%}.card,.card-body{position:relative}.card-body{z-index:10}.card.is-large .card-body{padding:40px}.card.bg-primary-light{border-color:#fc0}.card.has-dark-border{border-color:#6c757d}.card.has-pattern:after,.card.has-pattern:before{background-repeat:no-repeat;background-size:auto 100%;bottom:0;content:"";display:block;position:absolute;top:0;width:72px}.card.has-pattern:before{background-image:url(../images/backgrounds/bg-card-pattern-blue-1.png);background-position:0 0;left:0}.card.has-pattern:after{background-image:url(../images/backgrounds/bg-card-pattern-blue-2.png);background-position:100% 0;right:0}.card.has-hover:active,.card.has-hover:hover,a.card:active,a.card:hover{box-shadow:0 12px 32px rgba(108,117,125,.2);transform:translateY(-8px)}.card.has-highlight:after,.card.has-hover:after,a.card:after{content:"";display:block;height:8px;margin-top:auto;transition:background .2s;width:100%}.card.has-highlight:after,.card.has-hover:active:after,.card.has-hover:hover:after,a.card:active:after,a.card:hover:after{background:#e3f1fe}.case-study-cards{-moz-column-gap:40px;column-gap:40px;display:grid;grid-template-columns:1fr;row-gap:40px;padding-bottom:40px;position:relative}.case-study-cards>div{align-items:stretch;display:flex}.case-study-cards:before{background:#d6dbdf;bottom:0;content:"";display:block;left:20px;position:absolute;top:40px;width:100vw}@media screen and (min-width:980px){.case-study-cards{grid-template-columns:repeat(2,minmax(0,1fr));row-gap:80px;padding-bottom:120px}.case-study-cards:before{left:-40px;top:120px}}.case-study-card{align-items:stretch;flex-direction:row;flex-shrink:0;left:0;transition:box-shadow .2s,left .4s,width .4s,z-index 0s;transition-delay:0s,.6s,.6s,0s;width:100%;z-index:2}@media screen and (max-width:979.98px){.case-study-card .row{min-height:0!important}}@media screen and (min-width:980px){.case-study-card:active,.case-study-card:hover{box-shadow:0 12px 32px rgba(108,117,125,.2)}.case-study-card:not(.is-open){cursor:pointer}.case-study-card.is-open{transform:none!important;transition-delay:0s,0s,0s,0s;width:calc(200% + 40px);z-index:10}.case-study-card.is-closing{z-index:10}.case-study-card.open-left.is-open{left:calc(-100% - 40px)}.case-study-card:before{background:no-repeat url(../images/backgrounds/bg-card-pattern-red.png);background-position:100%;background-size:contain;content:"";display:block;height:calc(100% - 80px);max-height:224px;max-width:234px;position:absolute;right:0;top:40px;transform:translateX(30%);transition:transform .4s;transition-delay:.6s;width:100%;z-index:1}}@media screen and (min-width:980px)and (min-width:1240px){.case-study-card:before{transform:translateX(10%)}}@media screen and (min-width:980px){.case-study-card.is-open:before{transform:translateX(60%);transition-delay:0s}}@media screen and (min-width:980px){.case-study-card-wrap{align-items:stretch;display:flex;flex-shrink:0;min-height:304px;position:relative;transition:width .4s;transition-delay:.6s;width:calc(200% + 42px);z-index:2}}@media screen and (min-width:980px){.case-study-card.is-open .case-study-card-wrap{transition-delay:0s;width:100%}}@media screen and (min-width:980px){.case-study-card-body{display:flex;flex-direction:column;padding-right:80px!important}.case-study-card-body>.row{align-self:stretch}}@media screen and (min-width:980px){.case-study-card-toggle{background:#fff;box-shadow:0 8px 20px rgba(108,117,125,.2);border-radius:100%;cursor:pointer;height:56px;position:relative;width:56px}.case-study-card-toggle:after,.case-study-card-toggle:before{background:#257af4;content:"";display:block;height:4px;left:calc(50% - 15px);position:absolute;top:calc(50% - 2px);transition:opacity .2s,transform .2s;width:30px}.case-study-card-toggle:after{transform:rotate(90deg)}}@media screen and (min-width:980px){.case-study-card.is-open .case-study-card-toggle:before{opacity:0;transform:rotate(-90deg)}}@media screen and (min-width:980px){.case-study-card.is-open .case-study-card-toggle:after{transform:rotate(0)}}@media screen and (min-width:980px){.case-study-card .col-lg-3,.case-study-card .col-lg-auto{opacity:0;transform:translateX(24px);transition:opacity .4s,transform .4s}}@media screen and (min-width:980px){.case-study-card .col-lg-3{transition-delay:0s}}@media screen and (min-width:980px){.case-study-card .col-lg-auto{transition-delay:.2s}}@media screen and (min-width:980px)and (min-width:980px){.case-study-card .col-lg-auto{max-width:605px;width:calc(100% - 319px)}}@media screen and (min-width:980px){.case-study-card.is-open .col-lg-3,.case-study-card.is-open .col-lg-auto{opacity:1;transform:none}}@media screen and (min-width:980px){.case-study-card.is-open .col-lg-3{transition-delay:.4s}}@media screen and (min-width:980px){.case-study-card.is-open .col-lg-auto{transition-delay:.2s}}.footer-copy{white-space:nowrap}form .form-control{border:1px solid #6c757d;border-radius:6px;height:auto;line-height:20px;min-height:44px;padding:12px 16px;width:100%}form .form-control,form .form-control:focus{box-shadow:0 8px 20px rgba(108,117,125,.2);color:#212529}form .form-control:focus{border-color:#212529}form .form-control::-moz-placeholder{color:#6c757d}form .form-control:-ms-input-placeholder{color:#6c757d}form .form-control::placeholder{color:#6c757d}form select.form-control{-webkit-appearance:none;-moz-appearance:none;appearance:none}form select.form-control:not([data-chosen]){color:#6c757d}form .btn-secondary:active,form .btn-secondary:hover{color:#212529;background:#fc0;border-color:#fc0}.hero{overflow:visible;position:relative}.hero,.hero-bg{background-repeat:no-repeat;background-position:50%;background-size:cover}.hero-bg{display:block;height:100%;left:50%;position:absolute;top:0;transform:translateX(-50%);z-index:1}.hero>.container{position:relative;z-index:2}.hero.has-offset{margin-bottom:-160px;padding-bottom:160px}.base-hero{height:22.5vw;max-height:324px;min-height:280px}.index-hero{background-image:url(/images/backgrounds/bg-hero-home.svg);height:68vw;max-height:980px}.index-hero,.other-hero{max-width:2448px;width:170vw}.other-hero{background-image:url(/images/backgrounds/bg-hero.svg)}.bg-footer-cta{background-image:url(/images/backgrounds/bg-footer-cta.svg);width:2448px}.quickstart-bg{background-image:url(/images/backgrounds/bg-quick-start.svg);height:40vw;top:220px;width:170vw}hr{background:#f1f6f9;border:0;display:block;height:4px;margin:0;width:100%}hr.is-small{height:2px}hr.is-large{height:8px}hr.is-medium{background:#d6dbdf}hr.is-dark{background:#495057}hr.is-yellow{background:linear-gradient(90deg,#ff8c00,#ff8c00 8px,#fc0 16px,rgba(255,204,0,0));-webkit-clip-path:polygon(8px 100%,0 100%,0 0,8px 0,8px 100%,16px 100%,16px 0,100% 0,100% 100%);clip-path:polygon(8px 100%,0 100%,0 0,8px 0,8px 100%,16px 100%,16px 0,100% 0,100% 100%);height:8px}.icon{display:block;height:48px;margin-bottom:24px;-o-object-fit:contain;object-fit:contain;-o-object-position:center;object-position:center}@media screen and (min-width:576px){.icon{height:64px}}@media screen and (min-width:980px){.icon{height:80px}}img{max-width:100%}.kicker{color:#6c757d;font-family:Hind Siliguri,sans-serif;font-size:.875rem;font-weight:600;letter-spacing:1px;margin:0}@media screen and (max-width:978.98px){.lead{font-size:1.125rem}}.navbar-clickhouse{border-bottom:4px solid #f1f6f9;height:142px}.navbar-clickhouse>.container{flex-wrap:wrap}.navbar-super{flex-shrink:0;width:100%}.navbar-super ul{list-style:none}.navbar-super li:not(:last-child){margin-bottom:0;margin-right:24px}.navbar-super a{align-items:center;color:#212529;display:flex;font-size:.875rem}.navbar-super a:active,.navbar-super a:hover{color:#257af4;text-decoration:none}.navbar-super img{flex-shrink:0;margin-right:4px}.navbar-brand-clickhouse{background:no-repeat url(../images/logo-clickhouse.svg);background-size:contain;flex-shrink:0;height:28px;margin-right:48px;padding:0;width:180px}.navbar-nav{align-items:center;height:46px}.navbar .nav-item:not(:last-child){margin-bottom:0;margin-right:24px}.navbar .nav-link{color:#212529}.navbar .nav-link:active,.navbar .nav-link:hover{color:#257af4}.navbar .navbar-nav{flex-direction:row}@media screen and (max-width:978.98px){.navbar>.container{padding-left:20px;padding-right:20px}.navbar .navbar-toggler{height:24px;padding:0;width:24px}.navbar .navbar-toggler:focus{outline:none}.navbar .navbar-toggler-icon{background:no-repeat url(../images/icons/icon-menu.svg);background-position:50%;background-size:contain;height:24px;width:24px}.navbar .navbar-collapse{background:#fff;border-bottom:4px solid #f1f6f9;height:56px;left:0;padding:0 20px 16px;position:absolute;right:0;top:100%}.navbar .nav-link{font-size:.875rem;white-space:nowrap}}@media screen and (max-width:615.98px){.navbar .navbar-collapse{height:auto}.navbar .navbar-nav{flex-direction:column;height:auto}.navbar .nav-item:not(:last-child){margin-bottom:16px;margin-right:0}}@media screen and (max-width:399.98px){.navbar{height:80px}}.page{overflow:hidden;width:100vw}.photo-frame{background:hsla(0,0%,100%,.6);border-radius:100%;box-shadow:0 8px 20px rgba(108,117,125,.2);display:block;margin-bottom:24px;max-width:160px;overflow:hidden;position:relative;width:100%}.photo-frame:before{content:"";display:block;padding-bottom:100%;width:100%}.photo-frame img{display:block;height:100%;left:0;-o-object-fit:contain;object-fit:contain;-o-object-position:center;object-position:center;position:absolute;top:0;width:100%}.pullquote{position:relative;width:70%}.pullquote:before{background:no-repeat url(../images/backgrounds/bg-quotes.svg);background-position:50%;background-size:100%;content:"";mix-blend-mode:multiply;right:56px;width:calc(100% - 16px);z-index:2}.pullquote-bg,.pullquote:before{bottom:0;display:block;position:absolute;top:0}.pullquote-bg{right:0;width:calc(50vw + 28.57143%);z-index:1}.pullquote-body{padding:64px 40px 64px 0;position:relative;z-index:3}.pullquote-quote{font-family:Hind Siliguri,sans-serif;font-size:32px;font-weight:700}.pullquote-citation{font-size:1.125rem}.section{overflow:visible;position:relative}.section,.section-bg{background-repeat:no-repeat;background-position:50%;background-size:cover}.section-bg{display:block;height:100%;left:50%;position:absolute;top:0;transform:translateX(-50%);z-index:1}.section>.container{position:relative;z-index:2}.social-icons{align-items:center;display:flex}.social-icons>a{aspect-ratio:24/24;background:#6c757d;display:block;height:24px;width:24px;-webkit-mask-position:center;mask-position:center;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:contain;mask-size:contain;transition:background .2s}.social-icons>a:active,.social-icons>a:hover{background:#212529}.social-icons>a+a{margin-left:32px}.social-icons-facebook{-webkit-mask-image:url(/images/icons/icon-facebook-gray.svg);mask-image:url(/images/icons/icon-facebook-gray.svg)}.social-icons-twitter{-webkit-mask-image:url(/images/icons/icon-twitter-gray.svg);mask-image:url(/images/icons/icon-twitter-gray.svg);width:31px}.social-icons-linkedin{-webkit-mask-image:url(/images/icons/icon-linkedin-gray.svg);mask-image:url(/images/icons/icon-linkedin-gray.svg)}.social-icons-linkedin-alt{-webkit-mask-image:url(/images/icons/icon-linkedin-alt-gray.svg);mask-image:url(/images/icons/icon-linkedin-alt-gray.svg)}.social-icons.size-small>a{height:20px;width:20px}.social-icons.size-small>a:active,.social-icons.size-small>a:hover{background:#212529}.social-icons.size-small>a+a{margin-left:16px}.tabs{position:relative}.tabs:before{background:#fff;border-radius:7px 7px 0 0;content:"";display:block;height:8px;left:1px;position:absolute;right:1px;top:68px;z-index:10}@media screen and (min-width:1240px){.tabs:before{top:76px}}.tabs-body{background:#fff;border-radius:8px;border:1px solid #6c757d;box-shadow:0 8px 20px rgba(108,117,125,.2);padding:24px}@media screen and (min-width:980px){.tabs-body{padding:32px}}@media screen and (min-width:1240px){.tabs-body{padding:40px}}.tabs .nav-tabs{border-bottom:0;flex-wrap:nowrap;height:76px;margin:-20px -20px -9px;-webkit-mask-image:linear-gradient(90deg,transparent,#000 20px,#000 calc(100% - 20px),transparent);mask-image:linear-gradient(90deg,transparent,#000 20px,#000 calc(100% - 20px),transparent);overflow:scroll;overflow-x:scroll;overflow-y:visible;padding:20px 20px 0;position:relative}@media screen and (min-width:940px){.tabs .nav-tabs{overflow:visible}}@media screen and (min-width:1240px){.tabs .nav-tabs{height:84px}}.tabs .nav-link{align-items:center;border-bottom:0;color:#6c757d;display:flex;font-size:.875rem;flex-shrink:0;height:56px;justify-content:center;padding:0 12px 8px;text-align:center;white-space:nowrap}@media screen and (min-width:1240px){.tabs .nav-link{height:64px;padding:0 16px 8px}}.tabs .nav-link.active{background:#fff;box-shadow:0 -4px 8px rgba(108,117,125,.1);font-weight:700;padding:0 16px 8px}@media screen and (min-width:980px){.tabs .nav-link.active{padding:0 24px 8px}}@media screen and (min-width:1240px){.tabs .nav-link.active{padding:0 32px 8px}}.tab-pane pre{background:#212529;border-radius:16px;color:#fff;padding:24px 16px}@media screen and (min-width:1240px){.tab-pane pre{padding:32px 24px}}.trailing-link{align-items:center;color:#212529;display:flex;font-size:.875rem;font-weight:700}.trailing-link:after{background:no-repeat url(../images/icons/icon-arrow.svg);background-position:100%;background-size:contain;content:"";display:block;height:12px;transition:transform .2s;width:20px}.trailing-link:active,.trailing-link:hover{color:#212529;text-decoration:none}.trailing-link:active:after,.trailing-link:hover:after{transform:translateX(8px)}.trailing-link.span-full:after{margin-left:auto}ul{color:#495057;list-style-type:square;padding-left:1.25em}ul li:not(:last-child){margin-bottom:16px}ul li::marker{color:#ff3939}ul.has-separators{list-style:none;padding:0}ul.has-separators li:not(:last-child){border-bottom:4px solid #f1f6f9;margin-bottom:24px;padding-bottom:24px}.bg-gradient-secondary{background-image:linear-gradient(58deg,#ff6443 3%,#fe561d 24%,#e32f0d 93%)}.bg-gradient-light-orange{background-image:linear-gradient(90deg,rgba(255,203,128,0),#ffcb80)}.bg-offset-right{bottom:0;left:-24px;position:absolute;top:0;width:calc(100vw + 24px);z-index:-1}@media screen and (min-width:1240px){.bg-offset-right{left:-96px;width:calc(100vw + 96px)}}.bg-inset-right{bottom:0;left:40px;position:absolute;top:0;width:calc(100vw - 40px);z-index:-1}@media screen and (min-width:980px){.bg-inset-right{left:96px;width:calc(100vw - 96px)}}.has-border-left{border-left:8px solid #f1f6f9;padding-left:16px}.font-xl{font-size:1.25rem}.font-lg{font-size:1.125rem}.font-sm{font-size:.875rem}.font-xs{font-size:.625rem}.font-weight-semibold{font-weight:600}.display-5{color:#212529;font-size:20px;font-weight:500}.display-6{color:#212529;font-size:14px;font-weight:700}.text-decoration-underline{text-decoration:underline}.text-upper{text-transform:uppercase}
\ No newline at end of file
diff --git a/website/images/photos/anne-krechmer.jpg b/website/images/photos/anne-krechmer.jpg
new file mode 100644
index 00000000000..1333ec4774b
Binary files /dev/null and b/website/images/photos/anne-krechmer.jpg differ
diff --git a/website/images/photos/claire-lucas.jpg b/website/images/photos/claire-lucas.jpg
new file mode 100644
index 00000000000..4ee45630496
Binary files /dev/null and b/website/images/photos/claire-lucas.jpg differ
diff --git a/website/images/photos/mihir-gokhale.jpg b/website/images/photos/mihir-gokhale.jpg
new file mode 100644
index 00000000000..bc923da21b8
Binary files /dev/null and b/website/images/photos/mihir-gokhale.jpg differ
diff --git a/website/images/photos/peter-fenton.jpg b/website/images/photos/peter-fenton.jpg
index 20b0ed5eca6..b84f25e703e 100644
Binary files a/website/images/photos/peter-fenton.jpg and b/website/images/photos/peter-fenton.jpg differ
diff --git a/website/images/photos/richard-raposa.jpg b/website/images/photos/rich-raposa.jpg
similarity index 100%
rename from website/images/photos/richard-raposa.jpg
rename to website/images/photos/rich-raposa.jpg
diff --git a/website/images/photos/shavoyne-mccowan.jpg b/website/images/photos/shavoyne-mccowan.jpg
new file mode 100644
index 00000000000..6aca20bea50
Binary files /dev/null and b/website/images/photos/shavoyne-mccowan.jpg differ
diff --git a/website/js/main.js b/website/js/main.js
index 9466b6849ba..97bb490d9f1 100644
--- a/website/js/main.js
+++ b/website/js/main.js
@@ -1,158 +1 @@
-/******/ (function(modules) { // webpackBootstrap
-/******/ // The module cache
-/******/ var installedModules = {};
-/******/
-/******/ // The require function
-/******/ function __webpack_require__(moduleId) {
-/******/
-/******/ // Check if module is in cache
-/******/ if(installedModules[moduleId]) {
-/******/ return installedModules[moduleId].exports;
-/******/ }
-/******/ // Create a new module (and put it into the cache)
-/******/ var module = installedModules[moduleId] = {
-/******/ i: moduleId,
-/******/ l: false,
-/******/ exports: {}
-/******/ };
-/******/
-/******/ // Execute the module function
-/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
-/******/
-/******/ // Flag the module as loaded
-/******/ module.l = true;
-/******/
-/******/ // Return the exports of the module
-/******/ return module.exports;
-/******/ }
-/******/
-/******/
-/******/ // expose the modules object (__webpack_modules__)
-/******/ __webpack_require__.m = modules;
-/******/
-/******/ // expose the module cache
-/******/ __webpack_require__.c = installedModules;
-/******/
-/******/ // define getter function for harmony exports
-/******/ __webpack_require__.d = function(exports, name, getter) {
-/******/ if(!__webpack_require__.o(exports, name)) {
-/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
-/******/ }
-/******/ };
-/******/
-/******/ // define __esModule on exports
-/******/ __webpack_require__.r = function(exports) {
-/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
-/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
-/******/ }
-/******/ Object.defineProperty(exports, '__esModule', { value: true });
-/******/ };
-/******/
-/******/ // create a fake namespace object
-/******/ // mode & 1: value is a module id, require it
-/******/ // mode & 2: merge all properties of value into the ns
-/******/ // mode & 4: return value when already ns object
-/******/ // mode & 8|1: behave like require
-/******/ __webpack_require__.t = function(value, mode) {
-/******/ if(mode & 1) value = __webpack_require__(value);
-/******/ if(mode & 8) return value;
-/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
-/******/ var ns = Object.create(null);
-/******/ __webpack_require__.r(ns);
-/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
-/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
-/******/ return ns;
-/******/ };
-/******/
-/******/ // getDefaultExport function for compatibility with non-harmony modules
-/******/ __webpack_require__.n = function(module) {
-/******/ var getter = module && module.__esModule ?
-/******/ function getDefault() { return module['default']; } :
-/******/ function getModuleExports() { return module; };
-/******/ __webpack_require__.d(getter, 'a', getter);
-/******/ return getter;
-/******/ };
-/******/
-/******/ // Object.prototype.hasOwnProperty.call
-/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
-/******/
-/******/ // __webpack_public_path__
-/******/ __webpack_require__.p = "";
-/******/
-/******/
-/******/ // Load entry module and return exports
-/******/ return __webpack_require__(__webpack_require__.s = 0);
-/******/ })
-/************************************************************************/
-/******/ ({
-
-/***/ "../../website/src/js/components/case-study-card.js":
-/*!**************************************************************************************!*\
- !*** /Users/cody/Sites/tech.clickhouse/website/src/js/components/case-study-card.js ***!
- \**************************************************************************************/
-/*! no static exports found */
-/***/ (function(module, exports) {
-
-eval("function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\nvar CaseStudyCard = /*#__PURE__*/function () {\n function CaseStudyCard($el) {\n _classCallCheck(this, CaseStudyCard);\n\n this.onOpen = this.onOpen.bind(this);\n this.onToggle = this.onToggle.bind(this);\n this.$el = $el;\n this.$el.addEventListener('click', this.onOpen);\n this.$el.querySelector('.case-study-card-toggle').addEventListener('click', this.onToggle);\n this.open = false;\n }\n\n _createClass(CaseStudyCard, [{\n key: \"onOpen\",\n value: function onOpen() {\n this.open = true;\n this.$el.classList.toggle('is-open', this.open);\n this.$el.classList.toggle('is-closing', !this.open);\n this.closeOthers();\n }\n }, {\n key: \"onToggle\",\n value: function onToggle(event) {\n event.stopPropagation();\n this.open = !this.$el.classList.contains('is-open');\n this.$el.classList.toggle('is-open', this.open);\n this.$el.classList.toggle('is-closing', !this.open);\n this.closeOthers();\n }\n }, {\n key: \"closeOthers\",\n value: function closeOthers() {\n var _this = this;\n\n if (this.open) {\n document.querySelectorAll('.case-study-card').forEach(function ($el) {\n if (!$el.isSameNode(_this.$el)) {\n $el.classList.toggle('is-closing', $el.classList.contains('is-open'));\n $el.classList.toggle('is-open', false);\n }\n });\n }\n }\n }]);\n\n return CaseStudyCard;\n}();\n\ndocument.querySelectorAll('.case-study-card').forEach(function ($el) {\n return new CaseStudyCard($el);\n});\n\n//# sourceURL=webpack:////Users/cody/Sites/tech.clickhouse/website/src/js/components/case-study-card.js?");
-
-/***/ }),
-
-/***/ "../../website/src/js/main.js":
-/*!****************************************************************!*\
- !*** /Users/cody/Sites/tech.clickhouse/website/src/js/main.js ***!
- \****************************************************************/
-/*! no exports provided */
-/***/ (function(module, __webpack_exports__, __webpack_require__) {
-
-"use strict";
-eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_case_study_card__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/case-study-card */ \"../../website/src/js/components/case-study-card.js\");\n/* harmony import */ var _components_case_study_card__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_components_case_study_card__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var _utilities_equalize_heights__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./utilities/equalize-heights */ \"../../website/src/js/utilities/equalize-heights.js\");\n/* harmony import */ var _utilities_equalize_heights__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_utilities_equalize_heights__WEBPACK_IMPORTED_MODULE_1__);\n\n\n\n//# sourceURL=webpack:////Users/cody/Sites/tech.clickhouse/website/src/js/main.js?");
-
-/***/ }),
-
-/***/ "../../website/src/js/utilities/equalize-heights.js":
-/*!**************************************************************************************!*\
- !*** /Users/cody/Sites/tech.clickhouse/website/src/js/utilities/equalize-heights.js ***!
- \**************************************************************************************/
-/*! no static exports found */
-/***/ (function(module, exports) {
-
-eval("function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }\n\nfunction _nonIterableRest() { throw new TypeError(\"Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); }\n\nfunction _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === \"string\") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === \"Object\" && o.constructor) n = o.constructor.name; if (n === \"Map\" || n === \"Set\") return Array.from(o); if (n === \"Arguments\" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }\n\nfunction _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }\n\nfunction _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Symbol !== \"undefined\" && arr[Symbol.iterator] || arr[\"@@iterator\"]; if (_i == null) return; var _arr = []; var _n = true; var _d = false; var _s, _e; try { for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i[\"return\"] != null) _i[\"return\"](); } finally { if (_d) throw _e; } } return _arr; }\n\nfunction _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }\n\nvar $allElements = document.querySelectorAll('[equalize-heights]');\nvar groupedElements = {};\n$allElements.forEach(function ($el) {\n var group = $el.getAttribute('equalize-heights');\n groupedElements[group] = groupedElements[group] || [];\n groupedElements[group].push($el);\n});\n\nfunction resizeElements() {\n Object.entries(groupedElements).forEach(function (_ref) {\n var _ref2 = _slicedToArray(_ref, 2),\n group = _ref2[0],\n $elements = _ref2[1];\n\n $elements.forEach(function ($el) {\n var styles = window.getComputedStyle($el);\n\n if ('none' === styles.getPropertyValue('display')) {\n $el.style.display = 'block';\n }\n\n $el.style.minHeight = 'auto';\n });\n var minHeight = $elements.reduce(function (max, $el) {\n if ($el.offsetHeight > max) {\n max = $el.offsetHeight;\n }\n\n return max;\n }, 0);\n $elements.forEach(function ($el) {\n $el.style.display = null;\n $el.style.minHeight = \"\".concat(minHeight, \"px\");\n });\n });\n}\n\nwindow.addEventListener('resize', resizeElements);\nwindow.addEventListener('orientationchange', resizeElements);\nresizeElements();\n\n//# sourceURL=webpack:////Users/cody/Sites/tech.clickhouse/website/src/js/utilities/equalize-heights.js?");
-
-/***/ }),
-
-/***/ "../../website/src/scss/bootstrap.scss":
-/*!*************************************************************************!*\
- !*** /Users/cody/Sites/tech.clickhouse/website/src/scss/bootstrap.scss ***!
- \*************************************************************************/
-/*! exports provided: default */
-/***/ (function(module, __webpack_exports__, __webpack_require__) {
-
-"use strict";
-eval("__webpack_require__.r(__webpack_exports__);\n/* harmony default export */ __webpack_exports__[\"default\"] = (__webpack_require__.p + \"./css//bootstrap.css\");\n\n//# sourceURL=webpack:////Users/cody/Sites/tech.clickhouse/website/src/scss/bootstrap.scss?");
-
-/***/ }),
-
-/***/ "../../website/src/scss/main.scss":
-/*!********************************************************************!*\
- !*** /Users/cody/Sites/tech.clickhouse/website/src/scss/main.scss ***!
- \********************************************************************/
-/*! exports provided: default */
-/***/ (function(module, __webpack_exports__, __webpack_require__) {
-
-"use strict";
-eval("__webpack_require__.r(__webpack_exports__);\n/* harmony default export */ __webpack_exports__[\"default\"] = (__webpack_require__.p + \"./css//main.css\");\n\n//# sourceURL=webpack:////Users/cody/Sites/tech.clickhouse/website/src/scss/main.scss?");
-
-/***/ }),
-
-/***/ 0:
-/*!*****************************************************************************************************************************************************************************************************!*\
- !*** multi /Users/cody/Sites/tech.clickhouse/website/src/scss/bootstrap.scss /Users/cody/Sites/tech.clickhouse/website/src/scss/main.scss /Users/cody/Sites/tech.clickhouse/website/src/js/main.js ***!
- \*****************************************************************************************************************************************************************************************************/
-/*! no static exports found */
-/***/ (function(module, exports, __webpack_require__) {
-
-eval("__webpack_require__(/*! /Users/cody/Sites/tech.clickhouse/website/src/scss/bootstrap.scss */\"../../website/src/scss/bootstrap.scss\");\n__webpack_require__(/*! /Users/cody/Sites/tech.clickhouse/website/src/scss/main.scss */\"../../website/src/scss/main.scss\");\nmodule.exports = __webpack_require__(/*! /Users/cody/Sites/tech.clickhouse/website/src/js/main.js */\"../../website/src/js/main.js\");\n\n\n//# sourceURL=webpack:///multi_/Users/cody/Sites/tech.clickhouse/website/src/scss/bootstrap.scss_/Users/cody/Sites/tech.clickhouse/website/src/scss/main.scss_/Users/cody/Sites/tech.clickhouse/website/src/js/main.js?");
-
-/***/ })
-
-/******/ });
\ No newline at end of file
+!function(t){var e={};function n(o){if(e[o])return e[o].exports;var r=e[o]={i:o,l:!1,exports:{}};return t[o].call(r.exports,r,r.exports,n),r.l=!0,r.exports}n.m=t,n.c=e,n.d=function(t,e,o){n.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:o})},n.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.t=function(t,e){if(1&e&&(t=n(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var o=Object.create(null);if(n.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var r in t)n.d(o,r,function(e){return t[e]}.bind(null,r));return o},n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,"a",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p="",n(n.s=0)}([function(t,e,n){n(1),n(2),n(3),t.exports=n(4)},function(t,e,n){"use strict";n.r(e),e.default=n.p+"./css//bootstrap.css"},function(t,e,n){"use strict";n.r(e),e.default=n.p+"./css//greenhouse.css"},function(t,e,n){"use strict";n.r(e),e.default=n.p+"./css//main.css"},function(t,e,n){"use strict";n.r(e);n(5),n(6),n(7)},function(t,e){function n(t,e){for(var n=0;nt.length)&&(e=t.length);for(var n=0,o=new Array(e);nt&&(t=e.offsetHeight),t}),0);o.forEach((function(t){t.style.display=null,t.style.minHeight="".concat(r,"px")}))}))}r.forEach((function(t){var e=t.getAttribute("equalize-heights");i[e]=i[e]||[],i[e].push(t)})),window.addEventListener("resize",s),window.addEventListener("orientationchange",s),s()},function(t,e){window.addEventListener("load",(function(){if(-1!==window.location.search.indexOf("gh_jid=")){var t=window.scrollY,e=document.querySelector("#jobs").getBoundingClientRect().top;window.scrollTo({left:0,top:t+e}),window.setTimeout((function(){window.scrollTo({left:0,top:t+e-40})}),50)}}))}]);
\ No newline at end of file
diff --git a/website/src/js/main.js b/website/src/js/main.js
index e86e5bda09a..460cbcc4602 100644
--- a/website/src/js/main.js
+++ b/website/src/js/main.js
@@ -1,2 +1,3 @@
import './components/case-study-card'
import './utilities/equalize-heights'
+import './utilities/greenhouse'
diff --git a/website/src/js/utilities/greenhouse.js b/website/src/js/utilities/greenhouse.js
new file mode 100644
index 00000000000..0b87d1a937b
--- /dev/null
+++ b/website/src/js/utilities/greenhouse.js
@@ -0,0 +1,16 @@
+window.addEventListener('load', () => {
+ if (-1 !== window.location.search.indexOf('gh_jid=')) {
+ const scrollY = window.scrollY
+ const offsetTop = document.querySelector('#jobs').getBoundingClientRect().top
+ window.scrollTo({
+ left: 0,
+ top: scrollY + offsetTop,
+ })
+ window.setTimeout(() => {
+ window.scrollTo({
+ left: 0,
+ top: scrollY + offsetTop - 40,
+ })
+ }, 50)
+ }
+})
diff --git a/website/src/scss/components/_hero.scss b/website/src/scss/components/_hero.scss
index 7c3bab209e4..61b22b3e32b 100644
--- a/website/src/scss/components/_hero.scss
+++ b/website/src/scss/components/_hero.scss
@@ -28,3 +28,31 @@
margin-bottom: -160px;
padding-bottom: 160px;
}
+
+.base-hero {
+ height:22.5vw;
+ max-height:324px;
+ min-height:280px;
+}
+.index-hero {
+ background-image:url('/images/backgrounds/bg-hero-home.svg');
+ height:68vw;
+ max-height:980px;
+ max-width:2448px;
+ width:170vw;
+}
+.other-hero {
+ background-image: url('/images/backgrounds/bg-hero.svg');
+ max-width: 2448px;
+ width: 170vw;
+}
+.bg-footer-cta {
+ background-image:url('/images/backgrounds/bg-footer-cta.svg');
+ width:2448px;
+}
+.quickstart-bg {
+ background-image:url('/images/backgrounds/bg-quick-start.svg');
+ height:40vw;
+ top:220px;
+ width:170vw;
+}
diff --git a/website/src/scss/components/_navbar.scss b/website/src/scss/components/_navbar.scss
index 179e4ff1f60..53a834d2ed7 100644
--- a/website/src/scss/components/_navbar.scss
+++ b/website/src/scss/components/_navbar.scss
@@ -1,11 +1,13 @@
-.navbar {
+.navbar-clickhouse {
border-bottom: 4px solid $gray-100;
height: 142px;
> .container {
flex-wrap: wrap;
}
+}
+.navbar {
&-super {
flex-shrink: 0;
width: 100%;
@@ -38,8 +40,8 @@
}
}
- &-brand {
- background: no-repeat url(#{"../images/logo.svg"});
+ &-brand-clickhouse {
+ background: no-repeat url(#{"../images/logo-clickhouse.svg"});
background-size: contain;
flex-shrink: 0;
height: 28px;
diff --git a/website/src/scss/greenhouse.scss b/website/src/scss/greenhouse.scss
new file mode 100644
index 00000000000..710b606fa15
--- /dev/null
+++ b/website/src/scss/greenhouse.scss
@@ -0,0 +1,27 @@
+#main {
+ padding-bottom: 0;
+ padding-top: 0;
+}
+
+#wrapper {
+ max-width: 1078px;
+ padding: 0;
+}
+
+body > #wrapper > #main > #wrapper > #logo,
+body > #wrapper > #main > #wrapper > h1,
+body > #wrapper > #main > #wrapper > #content {
+ display: none;
+}
+
+body > #wrapper > #main > #wrapper > #board_title {
+ margin-top: 0;
+}
+
+body > #wrapper > #main > #logo {
+ margin-top: 80px;
+}
+
+body > #wrapper > #main > :last-child {
+ margin-bottom: 120px;
+}
diff --git a/website/templates/careers/greenhouse.html b/website/templates/careers/greenhouse.html
new file mode 100644
index 00000000000..e4a4b3aba4f
--- /dev/null
+++ b/website/templates/careers/greenhouse.html
@@ -0,0 +1,8 @@
+
diff --git a/website/templates/careers/hero.html b/website/templates/careers/hero.html
new file mode 100644
index 00000000000..dd4e59aeb3a
--- /dev/null
+++ b/website/templates/careers/hero.html
@@ -0,0 +1,10 @@
+
+
+
+
+
+ {{ _('Careers') }}
+
+
+
+
diff --git a/website/templates/careers/overview.html b/website/templates/careers/overview.html
new file mode 100644
index 00000000000..1601bf4f4b3
--- /dev/null
+++ b/website/templates/careers/overview.html
@@ -0,0 +1,11 @@
+
+
+
+
+ ClickHouse is searching for individuals who are not just knowledgeable about what they do, but want to learn more. Our ideal candidates are thinkers and doers who are not afraid to take on various roles and responsibilities as they grow with the company. If you are looking for a place to build something new, be an agent of change, and have an opportunity to have a significant impact on the company’s success, this is the place for you.
+
+
+
+
+
+
diff --git a/website/templates/company/team.html b/website/templates/company/team.html
index 8b4c4e26774..fb68be6af08 100644
--- a/website/templates/company/team.html
+++ b/website/templates/company/team.html
@@ -71,6 +71,19 @@
{{ _('Senior Director, Business Technology') }}
+
+
+
+
+
+
+
+ {{ _('Mihir Gokhale') }}
+
+
+ {{ _('Associate, Business Strategy & Ops') }}
+
+
@@ -85,21 +98,19 @@
- {% if false %}
-
+
{{ _('Brian Hunter') }}
- {{ _('Account Executive') }}
+ {{ _('Account Executive, AMER') }}
- {% endif %}
- {% if false %}
-
-
-
+
+
+
{{ _('Anne Krechmer') }}
@@ -140,7 +150,6 @@
- {% endif %}
- {% if false %}
-
-
-
+
+
+
{{ _('Claire Lucas') }}
- {{ _('Director, Global Business Strategy & Operations') }}
+ {{ _('Director, Business Strategy & Ops') }}
+
+
+
+
+
+
+
+
+
+ {{ _('Shavoyne McCowan') }}
+
+
+ {{ _('Executive Assistant') }}
- {% endif %}
@@ -224,10 +244,10 @@
-
+
- {{ _('Richard Raposa') }}
+ {{ _('Rich Raposa') }}
{{ _('Director, Global Learning') }}
@@ -260,7 +280,7 @@
-
+
-
+
-
+
-
+
@@ -322,7 +342,7 @@
diff --git a/website/templates/index/community.html b/website/templates/index/community.html
index 5b2f8b8f769..08ccf0c7580 100644
--- a/website/templates/index/community.html
+++ b/website/templates/index/community.html
@@ -25,7 +25,7 @@
-
+
diff --git a/website/templates/index/hero.html b/website/templates/index/hero.html
index 873bcf9487a..795a89a44f2 100644
--- a/website/templates/index/hero.html
+++ b/website/templates/index/hero.html
@@ -1,41 +1,43 @@
-
+
-
+
ClickHouse, Inc Has Arrived
-
+
{{ _('ClickHouse® is an open-source, high performance columnar OLAP database management system for real-time analytics using SQL.') }}
-
-{% if false %}
-
Introducing ClickHouse inc.!
+
ClickHouse v21.10 Release Webinar
-
ClickHouse, Inc. Announces Incorporation, Along With $50M In Series A Funding. New financing will allow the open source success to build a world-class, commercial-grade cloud solution that’s secure, compliant, and convenient for any customer to use.
+
+ 21 October 2021
+ EMEA, Americas
+ 4:00pm UTC / 9:00am PST
+
@@ -43,4 +45,3 @@
-{% endif %}
diff --git a/website/templates/index/why.html b/website/templates/index/why.html
index a4a3c603168..58bb42ffd31 100644
--- a/website/templates/index/why.html
+++ b/website/templates/index/why.html
@@ -1,8 +1,6 @@
-