pact_broker 2.72.0 → 2.76.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (173) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/test.yml +1 -1
  3. data/.optic/.gitignore +2 -0
  4. data/.optic/api/specification.json +1 -0
  5. data/.optic/ignore +14 -0
  6. data/CHANGELOG.md +66 -0
  7. data/DEVELOPER_SETUP.md +9 -0
  8. data/Dockerfile +1 -0
  9. data/ISSUES.md +3 -3
  10. data/README.md +1 -1
  11. data/config/database.yml +1 -1
  12. data/db/migrations/20210115_add_webhook_foreign_key_indexes.rb +49 -0
  13. data/db/migrations/20210116_add_context_to_triggered_webhook.rb +11 -0
  14. data/db/migrations/migration_helper.rb +8 -0
  15. data/docker-compose-issue-repro-with-pact-broker-docker-image.yml +33 -0
  16. data/docker-compose-test.yml +4 -4
  17. data/lib/db.rb +1 -0
  18. data/lib/pact_broker/api.rb +13 -2
  19. data/lib/pact_broker/api/decorators.rb +3 -7
  20. data/lib/pact_broker/api/decorators/configuration.rb +33 -0
  21. data/lib/pact_broker/api/decorators/decorator_context_creator.rb +13 -0
  22. data/lib/pact_broker/api/decorators/extended_pact_decorator.rb +9 -1
  23. data/lib/pact_broker/api/decorators/extended_verification_decorator.rb +8 -0
  24. data/lib/pact_broker/api/decorators/matrix_decorator.rb +9 -4
  25. data/lib/pact_broker/api/decorators/pact_collection_decorator.rb +1 -0
  26. data/lib/pact_broker/api/decorators/pacticipant_collection_decorator.rb +2 -3
  27. data/lib/pact_broker/api/decorators/reason_decorator.rb +2 -0
  28. data/lib/pact_broker/api/decorators/tag_decorator.rb +0 -3
  29. data/lib/pact_broker/api/decorators/verifiable_pact_decorator.rb +3 -1
  30. data/lib/pact_broker/api/pact_broker_urls.rb +4 -4
  31. data/lib/pact_broker/api/paths.rb +5 -0
  32. data/lib/pact_broker/api/renderers/html_pact_renderer.rb +2 -2
  33. data/lib/pact_broker/api/resources/all_webhooks.rb +3 -3
  34. data/lib/pact_broker/api/resources/can_i_deploy_badge.rb +1 -1
  35. data/lib/pact_broker/api/resources/dashboard.rb +2 -2
  36. data/lib/pact_broker/api/resources/default_base_resource.rb +37 -12
  37. data/lib/pact_broker/api/resources/error_handler.rb +1 -1
  38. data/lib/pact_broker/api/resources/error_response_body_generator.rb +41 -0
  39. data/lib/pact_broker/api/resources/group.rb +1 -1
  40. data/lib/pact_broker/api/resources/integrations.rb +1 -1
  41. data/lib/pact_broker/api/resources/label.rb +1 -1
  42. data/lib/pact_broker/api/resources/latest_pact.rb +2 -2
  43. data/lib/pact_broker/api/resources/latest_pacts.rb +1 -1
  44. data/lib/pact_broker/api/resources/latest_verifications_for_consumer_version.rb +2 -2
  45. data/lib/pact_broker/api/resources/matrix.rb +2 -2
  46. data/lib/pact_broker/api/resources/matrix_for_consumer_and_provider.rb +1 -1
  47. data/lib/pact_broker/api/resources/metadata_resource_methods.rb +2 -1
  48. data/lib/pact_broker/api/resources/pact.rb +2 -2
  49. data/lib/pact_broker/api/resources/pact_triggered_webhooks.rb +1 -1
  50. data/lib/pact_broker/api/resources/pact_versions.rb +1 -1
  51. data/lib/pact_broker/api/resources/pact_webhooks.rb +3 -3
  52. data/lib/pact_broker/api/resources/pact_webhooks_status.rb +2 -2
  53. data/lib/pact_broker/api/resources/pacticipant.rb +1 -1
  54. data/lib/pact_broker/api/resources/pacticipants.rb +3 -3
  55. data/lib/pact_broker/api/resources/pacticipants_for_label.rb +1 -1
  56. data/lib/pact_broker/api/resources/previous_distinct_pact_version.rb +1 -1
  57. data/lib/pact_broker/api/resources/provider_pacts.rb +1 -7
  58. data/lib/pact_broker/api/resources/provider_pacts_for_verification.rb +2 -2
  59. data/lib/pact_broker/api/resources/relationships.rb +1 -1
  60. data/lib/pact_broker/api/resources/tag.rb +1 -1
  61. data/lib/pact_broker/api/resources/tagged_pact_versions.rb +1 -1
  62. data/lib/pact_broker/api/resources/verification.rb +2 -2
  63. data/lib/pact_broker/api/resources/verification_triggered_webhooks.rb +1 -1
  64. data/lib/pact_broker/api/resources/verifications.rb +1 -1
  65. data/lib/pact_broker/api/resources/version.rb +1 -1
  66. data/lib/pact_broker/api/resources/versions.rb +1 -1
  67. data/lib/pact_broker/api/resources/webhook.rb +2 -2
  68. data/lib/pact_broker/api/resources/webhook_execution.rb +4 -4
  69. data/lib/pact_broker/api/resources/webhook_execution_methods.rb +1 -3
  70. data/lib/pact_broker/api/resources/webhooks.rb +3 -3
  71. data/lib/pact_broker/app.rb +14 -3
  72. data/lib/pact_broker/application_context.rb +41 -0
  73. data/lib/pact_broker/configuration.rb +12 -4
  74. data/lib/pact_broker/doc/controllers/app.rb +3 -2
  75. data/lib/pact_broker/domain/version.rb +13 -6
  76. data/lib/pact_broker/domain/webhook_request.rb +1 -1
  77. data/lib/pact_broker/error.rb +0 -2
  78. data/lib/pact_broker/errors.rb +28 -0
  79. data/lib/pact_broker/errors/error_logger.rb +25 -0
  80. data/lib/pact_broker/metrics/service.rb +12 -1
  81. data/lib/pact_broker/pacts/metadata.rb +53 -8
  82. data/lib/pact_broker/pacts/repository.rb +10 -17
  83. data/lib/pact_broker/pacts/selector.rb +22 -0
  84. data/lib/pact_broker/pacts/selectors.rb +4 -0
  85. data/lib/pact_broker/services.rb +106 -31
  86. data/lib/pact_broker/tags/tag_with_latest_flag.rb +2 -0
  87. data/lib/pact_broker/test/http_test_data_builder.rb +83 -21
  88. data/lib/pact_broker/test/test_data_builder.rb +3 -2
  89. data/lib/pact_broker/ui/views/index/_getting-started.haml +1 -1
  90. data/lib/pact_broker/ui/views/index/show-with-tags.haml +16 -16
  91. data/lib/pact_broker/ui/views/index/show.haml +6 -6
  92. data/lib/pact_broker/ui/views/layouts/main.haml +2 -2
  93. data/lib/pact_broker/ui/views/matrix/show.haml +32 -33
  94. data/lib/pact_broker/version.rb +1 -1
  95. data/lib/pact_broker/webhooks/execution_configuration.rb +4 -0
  96. data/lib/pact_broker/webhooks/execution_configuration_creator.rb +14 -0
  97. data/lib/pact_broker/webhooks/repository.rb +3 -2
  98. data/lib/pact_broker/webhooks/service.rb +2 -1
  99. data/lib/pact_broker/webhooks/triggered_webhook.rb +1 -0
  100. data/lib/rack/pact_broker/hal_browser_redirect.rb +42 -0
  101. data/lib/rack/pact_broker/set_base_url.rb +22 -0
  102. data/lib/sequel/extensions/statement_timeout.rb +22 -0
  103. data/optic.yml +5 -0
  104. data/pact_broker.gemspec +1 -1
  105. data/public/css/bootstrap-grid.css +3719 -0
  106. data/public/css/bootstrap-grid.css.map +1 -0
  107. data/public/css/bootstrap-grid.min.css +7 -0
  108. data/public/css/bootstrap-grid.min.css.map +1 -0
  109. data/public/css/bootstrap-reboot.css +331 -0
  110. data/public/css/bootstrap-reboot.css.map +1 -0
  111. data/public/css/bootstrap-reboot.min.css +8 -0
  112. data/public/css/bootstrap-reboot.min.css.map +1 -0
  113. data/public/css/bootstrap.css +8885 -5604
  114. data/public/css/bootstrap.css.map +1 -1
  115. data/public/css/bootstrap.min.css +4 -3
  116. data/public/css/bootstrap.min.css.map +1 -1
  117. data/public/images/alert.svg +1 -0
  118. data/public/images/arrow-switch.svg +1 -0
  119. data/public/images/check.svg +1 -0
  120. data/public/images/clock.svg +1 -0
  121. data/public/images/copy.svg +1 -0
  122. data/public/images/kebab-horizontal.svg +1 -0
  123. data/public/javascripts/clipboard.js +3 -3
  124. data/public/javascripts/{jquery-3.3.1.js → jquery-3.5.1.js} +1150 -642
  125. data/public/javascripts/jquery-3.5.1.min.js +2 -0
  126. data/public/javascripts/jquery-3.5.1.min.map +1 -0
  127. data/public/javascripts/matrix.js +2 -2
  128. data/public/js/bootstrap.bundle.js +7013 -0
  129. data/public/js/bootstrap.bundle.js.map +1 -0
  130. data/public/js/bootstrap.bundle.min.js +7 -0
  131. data/public/js/bootstrap.bundle.min.js.map +1 -0
  132. data/public/js/bootstrap.js +3862 -1804
  133. data/public/js/bootstrap.js.map +1 -0
  134. data/public/js/bootstrap.min.js +6 -6
  135. data/public/js/bootstrap.min.js.map +1 -0
  136. data/public/stylesheets/index.css +56 -3
  137. data/public/stylesheets/matrix.css +55 -5
  138. data/public/stylesheets/pact.css +14 -0
  139. data/regression/.gitignore +1 -0
  140. data/regression/can_i_deploy_spec.rb +42 -0
  141. data/regression/regression_helper.rb +37 -0
  142. data/regression/script/approval-all.sh +6 -0
  143. data/script/exercise-api-for-optic.sh +3 -0
  144. data/script/reproduce-issue-starting-up.rb +43 -0
  145. data/script/reproduce-issue.rb +9 -21
  146. data/spec/lib/pact_broker/api/decorators/extended_pact_decorator_spec.rb +1 -0
  147. data/spec/lib/pact_broker/api/decorators/matrix_decorator_spec.rb +20 -8
  148. data/spec/lib/pact_broker/api/decorators/verifiable_pact_decorator_spec.rb +5 -7
  149. data/spec/lib/pact_broker/api/pact_broker_urls_spec.rb +10 -6
  150. data/spec/lib/pact_broker/api/resources/can_i_deploy_badge_spec.rb +1 -1
  151. data/spec/lib/pact_broker/api/resources/default_base_resource_spec.rb +59 -10
  152. data/spec/lib/pact_broker/api/resources/error_response_body_generator_spec.rb +69 -0
  153. data/spec/lib/pact_broker/db/log_quietener_spec.rb +1 -1
  154. data/spec/lib/pact_broker/doc/controllers/app_spec.rb +3 -5
  155. data/spec/lib/pact_broker/errors/error_logger_spec.rb +62 -0
  156. data/spec/lib/pact_broker/errors_spec.rb +55 -0
  157. data/spec/lib/pact_broker/pacts/metadata_spec.rb +73 -0
  158. data/spec/lib/pact_broker/pacts/repository_find_for_verification_fallback_spec.rb +2 -2
  159. data/spec/lib/pact_broker/pacts/repository_find_for_verification_spec.rb +33 -13
  160. data/spec/lib/pact_broker/pacts/selected_pact_spec.rb +23 -0
  161. data/spec/lib/pact_broker/webhooks/repository_spec.rb +5 -2
  162. data/spec/lib/pact_broker/webhooks/service_spec.rb +2 -1
  163. data/spec/lib/rack/pact_broker/hal_browser_redirect_spec.rb +27 -0
  164. data/tasks/rspec.rake +6 -0
  165. metadata +65 -17
  166. data/public/css/bootstrap-theme.css +0 -587
  167. data/public/css/bootstrap-theme.css.map +0 -1
  168. data/public/css/bootstrap-theme.min.css +0 -6
  169. data/public/css/bootstrap-theme.min.css.map +0 -1
  170. data/public/fonts/glyphicons-halflings-regular.svg +0 -288
  171. data/public/javascripts/jquery-3.3.1.min.js +0 -2
  172. data/public/javascripts/jquery-3.3.1.min.map +0 -1
  173. data/spec/lib/pact_broker/api/resources/error_handler_spec.rb +0 -195
@@ -1,3 +1,3 @@
1
1
  module PactBroker
2
- VERSION = '2.72.0'
2
+ VERSION = '2.76.0'
3
3
  end
@@ -29,6 +29,10 @@ module PactBroker
29
29
  with_updated_attribute(webhook_context: value)
30
30
  end
31
31
 
32
+ def webhook_context
33
+ self[:webhook_context]
34
+ end
35
+
32
36
  def [](key)
33
37
  params[key]
34
38
  end
@@ -0,0 +1,14 @@
1
+ require 'pact_broker/configuration'
2
+ require 'pact_broker/webhooks/execution_configuration'
3
+
4
+ module PactBroker
5
+ module Webhooks
6
+ class ExecutionConfigurationCreator
7
+ def self.call(resource)
8
+ PactBroker::Webhooks::ExecutionConfiguration.new
9
+ .with_show_response(PactBroker.configuration.show_webhook_response?)
10
+ .with_webhook_context(base_url: resource.base_url)
11
+ end
12
+ end
13
+ end
14
+ end
@@ -101,7 +101,7 @@ module PactBroker
101
101
  .collect(&:to_domain)
102
102
  end
103
103
 
104
- def create_triggered_webhook trigger_uuid, webhook, pact, verification, trigger_type, event_name
104
+ def create_triggered_webhook trigger_uuid, webhook, pact, verification, trigger_type, event_name, event_context
105
105
  db_webhook = Webhook.where(uuid: webhook.uuid).single_record
106
106
  TriggeredWebhook.create(
107
107
  status: TriggeredWebhook::STATUS_NOT_RUN,
@@ -113,7 +113,8 @@ module PactBroker
113
113
  trigger_type: trigger_type,
114
114
  consumer: pact.consumer,
115
115
  provider: pact.provider,
116
- event_name: event_name
116
+ event_name: event_name,
117
+ event_context: event_context
117
118
  )
118
119
  end
119
120
 
@@ -136,7 +136,8 @@ module PactBroker
136
136
  trigger_uuid = next_uuid
137
137
  webhooks.each do | webhook |
138
138
  begin
139
- triggered_webhook = webhook_repository.create_triggered_webhook(trigger_uuid, webhook, pact, verification, RESOURCE_CREATION, event_name)
139
+ webhook_context = options.fetch(:webhook_execution_configuration).webhook_context
140
+ triggered_webhook = webhook_repository.create_triggered_webhook(trigger_uuid, webhook, pact, verification, RESOURCE_CREATION, event_name, webhook_context)
140
141
  logger.info "Scheduling job for webhook with uuid #{webhook.uuid}"
141
142
  logger.debug "Schedule webhook with options #{options}"
142
143
  job_data = { triggered_webhook: triggered_webhook }.deep_merge(options)
@@ -9,6 +9,7 @@ module PactBroker
9
9
  module Webhooks
10
10
  class TriggeredWebhook < Sequel::Model(:triggered_webhooks)
11
11
  plugin :timestamps, update_on_create: true
12
+ plugin :serialization, :json, :event_context
12
13
 
13
14
  TRIGGER_TYPE_RESOURCE_CREATION = 'resource_creation'
14
15
  TRIGGER_TYPE_USER = 'user'
@@ -0,0 +1,42 @@
1
+ # frozen_string_literal: true
2
+ require 'pact_broker/api/paths'
3
+ require 'pact_broker/configuration'
4
+
5
+ module Rack
6
+ module PactBroker
7
+ class HalBrowserRedirect
8
+ include ::PactBroker::Api::Paths
9
+
10
+ def initialize(app, options = {}, &block)
11
+ @app = app
12
+ end
13
+
14
+ def call(env)
15
+ if redirect?(env)
16
+ return [303, {'Location' => hal_browser_url_from_request(env)}, []]
17
+ else
18
+ app.call(env)
19
+ end
20
+ end
21
+
22
+ private
23
+
24
+ attr_reader :app
25
+
26
+ def redirect?(env)
27
+ is_get_for_html?(env) && is_verification_results_path?(env["PATH_INFO"])
28
+ end
29
+
30
+ def is_get_for_html?(env)
31
+ env["REQUEST_METHOD"] == "GET" && env["HTTP_ACCEPT"]&.include?("text/html")
32
+ end
33
+
34
+ # Doesn't support non root URLs currently
35
+ def hal_browser_url_from_request(env)
36
+ url = URI.parse("#{env["pactbroker.base_url"]}/hal-browser/browser.html")
37
+ url.fragment = "#{env["pactbroker.base_url"]}#{env["PATH_INFO"]}"
38
+ url.to_s
39
+ end
40
+ end
41
+ end
42
+ end
@@ -0,0 +1,22 @@
1
+ module Rack
2
+ module PactBroker
3
+ class SetBaseUrl
4
+ def initialize app, base_url
5
+ @app = app
6
+ @base_url = base_url
7
+ end
8
+
9
+ def call env
10
+ if env["pactbroker.base_url"]
11
+ app.call(env)
12
+ else
13
+ app.call(env.merge("pactbroker.base_url" => base_url))
14
+ end
15
+ end
16
+
17
+ private
18
+
19
+ attr_reader :app, :base_url
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,22 @@
1
+ module Sequel
2
+ module StatementTimeout
3
+ def with_statement_timeout(timeout_seconds = 20)
4
+ # Might not have postgres class loaded, use class name
5
+ if self.class.name == "Sequel::Postgres::Database"
6
+ # Don't want to use a transaction because this will often be a read and a transaction is unnecessary.
7
+ # Also, when using it for clean, want to control the transactions outside this.
8
+ current_statement_timeout = execute("show statement_timeout") { |r| r.first.values.first }
9
+ run("SET statement_timeout = '#{timeout_seconds}s'")
10
+ begin
11
+ yield
12
+ ensure
13
+ run("SET statement_timeout = '#{current_statement_timeout}'")
14
+ end
15
+ else
16
+ yield
17
+ end
18
+ end
19
+ end
20
+
21
+ Database.register_extension(:statement_timeout){|db| db.extend(StatementTimeout) }
22
+ end
@@ -0,0 +1,5 @@
1
+ name: "Pact Broker"
2
+ tasks:
3
+ start:
4
+ command: "bundle exec rackup -p ${PORT}"
5
+ inboundUrl: http://localhost:4000
@@ -52,7 +52,7 @@ Gem::Specification.new do |gem|
52
52
  gem.add_runtime_dependency 'webmachine', '1.5.0'
53
53
  gem.add_runtime_dependency 'semver2', '~> 3.4.2'
54
54
  gem.add_runtime_dependency 'rack', '>= 2.2.3', '~> 2.2'
55
- gem.add_runtime_dependency 'redcarpet', '>=3.3.2', '~>3.3'
55
+ gem.add_runtime_dependency 'redcarpet', '>= 3.5.1', '~>3.5'
56
56
  gem.add_runtime_dependency 'pact-support' , '~> 1.16', '>= 1.16.4'
57
57
  gem.add_runtime_dependency 'padrino-core', '>= 0.14.3', '~> 0.14'
58
58
  gem.add_runtime_dependency 'sinatra', '>= 2.0.8.1', '< 3.0'
@@ -0,0 +1,3719 @@
1
+ /*!
2
+ * Bootstrap Grid v4.3.1 (https://getbootstrap.com/)
3
+ * Copyright 2011-2019 The Bootstrap Authors
4
+ * Copyright 2011-2019 Twitter, Inc.
5
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
6
+ */
7
+ html {
8
+ box-sizing: border-box;
9
+ -ms-overflow-style: scrollbar;
10
+ }
11
+
12
+ *,
13
+ *::before,
14
+ *::after {
15
+ box-sizing: inherit;
16
+ }
17
+
18
+ .container {
19
+ width: 100%;
20
+ padding-right: 15px;
21
+ padding-left: 15px;
22
+ margin-right: auto;
23
+ margin-left: auto;
24
+ }
25
+
26
+ @media (min-width: 576px) {
27
+ .container {
28
+ max-width: 540px;
29
+ }
30
+ }
31
+
32
+ @media (min-width: 768px) {
33
+ .container {
34
+ max-width: 720px;
35
+ }
36
+ }
37
+
38
+ @media (min-width: 992px) {
39
+ .container {
40
+ max-width: 960px;
41
+ }
42
+ }
43
+
44
+ @media (min-width: 1200px) {
45
+ .container {
46
+ max-width: 1140px;
47
+ }
48
+ }
49
+
50
+ .container-fluid {
51
+ width: 100%;
52
+ padding-right: 15px;
53
+ padding-left: 15px;
54
+ margin-right: auto;
55
+ margin-left: auto;
56
+ }
57
+
58
+ .row {
59
+ display: -ms-flexbox;
60
+ display: flex;
61
+ -ms-flex-wrap: wrap;
62
+ flex-wrap: wrap;
63
+ margin-right: -15px;
64
+ margin-left: -15px;
65
+ }
66
+
67
+ .no-gutters {
68
+ margin-right: 0;
69
+ margin-left: 0;
70
+ }
71
+
72
+ .no-gutters > .col,
73
+ .no-gutters > [class*="col-"] {
74
+ padding-right: 0;
75
+ padding-left: 0;
76
+ }
77
+
78
+ .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,
79
+ .col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
80
+ .col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
81
+ .col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
82
+ .col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
83
+ .col-xl-auto {
84
+ position: relative;
85
+ width: 100%;
86
+ padding-right: 15px;
87
+ padding-left: 15px;
88
+ }
89
+
90
+ .col {
91
+ -ms-flex-preferred-size: 0;
92
+ flex-basis: 0;
93
+ -ms-flex-positive: 1;
94
+ flex-grow: 1;
95
+ max-width: 100%;
96
+ }
97
+
98
+ .col-auto {
99
+ -ms-flex: 0 0 auto;
100
+ flex: 0 0 auto;
101
+ width: auto;
102
+ max-width: 100%;
103
+ }
104
+
105
+ .col-1 {
106
+ -ms-flex: 0 0 8.333333%;
107
+ flex: 0 0 8.333333%;
108
+ max-width: 8.333333%;
109
+ }
110
+
111
+ .col-2 {
112
+ -ms-flex: 0 0 16.666667%;
113
+ flex: 0 0 16.666667%;
114
+ max-width: 16.666667%;
115
+ }
116
+
117
+ .col-3 {
118
+ -ms-flex: 0 0 25%;
119
+ flex: 0 0 25%;
120
+ max-width: 25%;
121
+ }
122
+
123
+ .col-4 {
124
+ -ms-flex: 0 0 33.333333%;
125
+ flex: 0 0 33.333333%;
126
+ max-width: 33.333333%;
127
+ }
128
+
129
+ .col-5 {
130
+ -ms-flex: 0 0 41.666667%;
131
+ flex: 0 0 41.666667%;
132
+ max-width: 41.666667%;
133
+ }
134
+
135
+ .col-6 {
136
+ -ms-flex: 0 0 50%;
137
+ flex: 0 0 50%;
138
+ max-width: 50%;
139
+ }
140
+
141
+ .col-7 {
142
+ -ms-flex: 0 0 58.333333%;
143
+ flex: 0 0 58.333333%;
144
+ max-width: 58.333333%;
145
+ }
146
+
147
+ .col-8 {
148
+ -ms-flex: 0 0 66.666667%;
149
+ flex: 0 0 66.666667%;
150
+ max-width: 66.666667%;
151
+ }
152
+
153
+ .col-9 {
154
+ -ms-flex: 0 0 75%;
155
+ flex: 0 0 75%;
156
+ max-width: 75%;
157
+ }
158
+
159
+ .col-10 {
160
+ -ms-flex: 0 0 83.333333%;
161
+ flex: 0 0 83.333333%;
162
+ max-width: 83.333333%;
163
+ }
164
+
165
+ .col-11 {
166
+ -ms-flex: 0 0 91.666667%;
167
+ flex: 0 0 91.666667%;
168
+ max-width: 91.666667%;
169
+ }
170
+
171
+ .col-12 {
172
+ -ms-flex: 0 0 100%;
173
+ flex: 0 0 100%;
174
+ max-width: 100%;
175
+ }
176
+
177
+ .order-first {
178
+ -ms-flex-order: -1;
179
+ order: -1;
180
+ }
181
+
182
+ .order-last {
183
+ -ms-flex-order: 13;
184
+ order: 13;
185
+ }
186
+
187
+ .order-0 {
188
+ -ms-flex-order: 0;
189
+ order: 0;
190
+ }
191
+
192
+ .order-1 {
193
+ -ms-flex-order: 1;
194
+ order: 1;
195
+ }
196
+
197
+ .order-2 {
198
+ -ms-flex-order: 2;
199
+ order: 2;
200
+ }
201
+
202
+ .order-3 {
203
+ -ms-flex-order: 3;
204
+ order: 3;
205
+ }
206
+
207
+ .order-4 {
208
+ -ms-flex-order: 4;
209
+ order: 4;
210
+ }
211
+
212
+ .order-5 {
213
+ -ms-flex-order: 5;
214
+ order: 5;
215
+ }
216
+
217
+ .order-6 {
218
+ -ms-flex-order: 6;
219
+ order: 6;
220
+ }
221
+
222
+ .order-7 {
223
+ -ms-flex-order: 7;
224
+ order: 7;
225
+ }
226
+
227
+ .order-8 {
228
+ -ms-flex-order: 8;
229
+ order: 8;
230
+ }
231
+
232
+ .order-9 {
233
+ -ms-flex-order: 9;
234
+ order: 9;
235
+ }
236
+
237
+ .order-10 {
238
+ -ms-flex-order: 10;
239
+ order: 10;
240
+ }
241
+
242
+ .order-11 {
243
+ -ms-flex-order: 11;
244
+ order: 11;
245
+ }
246
+
247
+ .order-12 {
248
+ -ms-flex-order: 12;
249
+ order: 12;
250
+ }
251
+
252
+ .offset-1 {
253
+ margin-left: 8.333333%;
254
+ }
255
+
256
+ .offset-2 {
257
+ margin-left: 16.666667%;
258
+ }
259
+
260
+ .offset-3 {
261
+ margin-left: 25%;
262
+ }
263
+
264
+ .offset-4 {
265
+ margin-left: 33.333333%;
266
+ }
267
+
268
+ .offset-5 {
269
+ margin-left: 41.666667%;
270
+ }
271
+
272
+ .offset-6 {
273
+ margin-left: 50%;
274
+ }
275
+
276
+ .offset-7 {
277
+ margin-left: 58.333333%;
278
+ }
279
+
280
+ .offset-8 {
281
+ margin-left: 66.666667%;
282
+ }
283
+
284
+ .offset-9 {
285
+ margin-left: 75%;
286
+ }
287
+
288
+ .offset-10 {
289
+ margin-left: 83.333333%;
290
+ }
291
+
292
+ .offset-11 {
293
+ margin-left: 91.666667%;
294
+ }
295
+
296
+ @media (min-width: 576px) {
297
+ .col-sm {
298
+ -ms-flex-preferred-size: 0;
299
+ flex-basis: 0;
300
+ -ms-flex-positive: 1;
301
+ flex-grow: 1;
302
+ max-width: 100%;
303
+ }
304
+ .col-sm-auto {
305
+ -ms-flex: 0 0 auto;
306
+ flex: 0 0 auto;
307
+ width: auto;
308
+ max-width: 100%;
309
+ }
310
+ .col-sm-1 {
311
+ -ms-flex: 0 0 8.333333%;
312
+ flex: 0 0 8.333333%;
313
+ max-width: 8.333333%;
314
+ }
315
+ .col-sm-2 {
316
+ -ms-flex: 0 0 16.666667%;
317
+ flex: 0 0 16.666667%;
318
+ max-width: 16.666667%;
319
+ }
320
+ .col-sm-3 {
321
+ -ms-flex: 0 0 25%;
322
+ flex: 0 0 25%;
323
+ max-width: 25%;
324
+ }
325
+ .col-sm-4 {
326
+ -ms-flex: 0 0 33.333333%;
327
+ flex: 0 0 33.333333%;
328
+ max-width: 33.333333%;
329
+ }
330
+ .col-sm-5 {
331
+ -ms-flex: 0 0 41.666667%;
332
+ flex: 0 0 41.666667%;
333
+ max-width: 41.666667%;
334
+ }
335
+ .col-sm-6 {
336
+ -ms-flex: 0 0 50%;
337
+ flex: 0 0 50%;
338
+ max-width: 50%;
339
+ }
340
+ .col-sm-7 {
341
+ -ms-flex: 0 0 58.333333%;
342
+ flex: 0 0 58.333333%;
343
+ max-width: 58.333333%;
344
+ }
345
+ .col-sm-8 {
346
+ -ms-flex: 0 0 66.666667%;
347
+ flex: 0 0 66.666667%;
348
+ max-width: 66.666667%;
349
+ }
350
+ .col-sm-9 {
351
+ -ms-flex: 0 0 75%;
352
+ flex: 0 0 75%;
353
+ max-width: 75%;
354
+ }
355
+ .col-sm-10 {
356
+ -ms-flex: 0 0 83.333333%;
357
+ flex: 0 0 83.333333%;
358
+ max-width: 83.333333%;
359
+ }
360
+ .col-sm-11 {
361
+ -ms-flex: 0 0 91.666667%;
362
+ flex: 0 0 91.666667%;
363
+ max-width: 91.666667%;
364
+ }
365
+ .col-sm-12 {
366
+ -ms-flex: 0 0 100%;
367
+ flex: 0 0 100%;
368
+ max-width: 100%;
369
+ }
370
+ .order-sm-first {
371
+ -ms-flex-order: -1;
372
+ order: -1;
373
+ }
374
+ .order-sm-last {
375
+ -ms-flex-order: 13;
376
+ order: 13;
377
+ }
378
+ .order-sm-0 {
379
+ -ms-flex-order: 0;
380
+ order: 0;
381
+ }
382
+ .order-sm-1 {
383
+ -ms-flex-order: 1;
384
+ order: 1;
385
+ }
386
+ .order-sm-2 {
387
+ -ms-flex-order: 2;
388
+ order: 2;
389
+ }
390
+ .order-sm-3 {
391
+ -ms-flex-order: 3;
392
+ order: 3;
393
+ }
394
+ .order-sm-4 {
395
+ -ms-flex-order: 4;
396
+ order: 4;
397
+ }
398
+ .order-sm-5 {
399
+ -ms-flex-order: 5;
400
+ order: 5;
401
+ }
402
+ .order-sm-6 {
403
+ -ms-flex-order: 6;
404
+ order: 6;
405
+ }
406
+ .order-sm-7 {
407
+ -ms-flex-order: 7;
408
+ order: 7;
409
+ }
410
+ .order-sm-8 {
411
+ -ms-flex-order: 8;
412
+ order: 8;
413
+ }
414
+ .order-sm-9 {
415
+ -ms-flex-order: 9;
416
+ order: 9;
417
+ }
418
+ .order-sm-10 {
419
+ -ms-flex-order: 10;
420
+ order: 10;
421
+ }
422
+ .order-sm-11 {
423
+ -ms-flex-order: 11;
424
+ order: 11;
425
+ }
426
+ .order-sm-12 {
427
+ -ms-flex-order: 12;
428
+ order: 12;
429
+ }
430
+ .offset-sm-0 {
431
+ margin-left: 0;
432
+ }
433
+ .offset-sm-1 {
434
+ margin-left: 8.333333%;
435
+ }
436
+ .offset-sm-2 {
437
+ margin-left: 16.666667%;
438
+ }
439
+ .offset-sm-3 {
440
+ margin-left: 25%;
441
+ }
442
+ .offset-sm-4 {
443
+ margin-left: 33.333333%;
444
+ }
445
+ .offset-sm-5 {
446
+ margin-left: 41.666667%;
447
+ }
448
+ .offset-sm-6 {
449
+ margin-left: 50%;
450
+ }
451
+ .offset-sm-7 {
452
+ margin-left: 58.333333%;
453
+ }
454
+ .offset-sm-8 {
455
+ margin-left: 66.666667%;
456
+ }
457
+ .offset-sm-9 {
458
+ margin-left: 75%;
459
+ }
460
+ .offset-sm-10 {
461
+ margin-left: 83.333333%;
462
+ }
463
+ .offset-sm-11 {
464
+ margin-left: 91.666667%;
465
+ }
466
+ }
467
+
468
+ @media (min-width: 768px) {
469
+ .col-md {
470
+ -ms-flex-preferred-size: 0;
471
+ flex-basis: 0;
472
+ -ms-flex-positive: 1;
473
+ flex-grow: 1;
474
+ max-width: 100%;
475
+ }
476
+ .col-md-auto {
477
+ -ms-flex: 0 0 auto;
478
+ flex: 0 0 auto;
479
+ width: auto;
480
+ max-width: 100%;
481
+ }
482
+ .col-md-1 {
483
+ -ms-flex: 0 0 8.333333%;
484
+ flex: 0 0 8.333333%;
485
+ max-width: 8.333333%;
486
+ }
487
+ .col-md-2 {
488
+ -ms-flex: 0 0 16.666667%;
489
+ flex: 0 0 16.666667%;
490
+ max-width: 16.666667%;
491
+ }
492
+ .col-md-3 {
493
+ -ms-flex: 0 0 25%;
494
+ flex: 0 0 25%;
495
+ max-width: 25%;
496
+ }
497
+ .col-md-4 {
498
+ -ms-flex: 0 0 33.333333%;
499
+ flex: 0 0 33.333333%;
500
+ max-width: 33.333333%;
501
+ }
502
+ .col-md-5 {
503
+ -ms-flex: 0 0 41.666667%;
504
+ flex: 0 0 41.666667%;
505
+ max-width: 41.666667%;
506
+ }
507
+ .col-md-6 {
508
+ -ms-flex: 0 0 50%;
509
+ flex: 0 0 50%;
510
+ max-width: 50%;
511
+ }
512
+ .col-md-7 {
513
+ -ms-flex: 0 0 58.333333%;
514
+ flex: 0 0 58.333333%;
515
+ max-width: 58.333333%;
516
+ }
517
+ .col-md-8 {
518
+ -ms-flex: 0 0 66.666667%;
519
+ flex: 0 0 66.666667%;
520
+ max-width: 66.666667%;
521
+ }
522
+ .col-md-9 {
523
+ -ms-flex: 0 0 75%;
524
+ flex: 0 0 75%;
525
+ max-width: 75%;
526
+ }
527
+ .col-md-10 {
528
+ -ms-flex: 0 0 83.333333%;
529
+ flex: 0 0 83.333333%;
530
+ max-width: 83.333333%;
531
+ }
532
+ .col-md-11 {
533
+ -ms-flex: 0 0 91.666667%;
534
+ flex: 0 0 91.666667%;
535
+ max-width: 91.666667%;
536
+ }
537
+ .col-md-12 {
538
+ -ms-flex: 0 0 100%;
539
+ flex: 0 0 100%;
540
+ max-width: 100%;
541
+ }
542
+ .order-md-first {
543
+ -ms-flex-order: -1;
544
+ order: -1;
545
+ }
546
+ .order-md-last {
547
+ -ms-flex-order: 13;
548
+ order: 13;
549
+ }
550
+ .order-md-0 {
551
+ -ms-flex-order: 0;
552
+ order: 0;
553
+ }
554
+ .order-md-1 {
555
+ -ms-flex-order: 1;
556
+ order: 1;
557
+ }
558
+ .order-md-2 {
559
+ -ms-flex-order: 2;
560
+ order: 2;
561
+ }
562
+ .order-md-3 {
563
+ -ms-flex-order: 3;
564
+ order: 3;
565
+ }
566
+ .order-md-4 {
567
+ -ms-flex-order: 4;
568
+ order: 4;
569
+ }
570
+ .order-md-5 {
571
+ -ms-flex-order: 5;
572
+ order: 5;
573
+ }
574
+ .order-md-6 {
575
+ -ms-flex-order: 6;
576
+ order: 6;
577
+ }
578
+ .order-md-7 {
579
+ -ms-flex-order: 7;
580
+ order: 7;
581
+ }
582
+ .order-md-8 {
583
+ -ms-flex-order: 8;
584
+ order: 8;
585
+ }
586
+ .order-md-9 {
587
+ -ms-flex-order: 9;
588
+ order: 9;
589
+ }
590
+ .order-md-10 {
591
+ -ms-flex-order: 10;
592
+ order: 10;
593
+ }
594
+ .order-md-11 {
595
+ -ms-flex-order: 11;
596
+ order: 11;
597
+ }
598
+ .order-md-12 {
599
+ -ms-flex-order: 12;
600
+ order: 12;
601
+ }
602
+ .offset-md-0 {
603
+ margin-left: 0;
604
+ }
605
+ .offset-md-1 {
606
+ margin-left: 8.333333%;
607
+ }
608
+ .offset-md-2 {
609
+ margin-left: 16.666667%;
610
+ }
611
+ .offset-md-3 {
612
+ margin-left: 25%;
613
+ }
614
+ .offset-md-4 {
615
+ margin-left: 33.333333%;
616
+ }
617
+ .offset-md-5 {
618
+ margin-left: 41.666667%;
619
+ }
620
+ .offset-md-6 {
621
+ margin-left: 50%;
622
+ }
623
+ .offset-md-7 {
624
+ margin-left: 58.333333%;
625
+ }
626
+ .offset-md-8 {
627
+ margin-left: 66.666667%;
628
+ }
629
+ .offset-md-9 {
630
+ margin-left: 75%;
631
+ }
632
+ .offset-md-10 {
633
+ margin-left: 83.333333%;
634
+ }
635
+ .offset-md-11 {
636
+ margin-left: 91.666667%;
637
+ }
638
+ }
639
+
640
+ @media (min-width: 992px) {
641
+ .col-lg {
642
+ -ms-flex-preferred-size: 0;
643
+ flex-basis: 0;
644
+ -ms-flex-positive: 1;
645
+ flex-grow: 1;
646
+ max-width: 100%;
647
+ }
648
+ .col-lg-auto {
649
+ -ms-flex: 0 0 auto;
650
+ flex: 0 0 auto;
651
+ width: auto;
652
+ max-width: 100%;
653
+ }
654
+ .col-lg-1 {
655
+ -ms-flex: 0 0 8.333333%;
656
+ flex: 0 0 8.333333%;
657
+ max-width: 8.333333%;
658
+ }
659
+ .col-lg-2 {
660
+ -ms-flex: 0 0 16.666667%;
661
+ flex: 0 0 16.666667%;
662
+ max-width: 16.666667%;
663
+ }
664
+ .col-lg-3 {
665
+ -ms-flex: 0 0 25%;
666
+ flex: 0 0 25%;
667
+ max-width: 25%;
668
+ }
669
+ .col-lg-4 {
670
+ -ms-flex: 0 0 33.333333%;
671
+ flex: 0 0 33.333333%;
672
+ max-width: 33.333333%;
673
+ }
674
+ .col-lg-5 {
675
+ -ms-flex: 0 0 41.666667%;
676
+ flex: 0 0 41.666667%;
677
+ max-width: 41.666667%;
678
+ }
679
+ .col-lg-6 {
680
+ -ms-flex: 0 0 50%;
681
+ flex: 0 0 50%;
682
+ max-width: 50%;
683
+ }
684
+ .col-lg-7 {
685
+ -ms-flex: 0 0 58.333333%;
686
+ flex: 0 0 58.333333%;
687
+ max-width: 58.333333%;
688
+ }
689
+ .col-lg-8 {
690
+ -ms-flex: 0 0 66.666667%;
691
+ flex: 0 0 66.666667%;
692
+ max-width: 66.666667%;
693
+ }
694
+ .col-lg-9 {
695
+ -ms-flex: 0 0 75%;
696
+ flex: 0 0 75%;
697
+ max-width: 75%;
698
+ }
699
+ .col-lg-10 {
700
+ -ms-flex: 0 0 83.333333%;
701
+ flex: 0 0 83.333333%;
702
+ max-width: 83.333333%;
703
+ }
704
+ .col-lg-11 {
705
+ -ms-flex: 0 0 91.666667%;
706
+ flex: 0 0 91.666667%;
707
+ max-width: 91.666667%;
708
+ }
709
+ .col-lg-12 {
710
+ -ms-flex: 0 0 100%;
711
+ flex: 0 0 100%;
712
+ max-width: 100%;
713
+ }
714
+ .order-lg-first {
715
+ -ms-flex-order: -1;
716
+ order: -1;
717
+ }
718
+ .order-lg-last {
719
+ -ms-flex-order: 13;
720
+ order: 13;
721
+ }
722
+ .order-lg-0 {
723
+ -ms-flex-order: 0;
724
+ order: 0;
725
+ }
726
+ .order-lg-1 {
727
+ -ms-flex-order: 1;
728
+ order: 1;
729
+ }
730
+ .order-lg-2 {
731
+ -ms-flex-order: 2;
732
+ order: 2;
733
+ }
734
+ .order-lg-3 {
735
+ -ms-flex-order: 3;
736
+ order: 3;
737
+ }
738
+ .order-lg-4 {
739
+ -ms-flex-order: 4;
740
+ order: 4;
741
+ }
742
+ .order-lg-5 {
743
+ -ms-flex-order: 5;
744
+ order: 5;
745
+ }
746
+ .order-lg-6 {
747
+ -ms-flex-order: 6;
748
+ order: 6;
749
+ }
750
+ .order-lg-7 {
751
+ -ms-flex-order: 7;
752
+ order: 7;
753
+ }
754
+ .order-lg-8 {
755
+ -ms-flex-order: 8;
756
+ order: 8;
757
+ }
758
+ .order-lg-9 {
759
+ -ms-flex-order: 9;
760
+ order: 9;
761
+ }
762
+ .order-lg-10 {
763
+ -ms-flex-order: 10;
764
+ order: 10;
765
+ }
766
+ .order-lg-11 {
767
+ -ms-flex-order: 11;
768
+ order: 11;
769
+ }
770
+ .order-lg-12 {
771
+ -ms-flex-order: 12;
772
+ order: 12;
773
+ }
774
+ .offset-lg-0 {
775
+ margin-left: 0;
776
+ }
777
+ .offset-lg-1 {
778
+ margin-left: 8.333333%;
779
+ }
780
+ .offset-lg-2 {
781
+ margin-left: 16.666667%;
782
+ }
783
+ .offset-lg-3 {
784
+ margin-left: 25%;
785
+ }
786
+ .offset-lg-4 {
787
+ margin-left: 33.333333%;
788
+ }
789
+ .offset-lg-5 {
790
+ margin-left: 41.666667%;
791
+ }
792
+ .offset-lg-6 {
793
+ margin-left: 50%;
794
+ }
795
+ .offset-lg-7 {
796
+ margin-left: 58.333333%;
797
+ }
798
+ .offset-lg-8 {
799
+ margin-left: 66.666667%;
800
+ }
801
+ .offset-lg-9 {
802
+ margin-left: 75%;
803
+ }
804
+ .offset-lg-10 {
805
+ margin-left: 83.333333%;
806
+ }
807
+ .offset-lg-11 {
808
+ margin-left: 91.666667%;
809
+ }
810
+ }
811
+
812
+ @media (min-width: 1200px) {
813
+ .col-xl {
814
+ -ms-flex-preferred-size: 0;
815
+ flex-basis: 0;
816
+ -ms-flex-positive: 1;
817
+ flex-grow: 1;
818
+ max-width: 100%;
819
+ }
820
+ .col-xl-auto {
821
+ -ms-flex: 0 0 auto;
822
+ flex: 0 0 auto;
823
+ width: auto;
824
+ max-width: 100%;
825
+ }
826
+ .col-xl-1 {
827
+ -ms-flex: 0 0 8.333333%;
828
+ flex: 0 0 8.333333%;
829
+ max-width: 8.333333%;
830
+ }
831
+ .col-xl-2 {
832
+ -ms-flex: 0 0 16.666667%;
833
+ flex: 0 0 16.666667%;
834
+ max-width: 16.666667%;
835
+ }
836
+ .col-xl-3 {
837
+ -ms-flex: 0 0 25%;
838
+ flex: 0 0 25%;
839
+ max-width: 25%;
840
+ }
841
+ .col-xl-4 {
842
+ -ms-flex: 0 0 33.333333%;
843
+ flex: 0 0 33.333333%;
844
+ max-width: 33.333333%;
845
+ }
846
+ .col-xl-5 {
847
+ -ms-flex: 0 0 41.666667%;
848
+ flex: 0 0 41.666667%;
849
+ max-width: 41.666667%;
850
+ }
851
+ .col-xl-6 {
852
+ -ms-flex: 0 0 50%;
853
+ flex: 0 0 50%;
854
+ max-width: 50%;
855
+ }
856
+ .col-xl-7 {
857
+ -ms-flex: 0 0 58.333333%;
858
+ flex: 0 0 58.333333%;
859
+ max-width: 58.333333%;
860
+ }
861
+ .col-xl-8 {
862
+ -ms-flex: 0 0 66.666667%;
863
+ flex: 0 0 66.666667%;
864
+ max-width: 66.666667%;
865
+ }
866
+ .col-xl-9 {
867
+ -ms-flex: 0 0 75%;
868
+ flex: 0 0 75%;
869
+ max-width: 75%;
870
+ }
871
+ .col-xl-10 {
872
+ -ms-flex: 0 0 83.333333%;
873
+ flex: 0 0 83.333333%;
874
+ max-width: 83.333333%;
875
+ }
876
+ .col-xl-11 {
877
+ -ms-flex: 0 0 91.666667%;
878
+ flex: 0 0 91.666667%;
879
+ max-width: 91.666667%;
880
+ }
881
+ .col-xl-12 {
882
+ -ms-flex: 0 0 100%;
883
+ flex: 0 0 100%;
884
+ max-width: 100%;
885
+ }
886
+ .order-xl-first {
887
+ -ms-flex-order: -1;
888
+ order: -1;
889
+ }
890
+ .order-xl-last {
891
+ -ms-flex-order: 13;
892
+ order: 13;
893
+ }
894
+ .order-xl-0 {
895
+ -ms-flex-order: 0;
896
+ order: 0;
897
+ }
898
+ .order-xl-1 {
899
+ -ms-flex-order: 1;
900
+ order: 1;
901
+ }
902
+ .order-xl-2 {
903
+ -ms-flex-order: 2;
904
+ order: 2;
905
+ }
906
+ .order-xl-3 {
907
+ -ms-flex-order: 3;
908
+ order: 3;
909
+ }
910
+ .order-xl-4 {
911
+ -ms-flex-order: 4;
912
+ order: 4;
913
+ }
914
+ .order-xl-5 {
915
+ -ms-flex-order: 5;
916
+ order: 5;
917
+ }
918
+ .order-xl-6 {
919
+ -ms-flex-order: 6;
920
+ order: 6;
921
+ }
922
+ .order-xl-7 {
923
+ -ms-flex-order: 7;
924
+ order: 7;
925
+ }
926
+ .order-xl-8 {
927
+ -ms-flex-order: 8;
928
+ order: 8;
929
+ }
930
+ .order-xl-9 {
931
+ -ms-flex-order: 9;
932
+ order: 9;
933
+ }
934
+ .order-xl-10 {
935
+ -ms-flex-order: 10;
936
+ order: 10;
937
+ }
938
+ .order-xl-11 {
939
+ -ms-flex-order: 11;
940
+ order: 11;
941
+ }
942
+ .order-xl-12 {
943
+ -ms-flex-order: 12;
944
+ order: 12;
945
+ }
946
+ .offset-xl-0 {
947
+ margin-left: 0;
948
+ }
949
+ .offset-xl-1 {
950
+ margin-left: 8.333333%;
951
+ }
952
+ .offset-xl-2 {
953
+ margin-left: 16.666667%;
954
+ }
955
+ .offset-xl-3 {
956
+ margin-left: 25%;
957
+ }
958
+ .offset-xl-4 {
959
+ margin-left: 33.333333%;
960
+ }
961
+ .offset-xl-5 {
962
+ margin-left: 41.666667%;
963
+ }
964
+ .offset-xl-6 {
965
+ margin-left: 50%;
966
+ }
967
+ .offset-xl-7 {
968
+ margin-left: 58.333333%;
969
+ }
970
+ .offset-xl-8 {
971
+ margin-left: 66.666667%;
972
+ }
973
+ .offset-xl-9 {
974
+ margin-left: 75%;
975
+ }
976
+ .offset-xl-10 {
977
+ margin-left: 83.333333%;
978
+ }
979
+ .offset-xl-11 {
980
+ margin-left: 91.666667%;
981
+ }
982
+ }
983
+
984
+ .d-none {
985
+ display: none !important;
986
+ }
987
+
988
+ .d-inline {
989
+ display: inline !important;
990
+ }
991
+
992
+ .d-inline-block {
993
+ display: inline-block !important;
994
+ }
995
+
996
+ .d-block {
997
+ display: block !important;
998
+ }
999
+
1000
+ .d-table {
1001
+ display: table !important;
1002
+ }
1003
+
1004
+ .d-table-row {
1005
+ display: table-row !important;
1006
+ }
1007
+
1008
+ .d-table-cell {
1009
+ display: table-cell !important;
1010
+ }
1011
+
1012
+ .d-flex {
1013
+ display: -ms-flexbox !important;
1014
+ display: flex !important;
1015
+ }
1016
+
1017
+ .d-inline-flex {
1018
+ display: -ms-inline-flexbox !important;
1019
+ display: inline-flex !important;
1020
+ }
1021
+
1022
+ @media (min-width: 576px) {
1023
+ .d-sm-none {
1024
+ display: none !important;
1025
+ }
1026
+ .d-sm-inline {
1027
+ display: inline !important;
1028
+ }
1029
+ .d-sm-inline-block {
1030
+ display: inline-block !important;
1031
+ }
1032
+ .d-sm-block {
1033
+ display: block !important;
1034
+ }
1035
+ .d-sm-table {
1036
+ display: table !important;
1037
+ }
1038
+ .d-sm-table-row {
1039
+ display: table-row !important;
1040
+ }
1041
+ .d-sm-table-cell {
1042
+ display: table-cell !important;
1043
+ }
1044
+ .d-sm-flex {
1045
+ display: -ms-flexbox !important;
1046
+ display: flex !important;
1047
+ }
1048
+ .d-sm-inline-flex {
1049
+ display: -ms-inline-flexbox !important;
1050
+ display: inline-flex !important;
1051
+ }
1052
+ }
1053
+
1054
+ @media (min-width: 768px) {
1055
+ .d-md-none {
1056
+ display: none !important;
1057
+ }
1058
+ .d-md-inline {
1059
+ display: inline !important;
1060
+ }
1061
+ .d-md-inline-block {
1062
+ display: inline-block !important;
1063
+ }
1064
+ .d-md-block {
1065
+ display: block !important;
1066
+ }
1067
+ .d-md-table {
1068
+ display: table !important;
1069
+ }
1070
+ .d-md-table-row {
1071
+ display: table-row !important;
1072
+ }
1073
+ .d-md-table-cell {
1074
+ display: table-cell !important;
1075
+ }
1076
+ .d-md-flex {
1077
+ display: -ms-flexbox !important;
1078
+ display: flex !important;
1079
+ }
1080
+ .d-md-inline-flex {
1081
+ display: -ms-inline-flexbox !important;
1082
+ display: inline-flex !important;
1083
+ }
1084
+ }
1085
+
1086
+ @media (min-width: 992px) {
1087
+ .d-lg-none {
1088
+ display: none !important;
1089
+ }
1090
+ .d-lg-inline {
1091
+ display: inline !important;
1092
+ }
1093
+ .d-lg-inline-block {
1094
+ display: inline-block !important;
1095
+ }
1096
+ .d-lg-block {
1097
+ display: block !important;
1098
+ }
1099
+ .d-lg-table {
1100
+ display: table !important;
1101
+ }
1102
+ .d-lg-table-row {
1103
+ display: table-row !important;
1104
+ }
1105
+ .d-lg-table-cell {
1106
+ display: table-cell !important;
1107
+ }
1108
+ .d-lg-flex {
1109
+ display: -ms-flexbox !important;
1110
+ display: flex !important;
1111
+ }
1112
+ .d-lg-inline-flex {
1113
+ display: -ms-inline-flexbox !important;
1114
+ display: inline-flex !important;
1115
+ }
1116
+ }
1117
+
1118
+ @media (min-width: 1200px) {
1119
+ .d-xl-none {
1120
+ display: none !important;
1121
+ }
1122
+ .d-xl-inline {
1123
+ display: inline !important;
1124
+ }
1125
+ .d-xl-inline-block {
1126
+ display: inline-block !important;
1127
+ }
1128
+ .d-xl-block {
1129
+ display: block !important;
1130
+ }
1131
+ .d-xl-table {
1132
+ display: table !important;
1133
+ }
1134
+ .d-xl-table-row {
1135
+ display: table-row !important;
1136
+ }
1137
+ .d-xl-table-cell {
1138
+ display: table-cell !important;
1139
+ }
1140
+ .d-xl-flex {
1141
+ display: -ms-flexbox !important;
1142
+ display: flex !important;
1143
+ }
1144
+ .d-xl-inline-flex {
1145
+ display: -ms-inline-flexbox !important;
1146
+ display: inline-flex !important;
1147
+ }
1148
+ }
1149
+
1150
+ @media print {
1151
+ .d-print-none {
1152
+ display: none !important;
1153
+ }
1154
+ .d-print-inline {
1155
+ display: inline !important;
1156
+ }
1157
+ .d-print-inline-block {
1158
+ display: inline-block !important;
1159
+ }
1160
+ .d-print-block {
1161
+ display: block !important;
1162
+ }
1163
+ .d-print-table {
1164
+ display: table !important;
1165
+ }
1166
+ .d-print-table-row {
1167
+ display: table-row !important;
1168
+ }
1169
+ .d-print-table-cell {
1170
+ display: table-cell !important;
1171
+ }
1172
+ .d-print-flex {
1173
+ display: -ms-flexbox !important;
1174
+ display: flex !important;
1175
+ }
1176
+ .d-print-inline-flex {
1177
+ display: -ms-inline-flexbox !important;
1178
+ display: inline-flex !important;
1179
+ }
1180
+ }
1181
+
1182
+ .flex-row {
1183
+ -ms-flex-direction: row !important;
1184
+ flex-direction: row !important;
1185
+ }
1186
+
1187
+ .flex-column {
1188
+ -ms-flex-direction: column !important;
1189
+ flex-direction: column !important;
1190
+ }
1191
+
1192
+ .flex-row-reverse {
1193
+ -ms-flex-direction: row-reverse !important;
1194
+ flex-direction: row-reverse !important;
1195
+ }
1196
+
1197
+ .flex-column-reverse {
1198
+ -ms-flex-direction: column-reverse !important;
1199
+ flex-direction: column-reverse !important;
1200
+ }
1201
+
1202
+ .flex-wrap {
1203
+ -ms-flex-wrap: wrap !important;
1204
+ flex-wrap: wrap !important;
1205
+ }
1206
+
1207
+ .flex-nowrap {
1208
+ -ms-flex-wrap: nowrap !important;
1209
+ flex-wrap: nowrap !important;
1210
+ }
1211
+
1212
+ .flex-wrap-reverse {
1213
+ -ms-flex-wrap: wrap-reverse !important;
1214
+ flex-wrap: wrap-reverse !important;
1215
+ }
1216
+
1217
+ .flex-fill {
1218
+ -ms-flex: 1 1 auto !important;
1219
+ flex: 1 1 auto !important;
1220
+ }
1221
+
1222
+ .flex-grow-0 {
1223
+ -ms-flex-positive: 0 !important;
1224
+ flex-grow: 0 !important;
1225
+ }
1226
+
1227
+ .flex-grow-1 {
1228
+ -ms-flex-positive: 1 !important;
1229
+ flex-grow: 1 !important;
1230
+ }
1231
+
1232
+ .flex-shrink-0 {
1233
+ -ms-flex-negative: 0 !important;
1234
+ flex-shrink: 0 !important;
1235
+ }
1236
+
1237
+ .flex-shrink-1 {
1238
+ -ms-flex-negative: 1 !important;
1239
+ flex-shrink: 1 !important;
1240
+ }
1241
+
1242
+ .justify-content-start {
1243
+ -ms-flex-pack: start !important;
1244
+ justify-content: flex-start !important;
1245
+ }
1246
+
1247
+ .justify-content-end {
1248
+ -ms-flex-pack: end !important;
1249
+ justify-content: flex-end !important;
1250
+ }
1251
+
1252
+ .justify-content-center {
1253
+ -ms-flex-pack: center !important;
1254
+ justify-content: center !important;
1255
+ }
1256
+
1257
+ .justify-content-between {
1258
+ -ms-flex-pack: justify !important;
1259
+ justify-content: space-between !important;
1260
+ }
1261
+
1262
+ .justify-content-around {
1263
+ -ms-flex-pack: distribute !important;
1264
+ justify-content: space-around !important;
1265
+ }
1266
+
1267
+ .align-items-start {
1268
+ -ms-flex-align: start !important;
1269
+ align-items: flex-start !important;
1270
+ }
1271
+
1272
+ .align-items-end {
1273
+ -ms-flex-align: end !important;
1274
+ align-items: flex-end !important;
1275
+ }
1276
+
1277
+ .align-items-center {
1278
+ -ms-flex-align: center !important;
1279
+ align-items: center !important;
1280
+ }
1281
+
1282
+ .align-items-baseline {
1283
+ -ms-flex-align: baseline !important;
1284
+ align-items: baseline !important;
1285
+ }
1286
+
1287
+ .align-items-stretch {
1288
+ -ms-flex-align: stretch !important;
1289
+ align-items: stretch !important;
1290
+ }
1291
+
1292
+ .align-content-start {
1293
+ -ms-flex-line-pack: start !important;
1294
+ align-content: flex-start !important;
1295
+ }
1296
+
1297
+ .align-content-end {
1298
+ -ms-flex-line-pack: end !important;
1299
+ align-content: flex-end !important;
1300
+ }
1301
+
1302
+ .align-content-center {
1303
+ -ms-flex-line-pack: center !important;
1304
+ align-content: center !important;
1305
+ }
1306
+
1307
+ .align-content-between {
1308
+ -ms-flex-line-pack: justify !important;
1309
+ align-content: space-between !important;
1310
+ }
1311
+
1312
+ .align-content-around {
1313
+ -ms-flex-line-pack: distribute !important;
1314
+ align-content: space-around !important;
1315
+ }
1316
+
1317
+ .align-content-stretch {
1318
+ -ms-flex-line-pack: stretch !important;
1319
+ align-content: stretch !important;
1320
+ }
1321
+
1322
+ .align-self-auto {
1323
+ -ms-flex-item-align: auto !important;
1324
+ align-self: auto !important;
1325
+ }
1326
+
1327
+ .align-self-start {
1328
+ -ms-flex-item-align: start !important;
1329
+ align-self: flex-start !important;
1330
+ }
1331
+
1332
+ .align-self-end {
1333
+ -ms-flex-item-align: end !important;
1334
+ align-self: flex-end !important;
1335
+ }
1336
+
1337
+ .align-self-center {
1338
+ -ms-flex-item-align: center !important;
1339
+ align-self: center !important;
1340
+ }
1341
+
1342
+ .align-self-baseline {
1343
+ -ms-flex-item-align: baseline !important;
1344
+ align-self: baseline !important;
1345
+ }
1346
+
1347
+ .align-self-stretch {
1348
+ -ms-flex-item-align: stretch !important;
1349
+ align-self: stretch !important;
1350
+ }
1351
+
1352
+ @media (min-width: 576px) {
1353
+ .flex-sm-row {
1354
+ -ms-flex-direction: row !important;
1355
+ flex-direction: row !important;
1356
+ }
1357
+ .flex-sm-column {
1358
+ -ms-flex-direction: column !important;
1359
+ flex-direction: column !important;
1360
+ }
1361
+ .flex-sm-row-reverse {
1362
+ -ms-flex-direction: row-reverse !important;
1363
+ flex-direction: row-reverse !important;
1364
+ }
1365
+ .flex-sm-column-reverse {
1366
+ -ms-flex-direction: column-reverse !important;
1367
+ flex-direction: column-reverse !important;
1368
+ }
1369
+ .flex-sm-wrap {
1370
+ -ms-flex-wrap: wrap !important;
1371
+ flex-wrap: wrap !important;
1372
+ }
1373
+ .flex-sm-nowrap {
1374
+ -ms-flex-wrap: nowrap !important;
1375
+ flex-wrap: nowrap !important;
1376
+ }
1377
+ .flex-sm-wrap-reverse {
1378
+ -ms-flex-wrap: wrap-reverse !important;
1379
+ flex-wrap: wrap-reverse !important;
1380
+ }
1381
+ .flex-sm-fill {
1382
+ -ms-flex: 1 1 auto !important;
1383
+ flex: 1 1 auto !important;
1384
+ }
1385
+ .flex-sm-grow-0 {
1386
+ -ms-flex-positive: 0 !important;
1387
+ flex-grow: 0 !important;
1388
+ }
1389
+ .flex-sm-grow-1 {
1390
+ -ms-flex-positive: 1 !important;
1391
+ flex-grow: 1 !important;
1392
+ }
1393
+ .flex-sm-shrink-0 {
1394
+ -ms-flex-negative: 0 !important;
1395
+ flex-shrink: 0 !important;
1396
+ }
1397
+ .flex-sm-shrink-1 {
1398
+ -ms-flex-negative: 1 !important;
1399
+ flex-shrink: 1 !important;
1400
+ }
1401
+ .justify-content-sm-start {
1402
+ -ms-flex-pack: start !important;
1403
+ justify-content: flex-start !important;
1404
+ }
1405
+ .justify-content-sm-end {
1406
+ -ms-flex-pack: end !important;
1407
+ justify-content: flex-end !important;
1408
+ }
1409
+ .justify-content-sm-center {
1410
+ -ms-flex-pack: center !important;
1411
+ justify-content: center !important;
1412
+ }
1413
+ .justify-content-sm-between {
1414
+ -ms-flex-pack: justify !important;
1415
+ justify-content: space-between !important;
1416
+ }
1417
+ .justify-content-sm-around {
1418
+ -ms-flex-pack: distribute !important;
1419
+ justify-content: space-around !important;
1420
+ }
1421
+ .align-items-sm-start {
1422
+ -ms-flex-align: start !important;
1423
+ align-items: flex-start !important;
1424
+ }
1425
+ .align-items-sm-end {
1426
+ -ms-flex-align: end !important;
1427
+ align-items: flex-end !important;
1428
+ }
1429
+ .align-items-sm-center {
1430
+ -ms-flex-align: center !important;
1431
+ align-items: center !important;
1432
+ }
1433
+ .align-items-sm-baseline {
1434
+ -ms-flex-align: baseline !important;
1435
+ align-items: baseline !important;
1436
+ }
1437
+ .align-items-sm-stretch {
1438
+ -ms-flex-align: stretch !important;
1439
+ align-items: stretch !important;
1440
+ }
1441
+ .align-content-sm-start {
1442
+ -ms-flex-line-pack: start !important;
1443
+ align-content: flex-start !important;
1444
+ }
1445
+ .align-content-sm-end {
1446
+ -ms-flex-line-pack: end !important;
1447
+ align-content: flex-end !important;
1448
+ }
1449
+ .align-content-sm-center {
1450
+ -ms-flex-line-pack: center !important;
1451
+ align-content: center !important;
1452
+ }
1453
+ .align-content-sm-between {
1454
+ -ms-flex-line-pack: justify !important;
1455
+ align-content: space-between !important;
1456
+ }
1457
+ .align-content-sm-around {
1458
+ -ms-flex-line-pack: distribute !important;
1459
+ align-content: space-around !important;
1460
+ }
1461
+ .align-content-sm-stretch {
1462
+ -ms-flex-line-pack: stretch !important;
1463
+ align-content: stretch !important;
1464
+ }
1465
+ .align-self-sm-auto {
1466
+ -ms-flex-item-align: auto !important;
1467
+ align-self: auto !important;
1468
+ }
1469
+ .align-self-sm-start {
1470
+ -ms-flex-item-align: start !important;
1471
+ align-self: flex-start !important;
1472
+ }
1473
+ .align-self-sm-end {
1474
+ -ms-flex-item-align: end !important;
1475
+ align-self: flex-end !important;
1476
+ }
1477
+ .align-self-sm-center {
1478
+ -ms-flex-item-align: center !important;
1479
+ align-self: center !important;
1480
+ }
1481
+ .align-self-sm-baseline {
1482
+ -ms-flex-item-align: baseline !important;
1483
+ align-self: baseline !important;
1484
+ }
1485
+ .align-self-sm-stretch {
1486
+ -ms-flex-item-align: stretch !important;
1487
+ align-self: stretch !important;
1488
+ }
1489
+ }
1490
+
1491
+ @media (min-width: 768px) {
1492
+ .flex-md-row {
1493
+ -ms-flex-direction: row !important;
1494
+ flex-direction: row !important;
1495
+ }
1496
+ .flex-md-column {
1497
+ -ms-flex-direction: column !important;
1498
+ flex-direction: column !important;
1499
+ }
1500
+ .flex-md-row-reverse {
1501
+ -ms-flex-direction: row-reverse !important;
1502
+ flex-direction: row-reverse !important;
1503
+ }
1504
+ .flex-md-column-reverse {
1505
+ -ms-flex-direction: column-reverse !important;
1506
+ flex-direction: column-reverse !important;
1507
+ }
1508
+ .flex-md-wrap {
1509
+ -ms-flex-wrap: wrap !important;
1510
+ flex-wrap: wrap !important;
1511
+ }
1512
+ .flex-md-nowrap {
1513
+ -ms-flex-wrap: nowrap !important;
1514
+ flex-wrap: nowrap !important;
1515
+ }
1516
+ .flex-md-wrap-reverse {
1517
+ -ms-flex-wrap: wrap-reverse !important;
1518
+ flex-wrap: wrap-reverse !important;
1519
+ }
1520
+ .flex-md-fill {
1521
+ -ms-flex: 1 1 auto !important;
1522
+ flex: 1 1 auto !important;
1523
+ }
1524
+ .flex-md-grow-0 {
1525
+ -ms-flex-positive: 0 !important;
1526
+ flex-grow: 0 !important;
1527
+ }
1528
+ .flex-md-grow-1 {
1529
+ -ms-flex-positive: 1 !important;
1530
+ flex-grow: 1 !important;
1531
+ }
1532
+ .flex-md-shrink-0 {
1533
+ -ms-flex-negative: 0 !important;
1534
+ flex-shrink: 0 !important;
1535
+ }
1536
+ .flex-md-shrink-1 {
1537
+ -ms-flex-negative: 1 !important;
1538
+ flex-shrink: 1 !important;
1539
+ }
1540
+ .justify-content-md-start {
1541
+ -ms-flex-pack: start !important;
1542
+ justify-content: flex-start !important;
1543
+ }
1544
+ .justify-content-md-end {
1545
+ -ms-flex-pack: end !important;
1546
+ justify-content: flex-end !important;
1547
+ }
1548
+ .justify-content-md-center {
1549
+ -ms-flex-pack: center !important;
1550
+ justify-content: center !important;
1551
+ }
1552
+ .justify-content-md-between {
1553
+ -ms-flex-pack: justify !important;
1554
+ justify-content: space-between !important;
1555
+ }
1556
+ .justify-content-md-around {
1557
+ -ms-flex-pack: distribute !important;
1558
+ justify-content: space-around !important;
1559
+ }
1560
+ .align-items-md-start {
1561
+ -ms-flex-align: start !important;
1562
+ align-items: flex-start !important;
1563
+ }
1564
+ .align-items-md-end {
1565
+ -ms-flex-align: end !important;
1566
+ align-items: flex-end !important;
1567
+ }
1568
+ .align-items-md-center {
1569
+ -ms-flex-align: center !important;
1570
+ align-items: center !important;
1571
+ }
1572
+ .align-items-md-baseline {
1573
+ -ms-flex-align: baseline !important;
1574
+ align-items: baseline !important;
1575
+ }
1576
+ .align-items-md-stretch {
1577
+ -ms-flex-align: stretch !important;
1578
+ align-items: stretch !important;
1579
+ }
1580
+ .align-content-md-start {
1581
+ -ms-flex-line-pack: start !important;
1582
+ align-content: flex-start !important;
1583
+ }
1584
+ .align-content-md-end {
1585
+ -ms-flex-line-pack: end !important;
1586
+ align-content: flex-end !important;
1587
+ }
1588
+ .align-content-md-center {
1589
+ -ms-flex-line-pack: center !important;
1590
+ align-content: center !important;
1591
+ }
1592
+ .align-content-md-between {
1593
+ -ms-flex-line-pack: justify !important;
1594
+ align-content: space-between !important;
1595
+ }
1596
+ .align-content-md-around {
1597
+ -ms-flex-line-pack: distribute !important;
1598
+ align-content: space-around !important;
1599
+ }
1600
+ .align-content-md-stretch {
1601
+ -ms-flex-line-pack: stretch !important;
1602
+ align-content: stretch !important;
1603
+ }
1604
+ .align-self-md-auto {
1605
+ -ms-flex-item-align: auto !important;
1606
+ align-self: auto !important;
1607
+ }
1608
+ .align-self-md-start {
1609
+ -ms-flex-item-align: start !important;
1610
+ align-self: flex-start !important;
1611
+ }
1612
+ .align-self-md-end {
1613
+ -ms-flex-item-align: end !important;
1614
+ align-self: flex-end !important;
1615
+ }
1616
+ .align-self-md-center {
1617
+ -ms-flex-item-align: center !important;
1618
+ align-self: center !important;
1619
+ }
1620
+ .align-self-md-baseline {
1621
+ -ms-flex-item-align: baseline !important;
1622
+ align-self: baseline !important;
1623
+ }
1624
+ .align-self-md-stretch {
1625
+ -ms-flex-item-align: stretch !important;
1626
+ align-self: stretch !important;
1627
+ }
1628
+ }
1629
+
1630
+ @media (min-width: 992px) {
1631
+ .flex-lg-row {
1632
+ -ms-flex-direction: row !important;
1633
+ flex-direction: row !important;
1634
+ }
1635
+ .flex-lg-column {
1636
+ -ms-flex-direction: column !important;
1637
+ flex-direction: column !important;
1638
+ }
1639
+ .flex-lg-row-reverse {
1640
+ -ms-flex-direction: row-reverse !important;
1641
+ flex-direction: row-reverse !important;
1642
+ }
1643
+ .flex-lg-column-reverse {
1644
+ -ms-flex-direction: column-reverse !important;
1645
+ flex-direction: column-reverse !important;
1646
+ }
1647
+ .flex-lg-wrap {
1648
+ -ms-flex-wrap: wrap !important;
1649
+ flex-wrap: wrap !important;
1650
+ }
1651
+ .flex-lg-nowrap {
1652
+ -ms-flex-wrap: nowrap !important;
1653
+ flex-wrap: nowrap !important;
1654
+ }
1655
+ .flex-lg-wrap-reverse {
1656
+ -ms-flex-wrap: wrap-reverse !important;
1657
+ flex-wrap: wrap-reverse !important;
1658
+ }
1659
+ .flex-lg-fill {
1660
+ -ms-flex: 1 1 auto !important;
1661
+ flex: 1 1 auto !important;
1662
+ }
1663
+ .flex-lg-grow-0 {
1664
+ -ms-flex-positive: 0 !important;
1665
+ flex-grow: 0 !important;
1666
+ }
1667
+ .flex-lg-grow-1 {
1668
+ -ms-flex-positive: 1 !important;
1669
+ flex-grow: 1 !important;
1670
+ }
1671
+ .flex-lg-shrink-0 {
1672
+ -ms-flex-negative: 0 !important;
1673
+ flex-shrink: 0 !important;
1674
+ }
1675
+ .flex-lg-shrink-1 {
1676
+ -ms-flex-negative: 1 !important;
1677
+ flex-shrink: 1 !important;
1678
+ }
1679
+ .justify-content-lg-start {
1680
+ -ms-flex-pack: start !important;
1681
+ justify-content: flex-start !important;
1682
+ }
1683
+ .justify-content-lg-end {
1684
+ -ms-flex-pack: end !important;
1685
+ justify-content: flex-end !important;
1686
+ }
1687
+ .justify-content-lg-center {
1688
+ -ms-flex-pack: center !important;
1689
+ justify-content: center !important;
1690
+ }
1691
+ .justify-content-lg-between {
1692
+ -ms-flex-pack: justify !important;
1693
+ justify-content: space-between !important;
1694
+ }
1695
+ .justify-content-lg-around {
1696
+ -ms-flex-pack: distribute !important;
1697
+ justify-content: space-around !important;
1698
+ }
1699
+ .align-items-lg-start {
1700
+ -ms-flex-align: start !important;
1701
+ align-items: flex-start !important;
1702
+ }
1703
+ .align-items-lg-end {
1704
+ -ms-flex-align: end !important;
1705
+ align-items: flex-end !important;
1706
+ }
1707
+ .align-items-lg-center {
1708
+ -ms-flex-align: center !important;
1709
+ align-items: center !important;
1710
+ }
1711
+ .align-items-lg-baseline {
1712
+ -ms-flex-align: baseline !important;
1713
+ align-items: baseline !important;
1714
+ }
1715
+ .align-items-lg-stretch {
1716
+ -ms-flex-align: stretch !important;
1717
+ align-items: stretch !important;
1718
+ }
1719
+ .align-content-lg-start {
1720
+ -ms-flex-line-pack: start !important;
1721
+ align-content: flex-start !important;
1722
+ }
1723
+ .align-content-lg-end {
1724
+ -ms-flex-line-pack: end !important;
1725
+ align-content: flex-end !important;
1726
+ }
1727
+ .align-content-lg-center {
1728
+ -ms-flex-line-pack: center !important;
1729
+ align-content: center !important;
1730
+ }
1731
+ .align-content-lg-between {
1732
+ -ms-flex-line-pack: justify !important;
1733
+ align-content: space-between !important;
1734
+ }
1735
+ .align-content-lg-around {
1736
+ -ms-flex-line-pack: distribute !important;
1737
+ align-content: space-around !important;
1738
+ }
1739
+ .align-content-lg-stretch {
1740
+ -ms-flex-line-pack: stretch !important;
1741
+ align-content: stretch !important;
1742
+ }
1743
+ .align-self-lg-auto {
1744
+ -ms-flex-item-align: auto !important;
1745
+ align-self: auto !important;
1746
+ }
1747
+ .align-self-lg-start {
1748
+ -ms-flex-item-align: start !important;
1749
+ align-self: flex-start !important;
1750
+ }
1751
+ .align-self-lg-end {
1752
+ -ms-flex-item-align: end !important;
1753
+ align-self: flex-end !important;
1754
+ }
1755
+ .align-self-lg-center {
1756
+ -ms-flex-item-align: center !important;
1757
+ align-self: center !important;
1758
+ }
1759
+ .align-self-lg-baseline {
1760
+ -ms-flex-item-align: baseline !important;
1761
+ align-self: baseline !important;
1762
+ }
1763
+ .align-self-lg-stretch {
1764
+ -ms-flex-item-align: stretch !important;
1765
+ align-self: stretch !important;
1766
+ }
1767
+ }
1768
+
1769
+ @media (min-width: 1200px) {
1770
+ .flex-xl-row {
1771
+ -ms-flex-direction: row !important;
1772
+ flex-direction: row !important;
1773
+ }
1774
+ .flex-xl-column {
1775
+ -ms-flex-direction: column !important;
1776
+ flex-direction: column !important;
1777
+ }
1778
+ .flex-xl-row-reverse {
1779
+ -ms-flex-direction: row-reverse !important;
1780
+ flex-direction: row-reverse !important;
1781
+ }
1782
+ .flex-xl-column-reverse {
1783
+ -ms-flex-direction: column-reverse !important;
1784
+ flex-direction: column-reverse !important;
1785
+ }
1786
+ .flex-xl-wrap {
1787
+ -ms-flex-wrap: wrap !important;
1788
+ flex-wrap: wrap !important;
1789
+ }
1790
+ .flex-xl-nowrap {
1791
+ -ms-flex-wrap: nowrap !important;
1792
+ flex-wrap: nowrap !important;
1793
+ }
1794
+ .flex-xl-wrap-reverse {
1795
+ -ms-flex-wrap: wrap-reverse !important;
1796
+ flex-wrap: wrap-reverse !important;
1797
+ }
1798
+ .flex-xl-fill {
1799
+ -ms-flex: 1 1 auto !important;
1800
+ flex: 1 1 auto !important;
1801
+ }
1802
+ .flex-xl-grow-0 {
1803
+ -ms-flex-positive: 0 !important;
1804
+ flex-grow: 0 !important;
1805
+ }
1806
+ .flex-xl-grow-1 {
1807
+ -ms-flex-positive: 1 !important;
1808
+ flex-grow: 1 !important;
1809
+ }
1810
+ .flex-xl-shrink-0 {
1811
+ -ms-flex-negative: 0 !important;
1812
+ flex-shrink: 0 !important;
1813
+ }
1814
+ .flex-xl-shrink-1 {
1815
+ -ms-flex-negative: 1 !important;
1816
+ flex-shrink: 1 !important;
1817
+ }
1818
+ .justify-content-xl-start {
1819
+ -ms-flex-pack: start !important;
1820
+ justify-content: flex-start !important;
1821
+ }
1822
+ .justify-content-xl-end {
1823
+ -ms-flex-pack: end !important;
1824
+ justify-content: flex-end !important;
1825
+ }
1826
+ .justify-content-xl-center {
1827
+ -ms-flex-pack: center !important;
1828
+ justify-content: center !important;
1829
+ }
1830
+ .justify-content-xl-between {
1831
+ -ms-flex-pack: justify !important;
1832
+ justify-content: space-between !important;
1833
+ }
1834
+ .justify-content-xl-around {
1835
+ -ms-flex-pack: distribute !important;
1836
+ justify-content: space-around !important;
1837
+ }
1838
+ .align-items-xl-start {
1839
+ -ms-flex-align: start !important;
1840
+ align-items: flex-start !important;
1841
+ }
1842
+ .align-items-xl-end {
1843
+ -ms-flex-align: end !important;
1844
+ align-items: flex-end !important;
1845
+ }
1846
+ .align-items-xl-center {
1847
+ -ms-flex-align: center !important;
1848
+ align-items: center !important;
1849
+ }
1850
+ .align-items-xl-baseline {
1851
+ -ms-flex-align: baseline !important;
1852
+ align-items: baseline !important;
1853
+ }
1854
+ .align-items-xl-stretch {
1855
+ -ms-flex-align: stretch !important;
1856
+ align-items: stretch !important;
1857
+ }
1858
+ .align-content-xl-start {
1859
+ -ms-flex-line-pack: start !important;
1860
+ align-content: flex-start !important;
1861
+ }
1862
+ .align-content-xl-end {
1863
+ -ms-flex-line-pack: end !important;
1864
+ align-content: flex-end !important;
1865
+ }
1866
+ .align-content-xl-center {
1867
+ -ms-flex-line-pack: center !important;
1868
+ align-content: center !important;
1869
+ }
1870
+ .align-content-xl-between {
1871
+ -ms-flex-line-pack: justify !important;
1872
+ align-content: space-between !important;
1873
+ }
1874
+ .align-content-xl-around {
1875
+ -ms-flex-line-pack: distribute !important;
1876
+ align-content: space-around !important;
1877
+ }
1878
+ .align-content-xl-stretch {
1879
+ -ms-flex-line-pack: stretch !important;
1880
+ align-content: stretch !important;
1881
+ }
1882
+ .align-self-xl-auto {
1883
+ -ms-flex-item-align: auto !important;
1884
+ align-self: auto !important;
1885
+ }
1886
+ .align-self-xl-start {
1887
+ -ms-flex-item-align: start !important;
1888
+ align-self: flex-start !important;
1889
+ }
1890
+ .align-self-xl-end {
1891
+ -ms-flex-item-align: end !important;
1892
+ align-self: flex-end !important;
1893
+ }
1894
+ .align-self-xl-center {
1895
+ -ms-flex-item-align: center !important;
1896
+ align-self: center !important;
1897
+ }
1898
+ .align-self-xl-baseline {
1899
+ -ms-flex-item-align: baseline !important;
1900
+ align-self: baseline !important;
1901
+ }
1902
+ .align-self-xl-stretch {
1903
+ -ms-flex-item-align: stretch !important;
1904
+ align-self: stretch !important;
1905
+ }
1906
+ }
1907
+
1908
+ .m-0 {
1909
+ margin: 0 !important;
1910
+ }
1911
+
1912
+ .mt-0,
1913
+ .my-0 {
1914
+ margin-top: 0 !important;
1915
+ }
1916
+
1917
+ .mr-0,
1918
+ .mx-0 {
1919
+ margin-right: 0 !important;
1920
+ }
1921
+
1922
+ .mb-0,
1923
+ .my-0 {
1924
+ margin-bottom: 0 !important;
1925
+ }
1926
+
1927
+ .ml-0,
1928
+ .mx-0 {
1929
+ margin-left: 0 !important;
1930
+ }
1931
+
1932
+ .m-1 {
1933
+ margin: 0.25rem !important;
1934
+ }
1935
+
1936
+ .mt-1,
1937
+ .my-1 {
1938
+ margin-top: 0.25rem !important;
1939
+ }
1940
+
1941
+ .mr-1,
1942
+ .mx-1 {
1943
+ margin-right: 0.25rem !important;
1944
+ }
1945
+
1946
+ .mb-1,
1947
+ .my-1 {
1948
+ margin-bottom: 0.25rem !important;
1949
+ }
1950
+
1951
+ .ml-1,
1952
+ .mx-1 {
1953
+ margin-left: 0.25rem !important;
1954
+ }
1955
+
1956
+ .m-2 {
1957
+ margin: 0.5rem !important;
1958
+ }
1959
+
1960
+ .mt-2,
1961
+ .my-2 {
1962
+ margin-top: 0.5rem !important;
1963
+ }
1964
+
1965
+ .mr-2,
1966
+ .mx-2 {
1967
+ margin-right: 0.5rem !important;
1968
+ }
1969
+
1970
+ .mb-2,
1971
+ .my-2 {
1972
+ margin-bottom: 0.5rem !important;
1973
+ }
1974
+
1975
+ .ml-2,
1976
+ .mx-2 {
1977
+ margin-left: 0.5rem !important;
1978
+ }
1979
+
1980
+ .m-3 {
1981
+ margin: 1rem !important;
1982
+ }
1983
+
1984
+ .mt-3,
1985
+ .my-3 {
1986
+ margin-top: 1rem !important;
1987
+ }
1988
+
1989
+ .mr-3,
1990
+ .mx-3 {
1991
+ margin-right: 1rem !important;
1992
+ }
1993
+
1994
+ .mb-3,
1995
+ .my-3 {
1996
+ margin-bottom: 1rem !important;
1997
+ }
1998
+
1999
+ .ml-3,
2000
+ .mx-3 {
2001
+ margin-left: 1rem !important;
2002
+ }
2003
+
2004
+ .m-4 {
2005
+ margin: 1.5rem !important;
2006
+ }
2007
+
2008
+ .mt-4,
2009
+ .my-4 {
2010
+ margin-top: 1.5rem !important;
2011
+ }
2012
+
2013
+ .mr-4,
2014
+ .mx-4 {
2015
+ margin-right: 1.5rem !important;
2016
+ }
2017
+
2018
+ .mb-4,
2019
+ .my-4 {
2020
+ margin-bottom: 1.5rem !important;
2021
+ }
2022
+
2023
+ .ml-4,
2024
+ .mx-4 {
2025
+ margin-left: 1.5rem !important;
2026
+ }
2027
+
2028
+ .m-5 {
2029
+ margin: 3rem !important;
2030
+ }
2031
+
2032
+ .mt-5,
2033
+ .my-5 {
2034
+ margin-top: 3rem !important;
2035
+ }
2036
+
2037
+ .mr-5,
2038
+ .mx-5 {
2039
+ margin-right: 3rem !important;
2040
+ }
2041
+
2042
+ .mb-5,
2043
+ .my-5 {
2044
+ margin-bottom: 3rem !important;
2045
+ }
2046
+
2047
+ .ml-5,
2048
+ .mx-5 {
2049
+ margin-left: 3rem !important;
2050
+ }
2051
+
2052
+ .p-0 {
2053
+ padding: 0 !important;
2054
+ }
2055
+
2056
+ .pt-0,
2057
+ .py-0 {
2058
+ padding-top: 0 !important;
2059
+ }
2060
+
2061
+ .pr-0,
2062
+ .px-0 {
2063
+ padding-right: 0 !important;
2064
+ }
2065
+
2066
+ .pb-0,
2067
+ .py-0 {
2068
+ padding-bottom: 0 !important;
2069
+ }
2070
+
2071
+ .pl-0,
2072
+ .px-0 {
2073
+ padding-left: 0 !important;
2074
+ }
2075
+
2076
+ .p-1 {
2077
+ padding: 0.25rem !important;
2078
+ }
2079
+
2080
+ .pt-1,
2081
+ .py-1 {
2082
+ padding-top: 0.25rem !important;
2083
+ }
2084
+
2085
+ .pr-1,
2086
+ .px-1 {
2087
+ padding-right: 0.25rem !important;
2088
+ }
2089
+
2090
+ .pb-1,
2091
+ .py-1 {
2092
+ padding-bottom: 0.25rem !important;
2093
+ }
2094
+
2095
+ .pl-1,
2096
+ .px-1 {
2097
+ padding-left: 0.25rem !important;
2098
+ }
2099
+
2100
+ .p-2 {
2101
+ padding: 0.5rem !important;
2102
+ }
2103
+
2104
+ .pt-2,
2105
+ .py-2 {
2106
+ padding-top: 0.5rem !important;
2107
+ }
2108
+
2109
+ .pr-2,
2110
+ .px-2 {
2111
+ padding-right: 0.5rem !important;
2112
+ }
2113
+
2114
+ .pb-2,
2115
+ .py-2 {
2116
+ padding-bottom: 0.5rem !important;
2117
+ }
2118
+
2119
+ .pl-2,
2120
+ .px-2 {
2121
+ padding-left: 0.5rem !important;
2122
+ }
2123
+
2124
+ .p-3 {
2125
+ padding: 1rem !important;
2126
+ }
2127
+
2128
+ .pt-3,
2129
+ .py-3 {
2130
+ padding-top: 1rem !important;
2131
+ }
2132
+
2133
+ .pr-3,
2134
+ .px-3 {
2135
+ padding-right: 1rem !important;
2136
+ }
2137
+
2138
+ .pb-3,
2139
+ .py-3 {
2140
+ padding-bottom: 1rem !important;
2141
+ }
2142
+
2143
+ .pl-3,
2144
+ .px-3 {
2145
+ padding-left: 1rem !important;
2146
+ }
2147
+
2148
+ .p-4 {
2149
+ padding: 1.5rem !important;
2150
+ }
2151
+
2152
+ .pt-4,
2153
+ .py-4 {
2154
+ padding-top: 1.5rem !important;
2155
+ }
2156
+
2157
+ .pr-4,
2158
+ .px-4 {
2159
+ padding-right: 1.5rem !important;
2160
+ }
2161
+
2162
+ .pb-4,
2163
+ .py-4 {
2164
+ padding-bottom: 1.5rem !important;
2165
+ }
2166
+
2167
+ .pl-4,
2168
+ .px-4 {
2169
+ padding-left: 1.5rem !important;
2170
+ }
2171
+
2172
+ .p-5 {
2173
+ padding: 3rem !important;
2174
+ }
2175
+
2176
+ .pt-5,
2177
+ .py-5 {
2178
+ padding-top: 3rem !important;
2179
+ }
2180
+
2181
+ .pr-5,
2182
+ .px-5 {
2183
+ padding-right: 3rem !important;
2184
+ }
2185
+
2186
+ .pb-5,
2187
+ .py-5 {
2188
+ padding-bottom: 3rem !important;
2189
+ }
2190
+
2191
+ .pl-5,
2192
+ .px-5 {
2193
+ padding-left: 3rem !important;
2194
+ }
2195
+
2196
+ .m-n1 {
2197
+ margin: -0.25rem !important;
2198
+ }
2199
+
2200
+ .mt-n1,
2201
+ .my-n1 {
2202
+ margin-top: -0.25rem !important;
2203
+ }
2204
+
2205
+ .mr-n1,
2206
+ .mx-n1 {
2207
+ margin-right: -0.25rem !important;
2208
+ }
2209
+
2210
+ .mb-n1,
2211
+ .my-n1 {
2212
+ margin-bottom: -0.25rem !important;
2213
+ }
2214
+
2215
+ .ml-n1,
2216
+ .mx-n1 {
2217
+ margin-left: -0.25rem !important;
2218
+ }
2219
+
2220
+ .m-n2 {
2221
+ margin: -0.5rem !important;
2222
+ }
2223
+
2224
+ .mt-n2,
2225
+ .my-n2 {
2226
+ margin-top: -0.5rem !important;
2227
+ }
2228
+
2229
+ .mr-n2,
2230
+ .mx-n2 {
2231
+ margin-right: -0.5rem !important;
2232
+ }
2233
+
2234
+ .mb-n2,
2235
+ .my-n2 {
2236
+ margin-bottom: -0.5rem !important;
2237
+ }
2238
+
2239
+ .ml-n2,
2240
+ .mx-n2 {
2241
+ margin-left: -0.5rem !important;
2242
+ }
2243
+
2244
+ .m-n3 {
2245
+ margin: -1rem !important;
2246
+ }
2247
+
2248
+ .mt-n3,
2249
+ .my-n3 {
2250
+ margin-top: -1rem !important;
2251
+ }
2252
+
2253
+ .mr-n3,
2254
+ .mx-n3 {
2255
+ margin-right: -1rem !important;
2256
+ }
2257
+
2258
+ .mb-n3,
2259
+ .my-n3 {
2260
+ margin-bottom: -1rem !important;
2261
+ }
2262
+
2263
+ .ml-n3,
2264
+ .mx-n3 {
2265
+ margin-left: -1rem !important;
2266
+ }
2267
+
2268
+ .m-n4 {
2269
+ margin: -1.5rem !important;
2270
+ }
2271
+
2272
+ .mt-n4,
2273
+ .my-n4 {
2274
+ margin-top: -1.5rem !important;
2275
+ }
2276
+
2277
+ .mr-n4,
2278
+ .mx-n4 {
2279
+ margin-right: -1.5rem !important;
2280
+ }
2281
+
2282
+ .mb-n4,
2283
+ .my-n4 {
2284
+ margin-bottom: -1.5rem !important;
2285
+ }
2286
+
2287
+ .ml-n4,
2288
+ .mx-n4 {
2289
+ margin-left: -1.5rem !important;
2290
+ }
2291
+
2292
+ .m-n5 {
2293
+ margin: -3rem !important;
2294
+ }
2295
+
2296
+ .mt-n5,
2297
+ .my-n5 {
2298
+ margin-top: -3rem !important;
2299
+ }
2300
+
2301
+ .mr-n5,
2302
+ .mx-n5 {
2303
+ margin-right: -3rem !important;
2304
+ }
2305
+
2306
+ .mb-n5,
2307
+ .my-n5 {
2308
+ margin-bottom: -3rem !important;
2309
+ }
2310
+
2311
+ .ml-n5,
2312
+ .mx-n5 {
2313
+ margin-left: -3rem !important;
2314
+ }
2315
+
2316
+ .m-auto {
2317
+ margin: auto !important;
2318
+ }
2319
+
2320
+ .mt-auto,
2321
+ .my-auto {
2322
+ margin-top: auto !important;
2323
+ }
2324
+
2325
+ .mr-auto,
2326
+ .mx-auto {
2327
+ margin-right: auto !important;
2328
+ }
2329
+
2330
+ .mb-auto,
2331
+ .my-auto {
2332
+ margin-bottom: auto !important;
2333
+ }
2334
+
2335
+ .ml-auto,
2336
+ .mx-auto {
2337
+ margin-left: auto !important;
2338
+ }
2339
+
2340
+ @media (min-width: 576px) {
2341
+ .m-sm-0 {
2342
+ margin: 0 !important;
2343
+ }
2344
+ .mt-sm-0,
2345
+ .my-sm-0 {
2346
+ margin-top: 0 !important;
2347
+ }
2348
+ .mr-sm-0,
2349
+ .mx-sm-0 {
2350
+ margin-right: 0 !important;
2351
+ }
2352
+ .mb-sm-0,
2353
+ .my-sm-0 {
2354
+ margin-bottom: 0 !important;
2355
+ }
2356
+ .ml-sm-0,
2357
+ .mx-sm-0 {
2358
+ margin-left: 0 !important;
2359
+ }
2360
+ .m-sm-1 {
2361
+ margin: 0.25rem !important;
2362
+ }
2363
+ .mt-sm-1,
2364
+ .my-sm-1 {
2365
+ margin-top: 0.25rem !important;
2366
+ }
2367
+ .mr-sm-1,
2368
+ .mx-sm-1 {
2369
+ margin-right: 0.25rem !important;
2370
+ }
2371
+ .mb-sm-1,
2372
+ .my-sm-1 {
2373
+ margin-bottom: 0.25rem !important;
2374
+ }
2375
+ .ml-sm-1,
2376
+ .mx-sm-1 {
2377
+ margin-left: 0.25rem !important;
2378
+ }
2379
+ .m-sm-2 {
2380
+ margin: 0.5rem !important;
2381
+ }
2382
+ .mt-sm-2,
2383
+ .my-sm-2 {
2384
+ margin-top: 0.5rem !important;
2385
+ }
2386
+ .mr-sm-2,
2387
+ .mx-sm-2 {
2388
+ margin-right: 0.5rem !important;
2389
+ }
2390
+ .mb-sm-2,
2391
+ .my-sm-2 {
2392
+ margin-bottom: 0.5rem !important;
2393
+ }
2394
+ .ml-sm-2,
2395
+ .mx-sm-2 {
2396
+ margin-left: 0.5rem !important;
2397
+ }
2398
+ .m-sm-3 {
2399
+ margin: 1rem !important;
2400
+ }
2401
+ .mt-sm-3,
2402
+ .my-sm-3 {
2403
+ margin-top: 1rem !important;
2404
+ }
2405
+ .mr-sm-3,
2406
+ .mx-sm-3 {
2407
+ margin-right: 1rem !important;
2408
+ }
2409
+ .mb-sm-3,
2410
+ .my-sm-3 {
2411
+ margin-bottom: 1rem !important;
2412
+ }
2413
+ .ml-sm-3,
2414
+ .mx-sm-3 {
2415
+ margin-left: 1rem !important;
2416
+ }
2417
+ .m-sm-4 {
2418
+ margin: 1.5rem !important;
2419
+ }
2420
+ .mt-sm-4,
2421
+ .my-sm-4 {
2422
+ margin-top: 1.5rem !important;
2423
+ }
2424
+ .mr-sm-4,
2425
+ .mx-sm-4 {
2426
+ margin-right: 1.5rem !important;
2427
+ }
2428
+ .mb-sm-4,
2429
+ .my-sm-4 {
2430
+ margin-bottom: 1.5rem !important;
2431
+ }
2432
+ .ml-sm-4,
2433
+ .mx-sm-4 {
2434
+ margin-left: 1.5rem !important;
2435
+ }
2436
+ .m-sm-5 {
2437
+ margin: 3rem !important;
2438
+ }
2439
+ .mt-sm-5,
2440
+ .my-sm-5 {
2441
+ margin-top: 3rem !important;
2442
+ }
2443
+ .mr-sm-5,
2444
+ .mx-sm-5 {
2445
+ margin-right: 3rem !important;
2446
+ }
2447
+ .mb-sm-5,
2448
+ .my-sm-5 {
2449
+ margin-bottom: 3rem !important;
2450
+ }
2451
+ .ml-sm-5,
2452
+ .mx-sm-5 {
2453
+ margin-left: 3rem !important;
2454
+ }
2455
+ .p-sm-0 {
2456
+ padding: 0 !important;
2457
+ }
2458
+ .pt-sm-0,
2459
+ .py-sm-0 {
2460
+ padding-top: 0 !important;
2461
+ }
2462
+ .pr-sm-0,
2463
+ .px-sm-0 {
2464
+ padding-right: 0 !important;
2465
+ }
2466
+ .pb-sm-0,
2467
+ .py-sm-0 {
2468
+ padding-bottom: 0 !important;
2469
+ }
2470
+ .pl-sm-0,
2471
+ .px-sm-0 {
2472
+ padding-left: 0 !important;
2473
+ }
2474
+ .p-sm-1 {
2475
+ padding: 0.25rem !important;
2476
+ }
2477
+ .pt-sm-1,
2478
+ .py-sm-1 {
2479
+ padding-top: 0.25rem !important;
2480
+ }
2481
+ .pr-sm-1,
2482
+ .px-sm-1 {
2483
+ padding-right: 0.25rem !important;
2484
+ }
2485
+ .pb-sm-1,
2486
+ .py-sm-1 {
2487
+ padding-bottom: 0.25rem !important;
2488
+ }
2489
+ .pl-sm-1,
2490
+ .px-sm-1 {
2491
+ padding-left: 0.25rem !important;
2492
+ }
2493
+ .p-sm-2 {
2494
+ padding: 0.5rem !important;
2495
+ }
2496
+ .pt-sm-2,
2497
+ .py-sm-2 {
2498
+ padding-top: 0.5rem !important;
2499
+ }
2500
+ .pr-sm-2,
2501
+ .px-sm-2 {
2502
+ padding-right: 0.5rem !important;
2503
+ }
2504
+ .pb-sm-2,
2505
+ .py-sm-2 {
2506
+ padding-bottom: 0.5rem !important;
2507
+ }
2508
+ .pl-sm-2,
2509
+ .px-sm-2 {
2510
+ padding-left: 0.5rem !important;
2511
+ }
2512
+ .p-sm-3 {
2513
+ padding: 1rem !important;
2514
+ }
2515
+ .pt-sm-3,
2516
+ .py-sm-3 {
2517
+ padding-top: 1rem !important;
2518
+ }
2519
+ .pr-sm-3,
2520
+ .px-sm-3 {
2521
+ padding-right: 1rem !important;
2522
+ }
2523
+ .pb-sm-3,
2524
+ .py-sm-3 {
2525
+ padding-bottom: 1rem !important;
2526
+ }
2527
+ .pl-sm-3,
2528
+ .px-sm-3 {
2529
+ padding-left: 1rem !important;
2530
+ }
2531
+ .p-sm-4 {
2532
+ padding: 1.5rem !important;
2533
+ }
2534
+ .pt-sm-4,
2535
+ .py-sm-4 {
2536
+ padding-top: 1.5rem !important;
2537
+ }
2538
+ .pr-sm-4,
2539
+ .px-sm-4 {
2540
+ padding-right: 1.5rem !important;
2541
+ }
2542
+ .pb-sm-4,
2543
+ .py-sm-4 {
2544
+ padding-bottom: 1.5rem !important;
2545
+ }
2546
+ .pl-sm-4,
2547
+ .px-sm-4 {
2548
+ padding-left: 1.5rem !important;
2549
+ }
2550
+ .p-sm-5 {
2551
+ padding: 3rem !important;
2552
+ }
2553
+ .pt-sm-5,
2554
+ .py-sm-5 {
2555
+ padding-top: 3rem !important;
2556
+ }
2557
+ .pr-sm-5,
2558
+ .px-sm-5 {
2559
+ padding-right: 3rem !important;
2560
+ }
2561
+ .pb-sm-5,
2562
+ .py-sm-5 {
2563
+ padding-bottom: 3rem !important;
2564
+ }
2565
+ .pl-sm-5,
2566
+ .px-sm-5 {
2567
+ padding-left: 3rem !important;
2568
+ }
2569
+ .m-sm-n1 {
2570
+ margin: -0.25rem !important;
2571
+ }
2572
+ .mt-sm-n1,
2573
+ .my-sm-n1 {
2574
+ margin-top: -0.25rem !important;
2575
+ }
2576
+ .mr-sm-n1,
2577
+ .mx-sm-n1 {
2578
+ margin-right: -0.25rem !important;
2579
+ }
2580
+ .mb-sm-n1,
2581
+ .my-sm-n1 {
2582
+ margin-bottom: -0.25rem !important;
2583
+ }
2584
+ .ml-sm-n1,
2585
+ .mx-sm-n1 {
2586
+ margin-left: -0.25rem !important;
2587
+ }
2588
+ .m-sm-n2 {
2589
+ margin: -0.5rem !important;
2590
+ }
2591
+ .mt-sm-n2,
2592
+ .my-sm-n2 {
2593
+ margin-top: -0.5rem !important;
2594
+ }
2595
+ .mr-sm-n2,
2596
+ .mx-sm-n2 {
2597
+ margin-right: -0.5rem !important;
2598
+ }
2599
+ .mb-sm-n2,
2600
+ .my-sm-n2 {
2601
+ margin-bottom: -0.5rem !important;
2602
+ }
2603
+ .ml-sm-n2,
2604
+ .mx-sm-n2 {
2605
+ margin-left: -0.5rem !important;
2606
+ }
2607
+ .m-sm-n3 {
2608
+ margin: -1rem !important;
2609
+ }
2610
+ .mt-sm-n3,
2611
+ .my-sm-n3 {
2612
+ margin-top: -1rem !important;
2613
+ }
2614
+ .mr-sm-n3,
2615
+ .mx-sm-n3 {
2616
+ margin-right: -1rem !important;
2617
+ }
2618
+ .mb-sm-n3,
2619
+ .my-sm-n3 {
2620
+ margin-bottom: -1rem !important;
2621
+ }
2622
+ .ml-sm-n3,
2623
+ .mx-sm-n3 {
2624
+ margin-left: -1rem !important;
2625
+ }
2626
+ .m-sm-n4 {
2627
+ margin: -1.5rem !important;
2628
+ }
2629
+ .mt-sm-n4,
2630
+ .my-sm-n4 {
2631
+ margin-top: -1.5rem !important;
2632
+ }
2633
+ .mr-sm-n4,
2634
+ .mx-sm-n4 {
2635
+ margin-right: -1.5rem !important;
2636
+ }
2637
+ .mb-sm-n4,
2638
+ .my-sm-n4 {
2639
+ margin-bottom: -1.5rem !important;
2640
+ }
2641
+ .ml-sm-n4,
2642
+ .mx-sm-n4 {
2643
+ margin-left: -1.5rem !important;
2644
+ }
2645
+ .m-sm-n5 {
2646
+ margin: -3rem !important;
2647
+ }
2648
+ .mt-sm-n5,
2649
+ .my-sm-n5 {
2650
+ margin-top: -3rem !important;
2651
+ }
2652
+ .mr-sm-n5,
2653
+ .mx-sm-n5 {
2654
+ margin-right: -3rem !important;
2655
+ }
2656
+ .mb-sm-n5,
2657
+ .my-sm-n5 {
2658
+ margin-bottom: -3rem !important;
2659
+ }
2660
+ .ml-sm-n5,
2661
+ .mx-sm-n5 {
2662
+ margin-left: -3rem !important;
2663
+ }
2664
+ .m-sm-auto {
2665
+ margin: auto !important;
2666
+ }
2667
+ .mt-sm-auto,
2668
+ .my-sm-auto {
2669
+ margin-top: auto !important;
2670
+ }
2671
+ .mr-sm-auto,
2672
+ .mx-sm-auto {
2673
+ margin-right: auto !important;
2674
+ }
2675
+ .mb-sm-auto,
2676
+ .my-sm-auto {
2677
+ margin-bottom: auto !important;
2678
+ }
2679
+ .ml-sm-auto,
2680
+ .mx-sm-auto {
2681
+ margin-left: auto !important;
2682
+ }
2683
+ }
2684
+
2685
+ @media (min-width: 768px) {
2686
+ .m-md-0 {
2687
+ margin: 0 !important;
2688
+ }
2689
+ .mt-md-0,
2690
+ .my-md-0 {
2691
+ margin-top: 0 !important;
2692
+ }
2693
+ .mr-md-0,
2694
+ .mx-md-0 {
2695
+ margin-right: 0 !important;
2696
+ }
2697
+ .mb-md-0,
2698
+ .my-md-0 {
2699
+ margin-bottom: 0 !important;
2700
+ }
2701
+ .ml-md-0,
2702
+ .mx-md-0 {
2703
+ margin-left: 0 !important;
2704
+ }
2705
+ .m-md-1 {
2706
+ margin: 0.25rem !important;
2707
+ }
2708
+ .mt-md-1,
2709
+ .my-md-1 {
2710
+ margin-top: 0.25rem !important;
2711
+ }
2712
+ .mr-md-1,
2713
+ .mx-md-1 {
2714
+ margin-right: 0.25rem !important;
2715
+ }
2716
+ .mb-md-1,
2717
+ .my-md-1 {
2718
+ margin-bottom: 0.25rem !important;
2719
+ }
2720
+ .ml-md-1,
2721
+ .mx-md-1 {
2722
+ margin-left: 0.25rem !important;
2723
+ }
2724
+ .m-md-2 {
2725
+ margin: 0.5rem !important;
2726
+ }
2727
+ .mt-md-2,
2728
+ .my-md-2 {
2729
+ margin-top: 0.5rem !important;
2730
+ }
2731
+ .mr-md-2,
2732
+ .mx-md-2 {
2733
+ margin-right: 0.5rem !important;
2734
+ }
2735
+ .mb-md-2,
2736
+ .my-md-2 {
2737
+ margin-bottom: 0.5rem !important;
2738
+ }
2739
+ .ml-md-2,
2740
+ .mx-md-2 {
2741
+ margin-left: 0.5rem !important;
2742
+ }
2743
+ .m-md-3 {
2744
+ margin: 1rem !important;
2745
+ }
2746
+ .mt-md-3,
2747
+ .my-md-3 {
2748
+ margin-top: 1rem !important;
2749
+ }
2750
+ .mr-md-3,
2751
+ .mx-md-3 {
2752
+ margin-right: 1rem !important;
2753
+ }
2754
+ .mb-md-3,
2755
+ .my-md-3 {
2756
+ margin-bottom: 1rem !important;
2757
+ }
2758
+ .ml-md-3,
2759
+ .mx-md-3 {
2760
+ margin-left: 1rem !important;
2761
+ }
2762
+ .m-md-4 {
2763
+ margin: 1.5rem !important;
2764
+ }
2765
+ .mt-md-4,
2766
+ .my-md-4 {
2767
+ margin-top: 1.5rem !important;
2768
+ }
2769
+ .mr-md-4,
2770
+ .mx-md-4 {
2771
+ margin-right: 1.5rem !important;
2772
+ }
2773
+ .mb-md-4,
2774
+ .my-md-4 {
2775
+ margin-bottom: 1.5rem !important;
2776
+ }
2777
+ .ml-md-4,
2778
+ .mx-md-4 {
2779
+ margin-left: 1.5rem !important;
2780
+ }
2781
+ .m-md-5 {
2782
+ margin: 3rem !important;
2783
+ }
2784
+ .mt-md-5,
2785
+ .my-md-5 {
2786
+ margin-top: 3rem !important;
2787
+ }
2788
+ .mr-md-5,
2789
+ .mx-md-5 {
2790
+ margin-right: 3rem !important;
2791
+ }
2792
+ .mb-md-5,
2793
+ .my-md-5 {
2794
+ margin-bottom: 3rem !important;
2795
+ }
2796
+ .ml-md-5,
2797
+ .mx-md-5 {
2798
+ margin-left: 3rem !important;
2799
+ }
2800
+ .p-md-0 {
2801
+ padding: 0 !important;
2802
+ }
2803
+ .pt-md-0,
2804
+ .py-md-0 {
2805
+ padding-top: 0 !important;
2806
+ }
2807
+ .pr-md-0,
2808
+ .px-md-0 {
2809
+ padding-right: 0 !important;
2810
+ }
2811
+ .pb-md-0,
2812
+ .py-md-0 {
2813
+ padding-bottom: 0 !important;
2814
+ }
2815
+ .pl-md-0,
2816
+ .px-md-0 {
2817
+ padding-left: 0 !important;
2818
+ }
2819
+ .p-md-1 {
2820
+ padding: 0.25rem !important;
2821
+ }
2822
+ .pt-md-1,
2823
+ .py-md-1 {
2824
+ padding-top: 0.25rem !important;
2825
+ }
2826
+ .pr-md-1,
2827
+ .px-md-1 {
2828
+ padding-right: 0.25rem !important;
2829
+ }
2830
+ .pb-md-1,
2831
+ .py-md-1 {
2832
+ padding-bottom: 0.25rem !important;
2833
+ }
2834
+ .pl-md-1,
2835
+ .px-md-1 {
2836
+ padding-left: 0.25rem !important;
2837
+ }
2838
+ .p-md-2 {
2839
+ padding: 0.5rem !important;
2840
+ }
2841
+ .pt-md-2,
2842
+ .py-md-2 {
2843
+ padding-top: 0.5rem !important;
2844
+ }
2845
+ .pr-md-2,
2846
+ .px-md-2 {
2847
+ padding-right: 0.5rem !important;
2848
+ }
2849
+ .pb-md-2,
2850
+ .py-md-2 {
2851
+ padding-bottom: 0.5rem !important;
2852
+ }
2853
+ .pl-md-2,
2854
+ .px-md-2 {
2855
+ padding-left: 0.5rem !important;
2856
+ }
2857
+ .p-md-3 {
2858
+ padding: 1rem !important;
2859
+ }
2860
+ .pt-md-3,
2861
+ .py-md-3 {
2862
+ padding-top: 1rem !important;
2863
+ }
2864
+ .pr-md-3,
2865
+ .px-md-3 {
2866
+ padding-right: 1rem !important;
2867
+ }
2868
+ .pb-md-3,
2869
+ .py-md-3 {
2870
+ padding-bottom: 1rem !important;
2871
+ }
2872
+ .pl-md-3,
2873
+ .px-md-3 {
2874
+ padding-left: 1rem !important;
2875
+ }
2876
+ .p-md-4 {
2877
+ padding: 1.5rem !important;
2878
+ }
2879
+ .pt-md-4,
2880
+ .py-md-4 {
2881
+ padding-top: 1.5rem !important;
2882
+ }
2883
+ .pr-md-4,
2884
+ .px-md-4 {
2885
+ padding-right: 1.5rem !important;
2886
+ }
2887
+ .pb-md-4,
2888
+ .py-md-4 {
2889
+ padding-bottom: 1.5rem !important;
2890
+ }
2891
+ .pl-md-4,
2892
+ .px-md-4 {
2893
+ padding-left: 1.5rem !important;
2894
+ }
2895
+ .p-md-5 {
2896
+ padding: 3rem !important;
2897
+ }
2898
+ .pt-md-5,
2899
+ .py-md-5 {
2900
+ padding-top: 3rem !important;
2901
+ }
2902
+ .pr-md-5,
2903
+ .px-md-5 {
2904
+ padding-right: 3rem !important;
2905
+ }
2906
+ .pb-md-5,
2907
+ .py-md-5 {
2908
+ padding-bottom: 3rem !important;
2909
+ }
2910
+ .pl-md-5,
2911
+ .px-md-5 {
2912
+ padding-left: 3rem !important;
2913
+ }
2914
+ .m-md-n1 {
2915
+ margin: -0.25rem !important;
2916
+ }
2917
+ .mt-md-n1,
2918
+ .my-md-n1 {
2919
+ margin-top: -0.25rem !important;
2920
+ }
2921
+ .mr-md-n1,
2922
+ .mx-md-n1 {
2923
+ margin-right: -0.25rem !important;
2924
+ }
2925
+ .mb-md-n1,
2926
+ .my-md-n1 {
2927
+ margin-bottom: -0.25rem !important;
2928
+ }
2929
+ .ml-md-n1,
2930
+ .mx-md-n1 {
2931
+ margin-left: -0.25rem !important;
2932
+ }
2933
+ .m-md-n2 {
2934
+ margin: -0.5rem !important;
2935
+ }
2936
+ .mt-md-n2,
2937
+ .my-md-n2 {
2938
+ margin-top: -0.5rem !important;
2939
+ }
2940
+ .mr-md-n2,
2941
+ .mx-md-n2 {
2942
+ margin-right: -0.5rem !important;
2943
+ }
2944
+ .mb-md-n2,
2945
+ .my-md-n2 {
2946
+ margin-bottom: -0.5rem !important;
2947
+ }
2948
+ .ml-md-n2,
2949
+ .mx-md-n2 {
2950
+ margin-left: -0.5rem !important;
2951
+ }
2952
+ .m-md-n3 {
2953
+ margin: -1rem !important;
2954
+ }
2955
+ .mt-md-n3,
2956
+ .my-md-n3 {
2957
+ margin-top: -1rem !important;
2958
+ }
2959
+ .mr-md-n3,
2960
+ .mx-md-n3 {
2961
+ margin-right: -1rem !important;
2962
+ }
2963
+ .mb-md-n3,
2964
+ .my-md-n3 {
2965
+ margin-bottom: -1rem !important;
2966
+ }
2967
+ .ml-md-n3,
2968
+ .mx-md-n3 {
2969
+ margin-left: -1rem !important;
2970
+ }
2971
+ .m-md-n4 {
2972
+ margin: -1.5rem !important;
2973
+ }
2974
+ .mt-md-n4,
2975
+ .my-md-n4 {
2976
+ margin-top: -1.5rem !important;
2977
+ }
2978
+ .mr-md-n4,
2979
+ .mx-md-n4 {
2980
+ margin-right: -1.5rem !important;
2981
+ }
2982
+ .mb-md-n4,
2983
+ .my-md-n4 {
2984
+ margin-bottom: -1.5rem !important;
2985
+ }
2986
+ .ml-md-n4,
2987
+ .mx-md-n4 {
2988
+ margin-left: -1.5rem !important;
2989
+ }
2990
+ .m-md-n5 {
2991
+ margin: -3rem !important;
2992
+ }
2993
+ .mt-md-n5,
2994
+ .my-md-n5 {
2995
+ margin-top: -3rem !important;
2996
+ }
2997
+ .mr-md-n5,
2998
+ .mx-md-n5 {
2999
+ margin-right: -3rem !important;
3000
+ }
3001
+ .mb-md-n5,
3002
+ .my-md-n5 {
3003
+ margin-bottom: -3rem !important;
3004
+ }
3005
+ .ml-md-n5,
3006
+ .mx-md-n5 {
3007
+ margin-left: -3rem !important;
3008
+ }
3009
+ .m-md-auto {
3010
+ margin: auto !important;
3011
+ }
3012
+ .mt-md-auto,
3013
+ .my-md-auto {
3014
+ margin-top: auto !important;
3015
+ }
3016
+ .mr-md-auto,
3017
+ .mx-md-auto {
3018
+ margin-right: auto !important;
3019
+ }
3020
+ .mb-md-auto,
3021
+ .my-md-auto {
3022
+ margin-bottom: auto !important;
3023
+ }
3024
+ .ml-md-auto,
3025
+ .mx-md-auto {
3026
+ margin-left: auto !important;
3027
+ }
3028
+ }
3029
+
3030
+ @media (min-width: 992px) {
3031
+ .m-lg-0 {
3032
+ margin: 0 !important;
3033
+ }
3034
+ .mt-lg-0,
3035
+ .my-lg-0 {
3036
+ margin-top: 0 !important;
3037
+ }
3038
+ .mr-lg-0,
3039
+ .mx-lg-0 {
3040
+ margin-right: 0 !important;
3041
+ }
3042
+ .mb-lg-0,
3043
+ .my-lg-0 {
3044
+ margin-bottom: 0 !important;
3045
+ }
3046
+ .ml-lg-0,
3047
+ .mx-lg-0 {
3048
+ margin-left: 0 !important;
3049
+ }
3050
+ .m-lg-1 {
3051
+ margin: 0.25rem !important;
3052
+ }
3053
+ .mt-lg-1,
3054
+ .my-lg-1 {
3055
+ margin-top: 0.25rem !important;
3056
+ }
3057
+ .mr-lg-1,
3058
+ .mx-lg-1 {
3059
+ margin-right: 0.25rem !important;
3060
+ }
3061
+ .mb-lg-1,
3062
+ .my-lg-1 {
3063
+ margin-bottom: 0.25rem !important;
3064
+ }
3065
+ .ml-lg-1,
3066
+ .mx-lg-1 {
3067
+ margin-left: 0.25rem !important;
3068
+ }
3069
+ .m-lg-2 {
3070
+ margin: 0.5rem !important;
3071
+ }
3072
+ .mt-lg-2,
3073
+ .my-lg-2 {
3074
+ margin-top: 0.5rem !important;
3075
+ }
3076
+ .mr-lg-2,
3077
+ .mx-lg-2 {
3078
+ margin-right: 0.5rem !important;
3079
+ }
3080
+ .mb-lg-2,
3081
+ .my-lg-2 {
3082
+ margin-bottom: 0.5rem !important;
3083
+ }
3084
+ .ml-lg-2,
3085
+ .mx-lg-2 {
3086
+ margin-left: 0.5rem !important;
3087
+ }
3088
+ .m-lg-3 {
3089
+ margin: 1rem !important;
3090
+ }
3091
+ .mt-lg-3,
3092
+ .my-lg-3 {
3093
+ margin-top: 1rem !important;
3094
+ }
3095
+ .mr-lg-3,
3096
+ .mx-lg-3 {
3097
+ margin-right: 1rem !important;
3098
+ }
3099
+ .mb-lg-3,
3100
+ .my-lg-3 {
3101
+ margin-bottom: 1rem !important;
3102
+ }
3103
+ .ml-lg-3,
3104
+ .mx-lg-3 {
3105
+ margin-left: 1rem !important;
3106
+ }
3107
+ .m-lg-4 {
3108
+ margin: 1.5rem !important;
3109
+ }
3110
+ .mt-lg-4,
3111
+ .my-lg-4 {
3112
+ margin-top: 1.5rem !important;
3113
+ }
3114
+ .mr-lg-4,
3115
+ .mx-lg-4 {
3116
+ margin-right: 1.5rem !important;
3117
+ }
3118
+ .mb-lg-4,
3119
+ .my-lg-4 {
3120
+ margin-bottom: 1.5rem !important;
3121
+ }
3122
+ .ml-lg-4,
3123
+ .mx-lg-4 {
3124
+ margin-left: 1.5rem !important;
3125
+ }
3126
+ .m-lg-5 {
3127
+ margin: 3rem !important;
3128
+ }
3129
+ .mt-lg-5,
3130
+ .my-lg-5 {
3131
+ margin-top: 3rem !important;
3132
+ }
3133
+ .mr-lg-5,
3134
+ .mx-lg-5 {
3135
+ margin-right: 3rem !important;
3136
+ }
3137
+ .mb-lg-5,
3138
+ .my-lg-5 {
3139
+ margin-bottom: 3rem !important;
3140
+ }
3141
+ .ml-lg-5,
3142
+ .mx-lg-5 {
3143
+ margin-left: 3rem !important;
3144
+ }
3145
+ .p-lg-0 {
3146
+ padding: 0 !important;
3147
+ }
3148
+ .pt-lg-0,
3149
+ .py-lg-0 {
3150
+ padding-top: 0 !important;
3151
+ }
3152
+ .pr-lg-0,
3153
+ .px-lg-0 {
3154
+ padding-right: 0 !important;
3155
+ }
3156
+ .pb-lg-0,
3157
+ .py-lg-0 {
3158
+ padding-bottom: 0 !important;
3159
+ }
3160
+ .pl-lg-0,
3161
+ .px-lg-0 {
3162
+ padding-left: 0 !important;
3163
+ }
3164
+ .p-lg-1 {
3165
+ padding: 0.25rem !important;
3166
+ }
3167
+ .pt-lg-1,
3168
+ .py-lg-1 {
3169
+ padding-top: 0.25rem !important;
3170
+ }
3171
+ .pr-lg-1,
3172
+ .px-lg-1 {
3173
+ padding-right: 0.25rem !important;
3174
+ }
3175
+ .pb-lg-1,
3176
+ .py-lg-1 {
3177
+ padding-bottom: 0.25rem !important;
3178
+ }
3179
+ .pl-lg-1,
3180
+ .px-lg-1 {
3181
+ padding-left: 0.25rem !important;
3182
+ }
3183
+ .p-lg-2 {
3184
+ padding: 0.5rem !important;
3185
+ }
3186
+ .pt-lg-2,
3187
+ .py-lg-2 {
3188
+ padding-top: 0.5rem !important;
3189
+ }
3190
+ .pr-lg-2,
3191
+ .px-lg-2 {
3192
+ padding-right: 0.5rem !important;
3193
+ }
3194
+ .pb-lg-2,
3195
+ .py-lg-2 {
3196
+ padding-bottom: 0.5rem !important;
3197
+ }
3198
+ .pl-lg-2,
3199
+ .px-lg-2 {
3200
+ padding-left: 0.5rem !important;
3201
+ }
3202
+ .p-lg-3 {
3203
+ padding: 1rem !important;
3204
+ }
3205
+ .pt-lg-3,
3206
+ .py-lg-3 {
3207
+ padding-top: 1rem !important;
3208
+ }
3209
+ .pr-lg-3,
3210
+ .px-lg-3 {
3211
+ padding-right: 1rem !important;
3212
+ }
3213
+ .pb-lg-3,
3214
+ .py-lg-3 {
3215
+ padding-bottom: 1rem !important;
3216
+ }
3217
+ .pl-lg-3,
3218
+ .px-lg-3 {
3219
+ padding-left: 1rem !important;
3220
+ }
3221
+ .p-lg-4 {
3222
+ padding: 1.5rem !important;
3223
+ }
3224
+ .pt-lg-4,
3225
+ .py-lg-4 {
3226
+ padding-top: 1.5rem !important;
3227
+ }
3228
+ .pr-lg-4,
3229
+ .px-lg-4 {
3230
+ padding-right: 1.5rem !important;
3231
+ }
3232
+ .pb-lg-4,
3233
+ .py-lg-4 {
3234
+ padding-bottom: 1.5rem !important;
3235
+ }
3236
+ .pl-lg-4,
3237
+ .px-lg-4 {
3238
+ padding-left: 1.5rem !important;
3239
+ }
3240
+ .p-lg-5 {
3241
+ padding: 3rem !important;
3242
+ }
3243
+ .pt-lg-5,
3244
+ .py-lg-5 {
3245
+ padding-top: 3rem !important;
3246
+ }
3247
+ .pr-lg-5,
3248
+ .px-lg-5 {
3249
+ padding-right: 3rem !important;
3250
+ }
3251
+ .pb-lg-5,
3252
+ .py-lg-5 {
3253
+ padding-bottom: 3rem !important;
3254
+ }
3255
+ .pl-lg-5,
3256
+ .px-lg-5 {
3257
+ padding-left: 3rem !important;
3258
+ }
3259
+ .m-lg-n1 {
3260
+ margin: -0.25rem !important;
3261
+ }
3262
+ .mt-lg-n1,
3263
+ .my-lg-n1 {
3264
+ margin-top: -0.25rem !important;
3265
+ }
3266
+ .mr-lg-n1,
3267
+ .mx-lg-n1 {
3268
+ margin-right: -0.25rem !important;
3269
+ }
3270
+ .mb-lg-n1,
3271
+ .my-lg-n1 {
3272
+ margin-bottom: -0.25rem !important;
3273
+ }
3274
+ .ml-lg-n1,
3275
+ .mx-lg-n1 {
3276
+ margin-left: -0.25rem !important;
3277
+ }
3278
+ .m-lg-n2 {
3279
+ margin: -0.5rem !important;
3280
+ }
3281
+ .mt-lg-n2,
3282
+ .my-lg-n2 {
3283
+ margin-top: -0.5rem !important;
3284
+ }
3285
+ .mr-lg-n2,
3286
+ .mx-lg-n2 {
3287
+ margin-right: -0.5rem !important;
3288
+ }
3289
+ .mb-lg-n2,
3290
+ .my-lg-n2 {
3291
+ margin-bottom: -0.5rem !important;
3292
+ }
3293
+ .ml-lg-n2,
3294
+ .mx-lg-n2 {
3295
+ margin-left: -0.5rem !important;
3296
+ }
3297
+ .m-lg-n3 {
3298
+ margin: -1rem !important;
3299
+ }
3300
+ .mt-lg-n3,
3301
+ .my-lg-n3 {
3302
+ margin-top: -1rem !important;
3303
+ }
3304
+ .mr-lg-n3,
3305
+ .mx-lg-n3 {
3306
+ margin-right: -1rem !important;
3307
+ }
3308
+ .mb-lg-n3,
3309
+ .my-lg-n3 {
3310
+ margin-bottom: -1rem !important;
3311
+ }
3312
+ .ml-lg-n3,
3313
+ .mx-lg-n3 {
3314
+ margin-left: -1rem !important;
3315
+ }
3316
+ .m-lg-n4 {
3317
+ margin: -1.5rem !important;
3318
+ }
3319
+ .mt-lg-n4,
3320
+ .my-lg-n4 {
3321
+ margin-top: -1.5rem !important;
3322
+ }
3323
+ .mr-lg-n4,
3324
+ .mx-lg-n4 {
3325
+ margin-right: -1.5rem !important;
3326
+ }
3327
+ .mb-lg-n4,
3328
+ .my-lg-n4 {
3329
+ margin-bottom: -1.5rem !important;
3330
+ }
3331
+ .ml-lg-n4,
3332
+ .mx-lg-n4 {
3333
+ margin-left: -1.5rem !important;
3334
+ }
3335
+ .m-lg-n5 {
3336
+ margin: -3rem !important;
3337
+ }
3338
+ .mt-lg-n5,
3339
+ .my-lg-n5 {
3340
+ margin-top: -3rem !important;
3341
+ }
3342
+ .mr-lg-n5,
3343
+ .mx-lg-n5 {
3344
+ margin-right: -3rem !important;
3345
+ }
3346
+ .mb-lg-n5,
3347
+ .my-lg-n5 {
3348
+ margin-bottom: -3rem !important;
3349
+ }
3350
+ .ml-lg-n5,
3351
+ .mx-lg-n5 {
3352
+ margin-left: -3rem !important;
3353
+ }
3354
+ .m-lg-auto {
3355
+ margin: auto !important;
3356
+ }
3357
+ .mt-lg-auto,
3358
+ .my-lg-auto {
3359
+ margin-top: auto !important;
3360
+ }
3361
+ .mr-lg-auto,
3362
+ .mx-lg-auto {
3363
+ margin-right: auto !important;
3364
+ }
3365
+ .mb-lg-auto,
3366
+ .my-lg-auto {
3367
+ margin-bottom: auto !important;
3368
+ }
3369
+ .ml-lg-auto,
3370
+ .mx-lg-auto {
3371
+ margin-left: auto !important;
3372
+ }
3373
+ }
3374
+
3375
+ @media (min-width: 1200px) {
3376
+ .m-xl-0 {
3377
+ margin: 0 !important;
3378
+ }
3379
+ .mt-xl-0,
3380
+ .my-xl-0 {
3381
+ margin-top: 0 !important;
3382
+ }
3383
+ .mr-xl-0,
3384
+ .mx-xl-0 {
3385
+ margin-right: 0 !important;
3386
+ }
3387
+ .mb-xl-0,
3388
+ .my-xl-0 {
3389
+ margin-bottom: 0 !important;
3390
+ }
3391
+ .ml-xl-0,
3392
+ .mx-xl-0 {
3393
+ margin-left: 0 !important;
3394
+ }
3395
+ .m-xl-1 {
3396
+ margin: 0.25rem !important;
3397
+ }
3398
+ .mt-xl-1,
3399
+ .my-xl-1 {
3400
+ margin-top: 0.25rem !important;
3401
+ }
3402
+ .mr-xl-1,
3403
+ .mx-xl-1 {
3404
+ margin-right: 0.25rem !important;
3405
+ }
3406
+ .mb-xl-1,
3407
+ .my-xl-1 {
3408
+ margin-bottom: 0.25rem !important;
3409
+ }
3410
+ .ml-xl-1,
3411
+ .mx-xl-1 {
3412
+ margin-left: 0.25rem !important;
3413
+ }
3414
+ .m-xl-2 {
3415
+ margin: 0.5rem !important;
3416
+ }
3417
+ .mt-xl-2,
3418
+ .my-xl-2 {
3419
+ margin-top: 0.5rem !important;
3420
+ }
3421
+ .mr-xl-2,
3422
+ .mx-xl-2 {
3423
+ margin-right: 0.5rem !important;
3424
+ }
3425
+ .mb-xl-2,
3426
+ .my-xl-2 {
3427
+ margin-bottom: 0.5rem !important;
3428
+ }
3429
+ .ml-xl-2,
3430
+ .mx-xl-2 {
3431
+ margin-left: 0.5rem !important;
3432
+ }
3433
+ .m-xl-3 {
3434
+ margin: 1rem !important;
3435
+ }
3436
+ .mt-xl-3,
3437
+ .my-xl-3 {
3438
+ margin-top: 1rem !important;
3439
+ }
3440
+ .mr-xl-3,
3441
+ .mx-xl-3 {
3442
+ margin-right: 1rem !important;
3443
+ }
3444
+ .mb-xl-3,
3445
+ .my-xl-3 {
3446
+ margin-bottom: 1rem !important;
3447
+ }
3448
+ .ml-xl-3,
3449
+ .mx-xl-3 {
3450
+ margin-left: 1rem !important;
3451
+ }
3452
+ .m-xl-4 {
3453
+ margin: 1.5rem !important;
3454
+ }
3455
+ .mt-xl-4,
3456
+ .my-xl-4 {
3457
+ margin-top: 1.5rem !important;
3458
+ }
3459
+ .mr-xl-4,
3460
+ .mx-xl-4 {
3461
+ margin-right: 1.5rem !important;
3462
+ }
3463
+ .mb-xl-4,
3464
+ .my-xl-4 {
3465
+ margin-bottom: 1.5rem !important;
3466
+ }
3467
+ .ml-xl-4,
3468
+ .mx-xl-4 {
3469
+ margin-left: 1.5rem !important;
3470
+ }
3471
+ .m-xl-5 {
3472
+ margin: 3rem !important;
3473
+ }
3474
+ .mt-xl-5,
3475
+ .my-xl-5 {
3476
+ margin-top: 3rem !important;
3477
+ }
3478
+ .mr-xl-5,
3479
+ .mx-xl-5 {
3480
+ margin-right: 3rem !important;
3481
+ }
3482
+ .mb-xl-5,
3483
+ .my-xl-5 {
3484
+ margin-bottom: 3rem !important;
3485
+ }
3486
+ .ml-xl-5,
3487
+ .mx-xl-5 {
3488
+ margin-left: 3rem !important;
3489
+ }
3490
+ .p-xl-0 {
3491
+ padding: 0 !important;
3492
+ }
3493
+ .pt-xl-0,
3494
+ .py-xl-0 {
3495
+ padding-top: 0 !important;
3496
+ }
3497
+ .pr-xl-0,
3498
+ .px-xl-0 {
3499
+ padding-right: 0 !important;
3500
+ }
3501
+ .pb-xl-0,
3502
+ .py-xl-0 {
3503
+ padding-bottom: 0 !important;
3504
+ }
3505
+ .pl-xl-0,
3506
+ .px-xl-0 {
3507
+ padding-left: 0 !important;
3508
+ }
3509
+ .p-xl-1 {
3510
+ padding: 0.25rem !important;
3511
+ }
3512
+ .pt-xl-1,
3513
+ .py-xl-1 {
3514
+ padding-top: 0.25rem !important;
3515
+ }
3516
+ .pr-xl-1,
3517
+ .px-xl-1 {
3518
+ padding-right: 0.25rem !important;
3519
+ }
3520
+ .pb-xl-1,
3521
+ .py-xl-1 {
3522
+ padding-bottom: 0.25rem !important;
3523
+ }
3524
+ .pl-xl-1,
3525
+ .px-xl-1 {
3526
+ padding-left: 0.25rem !important;
3527
+ }
3528
+ .p-xl-2 {
3529
+ padding: 0.5rem !important;
3530
+ }
3531
+ .pt-xl-2,
3532
+ .py-xl-2 {
3533
+ padding-top: 0.5rem !important;
3534
+ }
3535
+ .pr-xl-2,
3536
+ .px-xl-2 {
3537
+ padding-right: 0.5rem !important;
3538
+ }
3539
+ .pb-xl-2,
3540
+ .py-xl-2 {
3541
+ padding-bottom: 0.5rem !important;
3542
+ }
3543
+ .pl-xl-2,
3544
+ .px-xl-2 {
3545
+ padding-left: 0.5rem !important;
3546
+ }
3547
+ .p-xl-3 {
3548
+ padding: 1rem !important;
3549
+ }
3550
+ .pt-xl-3,
3551
+ .py-xl-3 {
3552
+ padding-top: 1rem !important;
3553
+ }
3554
+ .pr-xl-3,
3555
+ .px-xl-3 {
3556
+ padding-right: 1rem !important;
3557
+ }
3558
+ .pb-xl-3,
3559
+ .py-xl-3 {
3560
+ padding-bottom: 1rem !important;
3561
+ }
3562
+ .pl-xl-3,
3563
+ .px-xl-3 {
3564
+ padding-left: 1rem !important;
3565
+ }
3566
+ .p-xl-4 {
3567
+ padding: 1.5rem !important;
3568
+ }
3569
+ .pt-xl-4,
3570
+ .py-xl-4 {
3571
+ padding-top: 1.5rem !important;
3572
+ }
3573
+ .pr-xl-4,
3574
+ .px-xl-4 {
3575
+ padding-right: 1.5rem !important;
3576
+ }
3577
+ .pb-xl-4,
3578
+ .py-xl-4 {
3579
+ padding-bottom: 1.5rem !important;
3580
+ }
3581
+ .pl-xl-4,
3582
+ .px-xl-4 {
3583
+ padding-left: 1.5rem !important;
3584
+ }
3585
+ .p-xl-5 {
3586
+ padding: 3rem !important;
3587
+ }
3588
+ .pt-xl-5,
3589
+ .py-xl-5 {
3590
+ padding-top: 3rem !important;
3591
+ }
3592
+ .pr-xl-5,
3593
+ .px-xl-5 {
3594
+ padding-right: 3rem !important;
3595
+ }
3596
+ .pb-xl-5,
3597
+ .py-xl-5 {
3598
+ padding-bottom: 3rem !important;
3599
+ }
3600
+ .pl-xl-5,
3601
+ .px-xl-5 {
3602
+ padding-left: 3rem !important;
3603
+ }
3604
+ .m-xl-n1 {
3605
+ margin: -0.25rem !important;
3606
+ }
3607
+ .mt-xl-n1,
3608
+ .my-xl-n1 {
3609
+ margin-top: -0.25rem !important;
3610
+ }
3611
+ .mr-xl-n1,
3612
+ .mx-xl-n1 {
3613
+ margin-right: -0.25rem !important;
3614
+ }
3615
+ .mb-xl-n1,
3616
+ .my-xl-n1 {
3617
+ margin-bottom: -0.25rem !important;
3618
+ }
3619
+ .ml-xl-n1,
3620
+ .mx-xl-n1 {
3621
+ margin-left: -0.25rem !important;
3622
+ }
3623
+ .m-xl-n2 {
3624
+ margin: -0.5rem !important;
3625
+ }
3626
+ .mt-xl-n2,
3627
+ .my-xl-n2 {
3628
+ margin-top: -0.5rem !important;
3629
+ }
3630
+ .mr-xl-n2,
3631
+ .mx-xl-n2 {
3632
+ margin-right: -0.5rem !important;
3633
+ }
3634
+ .mb-xl-n2,
3635
+ .my-xl-n2 {
3636
+ margin-bottom: -0.5rem !important;
3637
+ }
3638
+ .ml-xl-n2,
3639
+ .mx-xl-n2 {
3640
+ margin-left: -0.5rem !important;
3641
+ }
3642
+ .m-xl-n3 {
3643
+ margin: -1rem !important;
3644
+ }
3645
+ .mt-xl-n3,
3646
+ .my-xl-n3 {
3647
+ margin-top: -1rem !important;
3648
+ }
3649
+ .mr-xl-n3,
3650
+ .mx-xl-n3 {
3651
+ margin-right: -1rem !important;
3652
+ }
3653
+ .mb-xl-n3,
3654
+ .my-xl-n3 {
3655
+ margin-bottom: -1rem !important;
3656
+ }
3657
+ .ml-xl-n3,
3658
+ .mx-xl-n3 {
3659
+ margin-left: -1rem !important;
3660
+ }
3661
+ .m-xl-n4 {
3662
+ margin: -1.5rem !important;
3663
+ }
3664
+ .mt-xl-n4,
3665
+ .my-xl-n4 {
3666
+ margin-top: -1.5rem !important;
3667
+ }
3668
+ .mr-xl-n4,
3669
+ .mx-xl-n4 {
3670
+ margin-right: -1.5rem !important;
3671
+ }
3672
+ .mb-xl-n4,
3673
+ .my-xl-n4 {
3674
+ margin-bottom: -1.5rem !important;
3675
+ }
3676
+ .ml-xl-n4,
3677
+ .mx-xl-n4 {
3678
+ margin-left: -1.5rem !important;
3679
+ }
3680
+ .m-xl-n5 {
3681
+ margin: -3rem !important;
3682
+ }
3683
+ .mt-xl-n5,
3684
+ .my-xl-n5 {
3685
+ margin-top: -3rem !important;
3686
+ }
3687
+ .mr-xl-n5,
3688
+ .mx-xl-n5 {
3689
+ margin-right: -3rem !important;
3690
+ }
3691
+ .mb-xl-n5,
3692
+ .my-xl-n5 {
3693
+ margin-bottom: -3rem !important;
3694
+ }
3695
+ .ml-xl-n5,
3696
+ .mx-xl-n5 {
3697
+ margin-left: -3rem !important;
3698
+ }
3699
+ .m-xl-auto {
3700
+ margin: auto !important;
3701
+ }
3702
+ .mt-xl-auto,
3703
+ .my-xl-auto {
3704
+ margin-top: auto !important;
3705
+ }
3706
+ .mr-xl-auto,
3707
+ .mx-xl-auto {
3708
+ margin-right: auto !important;
3709
+ }
3710
+ .mb-xl-auto,
3711
+ .my-xl-auto {
3712
+ margin-bottom: auto !important;
3713
+ }
3714
+ .ml-xl-auto,
3715
+ .mx-xl-auto {
3716
+ margin-left: auto !important;
3717
+ }
3718
+ }
3719
+ /*# sourceMappingURL=bootstrap-grid.css.map */