bridgetown_theme_single_page_opt_in 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 9710f9c05c6b80351bfde5f4ab3aa7b5724a6a47efd8f5e4cf695f23bc1943c4
4
+ data.tar.gz: 4a2de024f3bca66a8dc9df61de62252be0517d2cbfd221cf40070e118096d6ee
5
+ SHA512:
6
+ metadata.gz: bdfb7cec85ec267bd11ac6c117ba6efb52fcb0e5ee3fec8b1ec9a31686665e010a5184047065b16ca226c19b975370e48f33e329af6ac1120abe11644b9c46ec
7
+ data.tar.gz: cf41b7453d9cb13a2cad4cb8e04e474e9d42348804b3981ac492fcafe5a9ed9a2e62954e8408f9142840d1d51e51a61657bcd027ac9486287941dc97aa161207
data/.gitignore ADDED
@@ -0,0 +1,40 @@
1
+ /vendor
2
+ /.bundle/
3
+ /.yardoc
4
+ /Gemfile.lock
5
+ /_yardoc/
6
+ /coverage/
7
+ /doc/
8
+ /pkg/
9
+ /spec/reports/
10
+ /tmp/
11
+ *.bundle
12
+ *.so
13
+ *.o
14
+ *.a
15
+ mkmf.log
16
+ *.gem
17
+ Gemfile.lock
18
+ .bundle
19
+ .ruby-version
20
+
21
+ # Node
22
+ node_modules
23
+ .npm
24
+ .node_repl_history
25
+
26
+ # Yarn
27
+ yarn-error.log
28
+ yarn-debug.log*
29
+ .pnp/
30
+ .pnp.js
31
+
32
+ # Yarn Integrity file
33
+ .yarn-integrity
34
+
35
+ test/dest
36
+ .bridgetown-metadata
37
+ .bridgetown-cache
38
+ .bridgetown-webpack
39
+
40
+ .env
data/CHANGELOG.md ADDED
@@ -0,0 +1,8 @@
1
+ # Changelog
2
+
3
+ Just getting rolling with this :)
4
+
5
+ ## [0.1.0] - 2025-01-22
6
+ - First Push
7
+ - For now, I'm assuming no one is using this and will push updates at will.
8
+ - If you are using this by chance, reach out and lemme know and I'll pull my socks up a bit!
data/Gemfile ADDED
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+ gemspec
5
+
6
+ gem "bridgetown", ENV["BRIDGETOWN_VERSION"] if ENV["BRIDGETOWN_VERSION"]
7
+
8
+ group :test do
9
+ gem "minitest"
10
+ gem "minitest-profile"
11
+ gem "minitest-reporters"
12
+ end
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2020-present
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,65 @@
1
+ # Single page opt-in theme
2
+
3
+ A Bridgetown theme for a single-page opt-in to get you up and running with sellin your stuff quick!
4
+
5
+ ## Installation
6
+
7
+ You'll need [Bridgetown](https://www.bridgetownrb.com) & [Ruby](https://www.ruby-lang.org/en/)
8
+
9
+ Run this command to add this plugin to your site's Gemfile:
10
+
11
+ ```shell
12
+ bundle add bridgetown_theme_single_page_opt_in
13
+ ```
14
+
15
+ Then add the initializer to your configuration in `config/initializers.rb`:
16
+
17
+ ```ruby
18
+ init :bridgetown_theme_single_page_opt_in
19
+ ```
20
+
21
+ Or if there's a `bridgetown.automation.rb` automation script, you can run that instead for guided setup:
22
+
23
+ ```shell
24
+ bin/bridgetown apply https://github.com/username/my_awesome_plugin
25
+ ```
26
+
27
+ ## Usage
28
+
29
+ This theme is a template of
30
+
31
+ ### Optional configuration options
32
+
33
+ The plugin will automatically use any of the following metadata variables if they are present in your site's `_data/site_metadata.yml` file.
34
+
35
+
36
+
37
+ ## Testing
38
+
39
+ * Run `bundle exec rake test` to run the test suite
40
+ * Or run `script/cibuild` to validate with Rubocop and Minitest together.
41
+
42
+ ## Contributing
43
+
44
+ 1. Fork it (https://github.com/username/my-awesome-plugin/fork)
45
+ 2. Clone the fork using `git clone` to your local development machine.
46
+ 3. Create your feature branch (`git checkout -b my-new-feature`)
47
+ 4. Commit your changes (`git commit -am 'Add some feature'`)
48
+ 5. Push to the branch (`git push origin my-new-feature`)
49
+ 6. Create a new Pull Request
50
+
51
+ ----
52
+
53
+ ## Releasing (you can delete this section in your own plugin repo)
54
+
55
+ To release a new version of the plugin, simply bump up the version number in both `version.rb` and
56
+ `package.json`, and then run `script/release`. This will require you to have a registered account
57
+ with both the [RubyGems.org](https://rubygems.org) and [NPM](https://www.npmjs.com) registries.
58
+ You can optionally remove the `package.json` and `frontend` folder if you don't need to package frontend
59
+ assets for Webpack.
60
+
61
+ If you run into any problems or need further guidance, please check out our [Bridgetown community resources](https://www.bridgetownrb.com/docs/community)
62
+ where friendly folks are standing by to help you build and release your plugin or theme.
63
+
64
+ **NOTE:** make sure you add the `bridgetown-plugin` [topic](https://github.com/topics/bridgetown-plugin) to your
65
+ plugin's GitHub repo so the plugin or theme will show up on [Bridgetown's official Plugin Directory](https://www.bridgetownrb.com/plugins)! (There may be a day or so delay before you see it appear.)
@@ -0,0 +1,9 @@
1
+ gsub_file("config/initializers", "end", "init :bridgetown_theme_single_page_opt_in\nend")
2
+
3
+ append_to_file "frontend/styles/index.css" do
4
+ "@import \"bridgetown_theme_single_page_opt_in/frontend/styles/index.css\";"
5
+ end
6
+
7
+ copy_file("spoi_data/data/1_top_banner.yml", "src/_data/1_top_banner.yml")
8
+
9
+ # Read the Automations documentation: https://www.bridgetownrb.com/docs/automations
@@ -0,0 +1,27 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "lib/bridgetown_theme_single_page_opt_in/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "bridgetown_theme_single_page_opt_in"
7
+ spec.version = SinglePageOptInTheme::VERSION
8
+ spec.author = "graial"
9
+ spec.email = "graial@paglalayag.net"
10
+ spec.summary = "a template for getting your kicks in with online sales"
11
+ spec.homepage = "https://github.com/paglalayag/bridgetown_theme_single_page_opt_in"
12
+ spec.license = "MIT"
13
+
14
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r!^(test|script|spec|features|frontend)/!) }
15
+ spec.test_files = spec.files.grep(%r!^test/!)
16
+ spec.require_paths = ["lib"]
17
+ # Uncomment this if you wish to supply a companion NPM package:
18
+ # spec.metadata = { "yarn-add" => "bridgetown_theme_single_page_opt_in@#{SinglePageOptInTheme::VERSION}" }
19
+
20
+ spec.required_ruby_version = ">= 2.7.0"
21
+
22
+ spec.add_dependency "bridgetown", ">= 1.2.0", "< 2.0"
23
+
24
+ spec.add_development_dependency "bundler"
25
+ spec.add_development_dependency "rake", ">= 13.0"
26
+ spec.add_development_dependency "rubocop-bridgetown", "~> 0.3"
27
+ end
@@ -0,0 +1,15 @@
1
+ <div class="container fullContainer noTopMargin padding20-top padding20-bottom padding40H noBorder borderSolid border3px radius0 bgNoRepeat " style="padding-top: 0px; padding-bottom: 0px; outline: none; background-color: var(--blue);">
2
+ <div class="containerInner ui-sortable">
3
+ <div class="row bgCover noBorder borderSolid border3px radius0 P0-top P0-bottom P0H noTopMargin" style="padding-top: 5px; padding-bottom: 5px; margin: 0px; outline: none;">
4
+ <div class="col-md-12 innerContent col_left" style="outline: none;">
5
+ <div class="col-inner bgCover noBorder borderSolid border3px radius0 P0-top P0-bottom P0H noTopMargin" style="padding: 0 10px">
6
+ <div class="de elHeadlineWrapper ui-droppable de-editable" style="margin-top: 0px; outline: none; cursor: pointer; font-family: Lato, Helvetica, sans-serif !important;" aria-disabled="false" data-google-font="Lato">
7
+ <h1 class="ne elHeadline hsSize3 lh4 elMargin0 elBGStyle0 mfs_16" style="text-align: center; font-size: 22px; color: var(--white);">
8
+ {{ data.headline }} | <b><u>[{{ event.date | date: "%A, %B %d" }} {{ event.date | date: "%H:%M%P" }} {{ event.timezone }}]</u></b>
9
+ </h1>
10
+ </div>
11
+ </div>
12
+ </div>
13
+ </div>
14
+ </div>
15
+ </div>
@@ -0,0 +1,20 @@
1
+ <meta charset="utf-8" />
2
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
3
+ <meta content="utf-8" http-equiv="encoding">
4
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
5
+ {% capture resource_title %}{{ title | strip_html | strip_newlines }}{% endcapture %}
6
+ <title>{% if resource_title != "Index" %}{{ resource_title | escape }} | {{ metadata.title | escape }}{% else %}{{ metadata.title | escape }}: {{ metadata.tagline | escape }}{% endif %}</title>
7
+
8
+ <meta name="description" content="{{ metadata.description }}" />
9
+ <meta property="og:image" content="{{ metadata.og-image }}" id="social-image">
10
+ <meta property="og:title" content="{{ metadata.og-title }}">
11
+ <meta property="og:description" content="{{ metadata.og-description }}">
12
+ <meta property="og:url" content="{{ metadata.og-url }}">
13
+ <link rel="canonical" href="{{ metadata.canonical }}">
14
+ <link rel="icon" type="image/x-icon" href="/images/ss-favicon-32.ico">
15
+ <meta property="og:type" content="website">
16
+
17
+ <link rel="stylesheet" href="{% asset_path css %}" />
18
+ <script src="{% asset_path js %}" defer></script>
19
+
20
+ <link rel="icon" type="image/png" href="/images/favicon.png">
@@ -0,0 +1,316 @@
1
+ <style>
2
+ [data-timed-style='fade']{display:none}
3
+ [data-timed-style='scale']{display:none}
4
+ </style>
5
+
6
+ <style id="fit-vids-style">.fluid-width-video-wrapper{width:100%;position:relative;padding:0;}.fluid-width-video-wrapper iframe,.fluid-width-video-wrapper object,.fluid-width-video-wrapper embed {position:absolute;top:0;left:0;width:100%;height:100%;}
7
+ </style>
8
+ <style type="text/css">.addthisevent {visibility:hidden;}.addthisevent-drop ._url,.addthisevent-drop ._start,.addthisevent-drop ._end,.addthisevent-drop ._zonecode,.addthisevent-drop ._summary,.addthisevent-drop ._description,.addthisevent-drop ._location,.addthisevent-drop ._organizer,.addthisevent-drop ._organizer_email,.addthisevent-drop ._attendees,.addthisevent-drop ._facebook_event,.addthisevent-drop ._all_day_event {display:none!important;}
9
+ </style>
10
+ <style type="text/css" id="ate_css">.addthisevent-drop {display:inline-block;position:relative;font-family:arial;color:#333!important;background:#f4f4f4 url(https://addthisevent.com/gfx/icon-calendar-t1.png) no-repeat 9px 50%;text-decoration:none!important;border:1px solid #d9d9d9;color:#555;font-weight:bold;font-size:14px;text-decoration:none;padding:9px 12px 8px 35px;-moz-border-radius:2px;-webkit-border-radius:2px;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;}.addthisevent-drop:hover {border:1px solid #aab9d4;color:#555;font-weight:bold;font-size:14px;text-decoration:none!important;}.addthisevent-drop:active {top:1px;}.addthisevent-selected {background-color:#f7f7f7;}.addthisevent_dropdown {width:200px;position:absolute;z-index:99999;padding:6px 0px 0px 0px;background:#fff;text-align:left;display:none;margin-top:-2px;margin-left:-1px;border-top:1px solid #c8c8c8;border-right:1px solid #bebebe;border-bottom:1px solid #a8a8a8;border-left:1px solid #bebebe;-moz-border-radius:2px;-webkit-border-radius:2px;-webkit-box-shadow:1px 3px 6px rgba(0,0,0,0.15);-moz-box-shadow:1px 3px 6px rgba(0,0,0,0.15);box-shadow:1px 3px 6px rgba(0,0,0,0.15);}.addthisevent_dropdown span {display:block;cursor:pointer;line-height:110%;background:#fff;text-decoration:none;font-size:12px;color:#6d84b4;padding:8px 10px 9px 15px;}.addthisevent_dropdown span:hover {background:#f4f4f4;color:#6d84b4;text-decoration:none;font-size:12px;}.addthisevent span {display:none!important;}.addthisevent-drop ._url,.addthisevent-drop ._start,.addthisevent-drop ._end,.addthisevent-drop ._zonecode,.addthisevent-drop ._summary,.addthisevent-drop ._description,.addthisevent-drop ._location,.addthisevent-drop ._organizer,.addthisevent-drop ._organizer_email,.addthisevent-drop ._facebook_event,.addthisevent-drop ._all_day_event {display:none!important;}.addthisevent_dropdown .copyx {width:200px;height:21px;display:block;position:relative;cursor:default;}.addthisevent_dropdown .brx {width:180px;height:1px;overflow:hidden;background:#e0e0e0;position:absolute;z-index:100;left:10px;top:9px;}.addthisevent_dropdown .frs {position:absolute;top:5px;cursor:pointer;right:10px;padding-left:10px;font-style:normal;font-weight:normal;text-align:right;z-index:101;line-height:110%;background:#fff;text-decoration:none;font-size:9px;color:#cacaca;}.addthisevent_dropdown .frs:hover {color:#999!important;}
11
+ </style>
12
+ <style id="button_style_tmp_button-63383">#tmp_button-63383 .elButtonFlat:hover{background-color:#011017!important;}#tmp_button-63383 .elButtonBottomBorder:hover{background-color:#011017!important;}#tmp_button-63383 .elButtonSubtle:hover{background-color:#011017!important;}#tmp_button-63383 .elButtonGradient{background-image:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgb(4,44,61)),color-stop(1,#011017));background-image:-o-linear-gradient(bottom,rgb(4,44,61) 0%,#011017 100%);background-image:-moz-linear-gradient(bottom,rgb(4,44,61) 0%,#011017 100%);background-image:-webkit-linear-gradient(bottom,rgb(4,44,61) 0%,#011017 100%);background-image:-ms-linear-gradient(bottom,rgb(4,44,61) 0%,#011017 100%);background-image:linear-gradient(to bottom,rgb(4,44,61) 0%,#011017 100%);}#tmp_button-63383 .elButtonGradient:hover{background-image:-webkit-gradient(linear,left top,left bottom,color-stop(1,rgb(4,44,61)),color-stop(0,#011017));background-image:-o-linear-gradient(bottom,rgb(4,44,61) 100%,#011017 0%);background-image:-moz-linear-gradient(bottom,rgb(4,44,61) 100%,#011017 0%);background-image:-webkit-linear-gradient(bottom,rgb(4,44,61) 100%,#011017 0%);background-image:-ms-linear-gradient(bottom,rgb(4,44,61) 100%,#011017 0%);background-image:linear-gradient(to bottom,rgb(4,44,61) 100%,#011017 0%);}#tmp_button-63383 .elButtonBorder{border:3px solid rgb(4,44,61)!important;color:rgb(4,44,61)!important;}#tmp_button-63383 .elButtonBorder:hover{background-color:rgb(4,44,61)!important;color:#FFF!important;}</style>
13
+
14
+
15
+
16
+ <style id="button_style_button-41503">#button-41503 .elButtonFlat:hover{background-color:#0b72a1!important;}#button-41503 .elButtonBottomBorder:hover{background-color:#0b72a1!important;}#button-41503 .elButtonSubtle:hover{background-color:#0b72a1!important;}#button-41503 .elButtonGradient{background-image:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgb(14,141,199)),color-stop(1,#0b72a1));background-image:-o-linear-gradient(bottom,rgb(14,141,199) 0%,#0b72a1 100%);background-image:-moz-linear-gradient(bottom,rgb(14,141,199) 0%,#0b72a1 100%);background-image:-webkit-linear-gradient(bottom,rgb(14,141,199) 0%,#0b72a1 100%);background-image:-ms-linear-gradient(bottom,rgb(14,141,199) 0%,#0b72a1 100%);background-image:linear-gradient(to bottom,rgb(14,141,199) 0%,#0b72a1 100%);}#button-41503 .elButtonGradient:hover{background-image:-webkit-gradient(linear,left top,left bottom,color-stop(1,rgb(14,141,199)),color-stop(0,#0b72a1));background-image:-o-linear-gradient(bottom,rgb(14,141,199) 100%,#0b72a1 0%);background-image:-moz-linear-gradient(bottom,rgb(14,141,199) 100%,#0b72a1 0%);background-image:-webkit-linear-gradient(bottom,rgb(14,141,199) 100%,#0b72a1 0%);background-image:-ms-linear-gradient(bottom,rgb(14,141,199) 100%,#0b72a1 0%);background-image:linear-gradient(to bottom,rgb(14,141,199) 100%,#0b72a1 0%);}#button-41503 .elButtonBorder{border:3px solid rgb(14,141,199)!important;color:rgb(14,141,199)!important;}#button-41503 .elButtonBorder:hover{background-color:rgb(14,141,199)!important;color:#FFF!important;}</style>
17
+ <style id="bold_style_tmp_headline1-56974">#tmp_headline1-56974 .elHeadline b{color:rgb(35,34,39);}</style>
18
+ <style id="bold_style_tmp_headline1-69751">#tmp_headline1-69751 .elHeadline b{color:rgb(23,82,138);}</style>
19
+ <style id="bold_style_headline-76427">#headline-76427 .elHeadline b{color:rgb(23,82,138);}</style>
20
+ <style id="bold_style_headline-38788">#headline-38788 .elHeadline b{color:rgb(23,82,138);}</style>
21
+ <style id="button_style_tmp_button-54776">#tmp_button-54776 .elButtonFlat:hover{background-color:#113d67!important;}#tmp_button-54776 .elButtonBottomBorder:hover{background-color:#113d67!important;}#tmp_button-54776 .elButtonSubtle:hover{background-color:#113d67!important;}#tmp_button-54776 .elButtonGradient{background-image:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgb(23,82,138)),color-stop(1,#113d67));background-image:-o-linear-gradient(bottom,rgb(23,82,138) 0%,#113d67 100%);background-image:-moz-linear-gradient(bottom,rgb(23,82,138) 0%,#113d67 100%);background-image:-webkit-linear-gradient(bottom,rgb(23,82,138) 0%,#113d67 100%);background-image:-ms-linear-gradient(bottom,rgb(23,82,138) 0%,#113d67 100%);background-image:linear-gradient(to bottom,rgb(23,82,138) 0%,#113d67 100%);}#tmp_button-54776 .elButtonGradient:hover{background-image:-webkit-gradient(linear,left top,left bottom,color-stop(1,rgb(23,82,138)),color-stop(0,#113d67));background-image:-o-linear-gradient(bottom,rgb(23,82,138) 100%,#113d67 0%);background-image:-moz-linear-gradient(bottom,rgb(23,82,138) 100%,#113d67 0%);background-image:-webkit-linear-gradient(bottom,rgb(23,82,138) 100%,#113d67 0%);background-image:-ms-linear-gradient(bottom,rgb(23,82,138) 100%,#113d67 0%);background-image:linear-gradient(to bottom,rgb(23,82,138) 100%,#113d67 0%);}#tmp_button-54776 .elButtonBorder{border:3px solid rgb(23,82,138)!important;color:rgb(23,82,138)!important;}#tmp_button-54776 .elButtonBorder:hover{background-color:rgb(23,82,138)!important;color:#FFF!important;}</style>
22
+ <style id="button_style_button-95074">#button-95074 .elButtonFlat:hover{background-color:#113d67!important;}#button-95074 .elButtonBottomBorder:hover{background-color:#113d67!important;}#button-95074 .elButtonSubtle:hover{background-color:#113d67!important;}#button-95074 .elButtonGradient{background-image:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgb(23,82,138)),color-stop(1,#113d67));background-image:-o-linear-gradient(bottom,rgb(23,82,138) 0%,#113d67 100%);background-image:-moz-linear-gradient(bottom,rgb(23,82,138) 0%,#113d67 100%);background-image:-webkit-linear-gradient(bottom,rgb(23,82,138) 0%,#113d67 100%);background-image:-ms-linear-gradient(bottom,rgb(23,82,138) 0%,#113d67 100%);background-image:linear-gradient(to bottom,rgb(23,82,138) 0%,#113d67 100%);}#button-95074 .elButtonGradient:hover{background-image:-webkit-gradient(linear,left top,left bottom,color-stop(1,rgb(23,82,138)),color-stop(0,#113d67));background-image:-o-linear-gradient(bottom,rgb(23,82,138) 100%,#113d67 0%);background-image:-moz-linear-gradient(bottom,rgb(23,82,138) 100%,#113d67 0%);background-image:-webkit-linear-gradient(bottom,rgb(23,82,138) 100%,#113d67 0%);background-image:-ms-linear-gradient(bottom,rgb(23,82,138) 100%,#113d67 0%);background-image:linear-gradient(to bottom,rgb(23,82,138) 100%,#113d67 0%);}#button-95074 .elButtonBorder{border:3px solid rgb(23,82,138)!important;color:rgb(23,82,138)!important;}#button-95074 .elButtonBorder:hover{background-color:rgb(23,82,138)!important;color:#FFF!important;}</style>
23
+ <style id="bold_style_tmp_headline1-69270-114-171-127-188-123-137-113-166">#tmp_headline1-69270-114-171-127-188-123-137-113-166 .elHeadline b{ color: rgb(255, 255, 255);}</style>
24
+ <style id="bold_style_headline-21254-106-157-136">#headline-21254-106-157-136 .elHeadline b{ color: rgb(255, 255, 255);}</style>
25
+ <style id="bold_style_headline-87014-187-129-183">#headline-87014-187-129-183 .elHeadline b{ color: rgb(255, 255, 255);}</style>
26
+ <style id="bold_style_headline-30935-117-111-149">#headline-30935-117-111-149 .elHeadline b{ color: rgb(255, 255, 255);}</style>
27
+ <style id="bold_style_headline-25956-164-105-180">#headline-25956-164-105-180 .elHeadline b{ color: rgb(255, 255, 255);}</style>
28
+ <style id="bold_style_headline-26449-104">#headline-26449-104 .elHeadline b{ color: rgb(255, 255, 255);}</style>
29
+ <style id="bold_style_headline-29024-139-170">#headline-29024-139-170 .elHeadline b{ color: rgb(255, 255, 255);}</style>
30
+ <style id="bold_style_headline-58469-138-126-183">#headline-58469-138-126-183 .elHeadline b{ color: rgb(255, 255, 255);}</style>
31
+ <style id="bold_style_headline-17644-163-135-138">#headline-17644-163-135-138 .elHeadline b{ color: rgb(255, 255, 255);}</style>
32
+ <style id="bold_style_headline-86586-120-152-155">#headline-86586-120-152-155 .elHeadline b{ color: rgb(255, 255, 255);}</style>
33
+ <style id="bold_style_headline-14414-107-188-136">#headline-14414-107-188-136 .elHeadline b{ color: rgb(255, 255, 255);}</style>
34
+ <style id="bold_style_headline-41187-143-131-178">#headline-41187-143-131-178 .elHeadline b{ color: rgb(255, 255, 255);}</style>
35
+ <style id="bold_style_headline-68636-144-117-149">#headline-68636-144-117-149 .elHeadline b{ color: rgb(255, 255, 255);}</style>
36
+ <style id="bold_style_headline-32378-132-136-183">#headline-32378-132-136-183 .elHeadline b{ color: rgb(255, 255, 255);}</style>
37
+ <style id="bold_style_headline-32405-121">#headline-32405-121 .elHeadline b{ color: rgb(255, 255, 255);}</style>
38
+ <style id="bold_style_headline-93760-123">#headline-93760-123 .elHeadline b{ color: rgb(255, 255, 255);}</style>
39
+ <style id="bold_style_headline-90693-142-181">#headline-90693-142-181 .elHeadline b{ color: rgb(255, 255, 255);}</style>
40
+ <style id="bold_style_headline-56254-172-107-141">#headline-56254-172-107-141 .elHeadline b{ color: rgb(255, 255, 255);}</style>
41
+ <style id="bold_style_headline-67491-159-167-185">#headline-67491-159-167-185 .elHeadline b{ color: rgb(255, 255, 255);}</style>
42
+ <style id="bold_style_headline-87414-147">#headline-87414-147 .elHeadline b{ color: rgb(255, 255, 255);}</style>
43
+ <style id="bold_style_headline-29433-183">#headline-29433-183 .elHeadline b{ color: rgb(255, 255, 255);}</style>
44
+ <style id="bold_style_headline-79131-140">#headline-79131-140 .elHeadline b{ color: rgb(255, 255, 255);}</style>
45
+ <style id="bold_style_headline-14846-114-161-127">#headline-14846-114-161-127 .elHeadline b{ color: rgb(255, 255, 255);}</style>
46
+ <style id="bold_style_headline-43009-167-100-172">#headline-43009-167-100-172 .elHeadline b{ color: rgb(255, 255, 255);}</style>
47
+ <style id="bold_style_headline-20491-152">#headline-20491-152 .elHeadline b{ color: rgb(255, 255, 255);}</style>
48
+ <style id="bold_style_headline-97240-136">#headline-97240-136 .elHeadline b{ color: rgb(255, 255, 255);}</style>
49
+ <style id="bold_style_headline-62827-154">#headline-62827-154 .elHeadline b{ color: rgb(255, 255, 255);}</style>
50
+ <style id="bold_style_headline-17774-101">#headline-17774-101 .elHeadline b{ color: rgb(255, 255, 255);}</style>
51
+ <style id="bold_style_headline-84017-108">#headline-84017-108 .elHeadline b{ color: rgb(255, 255, 255);}</style>
52
+ <style id="bold_style_headline-21107-107-126-185">#headline-21107-107-126-185 .elHeadline b{ color: rgb(255, 255, 255);}</style>
53
+ <style id="bold_style_headline-16052-120-179">#headline-16052-120-179 .elHeadline b{ color: rgb(255, 255, 255);}</style>
54
+ <style id="bold_style_headline-72328-169-108">#headline-72328-169-108 .elHeadline b{ color: rgb(255, 255, 255);}</style>
55
+ <style id="bold_style_headline-96355-175-135-112">#headline-96355-175-135-112 .elHeadline b{ color: rgb(255, 255, 255);}</style>
56
+ <style id="bold_style_headline-76106-161-110">#headline-76106-161-110 .elHeadline b{ color: rgb(255, 255, 255);}</style>
57
+ <style id="button_style_tmp_button-56834-140-129-135">#tmp_button-56834-140-129-135 .elButtonFlat:hover{ background-color: #0a66cb !important;} #tmp_button-56834-140-129-135 .elButtonBottomBorder:hover{ background-color: #0a66cb !important;}#tmp_button-56834-140-129-135 .elButtonSubtle:hover{ background-color: #0a66cb !important;}#tmp_button-56834-140-129-135 .elButtonGradient{ background-image: -webkit-gradient( linear, left top, left bottom, color-stop(0, rgb(12, 121, 242)), color-stop(1, #0a66cb)); background-image: -o-linear-gradient(bottom, rgb(12, 121, 242) 0%, #0a66cb 100%); background-image: -moz-linear-gradient(bottom, rgb(12, 121, 242) 0%, #0a66cb 100%); background-image: -webkit-linear-gradient(bottom, rgb(12, 121, 242) 0%, #0a66cb 100%); background-image: -ms-linear-gradient(bottom, rgb(12, 121, 242) 0%, #0a66cb 100%); background-image: linear-gradient(to bottom, rgb(12, 121, 242) 0%, #0a66cb 100%); }#tmp_button-56834-140-129-135 .elButtonGradient:hover{ background-image: -webkit-gradient( linear, left top, left bottom, color-stop(1, rgb(12, 121, 242)), color-stop(0, #0a66cb)); background-image: -o-linear-gradient(bottom, rgb(12, 121, 242) 100%, #0a66cb 0%); background-image: -moz-linear-gradient(bottom, rgb(12, 121, 242) 100%, #0a66cb 0%); background-image: -webkit-linear-gradient(bottom, rgb(12, 121, 242) 100%, #0a66cb 0%); background-image: -ms-linear-gradient(bottom, rgb(12, 121, 242) 100%, #0a66cb 0%); background-image: linear-gradient(to bottom, rgb(12, 121, 242) 100%, #0a66cb 0%); }#tmp_button-56834-140-129-135 .elButtonGradient2{ background-image: -webkit-gradient( linear, left top, left bottom, color-stop(0, rgb(12, 121, 242)), color-stop(1, #0a66cb)); background-image: -o-linear-gradient(bottom, rgb(12, 121, 242) 30%, #0a66cb 80%); background-image: -moz-linear-gradient(bottom, rgb(12, 121, 242) 30%, #0a66cb 80%); background-image: -webkit-linear-gradient(bottom, rgb(12, 121, 242) 30%, #0a66cb 80%); background-image: -ms-linear-gradient(bottom, rgb(12, 121, 242) 30%, #0a66cb 80%); background-image: linear-gradient(to bottom, rgb(12, 121, 242) 30%, #0a66cb 80%); }#tmp_button-56834-140-129-135 .elButtonGradient2:hover{ background-image: -webkit-gradient( linear, left top, left bottom, color-stop(1, rgb(12, 121, 242)), color-stop(0, #0a66cb)); background-image: -o-linear-gradient(bottom, rgb(12, 121, 242) 100%, #0a66cb 30%); background-image: -moz-linear-gradient(bottom, rgb(12, 121, 242) 100%, #0a66cb 30%); background-image: -webkit-linear-gradient(bottom, rgb(12, 121, 242) 100%, #0a66cb 30%); background-image: -ms-linear-gradient(bottom, rgb(12, 121, 242) 100%, #0a66cb 30%); background-image: linear-gradient(to bottom, rgb(12, 121, 242) 100%, #0a66cb 30%); }#tmp_button-56834-140-129-135 .elButtonBorder{ border: 3px solid rgb(12, 121, 242) !important; color: rgb(12, 121, 242) !important; }#tmp_button-56834-140-129-135 .elButtonBorder:hover{ background-color:rgb(12, 121, 242) !important; color: #FFF !important; }</style>
58
+ <style id="bold_style_headline-89460-100-116-166">#headline-89460-100-116-166 .elHeadline b{ color: rgb(255, 255, 255);}</style>
59
+ <style id="bold_style_headline-33996">#headline-33996 .elHeadline b{ color: rgb(255, 255, 255);}</style>
60
+ <style id="bold_style_tmp_headline1-54046">#tmp_headline1-54046 .elHeadline b{ color: rgb(252, 87, 31);}</style>
61
+ <style id="bold_style_tmp_headline1-31377">#tmp_headline1-31377 .elHeadline b{ color: rgb(255, 255, 255);}</style>
62
+ <style id="bold_style_headline-94361">#headline-94361 .elHeadline b{ color: rgb(255, 255, 255);}</style>
63
+ <style id="bold_style_tmp_headline1-69270">#tmp_headline1-69270 .elHeadline b{ color: rgb(255, 255, 255);}</style>
64
+ <style id="bold_style_tmp_headline1-14044">#tmp_headline1-14044 .elHeadline b{color:rgb(100,100,100);}</style>
65
+ <style id="bold_style_headline-70295">#headline-70295 .elHeadline b{color:rgb(100,100,100);}</style>
66
+ <style id="bold_style_tmp_headline1-14044">#tmp_headline1-14044 .elHeadline b{color:rgb(100,100,100);}</style>
67
+ <style id="bold_style_headline-70295">#headline-70295 .elHeadline b{color:rgb(100,100,100);}</style>
68
+ <link rel="stylesheet" href="7%20Figure%20LeadFlow_files/css.css" id="custom_google_font">
69
+ <style id="button_style_tmp_button-11641">#tmp_button-11641 .elButtonFlat:hover{background-color:#a80d52!important;}#tmp_button-11641 .elButtonBottomBorder:hover{background-color:#a80d52!important;}#tmp_button-11641 .elButtonSubtle:hover{background-color:#a80d52!important;}#tmp_button-11641 .elButtonGradient{background-image:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgb(206,16,100)),color-stop(1,#a80d52));background-image:-o-linear-gradient(bottom,rgb(206,16,100) 0%,#a80d52 100%);background-image:-moz-linear-gradient(bottom,rgb(206,16,100) 0%,#a80d52 100%);background-image:-webkit-linear-gradient(bottom,rgb(206,16,100) 0%,#a80d52 100%);background-image:-ms-linear-gradient(bottom,rgb(206,16,100) 0%,#a80d52 100%);background-image:linear-gradient(to bottom,rgb(206,16,100) 0%,#a80d52 100%);}#tmp_button-11641 .elButtonGradient:hover{background-image:-webkit-gradient(linear,left top,left bottom,color-stop(1,rgb(206,16,100)),color-stop(0,#a80d52));background-image:-o-linear-gradient(bottom,rgb(206,16,100) 100%,#a80d52 0%);background-image:-moz-linear-gradient(bottom,rgb(206,16,100) 100%,#a80d52 0%);background-image:-webkit-linear-gradient(bottom,rgb(206,16,100) 100%,#a80d52 0%);background-image:-ms-linear-gradient(bottom,rgb(206,16,100) 100%,#a80d52 0%);background-image:linear-gradient(to bottom,rgb(206,16,100) 100%,#a80d52 0%);}#tmp_button-11641 .elButtonGradient2{background-image:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgb(206,16,100)),color-stop(1,#a80d52));background-image:-o-linear-gradient(bottom,rgb(206,16,100) 30%,#a80d52 80%);background-image:-moz-linear-gradient(bottom,rgb(206,16,100) 30%,#a80d52 80%);background-image:-webkit-linear-gradient(bottom,rgb(206,16,100) 30%,#a80d52 80%);background-image:-ms-linear-gradient(bottom,rgb(206,16,100) 30%,#a80d52 80%);background-image:linear-gradient(to bottom,rgb(206,16,100) 30%,#a80d52 80%);}#tmp_button-11641 .elButtonGradient2:hover{background-image:-webkit-gradient(linear,left top,left bottom,color-stop(1,rgb(206,16,100)),color-stop(0,#a80d52));background-image:-o-linear-gradient(bottom,rgb(206,16,100) 100%,#a80d52 30%);background-image:-moz-linear-gradient(bottom,rgb(206,16,100) 100%,#a80d52 30%);background-image:-webkit-linear-gradient(bottom,rgb(206,16,100) 100%,#a80d52 30%);background-image:-ms-linear-gradient(bottom,rgb(206,16,100) 100%,#a80d52 30%);background-image:linear-gradient(to bottom,rgb(206,16,100) 100%,#a80d52 30%);}#tmp_button-11641 .elButtonBorder{border:3px solid rgb(206,16,100)!important;color:rgb(206,16,100)!important;}#tmp_button-11641 .elButtonBorder:hover{background-color:rgb(206,16,100)!important;color:#FFF!important;}</style>
70
+ <style id="bold_style_headline-96389">#headline-96389 .elHeadline b{color:rgb(255,255,255);}</style>
71
+ <style id="bold_style_headline-53411">#headline-53411 .elHeadline b{color:rgb(255,255,255);}</style>
72
+ <style id="bold_style_headline-31780">#headline-31780 .elHeadline b{color:rgb(255,255,255);}</style>
73
+ <style id="bold_style_headline-99235">#headline-99235 .elHeadline b{color:rgb(71,71,71);}</style>
74
+ <style id="bold_style_headline-34582">#headline-34582 .elHeadline b{color:rgb(71,71,71);}</style>
75
+ <style id="bold_style_tmp_headline1-10794">#tmp_headline1-10794 .elHeadline b{color:rgb(71,71,71);}</style>
76
+ <style id="bold_style_headline-63670">#headline-63670 .elHeadline b{color:rgb(71,71,71);}</style>
77
+ <style id="bold_style_headline-33901">#headline-33901 .elHeadline b{color:rgb(71,71,71);}</style>
78
+ <style id="bold_style_headline-51161">#headline-51161 .elHeadline b{color:rgb(71,71,71);}</style>
79
+ <style id="button_style_tmp_button-33041">#tmp_button-33041 .elButtonFlat:hover{ background-color: #d64900 !important;}
80
+ #tmp_button-33041 .elButtonBottomBorder:hover{ background-color: #d64900 !important;}
81
+ #tmp_button-33041 .elButtonSubtle:hover{ background-color: #d64900 !important;}
82
+ #tmp_button-33041 .elButtonGradient{ background-image: -webkit-gradient( linear, left top, left bottom, color-stop(0, rgb(255, 87, 0)), color-stop(1, #d64900)); background-image: -o-linear-gradient(bottom, rgb(255, 87, 0) 0%, #d64900 100%); background-image: -moz-linear-gradient(bottom, rgb(255, 87, 0) 0%, #d64900 100%); background-image: -webkit-linear-gradient(bottom, rgb(255, 87, 0) 0%, #d64900 100%); background-image: -ms-linear-gradient(bottom, rgb(255, 87, 0) 0%, #d64900 100%); background-image: linear-gradient(to bottom, rgb(255, 87, 0) 0%, #d64900 100%); }
83
+ #tmp_button-33041 .elButtonGradient:hover{ background-image: -webkit-gradient( linear, left top, left bottom, color-stop(1, rgb(255, 87, 0)), color-stop(0, #d64900)); background-image: -o-linear-gradient(bottom, rgb(255, 87, 0) 100%, #d64900 0%); background-image: -moz-linear-gradient(bottom, rgb(255, 87, 0) 100%, #d64900 0%); background-image: -webkit-linear-gradient(bottom, rgb(255, 87, 0) 100%, #d64900 0%); background-image: -ms-linear-gradient(bottom, rgb(255, 87, 0) 100%, #d64900 0%); background-image: linear-gradient(to bottom, rgb(255, 87, 0) 100%, #d64900 0%); }
84
+ #tmp_button-33041 .elButtonGradient2{ background-image: -webkit-gradient( linear, left top, left bottom, color-stop(0, rgb(255, 87, 0)), color-stop(1, #d64900)); background-image: -o-linear-gradient(bottom, rgb(255, 87, 0) 30%, #d64900 80%); background-image: -moz-linear-gradient(bottom, rgb(255, 87, 0) 30%, #d64900 80%); background-image: -webkit-linear-gradient(bottom, rgb(255, 87, 0) 30%, #d64900 80%); background-image: -ms-linear-gradient(bottom, rgb(255, 87, 0) 30%, #d64900 80%); background-image: linear-gradient(to bottom, rgb(255, 87, 0) 30%, #d64900 80%); }
85
+ #tmp_button-33041 .elButtonGradient2:hover{ background-image: -webkit-gradient( linear, left top, left bottom, color-stop(1, rgb(255, 87, 0)), color-stop(0, #d64900)); background-image: -o-linear-gradient(bottom, rgb(255, 87, 0) 100%, #d64900 30%); background-image: -moz-linear-gradient(bottom, rgb(255, 87, 0) 100%, #d64900 30%); background-image: -webkit-linear-gradient(bottom, rgb(255, 87, 0) 100%, #d64900 30%); background-image: -ms-linear-gradient(bottom, rgb(255, 87, 0) 100%, #d64900 30%); background-image: linear-gradient(to bottom, rgb(255, 87, 0) 100%, #d64900 30%); }
86
+ #tmp_button-33041 .elButtonBorder{ border: 3px solid rgb(255, 87, 0) !important; color: rgb(255, 87, 0) !important; }
87
+ #tmp_button-33041 .elButtonBorder:hover{ background-color:rgb(255, 87, 0) !important; color: #FFF !important; }
88
+ </style>
89
+ <style id="bold_style_tmp_headline1-14044-103">#tmp_headline1-14044-103 .elHeadline b{color:rgb(100,100,100);}</style>
90
+ <style id="bold_style_headline-70295-105">#headline-70295-105 .elHeadline b{color:rgb(100,100,100);}</style>
91
+ <style id="link_color_style">a { color: rgba(0, 0, 0, 0.29);}
92
+ </style>
93
+ <style id="bold_color_style">b, strong { color: rgba(0, 0, 0, 0.29);}
94
+ </style>
95
+ <style id="bold_style_tmp_headline1-14044-102">#tmp_headline1-14044-102 .elHeadline b{color:rgb(100,100,100);}</style>
96
+ <style id="bold_style_headline-70295-169">#headline-70295-169 .elHeadline b{color:rgb(100,100,100);}</style>
97
+ <style id="bold_style_tmp_headline1-20593">#tmp_headline1-20593 .elHeadline b{ color: rgb(45, 45, 45);}</style>
98
+ <style id="bold_style_tmp_headline1-93189">#tmp_headline1-93189 .elHeadline b{ color: rgb(71, 71, 71);}</style>
99
+ <style id="button_style_button-71660">#button-71660 .elButtonFlat:hover{ background-color: #ef4003 !important;}
100
+ #button-71660 .elButtonBottomBorder:hover{ background-color: #ef4003 !important;}
101
+ #button-71660 .elButtonSubtle:hover{ background-color: #ef4003 !important;}
102
+ #button-71660 .elButtonGradient{ background-image: -webkit-gradient( linear, left top, left bottom, color-stop(0, rgb(252, 88, 31)), color-stop(1, #ef4003)); background-image: -o-linear-gradient(bottom, rgb(252, 88, 31) 0%, #ef4003 100%); background-image: -moz-linear-gradient(bottom, rgb(252, 88, 31) 0%, #ef4003 100%); background-image: -webkit-linear-gradient(bottom, rgb(252, 88, 31) 0%, #ef4003 100%); background-image: -ms-linear-gradient(bottom, rgb(252, 88, 31) 0%, #ef4003 100%); background-image: linear-gradient(to bottom, rgb(252, 88, 31) 0%, #ef4003 100%); }
103
+ #button-71660 .elButtonGradient:hover{ background-image: -webkit-gradient( linear, left top, left bottom, color-stop(1, rgb(252, 88, 31)), color-stop(0, #ef4003)); background-image: -o-linear-gradient(bottom, rgb(252, 88, 31) 100%, #ef4003 0%); background-image: -moz-linear-gradient(bottom, rgb(252, 88, 31) 100%, #ef4003 0%); background-image: -webkit-linear-gradient(bottom, rgb(252, 88, 31) 100%, #ef4003 0%); background-image: -ms-linear-gradient(bottom, rgb(252, 88, 31) 100%, #ef4003 0%); background-image: linear-gradient(to bottom, rgb(252, 88, 31) 100%, #ef4003 0%); }
104
+ #button-71660 .elButtonGradient2{ background-image: -webkit-gradient( linear, left top, left bottom, color-stop(0, rgb(252, 88, 31)), color-stop(1, #ef4003)); background-image: -o-linear-gradient(bottom, rgb(252, 88, 31) 30%, #ef4003 80%); background-image: -moz-linear-gradient(bottom, rgb(252, 88, 31) 30%, #ef4003 80%); background-image: -webkit-linear-gradient(bottom, rgb(252, 88, 31) 30%, #ef4003 80%); background-image: -ms-linear-gradient(bottom, rgb(252, 88, 31) 30%, #ef4003 80%); background-image: linear-gradient(to bottom, rgb(252, 88, 31) 30%, #ef4003 80%); }
105
+ #button-71660 .elButtonGradient2:hover{ background-image: -webkit-gradient( linear, left top, left bottom, color-stop(1, rgb(252, 88, 31)), color-stop(0, #ef4003)); background-image: -o-linear-gradient(bottom, rgb(252, 88, 31) 100%, #ef4003 30%); background-image: -moz-linear-gradient(bottom, rgb(252, 88, 31) 100%, #ef4003 30%); background-image: -webkit-linear-gradient(bottom, rgb(252, 88, 31) 100%, #ef4003 30%); background-image: -ms-linear-gradient(bottom, rgb(252, 88, 31) 100%, #ef4003 30%); background-image: linear-gradient(to bottom, rgb(252, 88, 31) 100%, #ef4003 30%); }
106
+ #button-71660 .elButtonBorder{ border: 3px solid rgb(252, 88, 31) !important; color: rgb(252, 88, 31) !important; }
107
+ #button-71660 .elButtonBorder:hover{ background-color:rgb(252, 88, 31) !important; color: #FFF !important; }
108
+ </style>
109
+ <style id="bold_style_tmp_subheadline-61171">#tmp_subheadline-61171 .elHeadline b{ color: rgb(13, 88, 166);}</style>
110
+ <style id="bold_style_tmp_headline1-58466">#tmp_headline1-58466 .elHeadline b{ color: rgb(96, 96, 96);}</style>
111
+ <style id="bold_style_headline-69580">#headline-69580 .elHeadline b{ color: rgb(255, 255, 255);}</style>
112
+
113
+ <style id="bold_style_tmp_headline1-69270-113">#tmp_headline1-69270-113 .elHeadline b{ color: rgb(255, 255, 255);}</style>
114
+ <style id="bold_style_headline-22589">#headline-22589 .elHeadline b{ color: rgb(252, 88, 31);}</style>
115
+ <style id="bold_style_tmp_headline1-58466-183">#tmp_headline1-58466-183 .elHeadline b{ color: rgb(96, 96, 96);}</style>
116
+ <style id="bold_style_tmp_subheadline-43422-187">#tmp_subheadline-43422-187 .elHeadline b{ color: rgb(252, 88, 31);}</style>
117
+ <style id="bold_style_headline-17065-135">#headline-17065-135 .elHeadline b{ color: rgb(96, 96, 96);}</style>
118
+ <style id="bold_style_tmp_subheadline-61171-112">#tmp_subheadline-61171-112 .elHeadline b{ color: rgb(13, 88, 166);}</style>
119
+ <style id="bold_style_headline-22589-185">#headline-22589-185 .elHeadline b{ color: rgb(252, 88, 31);}</style>
120
+ <style id="bold_style_tmp_headline1-58466-143">#tmp_headline1-58466-143 .elHeadline b{ color: rgb(96, 96, 96);}</style>
121
+ <style id="bold_style_tmp_subheadline-43422-160">#tmp_subheadline-43422-160 .elHeadline b{ color: rgb(252, 88, 31);}</style>
122
+ <style id="bold_style_headline-17065-134">#headline-17065-134 .elHeadline b{ color: rgb(96, 96, 96);}</style>
123
+ <style id="bold_style_tmp_headline1-54046-101">#tmp_headline1-54046-101 .elHeadline b{ color: rgb(252, 87, 31);}</style>
124
+ <style id="bold_style_tmp_headline1-31377-137">#tmp_headline1-31377-137 .elHeadline b{ color: rgb(255, 255, 255);}</style>
125
+ <style id="bold_style_headline-94361-101">#headline-94361-101 .elHeadline b{ color: rgb(255, 255, 255);}</style>
126
+ <style id="bold_style_tmp_headline1-69270-114-171-127-188-123-137-113-166-183">#tmp_headline1-69270-114-171-127-188-123-137-113-166-183 .elHeadline b{ color: rgb(255, 255, 255);}</style>
127
+ <style id="bold_style_headline-21254-106-157-136-108">#headline-21254-106-157-136-108 .elHeadline b{ color: rgb(255, 255, 255);}</style>
128
+ <style id="bold_style_headline-87014-187-129-183-100">#headline-87014-187-129-183-100 .elHeadline b{ color: rgb(255, 255, 255);}</style>
129
+ <style id="bold_style_headline-30935-117-111-149-106">#headline-30935-117-111-149-106 .elHeadline b{ color: rgb(255, 255, 255);}</style>
130
+ <style id="bold_style_headline-25956-164-105-180-118">#headline-25956-164-105-180-118 .elHeadline b{ color: rgb(255, 255, 255);}</style>
131
+ <style id="bold_style_headline-26449-104-142">#headline-26449-104-142 .elHeadline b{ color: rgb(255, 255, 255);}</style>
132
+ <style id="bold_style_headline-29024-139-170-183">#headline-29024-139-170-183 .elHeadline b{ color: rgb(255, 255, 255);}</style>
133
+ <style id="bold_style_headline-58469-138-126-183-164">#headline-58469-138-126-183-164 .elHeadline b{ color: rgb(255, 255, 255);}</style>
134
+ <style id="bold_style_headline-17644-163-135-138-181">#headline-17644-163-135-138-181 .elHeadline b{ color: rgb(255, 255, 255);}</style>
135
+ <style id="bold_style_headline-86586-120-152-155-110">#headline-86586-120-152-155-110 .elHeadline b{ color: rgb(255, 255, 255);}</style>
136
+ <style id="bold_style_headline-14414-107-188-136-188">#headline-14414-107-188-136-188 .elHeadline b{ color: rgb(255, 255, 255);}</style>
137
+ <style id="bold_style_headline-41187-143-131-178-177">#headline-41187-143-131-178-177 .elHeadline b{ color: rgb(255, 255, 255);}</style>
138
+ <style id="bold_style_headline-68636-144-117-149-116">#headline-68636-144-117-149-116 .elHeadline b{ color: rgb(255, 255, 255);}</style>
139
+ <style id="bold_style_headline-32378-132-136-183-186">#headline-32378-132-136-183-186 .elHeadline b{ color: rgb(255, 255, 255);}</style>
140
+ <style id="bold_style_headline-32405-121-154">#headline-32405-121-154 .elHeadline b{ color: rgb(255, 255, 255);}</style>
141
+ <style id="bold_style_headline-93760-123-126">#headline-93760-123-126 .elHeadline b{ color: rgb(255, 255, 255);}</style>
142
+ <style id="bold_style_headline-90693-142-181-182">#headline-90693-142-181-182 .elHeadline b{ color: rgb(255, 255, 255);}</style>
143
+ <style id="bold_style_headline-56254-172-107-141-142">#headline-56254-172-107-141-142 .elHeadline b{ color: rgb(255, 255, 255);}</style>
144
+ <style id="bold_style_headline-67491-159-167-185-183">#headline-67491-159-167-185-183 .elHeadline b{ color: rgb(255, 255, 255);}</style>
145
+ <style id="bold_style_headline-87414-147-114">#headline-87414-147-114 .elHeadline b{ color: rgb(255, 255, 255);}</style>
146
+ <style id="bold_style_headline-29433-183-143">#headline-29433-183-143 .elHeadline b{ color: rgb(255, 255, 255);}</style>
147
+ <style id="bold_style_headline-79131-140-185">#headline-79131-140-185 .elHeadline b{ color: rgb(255, 255, 255);}</style>
148
+ <style id="bold_style_headline-14846-114-161-127-162">#headline-14846-114-161-127-162 .elHeadline b{ color: rgb(255, 255, 255);}</style>
149
+ <style id="bold_style_headline-43009-167-100-172-104">#headline-43009-167-100-172-104 .elHeadline b{ color: rgb(255, 255, 255);}</style>
150
+ <style id="bold_style_headline-20491-152-177">#headline-20491-152-177 .elHeadline b{ color: rgb(255, 255, 255);}</style>
151
+ <style id="bold_style_headline-97240-136-127">#headline-97240-136-127 .elHeadline b{ color: rgb(255, 255, 255);}</style>
152
+ <style id="bold_style_headline-62827-154-140">#headline-62827-154-140 .elHeadline b{ color: rgb(255, 255, 255);}</style>
153
+ <style id="bold_style_headline-17774-101-135">#headline-17774-101-135 .elHeadline b{ color: rgb(255, 255, 255);}</style>
154
+ <style id="bold_style_headline-84017-108-100">#headline-84017-108-100 .elHeadline b{ color: rgb(255, 255, 255);}</style>
155
+ <style id="bold_style_headline-21107-107-126-185-184">#headline-21107-107-126-185-184 .elHeadline b{ color: rgb(255, 255, 255);}</style>
156
+ <style id="bold_style_headline-16052-120-179-113">#headline-16052-120-179-113 .elHeadline b{ color: rgb(255, 255, 255);}</style>
157
+ <style id="bold_style_headline-72328-169-108-145">#headline-72328-169-108-145 .elHeadline b{ color: rgb(255, 255, 255);}</style>
158
+ <style id="bold_style_headline-96355-175-135-112-143">#headline-96355-175-135-112-143 .elHeadline b{ color: rgb(255, 255, 255);}</style>
159
+ <style id="bold_style_headline-76106-161-110-154">#headline-76106-161-110-154 .elHeadline b{ color: rgb(255, 255, 255);}</style>
160
+ <style id="button_style_tmp_button-56834-140-129-135-112">#tmp_button-56834-140-129-135-112 .elButtonFlat:hover{ background-color: #0a66cb !important;} #tmp_button-56834-140-129-135-112 .elButtonBottomBorder:hover{ background-color: #0a66cb !important;}#tmp_button-56834-140-129-135-112 .elButtonSubtle:hover{ background-color: #0a66cb !important;}#tmp_button-56834-140-129-135-112 .elButtonGradient{ background-image: -webkit-gradient( linear, left top, left bottom, color-stop(0, rgb(12, 121, 242)), color-stop(1, #0a66cb)); background-image: -o-linear-gradient(bottom, rgb(12, 121, 242) 0%, #0a66cb 100%); background-image: -moz-linear-gradient(bottom, rgb(12, 121, 242) 0%, #0a66cb 100%); background-image: -webkit-linear-gradient(bottom, rgb(12, 121, 242) 0%, #0a66cb 100%); background-image: -ms-linear-gradient(bottom, rgb(12, 121, 242) 0%, #0a66cb 100%); background-image: linear-gradient(to bottom, rgb(12, 121, 242) 0%, #0a66cb 100%); }#tmp_button-56834-140-129-135-112 .elButtonGradient:hover{ background-image: -webkit-gradient( linear, left top, left bottom, color-stop(1, rgb(12, 121, 242)), color-stop(0, #0a66cb)); background-image: -o-linear-gradient(bottom, rgb(12, 121, 242) 100%, #0a66cb 0%); background-image: -moz-linear-gradient(bottom, rgb(12, 121, 242) 100%, #0a66cb 0%); background-image: -webkit-linear-gradient(bottom, rgb(12, 121, 242) 100%, #0a66cb 0%); background-image: -ms-linear-gradient(bottom, rgb(12, 121, 242) 100%, #0a66cb 0%); background-image: linear-gradient(to bottom, rgb(12, 121, 242) 100%, #0a66cb 0%); }#tmp_button-56834-140-129-135-112 .elButtonGradient2{ background-image: -webkit-gradient( linear, left top, left bottom, color-stop(0, rgb(12, 121, 242)), color-stop(1, #0a66cb)); background-image: -o-linear-gradient(bottom, rgb(12, 121, 242) 30%, #0a66cb 80%); background-image: -moz-linear-gradient(bottom, rgb(12, 121, 242) 30%, #0a66cb 80%); background-image: -webkit-linear-gradient(bottom, rgb(12, 121, 242) 30%, #0a66cb 80%); background-image: -ms-linear-gradient(bottom, rgb(12, 121, 242) 30%, #0a66cb 80%); background-image: linear-gradient(to bottom, rgb(12, 121, 242) 30%, #0a66cb 80%); }#tmp_button-56834-140-129-135-112 .elButtonGradient2:hover{ background-image: -webkit-gradient( linear, left top, left bottom, color-stop(1, rgb(12, 121, 242)), color-stop(0, #0a66cb)); background-image: -o-linear-gradient(bottom, rgb(12, 121, 242) 100%, #0a66cb 30%); background-image: -moz-linear-gradient(bottom, rgb(12, 121, 242) 100%, #0a66cb 30%); background-image: -webkit-linear-gradient(bottom, rgb(12, 121, 242) 100%, #0a66cb 30%); background-image: -ms-linear-gradient(bottom, rgb(12, 121, 242) 100%, #0a66cb 30%); background-image: linear-gradient(to bottom, rgb(12, 121, 242) 100%, #0a66cb 30%); }#tmp_button-56834-140-129-135-112 .elButtonBorder{ border: 3px solid rgb(12, 121, 242) !important; color: rgb(12, 121, 242) !important; }#tmp_button-56834-140-129-135-112 .elButtonBorder:hover{ background-color:rgb(12, 121, 242) !important; color: #FFF !important; }
161
+ </style>
162
+
163
+ <style>
164
+ #IntercomDefaultWidget {
165
+ display:none;
166
+ }
167
+ .selectAW-date-demo, .elTicketAddToCalendar, .elTicketAddToCalendarV2 {
168
+ display:none;
169
+ }
170
+ .video-js {
171
+ padding-top:56.25%;
172
+ }
173
+ .vjs-big-play-button,.vjs-control-bar {
174
+ z-index: 10 !important;
175
+ }
176
+ .vjs-fullscreen {
177
+ padding-top:0;
178
+ }
179
+ </style>
180
+
181
+
182
+ <style id="bold_style_tmp_subheadline-43422-177">#tmp_subheadline-43422-177 .elHeadline b{ color: rgb(252, 88, 31);}</style>
183
+ <style id="bold_style_headline-17065-144">#headline-17065-144 .elHeadline b{ color: rgb(96, 96, 96);}</style>
184
+ <style id="bold_style_tmp_subheadline-61171-137-147">#tmp_subheadline-61171-137-147 .elHeadline b{ color: rgb(13, 88, 166);}</style>
185
+ <style id="bold_style_headline-22589-183-177">#headline-22589-183-177 .elHeadline b{ color: rgb(252, 88, 31);}</style>
186
+ <style id="button_style_button-66257-173-176">#button-66257-173-176 .elButtonFlat:hover{ background-color: #ef4003 !important;}
187
+ #button-66257-173-176 .elButtonBottomBorder:hover{ background-color: #ef4003 !important;}
188
+ #button-66257-173-176 .elButtonSubtle:hover{ background-color: #ef4003 !important;}
189
+ #button-66257-173-176 .elButtonGradient{ background-image: -webkit-gradient( linear, left top, left bottom, color-stop(0, rgb(252, 88, 31)), color-stop(1, #ef4003)); background-image: -o-linear-gradient(bottom, rgb(252, 88, 31) 0%, #ef4003 100%); background-image: -moz-linear-gradient(bottom, rgb(252, 88, 31) 0%, #ef4003 100%); background-image: -webkit-linear-gradient(bottom, rgb(252, 88, 31) 0%, #ef4003 100%); background-image: -ms-linear-gradient(bottom, rgb(252, 88, 31) 0%, #ef4003 100%); background-image: linear-gradient(to bottom, rgb(252, 88, 31) 0%, #ef4003 100%); }
190
+ #button-66257-173-176 .elButtonGradient:hover{ background-image: -webkit-gradient( linear, left top, left bottom, color-stop(1, rgb(252, 88, 31)), color-stop(0, #ef4003)); background-image: -o-linear-gradient(bottom, rgb(252, 88, 31) 100%, #ef4003 0%); background-image: -moz-linear-gradient(bottom, rgb(252, 88, 31) 100%, #ef4003 0%); background-image: -webkit-linear-gradient(bottom, rgb(252, 88, 31) 100%, #ef4003 0%); background-image: -ms-linear-gradient(bottom, rgb(252, 88, 31) 100%, #ef4003 0%); background-image: linear-gradient(to bottom, rgb(252, 88, 31) 100%, #ef4003 0%); }
191
+ #button-66257-173-176 .elButtonGradient2{ background-image: -webkit-gradient( linear, left top, left bottom, color-stop(0, rgb(252, 88, 31)), color-stop(1, #ef4003)); background-image: -o-linear-gradient(bottom, rgb(252, 88, 31) 30%, #ef4003 80%); background-image: -moz-linear-gradient(bottom, rgb(252, 88, 31) 30%, #ef4003 80%); background-image: -webkit-linear-gradient(bottom, rgb(252, 88, 31) 30%, #ef4003 80%); background-image: -ms-linear-gradient(bottom, rgb(252, 88, 31) 30%, #ef4003 80%); background-image: linear-gradient(to bottom, rgb(252, 88, 31) 30%, #ef4003 80%); }
192
+ #button-66257-173-176 .elButtonGradient2:hover{ background-image: -webkit-gradient( linear, left top, left bottom, color-stop(1, rgb(252, 88, 31)), color-stop(0, #ef4003)); background-image: -o-linear-gradient(bottom, rgb(252, 88, 31) 100%, #ef4003 30%); background-image: -moz-linear-gradient(bottom, rgb(252, 88, 31) 100%, #ef4003 30%); background-image: -webkit-linear-gradient(bottom, rgb(252, 88, 31) 100%, #ef4003 30%); background-image: -ms-linear-gradient(bottom, rgb(252, 88, 31) 100%, #ef4003 30%); background-image: linear-gradient(to bottom, rgb(252, 88, 31) 100%, #ef4003 30%); }
193
+ #button-66257-173-176 .elButtonBorder{ border: 3px solid rgb(252, 88, 31) !important; color: rgb(252, 88, 31) !important; }
194
+ #button-66257-173-176 .elButtonBorder:hover{ background-color:rgb(252, 88, 31) !important; color: #FFF !important; }
195
+ </style>
196
+ <style id="bold_style_tmp_subheadline-43422">#tmp_subheadline-43422 .elHeadline b{ color: var(--blue);}</style>
197
+ <style id="bold_style_headline-17065">#headline-17065 .elHeadline b{ color: rgb(0, 0, 0);}</style>
198
+ <style id="bold_style_tmp_subheadline-61171-137">#tmp_subheadline-61171-137 .elHeadline b{ color: var(--blue);}</style>
199
+ <style id="bold_style_headline-22589-183">#headline-22589-183 .elHeadline b{ color: var(--blue);}</style>
200
+ <style id="bold_style_headline-31827">#headline-31827 .elHeadline b{ color: rgb(255, 255, 255);}</style>
201
+ <style id="bold_style_headline-59817">#headline-59817 .elHeadline b{ color: var(--blue);}</style>
202
+ <style id="bold_style_headline-75969">#headline-75969 .elHeadline b{ color: rgb(0, 0, 0);}</style>
203
+ <style id="bold_style_headline-27760">#headline-27760 .elHeadline b{ color: var(--blue);}</style>
204
+ <style id="bold_style_headline-98398">#headline-98398 .elHeadline b{ color: rgb(0, 0, 0);}</style>
205
+ <style id="bold_style_headline-31748">#headline-31748 .elHeadline b{ color: var(--blue);}</style>
206
+ <style id="bold_style_headline-27842">#headline-27842 .elHeadline b{ color: var(--blue);}</style>
207
+ <style id="bold_style_headline-84805">#headline-84805 .elHeadline b{ color: rgb(0, 0, 0);}</style>
208
+ <style id="bold_style_headline-51374">#headline-51374 .elHeadline b{ color: var(--blue);}</style>
209
+ <style id="bold_style_headline-27275">#headline-27275 .elHeadline b{ color: var(--blue);}</style>
210
+ <style id="bold_style_headline-97541">#headline-97541 .elHeadline b{ color: var(--blue);}</style>
211
+ <style id="bold_style_headline-62845">#headline-62845 .elHeadline b{ color: var(--blue);}</style>
212
+ <style id="bold_style_headline-92323">#headline-92323 .elHeadline b{ color: var(--blue);}</style>
213
+ <style id="bold_style_headline-48801">#headline-48801 .elHeadline b{ color: var(--blue);}</style>
214
+ <style id="bold_style_headline-10518">#headline-10518 .elHeadline b{ color: var(--blue);}</style>
215
+ <style id="bold_style_headline-53788">#headline-53788 .elHeadline b{ color: var(--blue);}</style>
216
+ <style id="bold_style_headline-79685">#headline-79685 .elHeadline b{ color: var(--blue);}</style>
217
+ <style id="bold_style_headline-70481">#headline-70481 .elHeadline b{ color: var(--blue);}</style>
218
+ <style id="bold_style_headline-65878">#headline-65878 .elHeadline b{ color: var(--blue);}</style>
219
+ <style id="bold_style_headline-86987">#headline-86987 .elHeadline b{ color: var(--blue);}</style>
220
+ <style id="bold_style_headline-54494">#headline-54494 .elHeadline b{ color: var(--blue);}</style>
221
+ <style id="bold_style_headline-99787">#headline-99787 .elHeadline b{ color: var(--blue);}</style>
222
+ <style id="bold_style_headline-31958">#headline-31958 .elHeadline b{ color: var(--blue);}</style>
223
+ <style id="bold_style_headline-42238">#headline-42238 .elHeadline b{ color: var(--blue);}</style>
224
+ <style id="bold_style_headline-14926">#headline-14926 .elHeadline b{ color: var(--blue);}</style>
225
+ <style id="bold_style_headline-36044">#headline-36044 .elHeadline b{ color: var(--blue);}</style>
226
+ <style id="bold_style_headline-54314">#headline-54314 .elHeadline b{ color: var(--blue);}</style>
227
+ <style id="bold_style_headline-20962">#headline-20962 .elHeadline b{ color: var(--blue);}</style>
228
+ <style id="bold_style_headline-15263">#headline-15263 .elHeadline b{ color: var(--blue);}</style>
229
+ <style id="bold_style_headline-62428">#headline-62428 .elHeadline b{ color: var(--blue);}</style>
230
+ <style id="bold_style_headline-45287">#headline-45287 .elHeadline b{ color: var(--blue);}</style>
231
+ <style id="bold_style_headline-37140">#headline-37140 .elHeadline b{ color: var(--blue);}</style>
232
+ <style id="bold_style_headline-16171">#headline-16171 .elHeadline b{ color: var(--blue);}</style>
233
+ <style id="bold_style_headline-67116">#headline-67116 .elHeadline b{ color: var(--blue);}</style>
234
+ <style id="bold_style_headline-43422">#headline-43422 .elHeadline b{ color: var(--blue);}</style>
235
+ <style id="bold_style_headline-44480">#headline-44480 .elHeadline b{ color: var(--blue);}</style>
236
+ <style id="bold_style_headline-15003">#headline-15003 .elHeadline b{ color: var(--blue);}</style>
237
+ <style id="bold_style_headline-20203">#headline-20203 .elHeadline b{ color: var(--blue);}</style>
238
+ <style id="bold_style_headline-64698">#headline-64698 .elHeadline b{ color: var(--blue);}</style>
239
+ <style id="bold_style_headline-37718">#headline-37718 .elHeadline b{ color: var(--blue);}</style>
240
+ <style id="bold_style_headline-91802">#headline-91802 .elHeadline b{ color: var(--blue);}</style>
241
+ <style id="bold_style_headline-77916">#headline-77916 .elHeadline b{ color: var(--blue);}</style>
242
+ <style id="bold_style_headline-88267">#headline-88267 .elHeadline b{ color: rgb(0, 0, 0);}</style>
243
+ <style id="bold_style_headline-65357">#headline-65357 .elHeadline b{ color: rgb(0, 0, 0);}</style>
244
+ <style id="bold_style_headline-78558">#headline-78558 .elHeadline b{ color: var(--blue);}</style>
245
+ <style id="bold_style_headline-45490">#headline-45490 .elHeadline b{ color: var(--blue);}</style>
246
+ <style id="button_style_tmp_button-17052">#tmp_button-17052 .elButtonFlat:hover{ background-color: #8d0101 !important;}
247
+ #tmp_button-17052 .elButtonBottomBorder:hover{ background-color: #8d0101 !important;}
248
+ #tmp_button-17052 .elButtonSubtle:hover{ background-color: #8d0101 !important;}
249
+ #tmp_button-17052 .elButtonGradient{ background-image: -webkit-gradient( linear, left top, left bottom, color-stop(0, var(--blue)), color-stop(1, #8d0101)); background-image: -o-linear-gradient(bottom, var(--blue) 0%, #8d0101 100%); background-image: -moz-linear-gradient(bottom, var(--blue) 0%, #8d0101 100%); background-image: -webkit-linear-gradient(bottom, var(--blue) 0%, #8d0101 100%); background-image: -ms-linear-gradient(bottom, var(--blue) 0%, #8d0101 100%); background-image: linear-gradient(to bottom, var(--blue) 0%, #8d0101 100%); }
250
+ #tmp_button-17052 .elButtonGradient:hover{ background-image: -webkit-gradient( linear, left top, left bottom, color-stop(1, var(--blue)), color-stop(0, #8d0101)); background-image: -o-linear-gradient(bottom, var(--blue) 100%, #8d0101 0%); background-image: -moz-linear-gradient(bottom, var(--blue) 100%, #8d0101 0%); background-image: -webkit-linear-gradient(bottom, var(--blue) 100%, #8d0101 0%); background-image: -ms-linear-gradient(bottom, var(--blue) 100%, #8d0101 0%); background-image: linear-gradient(to bottom, var(--blue) 100%, #8d0101 0%); }
251
+ #tmp_button-17052 .elButtonGradient2{ background-image: -webkit-gradient( linear, left top, left bottom, color-stop(0, var(--blue)), color-stop(1, #8d0101)); background-image: -o-linear-gradient(bottom, var(--blue) 30%, #8d0101 80%); background-image: -moz-linear-gradient(bottom, var(--blue) 30%, #8d0101 80%); background-image: -webkit-linear-gradient(bottom, var(--blue) 30%, #8d0101 80%); background-image: -ms-linear-gradient(bottom, var(--blue) 30%, #8d0101 80%); background-image: linear-gradient(to bottom, var(--blue) 30%, #8d0101 80%); }
252
+ #tmp_button-17052 .elButtonGradient2:hover{ background-image: -webkit-gradient( linear, left top, left bottom, color-stop(1, var(--blue)), color-stop(0, #8d0101)); background-image: -o-linear-gradient(bottom, var(--blue) 100%, #8d0101 30%); background-image: -moz-linear-gradient(bottom, var(--blue) 100%, #8d0101 30%); background-image: -webkit-linear-gradient(bottom, var(--blue) 100%, #8d0101 30%); background-image: -ms-linear-gradient(bottom, var(--blue) 100%, #8d0101 30%); background-image: linear-gradient(to bottom, var(--blue) 100%, #8d0101 30%); }
253
+ #tmp_button-17052 .elButtonBorder{ border: 3px solid var(--blue) !important; color: var(--blue) !important; }
254
+ #tmp_button-17052 .elButtonBorder:hover{ background-color:var(--blue) !important; color: #FFF !important; }
255
+ </style>
256
+ <style id="bold_style_headline-94161">#headline-94161 .elHeadline b{ color: var(--blue);}</style>
257
+ <style id="bold_style_headline-98084">#headline-98084 .elHeadline b{ color: rgb(0, 0, 0);}</style>
258
+ <style id="bold_style_headline-47512">#headline-47512 .elHeadline b{ color: var(--blue);}</style>
259
+ <style id="bold_style_headline-40323">#headline-40323 .elHeadline b{ color: var(--blue);}</style>
260
+ <style id="bold_style_headline-55291">#headline-55291 .elHeadline b{ color: rgb(0, 0, 0);}</style>
261
+ <style id="bold_style_headline-39964">#headline-39964 .elHeadline b{ color: rgb(0, 0, 0);}</style>
262
+ <style id="bold_style_headline-71638">#headline-71638 .elHeadline b{ color: rgb(0, 0, 0);}</style>
263
+ <style id="bold_style_headline-94284">#headline-94284 .elHeadline b{ color: rgb(0, 0, 0);}</style>
264
+ <style id="bold_style_headline-73352">#headline-73352 .elHeadline b{ color: rgb(0, 0, 0);}</style>
265
+ <style id="bold_style_headline-99458">#headline-99458 .elHeadline b{ color: var(--blue);}</style>
266
+ <style id="bold_style_headline-99968">#headline-99968 .elHeadline b{ color: rgb(0, 0, 0);}</style>
267
+ <style id="button_style_button-79185">#button-79185 .elButtonFlat:hover{ background-color: #8d0101 !important;}
268
+ #button-79185 .elButtonBottomBorder:hover{ background-color: #8d0101 !important;}
269
+ #button-79185 .elButtonSubtle:hover{ background-color: #8d0101 !important;}
270
+ #button-79185 .elButtonGradient{ background-image: -webkit-gradient( linear, left top, left bottom, color-stop(0, var(--blue)), color-stop(1, #8d0101)); background-image: -o-linear-gradient(bottom, var(--blue) 0%, #8d0101 100%); background-image: -moz-linear-gradient(bottom, var(--blue) 0%, #8d0101 100%); background-image: -webkit-linear-gradient(bottom, var(--blue) 0%, #8d0101 100%); background-image: -ms-linear-gradient(bottom, var(--blue) 0%, #8d0101 100%); background-image: linear-gradient(to bottom, var(--blue) 0%, #8d0101 100%); }
271
+ #button-79185 .elButtonGradient:hover{ background-image: -webkit-gradient( linear, left top, left bottom, color-stop(1, var(--blue)), color-stop(0, #8d0101)); background-image: -o-linear-gradient(bottom, var(--blue) 100%, #8d0101 0%); background-image: -moz-linear-gradient(bottom, var(--blue) 100%, #8d0101 0%); background-image: -webkit-linear-gradient(bottom, var(--blue) 100%, #8d0101 0%); background-image: -ms-linear-gradient(bottom, var(--blue) 100%, #8d0101 0%); background-image: linear-gradient(to bottom, var(--blue) 100%, #8d0101 0%); }
272
+ #button-79185 .elButtonGradient2{ background-image: -webkit-gradient( linear, left top, left bottom, color-stop(0, var(--blue)), color-stop(1, #8d0101)); background-image: -o-linear-gradient(bottom, var(--blue) 30%, #8d0101 80%); background-image: -moz-linear-gradient(bottom, var(--blue) 30%, #8d0101 80%); background-image: -webkit-linear-gradient(bottom, var(--blue) 30%, #8d0101 80%); background-image: -ms-linear-gradient(bottom, var(--blue) 30%, #8d0101 80%); background-image: linear-gradient(to bottom, var(--blue) 30%, #8d0101 80%); }
273
+ #button-79185 .elButtonGradient2:hover{ background-image: -webkit-gradient( linear, left top, left bottom, color-stop(1, var(--blue)), color-stop(0, #8d0101)); background-image: -o-linear-gradient(bottom, var(--blue) 100%, #8d0101 30%); background-image: -moz-linear-gradient(bottom, var(--blue) 100%, #8d0101 30%); background-image: -webkit-linear-gradient(bottom, var(--blue) 100%, #8d0101 30%); background-image: -ms-linear-gradient(bottom, var(--blue) 100%, #8d0101 30%); background-image: linear-gradient(to bottom, var(--blue) 100%, #8d0101 30%); }
274
+ #button-79185 .elButtonBorder{ border: 3px solid var(--blue) !important; color: var(--blue) !important; }
275
+ #button-79185 .elButtonBorder:hover{ background-color:var(--blue) !important; color: #FFF !important; }
276
+ </style>
277
+ <style id="bold_style_headline-96147">#headline-96147 .elHeadline b{ color: rgb(0, 0, 0);}</style>
278
+ <style id="button_style_headline-64698">#headline-64698 .elButtonFlat:hover{ background-color: #000000 !important;}
279
+ #headline-64698 .elButtonBottomBorder:hover{ background-color: #000000 !important;}
280
+ #headline-64698 .elButtonSubtle:hover{ background-color: #000000 !important;}
281
+ #headline-64698 .elButtonGradient{ background-image: -webkit-gradient( linear, left top, left bottom, color-stop(0, rgba(0, 0, 0, 0.04)), color-stop(1, #000000)); background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.04) 0%, #000000 100%); background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.04) 0%, #000000 100%); background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.04) 0%, #000000 100%); background-image: -ms-linear-gradient(bottom, rgba(0, 0, 0, 0.04) 0%, #000000 100%); background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.04) 0%, #000000 100%); }
282
+ #headline-64698 .elButtonGradient:hover{ background-image: -webkit-gradient( linear, left top, left bottom, color-stop(1, rgba(0, 0, 0, 0.04)), color-stop(0, #000000)); background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.04) 100%, #000000 0%); background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.04) 100%, #000000 0%); background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.04) 100%, #000000 0%); background-image: -ms-linear-gradient(bottom, rgba(0, 0, 0, 0.04) 100%, #000000 0%); background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.04) 100%, #000000 0%); }
283
+ #headline-64698 .elButtonBorder{ border: 3px solid rgba(0, 0, 0, 0.04) !important; color: rgba(0, 0, 0, 0.04) !important; }
284
+ #headline-64698 .elButtonBorder:hover{ background-color:rgba(0, 0, 0, 0.04) !important; color: #000 !important; }
285
+ </style>
286
+ <style id="bold_style_headline-43100">#headline-43100 .elHeadline b{ color: rgb(0, 0, 0);}</style>
287
+ <style id="bold_style_tmp_headline1-71641">#tmp_headline1-71641 .elHeadline b{ color: rgb(0, 0, 0);}</style>
288
+ <style id="button_style_tmp_button-77256">#tmp_button-77256 .elButtonFlat:hover{ background-color: #8d0101 !important;}
289
+ #tmp_button-77256 .elButtonBottomBorder:hover{ background-color: #8d0101 !important;}
290
+ #tmp_button-77256 .elButtonSubtle:hover{ background-color: #8d0101 !important;}
291
+ #tmp_button-77256 .elButtonGradient{ background-image: -webkit-gradient( linear, left top, left bottom, color-stop(0, var(--blue)), color-stop(1, #8d0101)); background-image: -o-linear-gradient(bottom, var(--blue) 0%, #8d0101 100%); background-image: -moz-linear-gradient(bottom, var(--blue) 0%, #8d0101 100%); background-image: -webkit-linear-gradient(bottom, var(--blue) 0%, #8d0101 100%); background-image: -ms-linear-gradient(bottom, var(--blue) 0%, #8d0101 100%); background-image: linear-gradient(to bottom, var(--blue) 0%, #8d0101 100%); }
292
+ #tmp_button-77256 .elButtonGradient:hover{ background-image: -webkit-gradient( linear, left top, left bottom, color-stop(1, var(--blue)), color-stop(0, #8d0101)); background-image: -o-linear-gradient(bottom, var(--blue) 100%, #8d0101 0%); background-image: -moz-linear-gradient(bottom, var(--blue) 100%, #8d0101 0%); background-image: -webkit-linear-gradient(bottom, var(--blue) 100%, #8d0101 0%); background-image: -ms-linear-gradient(bottom, var(--blue) 100%, #8d0101 0%); background-image: linear-gradient(to bottom, var(--blue) 100%, #8d0101 0%); }
293
+ #tmp_button-77256 .elButtonGradient2{ background-image: -webkit-gradient( linear, left top, left bottom, color-stop(0, var(--blue)), color-stop(1, #8d0101)); background-image: -o-linear-gradient(bottom, var(--blue) 30%, #8d0101 80%); background-image: -moz-linear-gradient(bottom, var(--blue) 30%, #8d0101 80%); background-image: -webkit-linear-gradient(bottom, var(--blue) 30%, #8d0101 80%); background-image: -ms-linear-gradient(bottom, var(--blue) 30%, #8d0101 80%); background-image: linear-gradient(to bottom, var(--blue) 30%, #8d0101 80%); }
294
+ #tmp_button-77256 .elButtonGradient2:hover{ background-image: -webkit-gradient( linear, left top, left bottom, color-stop(1, var(--blue)), color-stop(0, #8d0101)); background-image: -o-linear-gradient(bottom, var(--blue) 100%, #8d0101 30%); background-image: -moz-linear-gradient(bottom, var(--blue) 100%, #8d0101 30%); background-image: -webkit-linear-gradient(bottom, var(--blue) 100%, #8d0101 30%); background-image: -ms-linear-gradient(bottom, var(--blue) 100%, #8d0101 30%); background-image: linear-gradient(to bottom, var(--blue) 100%, #8d0101 30%); }
295
+ #tmp_button-77256 .elButtonBorder{ border: 3px solid var(--blue) !important; color: var(--blue) !important; }
296
+ #tmp_button-77256 .elButtonBorder:hover{ background-color:var(--blue) !important; color: #FFF !important; }
297
+ </style>
298
+ <style id="bold_style_headline-96767">#headline-96767 .elHeadline b{ color: var(--blue);}</style>
299
+ <style id="button_style_headline-78869">#headline-78869 .elButtonFlat:hover{ background-color: #000000 !important;}
300
+ #headline-78869 .elButtonBottomBorder:hover{ background-color: #000000 !important;}
301
+ #headline-78869 .elButtonSubtle:hover{ background-color: #000000 !important;}
302
+ #headline-78869 .elButtonGradient{ background-image: -webkit-gradient( linear, left top, left bottom, color-stop(0, rgba(0, 0, 0, 0)), color-stop(1, #000000)); background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0) 0%, #000000 100%); background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0) 0%, #000000 100%); background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 0%, #000000 100%); background-image: -ms-linear-gradient(bottom, rgba(0, 0, 0, 0) 0%, #000000 100%); background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000000 100%); }
303
+ #headline-78869 .elButtonGradient:hover{ background-image: -webkit-gradient( linear, left top, left bottom, color-stop(1, rgba(0, 0, 0, 0)), color-stop(0, #000000)); background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0) 100%, #000000 0%); background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0) 100%, #000000 0%); background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 100%, #000000 0%); background-image: -ms-linear-gradient(bottom, rgba(0, 0, 0, 0) 100%, #000000 0%); background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 100%, #000000 0%); }
304
+ #headline-78869 .elButtonGradient2{ background-image: -webkit-gradient( linear, left top, left bottom, color-stop(0, rgba(0, 0, 0, 0)), color-stop(1, #000000)); background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0) 30%, #000000 80%); background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0) 30%, #000000 80%); background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 30%, #000000 80%); background-image: -ms-linear-gradient(bottom, rgba(0, 0, 0, 0) 30%, #000000 80%); background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 30%, #000000 80%); }
305
+ #headline-78869 .elButtonGradient2:hover{ background-image: -webkit-gradient( linear, left top, left bottom, color-stop(1, rgba(0, 0, 0, 0)), color-stop(0, #000000)); background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0) 100%, #000000 30%); background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0) 100%, #000000 30%); background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 100%, #000000 30%); background-image: -ms-linear-gradient(bottom, rgba(0, 0, 0, 0) 100%, #000000 30%); background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 100%, #000000 30%); }
306
+ #headline-78869 .elButtonBorder{ border: 3px solid rgba(0, 0, 0, 0) !important; color: rgba(0, 0, 0, 0) !important; }
307
+ #headline-78869 .elButtonBorder:hover{ background-color:rgba(0, 0, 0, 0) !important; color: #000 !important; }
308
+ </style>
309
+ <style id="bold_style_headline-78869">#headline-78869 .elHeadline b{ color: var(--blue);}</style>
310
+ <style id="bold_style_headline-81556">#headline-81556 .elHeadline b{ color: var(--blue);}</style>
311
+
312
+ <style id="button_style_tmp_button-43376">#tmp_button-43376 .elButtonFlat:hover{ background-color: #000000 !important;} #tmp_button-43376 .elButtonBottomBorder:hover{ background-color: #000000 !important;}#tmp_button-43376 .elButtonSubtle:hover{ background-color: #000000 !important;}#tmp_button-43376 .elButtonGradient{ background-image: -webkit-gradient( linear, left top, left bottom, color-stop(0, rgb(0, 0, 0)), color-stop(1, #000000)); background-image: -o-linear-gradient(bottom, rgb(0, 0, 0) 0%, #000000 100%); background-image: -moz-linear-gradient(bottom, rgb(0, 0, 0) 0%, #000000 100%); background-image: -webkit-linear-gradient(bottom, rgb(0, 0, 0) 0%, #000000 100%); background-image: -ms-linear-gradient(bottom, rgb(0, 0, 0) 0%, #000000 100%); background-image: linear-gradient(to bottom, rgb(0, 0, 0) 0%, #000000 100%); }#tmp_button-43376 .elButtonGradient:hover{ background-image: -webkit-gradient( linear, left top, left bottom, color-stop(1, rgb(0, 0, 0)), color-stop(0, #000000)); background-image: -o-linear-gradient(bottom, rgb(0, 0, 0) 100%, #000000 0%); background-image: -moz-linear-gradient(bottom, rgb(0, 0, 0) 100%, #000000 0%); background-image: -webkit-linear-gradient(bottom, rgb(0, 0, 0) 100%, #000000 0%); background-image: -ms-linear-gradient(bottom, rgb(0, 0, 0) 100%, #000000 0%); background-image: linear-gradient(to bottom, rgb(0, 0, 0) 100%, #000000 0%); }#tmp_button-43376 .elButtonGradient2{ background-image: -webkit-gradient( linear, left top, left bottom, color-stop(0, rgb(0, 0, 0)), color-stop(1, #000000)); background-image: -o-linear-gradient(bottom, rgb(0, 0, 0) 30%, #000000 80%); background-image: -moz-linear-gradient(bottom, rgb(0, 0, 0) 30%, #000000 80%); background-image: -webkit-linear-gradient(bottom, rgb(0, 0, 0) 30%, #000000 80%); background-image: -ms-linear-gradient(bottom, rgb(0, 0, 0) 30%, #000000 80%); background-image: linear-gradient(to bottom, rgb(0, 0, 0) 30%, #000000 80%); }#tmp_button-43376 .elButtonGradient2:hover{ background-image: -webkit-gradient( linear, left top, left bottom, color-stop(1, rgb(0, 0, 0)), color-stop(0, #000000)); background-image: -o-linear-gradient(bottom, rgb(0, 0, 0) 100%, #000000 30%); background-image: -moz-linear-gradient(bottom, rgb(0, 0, 0) 100%, #000000 30%); background-image: -webkit-linear-gradient(bottom, rgb(0, 0, 0) 100%, #000000 30%); background-image: -ms-linear-gradient(bottom, rgb(0, 0, 0) 100%, #000000 30%); background-image: linear-gradient(to bottom, rgb(0, 0, 0) 100%, #000000 30%); }#tmp_button-43376 .elButtonBorder{ border: 3px solid rgb(0, 0, 0) !important; color: rgb(0, 0, 0) !important; }#tmp_button-43376 .elButtonBorder:hover{ background-color:rgb(0, 0, 0) !important; color: #FFF !important; }</style>
313
+
314
+
315
+ <style id="button_style_tmp_button-92966">#tmp_button-92966 .elButtonFlat:hover{ background-color: #bf1827 !important;} #tmp_button-92966 .elButtonBottomBorder:hover{ background-color: #bf1827 !important;}#tmp_button-92966 .elButtonSubtle:hover{ background-color: #bf1827 !important;}#tmp_button-92966 .elButtonGradient{ background-image: -webkit-gradient( linear, left top, left bottom, color-stop(0, rgb(227, 29, 47)), color-stop(1, #bf1827)); background-image: -o-linear-gradient(bottom, rgb(227, 29, 47) 0%, #bf1827 100%); background-image: -moz-linear-gradient(bottom, rgb(227, 29, 47) 0%, #bf1827 100%); background-image: -webkit-linear-gradient(bottom, rgb(227, 29, 47) 0%, #bf1827 100%); background-image: -ms-linear-gradient(bottom, rgb(227, 29, 47) 0%, #bf1827 100%); background-image: linear-gradient(to bottom, rgb(227, 29, 47) 0%, #bf1827 100%); }#tmp_button-92966 .elButtonGradient:hover{ background-image: -webkit-gradient( linear, left top, left bottom, color-stop(1, rgb(227, 29, 47)), color-stop(0, #bf1827)); background-image: -o-linear-gradient(bottom, rgb(227, 29, 47) 100%, #bf1827 0%); background-image: -moz-linear-gradient(bottom, rgb(227, 29, 47) 100%, #bf1827 0%); background-image: -webkit-linear-gradient(bottom, rgb(227, 29, 47) 100%, #bf1827 0%); background-image: -ms-linear-gradient(bottom, rgb(227, 29, 47) 100%, #bf1827 0%); background-image: linear-gradient(to bottom, rgb(227, 29, 47) 100%, #bf1827 0%); }#tmp_button-92966 .elButtonGradient2{ background-image: -webkit-gradient( linear, left top, left bottom, color-stop(0, rgb(227, 29, 47)), color-stop(1, #bf1827)); background-image: -o-linear-gradient(bottom, rgb(227, 29, 47) 30%, #bf1827 80%); background-image: -moz-linear-gradient(bottom, rgb(227, 29, 47) 30%, #bf1827 80%); background-image: -webkit-linear-gradient(bottom, rgb(227, 29, 47) 30%, #bf1827 80%); background-image: -ms-linear-gradient(bottom, rgb(227, 29, 47) 30%, #bf1827 80%); background-image: linear-gradient(to bottom, rgb(227, 29, 47) 30%, #bf1827 80%); }#tmp_button-92966 .elButtonGradient2:hover{ background-image: -webkit-gradient( linear, left top, left bottom, color-stop(1, rgb(227, 29, 47)), color-stop(0, #bf1827)); background-image: -o-linear-gradient(bottom, rgb(227, 29, 47) 100%, #bf1827 30%); background-image: -moz-linear-gradient(bottom, rgb(227, 29, 47) 100%, #bf1827 30%); background-image: -webkit-linear-gradient(bottom, rgb(227, 29, 47) 100%, #bf1827 30%); background-image: -ms-linear-gradient(bottom, rgb(227, 29, 47) 100%, #bf1827 30%); background-image: linear-gradient(to bottom, rgb(227, 29, 47) 100%, #bf1827 30%); }#tmp_button-92966 .elButtonBorder{ border: 3px solid rgb(227, 29, 47) !important; color: rgb(227, 29, 47) !important; }#tmp_button-92966 .elButtonBorder:hover{ background-color:rgb(227, 29, 47) !important; color: #FFF !important; }</style>
316
+ <style id="button_style_button-90677">#button-90677 .elButtonFlat:hover{ background-color: #b61725 !important;} #button-90677 .elButtonBottomBorder:hover{ background-color: #b61725 !important;}#button-90677 .elButtonSubtle:hover{ background-color: #b61725 !important;}#button-90677 .elButtonGradient{ background-image: -webkit-gradient( linear, left top, left bottom, color-stop(0, rgb(227, 29, 47)), color-stop(1, #b61725)); background-image: -o-linear-gradient(bottom, rgb(227, 29, 47) 0%, #b61725 100%); background-image: -moz-linear-gradient(bottom, rgb(227, 29, 47) 0%, #b61725 100%); background-image: -webkit-linear-gradient(bottom, rgb(227, 29, 47) 0%, #b61725 100%); background-image: -ms-linear-gradient(bottom, rgb(227, 29, 47) 0%, #b61725 100%); background-image: linear-gradient(to bottom, rgb(227, 29, 47) 0%, #b61725 100%); }#button-90677 .elButtonGradient:hover{ background-image: -webkit-gradient( linear, left top, left bottom, color-stop(1, rgb(227, 29, 47)), color-stop(0, #b61725)); background-image: -o-linear-gradient(bottom, rgb(227, 29, 47) 100%, #b61725 0%); background-image: -moz-linear-gradient(bottom, rgb(227, 29, 47) 100%, #b61725 0%); background-image: -webkit-linear-gradient(bottom, rgb(227, 29, 47) 100%, #b61725 0%); background-image: -ms-linear-gradient(bottom, rgb(227, 29, 47) 100%, #b61725 0%); background-image: linear-gradient(to bottom, rgb(227, 29, 47) 100%, #b61725 0%); }#button-90677 .elButtonBorder{ border: 3px solid rgb(227, 29, 47) !important; color: rgb(227, 29, 47) !important; }#button-90677 .elButtonBorder:hover{ background-color:rgb(227, 29, 47) !important; color: #FFF !important; }</style>
@@ -0,0 +1 @@
1
+ headline: <b>ATTN:</b> Call out to your dream customer!! Get set for <u>AWESOME</u> outcomes from taking action!!
@@ -0,0 +1,15 @@
1
+ title: Your Site's name
2
+ tagline: Something spunky, confident, energetic
3
+ email: support@yourdomain.com
4
+ fb_page: https://www.facebook.com/groups/yourdomain/
5
+ description: >-
6
+ Your spunky catchline and theme about the beneficial outcome you want your customers to capitalize on
7
+ og-image: images/seasonally-stoked-logo.png
8
+ og-title: Your Site's name
9
+ og-description: >-
10
+ Your spunky catchline and theme about the beneficial outcome you want your customers to capitalize on
11
+ og-url: https://yourdomain.com
12
+ canonical: https://yourdomain.com
13
+ logo: https://yourdomain.com
14
+ address: a PO box on the moon, ideally
15
+ gtm-tag: G-TAGNUMBERS
@@ -0,0 +1,29 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <div class="containerWrapper">
6
+ {% render "1_top_banner", data: site.data.1_top_banner, event: site.data.event_details %}
7
+ {% render "2_offer_hook", data: site.data.2_offer_hook, button: site.data.6_cta_button, event: site.data.event_details %}
8
+ {% render "3_anchor_banner_text", data: site.data.3_anchor_banner %}
9
+ {% render "3_anchor_banner", data: site.data.3_anchor_banner %}
10
+ {% render "4_vehicle_text", data: site.data.4_vehicle_text, button: site.data.5_cta_button %}
11
+ {% render "3_anchor_text", data: site.data.3_anchor_text %}
12
+ {% render "5_bonus_offer", data: site.data.5_bonus_offer %}
13
+ {% render "6_cta_button", data: site.data.6_cta_button %}
14
+ <div class="container noTopMargin padding40-top padding40-bottom padding40H noBorder borderSolid border3px radius0 activeSection_topBorder0 activeSection_bottomBorder0 fullContainer bgCover" style="background-color: var(--blue); padding-top: 0px; padding-bottom: 75px; outline: none; margin-top: 0px;">
15
+ <div class="containerInner ui-sortable" style="padding-left: 100px; padding-right: 100px;">
16
+ {% render "7_testimonials", data: site.data.7_testimonials %}
17
+ {% render "8_payment_link", data: site.data.8_payment_link %}
18
+ </div>
19
+ </div>
20
+ </div>
21
+
22
+ {% render "signup_form", data: site.data.signup_form %}
23
+ {% render "loading_text" %}
24
+ <div class="event-start-expiration" style="display: none;">
25
+ {{ site.data.event_details.seminar_date }}</div>
26
+ <div class="show-cart-expiration" style="display: none;">
27
+ {{ site.data.event_details.show_link_time }}</div>
28
+ <div class="hide-cart-expiration" style="display: none;">
29
+ {{ site.data.event_details.close_cart_time }}</div>
@@ -0,0 +1,11 @@
1
+ # frozen_string_literal: true
2
+
3
+ module SinglePageOptInTheme
4
+ class Builder < Bridgetown::Builder
5
+ def build
6
+ liquid_tag "bridgetown_theme_single_page_opt_in" do
7
+ "This plugin works!"
8
+ end
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module SinglePageOptInTheme
4
+ VERSION = "0.1.1"
5
+ end
@@ -0,0 +1,27 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bridgetown"
4
+ require "bridgetown_theme_single_page_opt_in/builder"
5
+
6
+ # @param config [Bridgetown::Configuration::ConfigurationDSL]
7
+ Bridgetown.initializer :bridgetown_theme_single_page_opt_in do |config|
8
+ # Add code here which will run when a site includes
9
+ # `init :bridgetown_theme_single_page_opt_in`
10
+ # in its configuration
11
+
12
+ # Add default configuration data:
13
+ config.bridgetown_theme_single_page_opt_in ||= {}
14
+ config.bridgetown_theme_single_page_opt_in.my_setting ||= 123
15
+
16
+ # Register your builder:
17
+ config.builder SinglePageOptInTheme::Builder
18
+
19
+ # You can optionally supply a source manifest:
20
+ config.source_manifest(
21
+ origin: SinglePageOptInTheme,
22
+ components: File.expand_path("../components", __dir__),
23
+ layouts: File.expand_path("../layouts", __dir__),
24
+ content: File.expand_path("../content", __dir__),
25
+ spoi_data: File.expand_path("../data", __dir__)
26
+ )
27
+ end
metadata ADDED
@@ -0,0 +1,120 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: bridgetown_theme_single_page_opt_in
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ platform: ruby
6
+ authors:
7
+ - graial
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2025-01-25 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bridgetown
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 1.2.0
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: '2.0'
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: 1.2.0
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: '2.0'
33
+ - !ruby/object:Gem::Dependency
34
+ name: bundler
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ version: '0'
40
+ type: :development
41
+ prerelease: false
42
+ version_requirements: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ version: '0'
47
+ - !ruby/object:Gem::Dependency
48
+ name: rake
49
+ requirement: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ version: '13.0'
54
+ type: :development
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - ">="
59
+ - !ruby/object:Gem::Version
60
+ version: '13.0'
61
+ - !ruby/object:Gem::Dependency
62
+ name: rubocop-bridgetown
63
+ requirement: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - "~>"
66
+ - !ruby/object:Gem::Version
67
+ version: '0.3'
68
+ type: :development
69
+ prerelease: false
70
+ version_requirements: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - "~>"
73
+ - !ruby/object:Gem::Version
74
+ version: '0.3'
75
+ description:
76
+ email: graial@paglalayag.net
77
+ executables: []
78
+ extensions: []
79
+ extra_rdoc_files: []
80
+ files:
81
+ - ".gitignore"
82
+ - CHANGELOG.md
83
+ - Gemfile
84
+ - LICENSE.txt
85
+ - README.md
86
+ - bridgetown.automation.rb
87
+ - bridgetown_theme_single_page_opt_in.gemspec
88
+ - components/bridgetown_theme_single_page_opt_in/1_top_banner.liquid
89
+ - components/bridgetown_theme_single_page_opt_in/head.liquid
90
+ - components/bridgetown_theme_single_page_opt_in/styles.liquid
91
+ - data/1_top_banner.yml
92
+ - data/site_metadata.yml
93
+ - layouts/bridgetown_theme_single_page_opt_in/landing.liquid
94
+ - lib/bridgetown_theme_single_page_opt_in.rb
95
+ - lib/bridgetown_theme_single_page_opt_in/builder.rb
96
+ - lib/bridgetown_theme_single_page_opt_in/version.rb
97
+ homepage: https://github.com/paglalayag/bridgetown_theme_single_page_opt_in
98
+ licenses:
99
+ - MIT
100
+ metadata: {}
101
+ post_install_message:
102
+ rdoc_options: []
103
+ require_paths:
104
+ - lib
105
+ required_ruby_version: !ruby/object:Gem::Requirement
106
+ requirements:
107
+ - - ">="
108
+ - !ruby/object:Gem::Version
109
+ version: 2.7.0
110
+ required_rubygems_version: !ruby/object:Gem::Requirement
111
+ requirements:
112
+ - - ">="
113
+ - !ruby/object:Gem::Version
114
+ version: '0'
115
+ requirements: []
116
+ rubygems_version: 3.4.10
117
+ signing_key:
118
+ specification_version: 4
119
+ summary: a template for getting your kicks in with online sales
120
+ test_files: []