Gallery – Photo Gallery and Images Gallery - Version 3.0.6

Version Description

  • New free image slider theme
  • Added clone function to masonry, mosaic, youtube, polaroid types
  • Fix of the link and buttons in masonry
  • Fix of the aligment
  • Fix of the new dialog interface
  • Fix menu and categories
  • Fix of the search text management
Download this release

Release Info

Developer robosoft
Plugin Icon 128x128 Gallery – Photo Gallery and Images Gallery
Version 3.0.6
Comparing to
See all releases

Code changes from version 3.0.5 to 3.0.6

Files changed (63) hide show
  1. app/app.php +2 -2
  2. app/class.brand.php +1 -1
  3. app/class.listing.php +1 -1
  4. app/class.php +1 -1
  5. app/class.restapi.php +62 -0
  6. app/class.utils.php +1 -1
  7. app/class.view.php +1 -1
  8. app/extensions/dashboard/assets/style.css +1 -1
  9. app/extensions/dashboard/class.dashboard.php +1 -1
  10. app/extensions/dashboard/init.php +1 -1
  11. app/extensions/dashboard/overview.php +1 -1
  12. app/extensions/dashboard/video_guide.php +1 -1
  13. app/extensions/duplicate/init.php +1 -1
  14. app/extensions/fields/asset/core/css/app-style.css +23 -27
  15. app/extensions/fields/asset/core/css/app.css +0 -2782
  16. app/extensions/fields/asset/core/js/app.js +1 -1
  17. app/extensions/fields/asset/fields/css/update.key.css +3 -1
  18. app/extensions/fields/asset/fields/gallery/js/gallery.lib.min.js +2 -2
  19. app/extensions/fields/asset/fields/gallery/js/script.min.js +2 -2
  20. app/extensions/fields/asset/help/help.js +1 -1
  21. app/extensions/fields/config/main.php +1 -1
  22. app/extensions/fields/config/metabox/gallery_slider_animation.php +89 -0
  23. app/extensions/fields/config/metabox/gallery_slider_content.php +95 -0
  24. app/extensions/fields/config/metabox/gallery_slider_general.php +200 -0
  25. app/extensions/fields/config/metabox/gallery_slider_interface.php +71 -0
  26. app/extensions/fields/config/metabox/gallery_slider_lazyload.php +72 -0
  27. app/extensions/fields/config/metabox/gallery_type.php +1 -1
  28. app/extensions/fields/config/metabox/gallery_youtube.php +1 -1
  29. app/extensions/fields/config/metabox/image.php +3 -1
  30. app/extensions/fields/config/metabox/shortcode.php +36 -0
  31. app/extensions/fields/config/metabox/update_notice.php +1 -1
  32. app/extensions/fields/include/roboGalleryFields.php +3 -2
  33. app/extensions/fields/include/roboGalleryFieldsAjax.php +1 -1
  34. app/extensions/fields/include/roboGalleryFieldsConfig.php +1 -1
  35. app/extensions/fields/include/roboGalleryFieldsConfig/roboGalleryFieldsConfigReader.php +1 -1
  36. app/extensions/fields/include/roboGalleryFieldsConfig/roboGalleryFieldsConfigReaderInterface.php +1 -1
  37. app/extensions/fields/include/roboGalleryFieldsConfig/roboGalleryFieldsConfigReaderPhp.php +1 -1
  38. app/extensions/fields/include/roboGalleryFieldsField/roboGalleryFieldsField.php +1 -1
  39. app/extensions/fields/include/roboGalleryFieldsField/roboGalleryFieldsFieldCheckbox.php +1 -1
  40. app/extensions/fields/include/roboGalleryFieldsField/roboGalleryFieldsFieldCheckboxGroup.php +1 -1
  41. app/extensions/fields/include/roboGalleryFieldsField/roboGalleryFieldsFieldCheckboxGroupButton.php +1 -1
  42. app/extensions/fields/include/roboGalleryFieldsField/roboGalleryFieldsFieldCheckboxGroupSwitch.php +1 -1
  43. app/extensions/fields/include/roboGalleryFieldsField/roboGalleryFieldsFieldGalleryType.php +1 -1
  44. app/extensions/fields/include/roboGalleryFieldsField/roboGalleryFieldsFieldHtml.php +1 -1
  45. app/extensions/fields/include/roboGalleryFieldsField/roboGalleryFieldsFieldSelectMultiple.php +1 -1
  46. app/extensions/fields/include/roboGalleryFieldsField/roboGalleryFieldsFieldText.php +1 -1
  47. app/extensions/fields/include/roboGalleryFieldsField/roboGalleryFieldsFieldTextColor.php +1 -1
  48. app/extensions/fields/include/roboGalleryFieldsField/roboGalleryFieldsFieldTextSlider.php +1 -1
  49. app/extensions/fields/include/roboGalleryFieldsField/roboGalleryFieldsFieldThemes.php +1 -1
  50. app/extensions/fields/include/roboGalleryFieldsFieldFactory.php +1 -1
  51. app/extensions/fields/include/roboGalleryFieldsHelper.php +1 -1
  52. app/extensions/fields/include/roboGalleryFieldsMetaBoxClass.php +1 -1
  53. app/extensions/fields/include/roboGalleryFieldsView.php +1 -1
  54. app/extensions/fields/init.php +1 -1
  55. app/extensions/fields/template/content/gallery_type/content.tpl.php +1 -1
  56. app/extensions/fields/template/content/gallery_type/type_slider.tpl.php +6 -0
  57. app/extensions/fields/template/field/select/default.tpl.php +2 -2
  58. app/extensions/fields/template/field/text/images.tpl.php +1 -1
  59. app/extensions/galleryType/build/grids/slider.svg +172 -0
  60. app/extensions/galleryType/build/grids/slider_active.svg +186 -0
  61. app/extensions/galleryType/build/grids/slider_pro.svg +159 -0
  62. app/extensions/galleryType/build/grids/slider_pro_active.svg +159 -0
  63. app/extensions/galleryType/build/static/css/main.min.css +5 -5
app/app.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  /*
4
  * Robo Gallery
5
- * Version: 3.0.5 - 66649
6
  * By Robosoft
7
  *
8
  * Contact: https://robosoft.co/robogallery/
@@ -12,8 +12,8 @@
12
  */
13
 
14
 
15
-
16
  /* classes */
 
17
  /*include_once ROBO_GALLERY_APP_PATH.'class.helper.php';*/
18
  include_once ROBO_GALLERY_APP_PATH.'class.view.php';
19
  include_once ROBO_GALLERY_APP_PATH.'class.brand.php';
2
 
3
  /*
4
  * Robo Gallery
5
+ * Version: 3.0.7 - 90614
6
  * By Robosoft
7
  *
8
  * Contact: https://robosoft.co/robogallery/
12
  */
13
 
14
 
 
15
  /* classes */
16
+ include_once ROBO_GALLERY_APP_PATH.'class.restapi.php';
17
  /*include_once ROBO_GALLERY_APP_PATH.'class.helper.php';*/
18
  include_once ROBO_GALLERY_APP_PATH.'class.view.php';
19
  include_once ROBO_GALLERY_APP_PATH.'class.brand.php';
app/class.brand.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  /*
4
  * Robo Gallery
5
- * Version: 3.0.5 - 66649
6
  * By Robosoft
7
  *
8
  * Contact: https://robosoft.co/robogallery/
2
 
3
  /*
4
  * Robo Gallery
5
+ * Version: 3.0.7 - 90614
6
  * By Robosoft
7
  *
8
  * Contact: https://robosoft.co/robogallery/
app/class.listing.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Robo Gallery
4
- * Version: 3.0.5 - 66649
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
1
  <?php
2
  /*
3
  * Robo Gallery
4
+ * Version: 3.0.7 - 90614
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
app/class.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Robo Gallery
4
- * Version: 3.0.5 - 66649
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
1
  <?php
2
  /*
3
  * Robo Gallery
4
+ * Version: 3.0.7 - 90614
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
app/class.restapi.php ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Robo Gallery
4
+ * Version: 3.0.7 - 90614
5
+ * By Robosoft
6
+ *
7
+ * Contact: https://robosoft.co/robogallery/
8
+ * Created: 2015
9
+ * Licensed under the GPLv2 license - http://opensource.org/licenses/gpl-2.0.php
10
+
11
+ */
12
+
13
+ if ( ! defined( 'WPINC' ) ) exit;
14
+
15
+ class RoboGalleryRestAPI {
16
+
17
+ public function __construct(){}
18
+
19
+
20
+ public static function init(){
21
+ add_action( 'rest_api_init', array( 'RoboGalleryRestAPI', 'add_restapi_meta_field' ) );
22
+ }
23
+
24
+
25
+ public static function add_restapi_meta_field() {
26
+ // register_rest_field ( 'name-of-post-type', 'name-of-field-to-return', array-of-callbacks-and-schema() )
27
+ register_rest_field( ROBO_GALLERY_TYPE_POST, 'meta-fields', array(
28
+ 'get_callback' => array( 'RoboGalleryRestAPI', 'get_post_meta_for_api'),
29
+ 'schema' => null,
30
+ )
31
+ );
32
+ }
33
+
34
+
35
+ public static function get_post_meta_for_api( $object ){
36
+
37
+ $post_id = $object['id'];
38
+ $metaData = get_post_meta( $post_id );
39
+
40
+ if(!empty( $metaData['rsg_shadow-options'][0] )){
41
+ $metaData['rsg_shadow-options'][0] = unserialize( $metaData['rsg_shadow-options'][0] );
42
+ }
43
+
44
+ if( !empty($metaData['rsg_galleryImages'][0]) ){
45
+
46
+ function toInt($n){ return (int) $n; }
47
+
48
+ $imagesArray = unserialize( $metaData['rsg_galleryImages'][0] );
49
+ $imagesArray = array_map('toInt', $imagesArray);
50
+ $metaData['rsg_galleryImages'] = array( 'count' => count($imagesArray), 'items' => $imagesArray );
51
+ }
52
+
53
+ if(!empty($metaData['rsg_width-size'])){
54
+ $metaData['rsg_width-size'] = unserialize( $metaData['rsg_width-size'][0] );
55
+ }
56
+
57
+ return $metaData;
58
+ }
59
+
60
+ }
61
+
62
+ RoboGalleryRestAPI::init();
app/class.utils.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Robo Gallery
4
- * Version: 3.0.5 - 66649
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
1
  <?php
2
  /*
3
  * Robo Gallery
4
+ * Version: 3.0.7 - 90614
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
app/class.view.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  /*
4
  * Robo Gallery
5
- * Version: 3.0.5 - 66649
6
  * By Robosoft
7
  *
8
  * Contact: https://robosoft.co/robogallery/
2
 
3
  /*
4
  * Robo Gallery
5
+ * Version: 3.0.7 - 90614
6
  * By Robosoft
7
  *
8
  * Contact: https://robosoft.co/robogallery/
app/extensions/dashboard/assets/style.css CHANGED
@@ -1,7 +1,7 @@
1
 
2
  /*
3
  * Robo Gallery
4
- * Version: 3.0.5 - 66649
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
1
 
2
  /*
3
  * Robo Gallery
4
+ * Version: 3.0.7 - 90614
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
app/extensions/dashboard/class.dashboard.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Robo Gallery
4
- * Version: 3.0.5 - 66649
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
1
  <?php
2
  /*
3
  * Robo Gallery
4
+ * Version: 3.0.7 - 90614
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
app/extensions/dashboard/init.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Robo Gallery
4
- * Version: 3.0.5 - 66649
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
1
  <?php
2
  /*
3
  * Robo Gallery
4
+ * Version: 3.0.7 - 90614
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
app/extensions/dashboard/overview.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Robo Gallery
4
- * Version: 3.0.5 - 66649
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
1
  <?php
2
  /*
3
  * Robo Gallery
4
+ * Version: 3.0.7 - 90614
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
app/extensions/dashboard/video_guide.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Robo Gallery
4
- * Version: 3.0.5 - 66649
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
1
  <?php
2
  /*
3
  * Robo Gallery
4
+ * Version: 3.0.7 - 90614
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
app/extensions/duplicate/init.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Robo Gallery
4
- * Version: 3.0.5 - 66649
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
1
  <?php
2
  /*
3
  * Robo Gallery
4
+ * Version: 3.0.7 - 90614
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
app/extensions/fields/asset/core/css/app-style.css CHANGED
@@ -2770,41 +2770,37 @@ body.roboGalleryFields #wpcontent div.roboGalleryFields .checkIcon .dashicons{
2770
  color: green;
2771
  }
2772
 
2773
- body.roboGalleryFields #wpcontent div.roboGalleryFields .checkIcon.ape-gallery-field-theme-default-current .dashicons{
2774
- float:left;
2775
- margin-left: -33px;
2776
- margin-bottom: -12px;
2777
- margin-top: -10px;
2778
- }
2779
- body.roboGalleryFields #wpcontent div.roboGalleryFields .ape-gallery-field-theme-default-current .desc{
2780
- padding-top: 10px;
2781
- font-weight: bold;
2782
- }
2783
 
2784
- /* Theme Available Block */
2785
- body.roboGalleryFields #wpcontent div.roboGalleryFields #wroboGalleryThemeAvailable{
2786
- text-align: center;
2787
- }
2788
- body.roboGalleryFields #wpcontent div.roboGalleryFields #wroboGalleryThemeAvailable .desc{
2789
- font-weight: bold;
2790
- font-size: 14px;
2791
- padding: 10px 20px 10px 10px;
2792
- }
2793
 
2794
- body.roboGalleryFields #wpcontent div.roboGalleryFields #wroboGalleryThemeAvailable .theme_images img{
2795
- max-width: 100px;
2796
- padding-right: 15px;
 
 
 
 
 
 
 
 
 
2797
  }
2798
 
2799
- body.roboGalleryFields #wpcontent div.roboGalleryFields #wroboGalleryThemeAvailable .theme_images a:hover,
2800
- body.roboGalleryFields #wpcontent div.roboGalleryFields #wroboGalleryThemeAvailable .theme_images a:focus,
2801
- body.roboGalleryFields #wpcontent div.roboGalleryFields #wroboGalleryThemeAvailable .theme_images a:active{
2802
- box-shadow: none;
 
 
 
 
 
2803
  }
2804
 
2805
 
2806
 
2807
- /* theme type block */
2808
  body.roboGalleryFields #wpcontent div.roboGalleryFields #roboGalleryThemeTypeDiv:parent{ }
2809
  body.roboGalleryFields #wpcontent div.roboGalleryFields #roboGalleryThemeTypeDiv{
2810
  text-align: justify;
2770
  color: green;
2771
  }
2772
 
 
 
 
 
 
 
 
 
 
 
2773
 
2774
+ /* ShortCode */
 
 
 
 
 
 
 
 
2775
 
2776
+ body.roboGalleryFields #wpcontent div.roboGalleryFields .robo-gallery-shortcode {
2777
+ text-align: center;
2778
+ font-weight: bolder;
2779
+ font-style: normal;
2780
+ color: black;
2781
+ padding: 10px;
2782
+ border: 2px solid silver;
2783
+ margin-top: 15px;
2784
+ margin-left: -10px;
2785
+ margin-right: -10px;
2786
+ font-weight: bold;
2787
+ font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
2788
  }
2789
 
2790
+ body.roboGalleryFields #wpcontent div.roboGalleryFields .robo-gallery-shortcode-desc {
2791
+ text-align: center;
2792
+ padding-bottom: 5px !important;
2793
+ padding-top: 5px !important;
2794
+ color: #3c434a;
2795
+ font-size: 13px;
2796
+ margin-left: -10px;
2797
+ margin-right: -10px;
2798
+ font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
2799
  }
2800
 
2801
 
2802
 
2803
+ /* Gallery type block */
2804
  body.roboGalleryFields #wpcontent div.roboGalleryFields #roboGalleryThemeTypeDiv:parent{ }
2805
  body.roboGalleryFields #wpcontent div.roboGalleryFields #roboGalleryThemeTypeDiv{
2806
  text-align: justify;
app/extensions/fields/asset/core/css/app.css DELETED
@@ -1,2782 +0,0 @@
1
- body.roboGalleryFields #wpcontent div.roboGalleryFields {
2
- /**
3
- * Foundation for Sites by ZURB
4
- * Version 6.2.1
5
- * foundation.zurb.com
6
- * Licensed under MIT Open Source
7
- */
8
- /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
9
- /**
10
- * 1. Set default font family to sans-serif.
11
- * 2. Prevent iOS and IE text size adjust after device orientation change,
12
- * without disabling user zoom.
13
- */
14
- /**
15
- * Remove default margin.
16
- */
17
- /* HTML5 display definitions
18
- ========================================================================== */
19
- /**
20
- * Correct `block` display not defined for any HTML5 element in IE 8/9.
21
- * Correct `block` display not defined for `details` or `summary` in IE 10/11
22
- * and Firefox.
23
- * Correct `block` display not defined for `main` in IE 11.
24
- */
25
- /**
26
- * 1. Correct `inline-block` display not defined in IE 8/9.
27
- * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
28
- */
29
- /**
30
- * Prevent modern browsers from displaying `audio` without controls.
31
- * Remove excess height in iOS 5 devices.
32
- */
33
- /**
34
- * Address `[hidden]` styling not present in IE 8/9/10.
35
- * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
36
- */
37
- /* Links
38
- ========================================================================== */
39
- /**
40
- * Remove the gray background color from active links in IE 10.
41
- */
42
- /**
43
- * Improve readability of focused elements when they are also in an
44
- * active/hover state.
45
- */
46
- /* Text-level semantics
47
- ========================================================================== */
48
- /**
49
- * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
50
- */
51
- /**
52
- * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
53
- */
54
- /**
55
- * Address styling not present in Safari and Chrome.
56
- */
57
- /**
58
- * Address variable `h1` font-size and margin within `section` and `article`
59
- * contexts in Firefox 4+, Safari, and Chrome.
60
- */
61
- /**
62
- * Address styling not present in IE 8/9.
63
- */
64
- /**
65
- * Address inconsistent and variable font size in all browsers.
66
- */
67
- /**
68
- * Prevent `sub` and `sup` affecting `line-height` in all browsers.
69
- */
70
- /* Embedded content
71
- ========================================================================== */
72
- /**
73
- * Remove border when inside `a` element in IE 8/9/10.
74
- */
75
- /**
76
- * Correct overflow not hidden in IE 9/10/11.
77
- */
78
- /* Grouping content
79
- ========================================================================== */
80
- /**
81
- * Address margin not present in IE 8/9 and Safari.
82
- */
83
- /**
84
- * Address differences between Firefox and other browsers.
85
- */
86
- /**
87
- * Contain overflow in all browsers.
88
- */
89
- /**
90
- * Address odd `em`-unit font size rendering in all browsers.
91
- */
92
- /* Forms
93
- ========================================================================== */
94
- /**
95
- * Known limitation: by default, Chrome and Safari on OS X allow very limited
96
- * styling of `select`, unless a `border` property is set.
97
- */
98
- /**
99
- * 1. Correct color not being inherited.
100
- * Known issue: affects color of disabled elements.
101
- * 2. Correct font properties not being inherited.
102
- * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
103
- */
104
- /**
105
- * Address `overflow` set to `hidden` in IE 8/9/10/11.
106
- */
107
- /**
108
- * Address inconsistent `text-transform` inheritance for `button` and `select`.
109
- * All other form control elements do not inherit `text-transform` values.
110
- * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
111
- * Correct `select` style inheritance in Firefox.
112
- */
113
- /**
114
- * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
115
- * and `video` controls.
116
- * 2. Correct inability to style clickable `input` types in iOS.
117
- * 3. Improve usability and consistency of cursor style between image-type
118
- * `input` and others.
119
- */
120
- /**
121
- * Re-set default cursor for disabled elements.
122
- */
123
- /**
124
- * Remove inner padding and border in Firefox 4+.
125
- */
126
- /**
127
- * Address Firefox 4+ setting `line-height` on `input` using `!important` in
128
- * the UA stylesheet.
129
- */
130
- /**
131
- * It's recommended that you don't attempt to style these elements.
132
- * Firefox's implementation doesn't respect box-sizing, padding, or width.
133
- *
134
- * 1. Address box sizing set to `content-box` in IE 8/9/10.
135
- * 2. Remove excess padding in IE 8/9/10.
136
- */
137
- /**
138
- * Fix the cursor style for Chrome's increment/decrement buttons. For certain
139
- * `font-size` values of the `input`, it causes the cursor style of the
140
- * decrement button to change from `default` to `text`.
141
- */
142
- /**
143
- * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
144
- * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
145
- */
146
- /**
147
- * Remove inner padding and search cancel button in Safari and Chrome on OS X.
148
- * Safari (but not Chrome) clips the cancel button when the search input has
149
- * padding (and `textfield` appearance).
150
- */
151
- /**
152
- * Define consistent border, margin, and padding.
153
- * [NOTE] We don't enable this ruleset in Foundation, because we want the <fieldset> element to have plain styling.
154
- */
155
- /* fieldset {
156
- border: 1px solid #c0c0c0;
157
- margin: 0 2px;
158
- padding: 0.35em 0.625em 0.75em;
159
- } */
160
- /**
161
- * 1. Correct `color` not being inherited in IE 8/9/10/11.
162
- * 2. Remove padding so people aren't caught out if they zero out fieldsets.
163
- */
164
- /**
165
- * Remove default vertical scrollbar in IE 8/9/10/11.
166
- */
167
- /**
168
- * Don't inherit the `font-weight` (applied by a rule above).
169
- * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
170
- */
171
- /* Tables
172
- ========================================================================== */
173
- /**
174
- * Remove most spacing between table cells.
175
- */ }
176
- html body.roboGalleryFields #wpcontent div.roboGalleryFields {
177
- font-family: sans-serif;
178
- /* 1 */
179
- -ms-text-size-adjust: 100%;
180
- /* 2 */
181
- -webkit-text-size-adjust: 100%;
182
- /* 2 */ }
183
- body.roboGalleryFields #wpcontent div.roboGalleryFields{
184
- margin: 0; }
185
- body.roboGalleryFields #wpcontent div.roboGalleryFields article,
186
- body.roboGalleryFields #wpcontent div.roboGalleryFields aside,
187
- body.roboGalleryFields #wpcontent div.roboGalleryFields details,
188
- body.roboGalleryFields #wpcontent div.roboGalleryFields figcaption,
189
- body.roboGalleryFields #wpcontent div.roboGalleryFields figure,
190
- body.roboGalleryFields #wpcontent div.roboGalleryFields footer,
191
- body.roboGalleryFields #wpcontent div.roboGalleryFields header,
192
- body.roboGalleryFields #wpcontent div.roboGalleryFields hgroup,
193
- body.roboGalleryFields #wpcontent div.roboGalleryFields main,
194
- body.roboGalleryFields #wpcontent div.roboGalleryFields menu,
195
- body.roboGalleryFields #wpcontent div.roboGalleryFields nav,
196
- body.roboGalleryFields #wpcontent div.roboGalleryFields section,
197
- body.roboGalleryFields #wpcontent div.roboGalleryFields summary {
198
- display: block; }
199
- body.roboGalleryFields #wpcontent div.roboGalleryFields audio,
200
- body.roboGalleryFields #wpcontent div.roboGalleryFields canvas,
201
- body.roboGalleryFields #wpcontent div.roboGalleryFields progress,
202
- body.roboGalleryFields #wpcontent div.roboGalleryFields video {
203
- display: inline-block;
204
- /* 1 */
205
- vertical-align: baseline;
206
- /* 2 */ }
207
- body.roboGalleryFields #wpcontent div.roboGalleryFields audio:not([controls]) {
208
- display: none;
209
- height: 0; }
210
- body.roboGalleryFields #wpcontent div.roboGalleryFields [hidden],
211
- body.roboGalleryFields #wpcontent div.roboGalleryFields template {
212
- display: none; }
213
- body.roboGalleryFields #wpcontent div.roboGalleryFields a {
214
- background-color: transparent; }
215
- body.roboGalleryFields #wpcontent div.roboGalleryFields a:active,
216
- body.roboGalleryFields #wpcontent div.roboGalleryFields a:hover {
217
- outline: 0; }
218
- body.roboGalleryFields #wpcontent div.roboGalleryFields abbr[title] {
219
- border-bottom: 1px dotted; }
220
- body.roboGalleryFields #wpcontent div.roboGalleryFields b,
221
- body.roboGalleryFields #wpcontent div.roboGalleryFields strong {
222
- font-weight: bold; }
223
- body.roboGalleryFields #wpcontent div.roboGalleryFields dfn {
224
- font-style: italic; }
225
- body.roboGalleryFields #wpcontent div.roboGalleryFields h1 {
226
- font-size: 2em;
227
- margin: 0.67em 0; }
228
- body.roboGalleryFields #wpcontent div.roboGalleryFields mark {
229
- background: #ff0;
230
- color: #000; }
231
- body.roboGalleryFields #wpcontent div.roboGalleryFields small {
232
- font-size: 80%; }
233
- body.roboGalleryFields #wpcontent div.roboGalleryFields sub,
234
- body.roboGalleryFields #wpcontent div.roboGalleryFields sup {
235
- font-size: 75%;
236
- line-height: 0;
237
- position: relative;
238
- vertical-align: baseline; }
239
- body.roboGalleryFields #wpcontent div.roboGalleryFields sup {
240
- top: -0.5em; }
241
- body.roboGalleryFields #wpcontent div.roboGalleryFields sub {
242
- bottom: -0.25em; }
243
- body.roboGalleryFields #wpcontent div.roboGalleryFields img {
244
- border: 0; }
245
- body.roboGalleryFields #wpcontent div.roboGalleryFields svg:not(:root) {
246
- overflow: hidden; }
247
- body.roboGalleryFields #wpcontent div.roboGalleryFields figure {
248
- margin: 1em 40px; }
249
- body.roboGalleryFields #wpcontent div.roboGalleryFields hr {
250
- box-sizing: content-box;
251
- height: 0; }
252
- body.roboGalleryFields #wpcontent div.roboGalleryFields pre {
253
- overflow: auto; }
254
- body.roboGalleryFields #wpcontent div.roboGalleryFields code,
255
- body.roboGalleryFields #wpcontent div.roboGalleryFields kbd,
256
- body.roboGalleryFields #wpcontent div.roboGalleryFields pre,
257
- body.roboGalleryFields #wpcontent div.roboGalleryFields samp {
258
- font-family: monospace, monospace;
259
- font-size: 1em; }
260
- body.roboGalleryFields #wpcontent div.roboGalleryFields button,
261
- body.roboGalleryFields #wpcontent div.roboGalleryFields input,
262
- body.roboGalleryFields #wpcontent div.roboGalleryFields optgroup,
263
- body.roboGalleryFields #wpcontent div.roboGalleryFields select,
264
- body.roboGalleryFields #wpcontent div.roboGalleryFields textarea {
265
- color: inherit;
266
- /* 1 */
267
- font: inherit;
268
- /* 2 */
269
- margin: 0;
270
- /* 3 */ }
271
- body.roboGalleryFields #wpcontent div.roboGalleryFields button {
272
- overflow: visible; }
273
- body.roboGalleryFields #wpcontent div.roboGalleryFields button,
274
- body.roboGalleryFields #wpcontent div.roboGalleryFields select {
275
- text-transform: none; }
276
- body.roboGalleryFields #wpcontent div.roboGalleryFields button,
277
- html body.roboGalleryFields #wpcontent div.roboGalleryFields input[type="button"],
278
- body.roboGalleryFields #wpcontent div.roboGalleryFields input[type="reset"],
279
- body.roboGalleryFields #wpcontent div.roboGalleryFields input[type="submit"] {
280
- -webkit-appearance: button;
281
- /* 2 */
282
- cursor: pointer;
283
- /* 3 */ }
284
- body.roboGalleryFields #wpcontent div.roboGalleryFields button[disabled],
285
- html body.roboGalleryFields #wpcontent div.roboGalleryFields input[disabled] {
286
- cursor: not-allowed; }
287
- body.roboGalleryFields #wpcontent div.roboGalleryFields button::-moz-focus-inner,
288
- body.roboGalleryFields #wpcontent div.roboGalleryFields input::-moz-focus-inner {
289
- border: 0;
290
- padding: 0; }
291
- body.roboGalleryFields #wpcontent div.roboGalleryFields input {
292
- line-height: normal; }
293
- body.roboGalleryFields #wpcontent div.roboGalleryFields input[type="checkbox"],
294
- body.roboGalleryFields #wpcontent div.roboGalleryFields input[type="radio"] {
295
- box-sizing: border-box;
296
- /* 1 */
297
- padding: 0;
298
- /* 2 */ }
299
- body.roboGalleryFields #wpcontent div.roboGalleryFields input[type="number"]::-webkit-inner-spin-button,
300
- body.roboGalleryFields #wpcontent div.roboGalleryFields input[type="number"]::-webkit-outer-spin-button {
301
- height: auto; }
302
- body.roboGalleryFields #wpcontent div.roboGalleryFields input[type="search"] {
303
- -webkit-appearance: textfield;
304
- /* 1 */
305
- box-sizing: content-box;
306
- /* 2 */ }
307
- body.roboGalleryFields #wpcontent div.roboGalleryFields input[type="search"]::-webkit-search-cancel-button,
308
- body.roboGalleryFields #wpcontent div.roboGalleryFields input[type="search"]::-webkit-search-decoration {
309
- -webkit-appearance: none; }
310
- body.roboGalleryFields #wpcontent div.roboGalleryFields legend {
311
- border: 0;
312
- /* 1 */
313
- padding: 0;
314
- /* 2 */ }
315
- body.roboGalleryFields #wpcontent div.roboGalleryFields textarea {
316
- overflow: auto; }
317
- body.roboGalleryFields #wpcontent div.roboGalleryFields optgroup {
318
- font-weight: bold; }
319
- body.roboGalleryFields #wpcontent div.roboGalleryFields table {
320
- border-collapse: collapse;
321
- border-spacing: 0; }
322
- body.roboGalleryFields #wpcontent div.roboGalleryFields td,
323
- body.roboGalleryFields #wpcontent div.roboGalleryFields th {
324
- padding: 0; }
325
- body.roboGalleryFields #wpcontent div.roboGalleryFields .foundation-mq {
326
- font-family: "small=0em&medium=40em&large=64em&xlarge=75em&xxlarge=90em"; }
327
- html body.roboGalleryFields #wpcontent div.roboGalleryFields{
328
- font-size: 100%;
329
- box-sizing: border-box; }
330
- body.roboGalleryFields #wpcontent div.roboGalleryFields *,
331
- body.roboGalleryFields #wpcontent div.roboGalleryFields *::before,
332
- body.roboGalleryFields #wpcontent div.roboGalleryFields *::after {
333
- box-sizing: inherit; }
334
- body.roboGalleryFields #wpcontent div.roboGalleryFields {
335
- padding: 0;
336
- margin: 0;
337
- font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
338
- font-weight: normal;
339
- line-height: 1.5;
340
- color: #0a0a0a;
341
- /* background: #fefefe; */
342
- -webkit-font-smoothing: antialiased;
343
- -moz-osx-font-smoothing: grayscale; }
344
- body.roboGalleryFields #wpcontent div.roboGalleryFields img {
345
- max-width: 100%;
346
- height: auto;
347
- -ms-interpolation-mode: bicubic;
348
- display: inline-block;
349
- vertical-align: middle; }
350
- body.roboGalleryFields #wpcontent div.roboGalleryFields textarea {
351
- height: auto;
352
- min-height: 50px;
353
- border-radius: 0; }
354
- body.roboGalleryFields #wpcontent div.roboGalleryFields select {
355
- width: 100%;
356
- border-radius: 0; }
357
- body.roboGalleryFields #wpcontent div.roboGalleryFields #map_canvas img,
358
- body.roboGalleryFields #wpcontent div.roboGalleryFields #map_canvas embed,
359
- body.roboGalleryFields #wpcontent div.roboGalleryFields #map_canvas object,
360
- body.roboGalleryFields #wpcontent div.roboGalleryFields .map_canvas img,
361
- body.roboGalleryFields #wpcontent div.roboGalleryFields .map_canvas embed,
362
- body.roboGalleryFields #wpcontent div.roboGalleryFields .map_canvas object,
363
- body.roboGalleryFields #wpcontent div.roboGalleryFields .mqa-display img,
364
- body.roboGalleryFields #wpcontent div.roboGalleryFields .mqa-display embed,
365
- body.roboGalleryFields #wpcontent div.roboGalleryFields .mqa-display object {
366
- max-width: none !important; }
367
- body.roboGalleryFields #wpcontent div.roboGalleryFields button {
368
- -webkit-appearance: none;
369
- -moz-appearance: none;
370
- background: transparent;
371
- padding: 0;
372
- border: 0;
373
- border-radius: 0;
374
- line-height: 1; }
375
- [data-whatinput='mouse'] body.roboGalleryFields #wpcontent div.roboGalleryFields button {
376
- outline: 0; }
377
- body.roboGalleryFields #wpcontent div.roboGalleryFields .is-visible {
378
- display: block !important; }
379
- body.roboGalleryFields #wpcontent div.roboGalleryFields .is-hidden {
380
- display: none !important; }
381
- body.roboGalleryFields #wpcontent div.roboGalleryFields .row {
382
- max-width: 75rem;
383
- margin-left: auto;
384
- margin-right: auto; }
385
- body.roboGalleryFields #wpcontent div.roboGalleryFields .row::before, body.roboGalleryFields #wpcontent div.roboGalleryFields .row::after {
386
- content: ' ';
387
- display: table; }
388
- body.roboGalleryFields #wpcontent div.roboGalleryFields .row::after {
389
- clear: both; }
390
- body.roboGalleryFields #wpcontent div.roboGalleryFields .row.collapse > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .row.collapse > .columns {
391
- padding-left: 0;
392
- padding-right: 0; }
393
- body.roboGalleryFields #wpcontent div.roboGalleryFields .row body.roboGalleryFields #wpcontent div.roboGalleryFields .row {
394
- max-width: none;
395
- margin-left: -0.625rem;
396
- margin-right: -0.625rem;
397
- max-width: none; }
398
- @media screen and (min-width: 40em) {
399
- body.roboGalleryFields #wpcontent div.roboGalleryFields .row body.roboGalleryFields #wpcontent div.roboGalleryFields .row {
400
- margin-left: -0.9375rem;
401
- margin-right: -0.9375rem; } }
402
- body.roboGalleryFields #wpcontent div.roboGalleryFields .row body.roboGalleryFields #wpcontent div.roboGalleryFields .row.collapse {
403
- margin-left: 0;
404
- margin-right: 0; }
405
- body.roboGalleryFields #wpcontent div.roboGalleryFields .row.expanded {
406
- max-width: none; }
407
- body.roboGalleryFields #wpcontent div.roboGalleryFields .row.expanded .row {
408
- margin-left: auto;
409
- margin-right: auto; }
410
- body.roboGalleryFields #wpcontent div.roboGalleryFields .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .columns {
411
- width: 100%;
412
- float: left;
413
- padding-left: 0.625rem;
414
- padding-right: 0.625rem; }
415
- @media screen and (min-width: 40em) {
416
- body.roboGalleryFields #wpcontent div.roboGalleryFields .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .columns {
417
- padding-left: 0.9375rem;
418
- padding-right: 0.9375rem; } }
419
- body.roboGalleryFields #wpcontent div.roboGalleryFields .column:last-child:not(:first-child), body.roboGalleryFields #wpcontent div.roboGalleryFields .columns:last-child:not(:first-child) {
420
- float: right; }
421
- body.roboGalleryFields #wpcontent div.roboGalleryFields .column.end:last-child:last-child, body.roboGalleryFields #wpcontent div.roboGalleryFields .end.columns:last-child:last-child {
422
- float: left; }
423
- body.roboGalleryFields #wpcontent div.roboGalleryFields .column.row.row, body.roboGalleryFields #wpcontent div.roboGalleryFields .row.row.columns {
424
- float: none; }
425
- .row body.roboGalleryFields #wpcontent div.roboGalleryFields .column.row.row, .row body.roboGalleryFields #wpcontent div.roboGalleryFields .row.row.columns {
426
- padding-left: 0;
427
- padding-right: 0;
428
- margin-left: 0;
429
- margin-right: 0; }
430
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-1 {
431
- width: 8.33333%; }
432
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-push-1 {
433
- position: relative;
434
- left: 8.33333%; }
435
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-pull-1 {
436
- position: relative;
437
- left: -8.33333%; }
438
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-offset-0 {
439
- margin-left: 0%; }
440
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-2 {
441
- width: 16.66667%; }
442
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-push-2 {
443
- position: relative;
444
- left: 16.66667%; }
445
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-pull-2 {
446
- position: relative;
447
- left: -16.66667%; }
448
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-offset-1 {
449
- margin-left: 8.33333%; }
450
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-3 {
451
- width: 25%; }
452
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-push-3 {
453
- position: relative;
454
- left: 25%; }
455
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-pull-3 {
456
- position: relative;
457
- left: -25%; }
458
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-offset-2 {
459
- margin-left: 16.66667%; }
460
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-4 {
461
- width: 33.33333%; }
462
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-push-4 {
463
- position: relative;
464
- left: 33.33333%; }
465
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-pull-4 {
466
- position: relative;
467
- left: -33.33333%; }
468
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-offset-3 {
469
- margin-left: 25%; }
470
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-5 {
471
- width: 41.66667%; }
472
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-push-5 {
473
- position: relative;
474
- left: 41.66667%; }
475
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-pull-5 {
476
- position: relative;
477
- left: -41.66667%; }
478
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-offset-4 {
479
- margin-left: 33.33333%; }
480
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-6 {
481
- width: 50%; }
482
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-push-6 {
483
- position: relative;
484
- left: 50%; }
485
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-pull-6 {
486
- position: relative;
487
- left: -50%; }
488
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-offset-5 {
489
- margin-left: 41.66667%; }
490
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-7 {
491
- width: 58.33333%; }
492
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-push-7 {
493
- position: relative;
494
- left: 58.33333%; }
495
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-pull-7 {
496
- position: relative;
497
- left: -58.33333%; }
498
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-offset-6 {
499
- margin-left: 50%; }
500
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-8 {
501
- width: 66.66667%; }
502
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-push-8 {
503
- position: relative;
504
- left: 66.66667%; }
505
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-pull-8 {
506
- position: relative;
507
- left: -66.66667%; }
508
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-offset-7 {
509
- margin-left: 58.33333%; }
510
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-9 {
511
- width: 75%; }
512
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-push-9 {
513
- position: relative;
514
- left: 75%; }
515
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-pull-9 {
516
- position: relative;
517
- left: -75%; }
518
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-offset-8 {
519
- margin-left: 66.66667%; }
520
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-10 {
521
- width: 83.33333%; }
522
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-push-10 {
523
- position: relative;
524
- left: 83.33333%; }
525
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-pull-10 {
526
- position: relative;
527
- left: -83.33333%; }
528
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-offset-9 {
529
- margin-left: 75%; }
530
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-11 {
531
- width: 91.66667%; }
532
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-push-11 {
533
- position: relative;
534
- left: 91.66667%; }
535
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-pull-11 {
536
- position: relative;
537
- left: -91.66667%; }
538
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-offset-10 {
539
- margin-left: 83.33333%; }
540
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-12 {
541
- width: 100%; }
542
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-offset-11 {
543
- margin-left: 91.66667%; }
544
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-1 > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-1 > .columns {
545
- width: 100%;
546
- float: left; }
547
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-1 > .column:nth-of-type(1n), body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-1 > .columns:nth-of-type(1n) {
548
- clear: none; }
549
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-1 > .column:nth-of-type(1n+1), body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-1 > .columns:nth-of-type(1n+1) {
550
- clear: both; }
551
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-1 > .column:last-child, body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-1 > .columns:last-child {
552
- float: left; }
553
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-2 > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-2 > .columns {
554
- width: 50%;
555
- float: left; }
556
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-2 > .column:nth-of-type(1n), body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-2 > .columns:nth-of-type(1n) {
557
- clear: none; }
558
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-2 > .column:nth-of-type(2n+1), body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-2 > .columns:nth-of-type(2n+1) {
559
- clear: both; }
560
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-2 > .column:last-child, body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-2 > .columns:last-child {
561
- float: left; }
562
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-3 > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-3 > .columns {
563
- width: 33.33333%;
564
- float: left; }
565
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-3 > .column:nth-of-type(1n), body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-3 > .columns:nth-of-type(1n) {
566
- clear: none; }
567
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-3 > .column:nth-of-type(3n+1), body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-3 > .columns:nth-of-type(3n+1) {
568
- clear: both; }
569
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-3 > .column:last-child, body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-3 > .columns:last-child {
570
- float: left; }
571
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-4 > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-4 > .columns {
572
- width: 25%;
573
- float: left; }
574
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-4 > .column:nth-of-type(1n), body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-4 > .columns:nth-of-type(1n) {
575
- clear: none; }
576
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-4 > .column:nth-of-type(4n+1), body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-4 > .columns:nth-of-type(4n+1) {
577
- clear: both; }
578
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-4 > .column:last-child, body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-4 > .columns:last-child {
579
- float: left; }
580
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-5 > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-5 > .columns {
581
- width: 20%;
582
- float: left; }
583
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-5 > .column:nth-of-type(1n), body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-5 > .columns:nth-of-type(1n) {
584
- clear: none; }
585
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-5 > .column:nth-of-type(5n+1), body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-5 > .columns:nth-of-type(5n+1) {
586
- clear: both; }
587
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-5 > .column:last-child, body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-5 > .columns:last-child {
588
- float: left; }
589
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-6 > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-6 > .columns {
590
- width: 16.66667%;
591
- float: left; }
592
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-6 > .column:nth-of-type(1n), body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-6 > .columns:nth-of-type(1n) {
593
- clear: none; }
594
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-6 > .column:nth-of-type(6n+1), body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-6 > .columns:nth-of-type(6n+1) {
595
- clear: both; }
596
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-6 > .column:last-child, body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-6 > .columns:last-child {
597
- float: left; }
598
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-7 > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-7 > .columns {
599
- width: 14.28571%;
600
- float: left; }
601
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-7 > .column:nth-of-type(1n), body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-7 > .columns:nth-of-type(1n) {
602
- clear: none; }
603
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-7 > .column:nth-of-type(7n+1), body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-7 > .columns:nth-of-type(7n+1) {
604
- clear: both; }
605
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-7 > .column:last-child, body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-7 > .columns:last-child {
606
- float: left; }
607
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-8 > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-8 > .columns {
608
- width: 12.5%;
609
- float: left; }
610
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-8 > .column:nth-of-type(1n), body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-8 > .columns:nth-of-type(1n) {
611
- clear: none; }
612
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-8 > .column:nth-of-type(8n+1), body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-8 > .columns:nth-of-type(8n+1) {
613
- clear: both; }
614
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-8 > .column:last-child, body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-8 > .columns:last-child {
615
- float: left; }
616
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-collapse > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .small-collapse > .columns {
617
- padding-left: 0;
618
- padding-right: 0; }
619
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-collapse .row {
620
- margin-left: 0;
621
- margin-right: 0; }
622
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-uncollapse > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .small-uncollapse > .columns {
623
- padding-left: 0.625rem;
624
- padding-right: 0.625rem; }
625
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-centered {
626
- float: none;
627
- margin-left: auto;
628
- margin-right: auto; }
629
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-uncentered,
630
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-push-0,
631
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-pull-0 {
632
- position: static;
633
- margin-left: 0;
634
- margin-right: 0;
635
- float: left; }
636
- @media screen and (min-width: 40em) {
637
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-1 {
638
- width: 8.33333%; }
639
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-push-1 {
640
- position: relative;
641
- left: 8.33333%; }
642
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-pull-1 {
643
- position: relative;
644
- left: -8.33333%; }
645
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-offset-0 {
646
- margin-left: 0%; }
647
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-2 {
648
- width: 16.66667%; }
649
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-push-2 {
650
- position: relative;
651
- left: 16.66667%; }
652
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-pull-2 {
653
- position: relative;
654
- left: -16.66667%; }
655
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-offset-1 {
656
- margin-left: 8.33333%; }
657
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-3 {
658
- width: 25%; }
659
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-push-3 {
660
- position: relative;
661
- left: 25%; }
662
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-pull-3 {
663
- position: relative;
664
- left: -25%; }
665
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-offset-2 {
666
- margin-left: 16.66667%; }
667
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-4 {
668
- width: 33.33333%; }
669
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-push-4 {
670
- position: relative;
671
- left: 33.33333%; }
672
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-pull-4 {
673
- position: relative;
674
- left: -33.33333%; }
675
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-offset-3 {
676
- margin-left: 25%; }
677
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-5 {
678
- width: 41.66667%; }
679
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-push-5 {
680
- position: relative;
681
- left: 41.66667%; }
682
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-pull-5 {
683
- position: relative;
684
- left: -41.66667%; }
685
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-offset-4 {
686
- margin-left: 33.33333%; }
687
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-6 {
688
- width: 50%; }
689
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-push-6 {
690
- position: relative;
691
- left: 50%; }
692
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-pull-6 {
693
- position: relative;
694
- left: -50%; }
695
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-offset-5 {
696
- margin-left: 41.66667%; }
697
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-7 {
698
- width: 58.33333%; }
699
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-push-7 {
700
- position: relative;
701
- left: 58.33333%; }
702
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-pull-7 {
703
- position: relative;
704
- left: -58.33333%; }
705
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-offset-6 {
706
- margin-left: 50%; }
707
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-8 {
708
- width: 66.66667%; }
709
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-push-8 {
710
- position: relative;
711
- left: 66.66667%; }
712
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-pull-8 {
713
- position: relative;
714
- left: -66.66667%; }
715
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-offset-7 {
716
- margin-left: 58.33333%; }
717
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-9 {
718
- width: 75%; }
719
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-push-9 {
720
- position: relative;
721
- left: 75%; }
722
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-pull-9 {
723
- position: relative;
724
- left: -75%; }
725
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-offset-8 {
726
- margin-left: 66.66667%; }
727
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-10 {
728
- width: 83.33333%; }
729
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-push-10 {
730
- position: relative;
731
- left: 83.33333%; }
732
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-pull-10 {
733
- position: relative;
734
- left: -83.33333%; }
735
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-offset-9 {
736
- margin-left: 75%; }
737
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-11 {
738
- width: 91.66667%; }
739
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-push-11 {
740
- position: relative;
741
- left: 91.66667%; }
742
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-pull-11 {
743
- position: relative;
744
- left: -91.66667%; }
745
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-offset-10 {
746
- margin-left: 83.33333%; }
747
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-12 {
748
- width: 100%; }
749
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-offset-11 {
750
- margin-left: 91.66667%; }
751
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-1 > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-1 > .columns {
752
- width: 100%;
753
- float: left; }
754
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-1 > .column:nth-of-type(1n), body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-1 > .columns:nth-of-type(1n) {
755
- clear: none; }
756
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-1 > .column:nth-of-type(1n+1), body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-1 > .columns:nth-of-type(1n+1) {
757
- clear: both; }
758
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-1 > .column:last-child, body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-1 > .columns:last-child {
759
- float: left; }
760
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-2 > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-2 > .columns {
761
- width: 50%;
762
- float: left; }
763
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-2 > .column:nth-of-type(1n), body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-2 > .columns:nth-of-type(1n) {
764
- clear: none; }
765
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-2 > .column:nth-of-type(2n+1), body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-2 > .columns:nth-of-type(2n+1) {
766
- clear: both; }
767
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-2 > .column:last-child, body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-2 > .columns:last-child {
768
- float: left; }
769
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-3 > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-3 > .columns {
770
- width: 33.33333%;
771
- float: left; }
772
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-3 > .column:nth-of-type(1n), body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-3 > .columns:nth-of-type(1n) {
773
- clear: none; }
774
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-3 > .column:nth-of-type(3n+1), body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-3 > .columns:nth-of-type(3n+1) {
775
- clear: both; }
776
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-3 > .column:last-child, body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-3 > .columns:last-child {
777
- float: left; }
778
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-4 > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-4 > .columns {
779
- width: 25%;
780
- float: left; }
781
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-4 > .column:nth-of-type(1n), body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-4 > .columns:nth-of-type(1n) {
782
- clear: none; }
783
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-4 > .column:nth-of-type(4n+1), body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-4 > .columns:nth-of-type(4n+1) {
784
- clear: both; }
785
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-4 > .column:last-child, body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-4 > .columns:last-child {
786
- float: left; }
787
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-5 > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-5 > .columns {
788
- width: 20%;
789
- float: left; }
790
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-5 > .column:nth-of-type(1n), body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-5 > .columns:nth-of-type(1n) {
791
- clear: none; }
792
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-5 > .column:nth-of-type(5n+1), body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-5 > .columns:nth-of-type(5n+1) {
793
- clear: both; }
794
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-5 > .column:last-child, body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-5 > .columns:last-child {
795
- float: left; }
796
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-6 > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-6 > .columns {
797
- width: 16.66667%;
798
- float: left; }
799
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-6 > .column:nth-of-type(1n), body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-6 > .columns:nth-of-type(1n) {
800
- clear: none; }
801
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-6 > .column:nth-of-type(6n+1), body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-6 > .columns:nth-of-type(6n+1) {
802
- clear: both; }
803
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-6 > .column:last-child, body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-6 > .columns:last-child {
804
- float: left; }
805
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-7 > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-7 > .columns {
806
- width: 14.28571%;
807
- float: left; }
808
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-7 > .column:nth-of-type(1n), body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-7 > .columns:nth-of-type(1n) {
809
- clear: none; }
810
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-7 > .column:nth-of-type(7n+1), body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-7 > .columns:nth-of-type(7n+1) {
811
- clear: both; }
812
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-7 > .column:last-child, body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-7 > .columns:last-child {
813
- float: left; }
814
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-8 > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-8 > .columns {
815
- width: 12.5%;
816
- float: left; }
817
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-8 > .column:nth-of-type(1n), body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-8 > .columns:nth-of-type(1n) {
818
- clear: none; }
819
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-8 > .column:nth-of-type(8n+1), body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-8 > .columns:nth-of-type(8n+1) {
820
- clear: both; }
821
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-8 > .column:last-child, body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-8 > .columns:last-child {
822
- float: left; }
823
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-collapse > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-collapse > .columns {
824
- padding-left: 0;
825
- padding-right: 0; }
826
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-collapse .row {
827
- margin-left: 0;
828
- margin-right: 0; }
829
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-uncollapse > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-uncollapse > .columns {
830
- padding-left: 0.9375rem;
831
- padding-right: 0.9375rem; }
832
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-centered {
833
- float: none;
834
- margin-left: auto;
835
- margin-right: auto; }
836
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-uncentered,
837
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-push-0,
838
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-pull-0 {
839
- position: static;
840
- margin-left: 0;
841
- margin-right: 0;
842
- float: left; } }
843
- @media screen and (min-width: 64em) {
844
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-1 {
845
- width: 8.33333%; }
846
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-push-1 {
847
- position: relative;
848
- left: 8.33333%; }
849
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-pull-1 {
850
- position: relative;
851
- left: -8.33333%; }
852
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-offset-0 {
853
- margin-left: 0%; }
854
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-2 {
855
- width: 16.66667%; }
856
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-push-2 {
857
- position: relative;
858
- left: 16.66667%; }
859
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-pull-2 {
860
- position: relative;
861
- left: -16.66667%; }
862
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-offset-1 {
863
- margin-left: 8.33333%; }
864
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-3 {
865
- width: 25%; }
866
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-push-3 {
867
- position: relative;
868
- left: 25%; }
869
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-pull-3 {
870
- position: relative;
871
- left: -25%; }
872
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-offset-2 {
873
- margin-left: 16.66667%; }
874
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-4 {
875
- width: 33.33333%; }
876
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-push-4 {
877
- position: relative;
878
- left: 33.33333%; }
879
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-pull-4 {
880
- position: relative;
881
- left: -33.33333%; }
882
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-offset-3 {
883
- margin-left: 25%; }
884
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-5 {
885
- width: 41.66667%; }
886
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-push-5 {
887
- position: relative;
888
- left: 41.66667%; }
889
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-pull-5 {
890
- position: relative;
891
- left: -41.66667%; }
892
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-offset-4 {
893
- margin-left: 33.33333%; }
894
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-6 {
895
- width: 50%; }
896
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-push-6 {
897
- position: relative;
898
- left: 50%; }
899
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-pull-6 {
900
- position: relative;
901
- left: -50%; }
902
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-offset-5 {
903
- margin-left: 41.66667%; }
904
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-7 {
905
- width: 58.33333%; }
906
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-push-7 {
907
- position: relative;
908
- left: 58.33333%; }
909
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-pull-7 {
910
- position: relative;
911
- left: -58.33333%; }
912
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-offset-6 {
913
- margin-left: 50%; }
914
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-8 {
915
- width: 66.66667%; }
916
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-push-8 {
917
- position: relative;
918
- left: 66.66667%; }
919
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-pull-8 {
920
- position: relative;
921
- left: -66.66667%; }
922
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-offset-7 {
923
- margin-left: 58.33333%; }
924
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-9 {
925
- width: 75%; }
926
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-push-9 {
927
- position: relative;
928
- left: 75%; }
929
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-pull-9 {
930
- position: relative;
931
- left: -75%; }
932
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-offset-8 {
933
- margin-left: 66.66667%; }
934
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-10 {
935
- width: 83.33333%; }
936
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-push-10 {
937
- position: relative;
938
- left: 83.33333%; }
939
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-pull-10 {
940
- position: relative;
941
- left: -83.33333%; }
942
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-offset-9 {
943
- margin-left: 75%; }
944
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-11 {
945
- width: 91.66667%; }
946
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-push-11 {
947
- position: relative;
948
- left: 91.66667%; }
949
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-pull-11 {
950
- position: relative;
951
- left: -91.66667%; }
952
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-offset-10 {
953
- margin-left: 83.33333%; }
954
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-12 {
955
- width: 100%; }
956
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-offset-11 {
957
- margin-left: 91.66667%; }
958
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-1 > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-1 > .columns {
959
- width: 100%;
960
- float: left; }
961
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-1 > .column:nth-of-type(1n), body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-1 > .columns:nth-of-type(1n) {
962
- clear: none; }
963
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-1 > .column:nth-of-type(1n+1), body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-1 > .columns:nth-of-type(1n+1) {
964
- clear: both; }
965
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-1 > .column:last-child, body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-1 > .columns:last-child {
966
- float: left; }
967
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-2 > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-2 > .columns {
968
- width: 50%;
969
- float: left; }
970
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-2 > .column:nth-of-type(1n), body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-2 > .columns:nth-of-type(1n) {
971
- clear: none; }
972
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-2 > .column:nth-of-type(2n+1), body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-2 > .columns:nth-of-type(2n+1) {
973
- clear: both; }
974
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-2 > .column:last-child, body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-2 > .columns:last-child {
975
- float: left; }
976
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-3 > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-3 > .columns {
977
- width: 33.33333%;
978
- float: left; }
979
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-3 > .column:nth-of-type(1n), body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-3 > .columns:nth-of-type(1n) {
980
- clear: none; }
981
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-3 > .column:nth-of-type(3n+1), body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-3 > .columns:nth-of-type(3n+1) {
982
- clear: both; }
983
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-3 > .column:last-child, body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-3 > .columns:last-child {
984
- float: left; }
985
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-4 > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-4 > .columns {
986
- width: 25%;
987
- float: left; }
988
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-4 > .column:nth-of-type(1n), body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-4 > .columns:nth-of-type(1n) {
989
- clear: none; }
990
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-4 > .column:nth-of-type(4n+1), body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-4 > .columns:nth-of-type(4n+1) {
991
- clear: both; }
992
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-4 > .column:last-child, body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-4 > .columns:last-child {
993
- float: left; }
994
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-5 > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-5 > .columns {
995
- width: 20%;
996
- float: left; }
997
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-5 > .column:nth-of-type(1n), body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-5 > .columns:nth-of-type(1n) {
998
- clear: none; }
999
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-5 > .column:nth-of-type(5n+1), body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-5 > .columns:nth-of-type(5n+1) {
1000
- clear: both; }
1001
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-5 > .column:last-child, body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-5 > .columns:last-child {
1002
- float: left; }
1003
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-6 > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-6 > .columns {
1004
- width: 16.66667%;
1005
- float: left; }
1006
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-6 > .column:nth-of-type(1n), body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-6 > .columns:nth-of-type(1n) {
1007
- clear: none; }
1008
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-6 > .column:nth-of-type(6n+1), body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-6 > .columns:nth-of-type(6n+1) {
1009
- clear: both; }
1010
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-6 > .column:last-child, body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-6 > .columns:last-child {
1011
- float: left; }
1012
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-7 > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-7 > .columns {
1013
- width: 14.28571%;
1014
- float: left; }
1015
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-7 > .column:nth-of-type(1n), body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-7 > .columns:nth-of-type(1n) {
1016
- clear: none; }
1017
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-7 > .column:nth-of-type(7n+1), body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-7 > .columns:nth-of-type(7n+1) {
1018
- clear: both; }
1019
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-7 > .column:last-child, body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-7 > .columns:last-child {
1020
- float: left; }
1021
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-8 > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-8 > .columns {
1022
- width: 12.5%;
1023
- float: left; }
1024
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-8 > .column:nth-of-type(1n), body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-8 > .columns:nth-of-type(1n) {
1025
- clear: none; }
1026
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-8 > .column:nth-of-type(8n+1), body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-8 > .columns:nth-of-type(8n+1) {
1027
- clear: both; }
1028
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-8 > .column:last-child, body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-8 > .columns:last-child {
1029
- float: left; }
1030
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-collapse > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .large-collapse > .columns {
1031
- padding-left: 0;
1032
- padding-right: 0; }
1033
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-collapse .row {
1034
- margin-left: 0;
1035
- margin-right: 0; }
1036
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-uncollapse > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .large-uncollapse > .columns {
1037
- padding-left: 0.9375rem;
1038
- padding-right: 0.9375rem; }
1039
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-centered {
1040
- float: none;
1041
- margin-left: auto;
1042
- margin-right: auto; }
1043
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-uncentered,
1044
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-push-0,
1045
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-pull-0 {
1046
- position: static;
1047
- margin-left: 0;
1048
- margin-right: 0;
1049
- float: left; } }
1050
- body.roboGalleryFields #wpcontent div.roboGalleryFields .row {
1051
- max-width: 75rem;
1052
- margin-left: auto;
1053
- margin-right: auto;
1054
- display: -ms-flexbox;
1055
- display: flex;
1056
- -ms-flex-flow: row wrap;
1057
- flex-flow: row wrap; }
1058
- body.roboGalleryFields #wpcontent div.roboGalleryFields .row body.roboGalleryFields #wpcontent div.roboGalleryFields .row {
1059
- max-width: none;
1060
- margin-left: -0.625rem;
1061
- margin-right: -0.625rem;
1062
- max-width: none; }
1063
- @media screen and (min-width: 40em) {
1064
- body.roboGalleryFields #wpcontent div.roboGalleryFields .row body.roboGalleryFields #wpcontent div.roboGalleryFields .row {
1065
- margin-left: -0.9375rem;
1066
- margin-right: -0.9375rem; } }
1067
- body.roboGalleryFields #wpcontent div.roboGalleryFields .row.expanded {
1068
- max-width: none; }
1069
- body.roboGalleryFields #wpcontent div.roboGalleryFields .row.collapse > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .row.collapse > .columns {
1070
- padding-left: 0;
1071
- padding-right: 0; }
1072
- body.roboGalleryFields #wpcontent div.roboGalleryFields .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .columns {
1073
- -ms-flex: 1 1 0px;
1074
- flex: 1 1 0px;
1075
- padding-left: 0.625rem;
1076
- padding-right: 0.625rem;
1077
- min-width: 0; }
1078
- @media screen and (min-width: 40em) {
1079
- body.roboGalleryFields #wpcontent div.roboGalleryFields .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .columns {
1080
- padding-left: 0.9375rem;
1081
- padding-right: 0.9375rem; } }
1082
- body.roboGalleryFields #wpcontent div.roboGalleryFields .column.row.row, body.roboGalleryFields #wpcontent div.roboGalleryFields .row.row.columns {
1083
- float: none;
1084
- display: block; }
1085
- .row body.roboGalleryFields #wpcontent div.roboGalleryFields .column.row.row, .row body.roboGalleryFields #wpcontent div.roboGalleryFields .row.row.columns {
1086
- padding-left: 0;
1087
- padding-right: 0;
1088
- margin-left: 0;
1089
- margin-right: 0; }
1090
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-1 {
1091
- -ms-flex: 0 0 8.33333%;
1092
- flex: 0 0 8.33333%;
1093
- max-width: 8.33333%; }
1094
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-offset-0 {
1095
- margin-left: 0%; }
1096
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-2 {
1097
- -ms-flex: 0 0 16.66667%;
1098
- flex: 0 0 16.66667%;
1099
- max-width: 16.66667%; }
1100
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-offset-1 {
1101
- margin-left: 8.33333%; }
1102
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-3 {
1103
- -ms-flex: 0 0 25%;
1104
- flex: 0 0 25%;
1105
- max-width: 25%; }
1106
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-offset-2 {
1107
- margin-left: 16.66667%; }
1108
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-4 {
1109
- -ms-flex: 0 0 33.33333%;
1110
- flex: 0 0 33.33333%;
1111
- max-width: 33.33333%; }
1112
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-offset-3 {
1113
- margin-left: 25%; }
1114
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-5 {
1115
- -ms-flex: 0 0 41.66667%;
1116
- flex: 0 0 41.66667%;
1117
- max-width: 41.66667%; }
1118
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-offset-4 {
1119
- margin-left: 33.33333%; }
1120
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-6 {
1121
- -ms-flex: 0 0 50%;
1122
- flex: 0 0 50%;
1123
- max-width: 50%; }
1124
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-offset-5 {
1125
- margin-left: 41.66667%; }
1126
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-7 {
1127
- -ms-flex: 0 0 58.33333%;
1128
- flex: 0 0 58.33333%;
1129
- max-width: 58.33333%; }
1130
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-offset-6 {
1131
- margin-left: 50%; }
1132
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-8 {
1133
- -ms-flex: 0 0 66.66667%;
1134
- flex: 0 0 66.66667%;
1135
- max-width: 66.66667%; }
1136
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-offset-7 {
1137
- margin-left: 58.33333%; }
1138
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-9 {
1139
- -ms-flex: 0 0 75%;
1140
- flex: 0 0 75%;
1141
- max-width: 75%; }
1142
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-offset-8 {
1143
- margin-left: 66.66667%; }
1144
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-10 {
1145
- -ms-flex: 0 0 83.33333%;
1146
- flex: 0 0 83.33333%;
1147
- max-width: 83.33333%; }
1148
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-offset-9 {
1149
- margin-left: 75%; }
1150
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-11 {
1151
- -ms-flex: 0 0 91.66667%;
1152
- flex: 0 0 91.66667%;
1153
- max-width: 91.66667%; }
1154
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-offset-10 {
1155
- margin-left: 83.33333%; }
1156
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-12 {
1157
- -ms-flex: 0 0 100%;
1158
- flex: 0 0 100%;
1159
- max-width: 100%; }
1160
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-offset-11 {
1161
- margin-left: 91.66667%; }
1162
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-order-1 {
1163
- -ms-flex-order: 1;
1164
- order: 1; }
1165
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-order-2 {
1166
- -ms-flex-order: 2;
1167
- order: 2; }
1168
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-order-3 {
1169
- -ms-flex-order: 3;
1170
- order: 3; }
1171
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-order-4 {
1172
- -ms-flex-order: 4;
1173
- order: 4; }
1174
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-order-5 {
1175
- -ms-flex-order: 5;
1176
- order: 5; }
1177
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-order-6 {
1178
- -ms-flex-order: 6;
1179
- order: 6; }
1180
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-1 {
1181
- -ms-flex-wrap: wrap;
1182
- flex-wrap: wrap; }
1183
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-1 > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-1 > .columns {
1184
- -ms-flex: 0 0 100%;
1185
- flex: 0 0 100%;
1186
- max-width: 100%; }
1187
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-2 {
1188
- -ms-flex-wrap: wrap;
1189
- flex-wrap: wrap; }
1190
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-2 > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-2 > .columns {
1191
- -ms-flex: 0 0 50%;
1192
- flex: 0 0 50%;
1193
- max-width: 50%; }
1194
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-3 {
1195
- -ms-flex-wrap: wrap;
1196
- flex-wrap: wrap; }
1197
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-3 > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-3 > .columns {
1198
- -ms-flex: 0 0 33.33333%;
1199
- flex: 0 0 33.33333%;
1200
- max-width: 33.33333%; }
1201
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-4 {
1202
- -ms-flex-wrap: wrap;
1203
- flex-wrap: wrap; }
1204
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-4 > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-4 > .columns {
1205
- -ms-flex: 0 0 25%;
1206
- flex: 0 0 25%;
1207
- max-width: 25%; }
1208
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-5 {
1209
- -ms-flex-wrap: wrap;
1210
- flex-wrap: wrap; }
1211
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-5 > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-5 > .columns {
1212
- -ms-flex: 0 0 20%;
1213
- flex: 0 0 20%;
1214
- max-width: 20%; }
1215
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-6 {
1216
- -ms-flex-wrap: wrap;
1217
- flex-wrap: wrap; }
1218
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-6 > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-6 > .columns {
1219
- -ms-flex: 0 0 16.66667%;
1220
- flex: 0 0 16.66667%;
1221
- max-width: 16.66667%; }
1222
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-7 {
1223
- -ms-flex-wrap: wrap;
1224
- flex-wrap: wrap; }
1225
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-7 > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-7 > .columns {
1226
- -ms-flex: 0 0 14.28571%;
1227
- flex: 0 0 14.28571%;
1228
- max-width: 14.28571%; }
1229
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-8 {
1230
- -ms-flex-wrap: wrap;
1231
- flex-wrap: wrap; }
1232
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-8 > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .small-up-8 > .columns {
1233
- -ms-flex: 0 0 12.5%;
1234
- flex: 0 0 12.5%;
1235
- max-width: 12.5%; }
1236
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-collapse > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .small-collapse > .columns {
1237
- padding-left: 0;
1238
- padding-right: 0; }
1239
- body.roboGalleryFields #wpcontent div.roboGalleryFields .small-uncollapse > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .small-uncollapse > .columns {
1240
- padding-left: 0.625rem;
1241
- padding-right: 0.625rem; }
1242
- @media screen and (min-width: 40em) {
1243
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-1 {
1244
- -ms-flex: 0 0 8.33333%;
1245
- flex: 0 0 8.33333%;
1246
- max-width: 8.33333%; }
1247
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-offset-0 {
1248
- margin-left: 0%; }
1249
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-2 {
1250
- -ms-flex: 0 0 16.66667%;
1251
- flex: 0 0 16.66667%;
1252
- max-width: 16.66667%; }
1253
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-offset-1 {
1254
- margin-left: 8.33333%; }
1255
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-3 {
1256
- -ms-flex: 0 0 25%;
1257
- flex: 0 0 25%;
1258
- max-width: 25%; }
1259
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-offset-2 {
1260
- margin-left: 16.66667%; }
1261
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-4 {
1262
- -ms-flex: 0 0 33.33333%;
1263
- flex: 0 0 33.33333%;
1264
- max-width: 33.33333%; }
1265
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-offset-3 {
1266
- margin-left: 25%; }
1267
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-5 {
1268
- -ms-flex: 0 0 41.66667%;
1269
- flex: 0 0 41.66667%;
1270
- max-width: 41.66667%; }
1271
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-offset-4 {
1272
- margin-left: 33.33333%; }
1273
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-6 {
1274
- -ms-flex: 0 0 50%;
1275
- flex: 0 0 50%;
1276
- max-width: 50%; }
1277
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-offset-5 {
1278
- margin-left: 41.66667%; }
1279
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-7 {
1280
- -ms-flex: 0 0 58.33333%;
1281
- flex: 0 0 58.33333%;
1282
- max-width: 58.33333%; }
1283
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-offset-6 {
1284
- margin-left: 50%; }
1285
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-8 {
1286
- -ms-flex: 0 0 66.66667%;
1287
- flex: 0 0 66.66667%;
1288
- max-width: 66.66667%; }
1289
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-offset-7 {
1290
- margin-left: 58.33333%; }
1291
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-9 {
1292
- -ms-flex: 0 0 75%;
1293
- flex: 0 0 75%;
1294
- max-width: 75%; }
1295
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-offset-8 {
1296
- margin-left: 66.66667%; }
1297
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-10 {
1298
- -ms-flex: 0 0 83.33333%;
1299
- flex: 0 0 83.33333%;
1300
- max-width: 83.33333%; }
1301
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-offset-9 {
1302
- margin-left: 75%; }
1303
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-11 {
1304
- -ms-flex: 0 0 91.66667%;
1305
- flex: 0 0 91.66667%;
1306
- max-width: 91.66667%; }
1307
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-offset-10 {
1308
- margin-left: 83.33333%; }
1309
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-12 {
1310
- -ms-flex: 0 0 100%;
1311
- flex: 0 0 100%;
1312
- max-width: 100%; }
1313
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-offset-11 {
1314
- margin-left: 91.66667%; }
1315
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-order-1 {
1316
- -ms-flex-order: 1;
1317
- order: 1; }
1318
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-order-2 {
1319
- -ms-flex-order: 2;
1320
- order: 2; }
1321
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-order-3 {
1322
- -ms-flex-order: 3;
1323
- order: 3; }
1324
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-order-4 {
1325
- -ms-flex-order: 4;
1326
- order: 4; }
1327
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-order-5 {
1328
- -ms-flex-order: 5;
1329
- order: 5; }
1330
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-order-6 {
1331
- -ms-flex-order: 6;
1332
- order: 6; }
1333
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-1 {
1334
- -ms-flex-wrap: wrap;
1335
- flex-wrap: wrap; }
1336
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-1 > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-1 > .columns {
1337
- -ms-flex: 0 0 100%;
1338
- flex: 0 0 100%;
1339
- max-width: 100%; }
1340
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-2 {
1341
- -ms-flex-wrap: wrap;
1342
- flex-wrap: wrap; }
1343
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-2 > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-2 > .columns {
1344
- -ms-flex: 0 0 50%;
1345
- flex: 0 0 50%;
1346
- max-width: 50%; }
1347
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-3 {
1348
- -ms-flex-wrap: wrap;
1349
- flex-wrap: wrap; }
1350
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-3 > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-3 > .columns {
1351
- -ms-flex: 0 0 33.33333%;
1352
- flex: 0 0 33.33333%;
1353
- max-width: 33.33333%; }
1354
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-4 {
1355
- -ms-flex-wrap: wrap;
1356
- flex-wrap: wrap; }
1357
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-4 > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-4 > .columns {
1358
- -ms-flex: 0 0 25%;
1359
- flex: 0 0 25%;
1360
- max-width: 25%; }
1361
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-5 {
1362
- -ms-flex-wrap: wrap;
1363
- flex-wrap: wrap; }
1364
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-5 > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-5 > .columns {
1365
- -ms-flex: 0 0 20%;
1366
- flex: 0 0 20%;
1367
- max-width: 20%; }
1368
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-6 {
1369
- -ms-flex-wrap: wrap;
1370
- flex-wrap: wrap; }
1371
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-6 > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-6 > .columns {
1372
- -ms-flex: 0 0 16.66667%;
1373
- flex: 0 0 16.66667%;
1374
- max-width: 16.66667%; }
1375
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-7 {
1376
- -ms-flex-wrap: wrap;
1377
- flex-wrap: wrap; }
1378
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-7 > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-7 > .columns {
1379
- -ms-flex: 0 0 14.28571%;
1380
- flex: 0 0 14.28571%;
1381
- max-width: 14.28571%; }
1382
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-8 {
1383
- -ms-flex-wrap: wrap;
1384
- flex-wrap: wrap; }
1385
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-8 > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-up-8 > .columns {
1386
- -ms-flex: 0 0 12.5%;
1387
- flex: 0 0 12.5%;
1388
- max-width: 12.5%; } }
1389
-
1390
- @media screen and (min-width: 40em) and (min-width: 40em) {
1391
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-expand {
1392
- -ms-flex: 1 1 0px;
1393
- flex: 1 1 0px; } }
1394
-
1395
- .row.medium-unstack > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .row.medium-unstack > .columns {
1396
- -ms-flex: 0 0 100%;
1397
- flex: 0 0 100%; }
1398
- @media screen and (min-width: 40em) {
1399
- .row.medium-unstack > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .row.medium-unstack > .columns {
1400
- -ms-flex: 1 1 0px;
1401
- flex: 1 1 0px; } }
1402
- @media screen and (min-width: 40em) {
1403
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-collapse > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-collapse > .columns {
1404
- padding-left: 0;
1405
- padding-right: 0; }
1406
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-uncollapse > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-uncollapse > .columns {
1407
- padding-left: 0.9375rem;
1408
- padding-right: 0.9375rem; } }
1409
- @media screen and (min-width: 64em) {
1410
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-1 {
1411
- -ms-flex: 0 0 8.33333%;
1412
- flex: 0 0 8.33333%;
1413
- max-width: 8.33333%; }
1414
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-offset-0 {
1415
- margin-left: 0%; }
1416
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-2 {
1417
- -ms-flex: 0 0 16.66667%;
1418
- flex: 0 0 16.66667%;
1419
- max-width: 16.66667%; }
1420
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-offset-1 {
1421
- margin-left: 8.33333%; }
1422
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-3 {
1423
- -ms-flex: 0 0 25%;
1424
- flex: 0 0 25%;
1425
- max-width: 25%; }
1426
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-offset-2 {
1427
- margin-left: 16.66667%; }
1428
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-4 {
1429
- -ms-flex: 0 0 33.33333%;
1430
- flex: 0 0 33.33333%;
1431
- max-width: 33.33333%; }
1432
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-offset-3 {
1433
- margin-left: 25%; }
1434
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-5 {
1435
- -ms-flex: 0 0 41.66667%;
1436
- flex: 0 0 41.66667%;
1437
- max-width: 41.66667%; }
1438
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-offset-4 {
1439
- margin-left: 33.33333%; }
1440
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-6 {
1441
- -ms-flex: 0 0 50%;
1442
- flex: 0 0 50%;
1443
- max-width: 50%; }
1444
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-offset-5 {
1445
- margin-left: 41.66667%; }
1446
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-7 {
1447
- -ms-flex: 0 0 58.33333%;
1448
- flex: 0 0 58.33333%;
1449
- max-width: 58.33333%; }
1450
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-offset-6 {
1451
- margin-left: 50%; }
1452
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-8 {
1453
- -ms-flex: 0 0 66.66667%;
1454
- flex: 0 0 66.66667%;
1455
- max-width: 66.66667%; }
1456
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-offset-7 {
1457
- margin-left: 58.33333%; }
1458
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-9 {
1459
- -ms-flex: 0 0 75%;
1460
- flex: 0 0 75%;
1461
- max-width: 75%; }
1462
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-offset-8 {
1463
- margin-left: 66.66667%; }
1464
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-10 {
1465
- -ms-flex: 0 0 83.33333%;
1466
- flex: 0 0 83.33333%;
1467
- max-width: 83.33333%; }
1468
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-offset-9 {
1469
- margin-left: 75%; }
1470
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-11 {
1471
- -ms-flex: 0 0 91.66667%;
1472
- flex: 0 0 91.66667%;
1473
- max-width: 91.66667%; }
1474
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-offset-10 {
1475
- margin-left: 83.33333%; }
1476
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-12 {
1477
- -ms-flex: 0 0 100%;
1478
- flex: 0 0 100%;
1479
- max-width: 100%; }
1480
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-offset-11 {
1481
- margin-left: 91.66667%; }
1482
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-order-1 {
1483
- -ms-flex-order: 1;
1484
- order: 1; }
1485
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-order-2 {
1486
- -ms-flex-order: 2;
1487
- order: 2; }
1488
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-order-3 {
1489
- -ms-flex-order: 3;
1490
- order: 3; }
1491
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-order-4 {
1492
- -ms-flex-order: 4;
1493
- order: 4; }
1494
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-order-5 {
1495
- -ms-flex-order: 5;
1496
- order: 5; }
1497
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-order-6 {
1498
- -ms-flex-order: 6;
1499
- order: 6; }
1500
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-1 {
1501
- -ms-flex-wrap: wrap;
1502
- flex-wrap: wrap; }
1503
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-1 > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-1 > .columns {
1504
- -ms-flex: 0 0 100%;
1505
- flex: 0 0 100%;
1506
- max-width: 100%; }
1507
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-2 {
1508
- -ms-flex-wrap: wrap;
1509
- flex-wrap: wrap; }
1510
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-2 > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-2 > .columns {
1511
- -ms-flex: 0 0 50%;
1512
- flex: 0 0 50%;
1513
- max-width: 50%; }
1514
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-3 {
1515
- -ms-flex-wrap: wrap;
1516
- flex-wrap: wrap; }
1517
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-3 > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-3 > .columns {
1518
- -ms-flex: 0 0 33.33333%;
1519
- flex: 0 0 33.33333%;
1520
- max-width: 33.33333%; }
1521
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-4 {
1522
- -ms-flex-wrap: wrap;
1523
- flex-wrap: wrap; }
1524
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-4 > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-4 > .columns {
1525
- -ms-flex: 0 0 25%;
1526
- flex: 0 0 25%;
1527
- max-width: 25%; }
1528
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-5 {
1529
- -ms-flex-wrap: wrap;
1530
- flex-wrap: wrap; }
1531
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-5 > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-5 > .columns {
1532
- -ms-flex: 0 0 20%;
1533
- flex: 0 0 20%;
1534
- max-width: 20%; }
1535
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-6 {
1536
- -ms-flex-wrap: wrap;
1537
- flex-wrap: wrap; }
1538
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-6 > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-6 > .columns {
1539
- -ms-flex: 0 0 16.66667%;
1540
- flex: 0 0 16.66667%;
1541
- max-width: 16.66667%; }
1542
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-7 {
1543
- -ms-flex-wrap: wrap;
1544
- flex-wrap: wrap; }
1545
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-7 > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-7 > .columns {
1546
- -ms-flex: 0 0 14.28571%;
1547
- flex: 0 0 14.28571%;
1548
- max-width: 14.28571%; }
1549
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-8 {
1550
- -ms-flex-wrap: wrap;
1551
- flex-wrap: wrap; }
1552
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-8 > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .large-up-8 > .columns {
1553
- -ms-flex: 0 0 12.5%;
1554
- flex: 0 0 12.5%;
1555
- max-width: 12.5%; } }
1556
-
1557
- @media screen and (min-width: 64em) and (min-width: 64em) {
1558
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-expand {
1559
- -ms-flex: 1 1 0px;
1560
- flex: 1 1 0px; } }
1561
-
1562
- .row.large-unstack > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .row.large-unstack > .columns {
1563
- -ms-flex: 0 0 100%;
1564
- flex: 0 0 100%; }
1565
- @media screen and (min-width: 64em) {
1566
- .row.large-unstack > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .row.large-unstack > .columns {
1567
- -ms-flex: 1 1 0px;
1568
- flex: 1 1 0px; } }
1569
- @media screen and (min-width: 64em) {
1570
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-collapse > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .large-collapse > .columns {
1571
- padding-left: 0;
1572
- padding-right: 0; }
1573
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-uncollapse > .column, body.roboGalleryFields #wpcontent div.roboGalleryFields .large-uncollapse > .columns {
1574
- padding-left: 0.9375rem;
1575
- padding-right: 0.9375rem; } }
1576
- body.roboGalleryFields #wpcontent div.roboGalleryFields .shrink {
1577
- -ms-flex: 0 0 auto;
1578
- flex: 0 0 auto;
1579
- max-width: 100%; }
1580
- body.roboGalleryFields #wpcontent div.roboGalleryFields .column.align-top, body.roboGalleryFields #wpcontent div.roboGalleryFields .align-top.columns {
1581
- -ms-flex-item-align: start;
1582
- align-self: flex-start; }
1583
- body.roboGalleryFields #wpcontent div.roboGalleryFields .column.align-bottom, body.roboGalleryFields #wpcontent div.roboGalleryFields .align-bottom.columns {
1584
- -ms-flex-item-align: end;
1585
- align-self: flex-end; }
1586
- body.roboGalleryFields #wpcontent div.roboGalleryFields .column.align-middle, body.roboGalleryFields #wpcontent div.roboGalleryFields .align-middle.columns {
1587
- -ms-flex-item-align: center;
1588
- align-self: center; }
1589
- body.roboGalleryFields #wpcontent div.roboGalleryFields .column.align-stretch, body.roboGalleryFields #wpcontent div.roboGalleryFields .align-stretch.columns {
1590
- -ms-flex-item-align: stretch;
1591
- align-self: stretch; }
1592
- body.roboGalleryFields #wpcontent div.roboGalleryFields div,
1593
- body.roboGalleryFields #wpcontent div.roboGalleryFields dl,
1594
- body.roboGalleryFields #wpcontent div.roboGalleryFields dt,
1595
- body.roboGalleryFields #wpcontent div.roboGalleryFields dd,
1596
- body.roboGalleryFields #wpcontent div.roboGalleryFields ul,
1597
- body.roboGalleryFields #wpcontent div.roboGalleryFields ol,
1598
- body.roboGalleryFields #wpcontent div.roboGalleryFields li,
1599
- body.roboGalleryFields #wpcontent div.roboGalleryFields h1,
1600
- body.roboGalleryFields #wpcontent div.roboGalleryFields h2,
1601
- body.roboGalleryFields #wpcontent div.roboGalleryFields h3,
1602
- body.roboGalleryFields #wpcontent div.roboGalleryFields h4,
1603
- body.roboGalleryFields #wpcontent div.roboGalleryFields h5,
1604
- body.roboGalleryFields #wpcontent div.roboGalleryFields h6,
1605
- body.roboGalleryFields #wpcontent div.roboGalleryFields pre,
1606
- body.roboGalleryFields #wpcontent div.roboGalleryFields form,
1607
- body.roboGalleryFields #wpcontent div.roboGalleryFields p,
1608
- body.roboGalleryFields #wpcontent div.roboGalleryFields blockquote,
1609
- body.roboGalleryFields #wpcontent div.roboGalleryFields th,
1610
- body.roboGalleryFields #wpcontent div.roboGalleryFields td {
1611
- margin: 0;
1612
- padding: 0; }
1613
- body.roboGalleryFields #wpcontent div.roboGalleryFields p {
1614
- font-size: inherit;
1615
- line-height: 1.6;
1616
- margin-bottom: 1rem;
1617
- text-rendering: optimizeLegibility; }
1618
- body.roboGalleryFields #wpcontent div.roboGalleryFields em,
1619
- body.roboGalleryFields #wpcontent div.roboGalleryFields i {
1620
- font-style: italic;
1621
- line-height: inherit; }
1622
- body.roboGalleryFields #wpcontent div.roboGalleryFields strong,
1623
- body.roboGalleryFields #wpcontent div.roboGalleryFields b {
1624
- font-weight: bold;
1625
- line-height: inherit; }
1626
- body.roboGalleryFields #wpcontent div.roboGalleryFields small {
1627
- font-size: 80%;
1628
- line-height: inherit; }
1629
- body.roboGalleryFields #wpcontent div.roboGalleryFields h1,
1630
- body.roboGalleryFields #wpcontent div.roboGalleryFields h2,
1631
- body.roboGalleryFields #wpcontent div.roboGalleryFields h3,
1632
- body.roboGalleryFields #wpcontent div.roboGalleryFields h4,
1633
- body.roboGalleryFields #wpcontent div.roboGalleryFields h5,
1634
- body.roboGalleryFields #wpcontent div.roboGalleryFields h6 {
1635
- font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
1636
- font-weight: normal;
1637
- font-style: normal;
1638
- color: inherit;
1639
- text-rendering: optimizeLegibility;
1640
- margin-top: 0;
1641
- margin-bottom: 0.5rem;
1642
- line-height: 1.4; }
1643
- body.roboGalleryFields #wpcontent div.roboGalleryFields h1 small,
1644
- body.roboGalleryFields #wpcontent div.roboGalleryFields h2 small,
1645
- body.roboGalleryFields #wpcontent div.roboGalleryFields h3 small,
1646
- body.roboGalleryFields #wpcontent div.roboGalleryFields h4 small,
1647
- body.roboGalleryFields #wpcontent div.roboGalleryFields h5 small,
1648
- body.roboGalleryFields #wpcontent div.roboGalleryFields h6 small {
1649
- color: #cacaca;
1650
- line-height: 0; }
1651
- body.roboGalleryFields #wpcontent div.roboGalleryFields h1 {
1652
- font-size: 1.5rem; }
1653
- body.roboGalleryFields #wpcontent div.roboGalleryFields h2 {
1654
- font-size: 1.25rem; }
1655
- body.roboGalleryFields #wpcontent div.roboGalleryFields h3 {
1656
- font-size: 1.1875rem; }
1657
- body.roboGalleryFields #wpcontent div.roboGalleryFields h4 {
1658
- font-size: 1.125rem; }
1659
- body.roboGalleryFields #wpcontent div.roboGalleryFields h5 {
1660
- font-size: 1.0625rem; }
1661
- body.roboGalleryFields #wpcontent div.roboGalleryFields h6 {
1662
- font-size: 1rem; }
1663
- @media screen and (min-width: 40em) {
1664
- body.roboGalleryFields #wpcontent div.roboGalleryFields h1 {
1665
- font-size: 3rem; }
1666
- body.roboGalleryFields #wpcontent div.roboGalleryFields h2 {
1667
- font-size: 2.5rem; }
1668
- body.roboGalleryFields #wpcontent div.roboGalleryFields h3 {
1669
- font-size: 1.9375rem; }
1670
- body.roboGalleryFields #wpcontent div.roboGalleryFields h4 {
1671
- font-size: 1.5625rem; }
1672
- body.roboGalleryFields #wpcontent div.roboGalleryFields h5 {
1673
- font-size: 1.25rem; }
1674
- body.roboGalleryFields #wpcontent div.roboGalleryFields h6 {
1675
- font-size: 1rem; } }
1676
- body.roboGalleryFields #wpcontent div.roboGalleryFields a {
1677
- color: #2199e8;
1678
- text-decoration: none;
1679
- line-height: inherit;
1680
- cursor: pointer; }
1681
- body.roboGalleryFields #wpcontent div.roboGalleryFields a:hover, body.roboGalleryFields #wpcontent div.roboGalleryFields a:focus {
1682
- color: #1585cf; }
1683
- body.roboGalleryFields #wpcontent div.roboGalleryFields a img {
1684
- border: 0; }
1685
- body.roboGalleryFields #wpcontent div.roboGalleryFields hr {
1686
- max-width: 75rem;
1687
- height: 0;
1688
- border-right: 0;
1689
- border-top: 0;
1690
- border-bottom: 1px solid #cacaca;
1691
- border-left: 0;
1692
- margin: 1.25rem auto;
1693
- clear: both; }
1694
- body.roboGalleryFields #wpcontent div.roboGalleryFields ul,
1695
- body.roboGalleryFields #wpcontent div.roboGalleryFields ol,
1696
- body.roboGalleryFields #wpcontent div.roboGalleryFields dl {
1697
- line-height: 1.6;
1698
- margin-bottom: 1rem;
1699
- list-style-position: outside; }
1700
- body.roboGalleryFields #wpcontent div.roboGalleryFields li {
1701
- font-size: inherit; }
1702
- body.roboGalleryFields #wpcontent div.roboGalleryFields ul {
1703
- list-style-type: disc;
1704
- margin-left: 1.25rem; }
1705
- body.roboGalleryFields #wpcontent div.roboGalleryFields ol {
1706
- margin-left: 1.25rem; }
1707
- body.roboGalleryFields #wpcontent div.roboGalleryFields ul body.roboGalleryFields #wpcontent div.roboGalleryFields ul, body.roboGalleryFields #wpcontent div.roboGalleryFields ol body.roboGalleryFields #wpcontent div.roboGalleryFields ul, body.roboGalleryFields #wpcontent div.roboGalleryFields ul body.roboGalleryFields #wpcontent div.roboGalleryFields ol, body.roboGalleryFields #wpcontent div.roboGalleryFields ol body.roboGalleryFields #wpcontent div.roboGalleryFields ol {
1708
- margin-left: 1.25rem;
1709
- margin-bottom: 0; }
1710
- body.roboGalleryFields #wpcontent div.roboGalleryFields dl {
1711
- margin-bottom: 1rem; }
1712
- body.roboGalleryFields #wpcontent div.roboGalleryFields dl dt {
1713
- margin-bottom: 0.3rem;
1714
- font-weight: bold; }
1715
- body.roboGalleryFields #wpcontent div.roboGalleryFields blockquote {
1716
- margin: 0 0 1rem;
1717
- padding: 0.5625rem 1.25rem 0 1.1875rem;
1718
- border-left: 1px solid #cacaca; }
1719
- body.roboGalleryFields #wpcontent div.roboGalleryFields blockquote, body.roboGalleryFields #wpcontent div.roboGalleryFields blockquote p {
1720
- line-height: 1.6;
1721
- color: #8a8a8a; }
1722
- body.roboGalleryFields #wpcontent div.roboGalleryFields cite {
1723
- display: block;
1724
- font-size: 0.8125rem;
1725
- color: #8a8a8a; }
1726
- body.roboGalleryFields #wpcontent div.roboGalleryFields cite:before {
1727
- content: '\2014 \0020'; }
1728
- body.roboGalleryFields #wpcontent div.roboGalleryFields abbr {
1729
- color: #0a0a0a;
1730
- cursor: help;
1731
- border-bottom: 1px dotted #0a0a0a; }
1732
- body.roboGalleryFields #wpcontent div.roboGalleryFields code {
1733
- font-family: Consolas, "Liberation Mono", Courier, monospace;
1734
- font-weight: normal;
1735
- color: #0a0a0a;
1736
- background-color: #e6e6e6;
1737
- border: 1px solid #cacaca;
1738
- padding: 0.125rem 0.3125rem 0.0625rem; }
1739
- body.roboGalleryFields #wpcontent div.roboGalleryFields kbd {
1740
- padding: 0.125rem 0.25rem 0;
1741
- margin: 0;
1742
- background-color: #e6e6e6;
1743
- color: #0a0a0a;
1744
- font-family: Consolas, "Liberation Mono", Courier, monospace; }
1745
- body.roboGalleryFields #wpcontent div.roboGalleryFields .subheader {
1746
- margin-top: 0.2rem;
1747
- margin-bottom: 0.5rem;
1748
- font-weight: normal;
1749
- line-height: 1.4;
1750
- color: #8a8a8a; }
1751
- body.roboGalleryFields #wpcontent div.roboGalleryFields .lead {
1752
- font-size: 125%;
1753
- line-height: 1.6; }
1754
- body.roboGalleryFields #wpcontent div.roboGalleryFields .stat {
1755
- font-size: 2.5rem;
1756
- line-height: 1; }
1757
- p + body.roboGalleryFields #wpcontent div.roboGalleryFields .stat {
1758
- margin-top: -1rem; }
1759
- body.roboGalleryFields #wpcontent div.roboGalleryFields .no-bullet {
1760
- margin-left: 0;
1761
- list-style: none; }
1762
- body.roboGalleryFields #wpcontent div.roboGalleryFields .text-left {
1763
- text-align: left; }
1764
- body.roboGalleryFields #wpcontent div.roboGalleryFields .text-right {
1765
- text-align: right; }
1766
- body.roboGalleryFields #wpcontent div.roboGalleryFields .text-center {
1767
- text-align: center; }
1768
- body.roboGalleryFields #wpcontent div.roboGalleryFields .text-justify {
1769
- text-align: justify; }
1770
- @media screen and (min-width: 40em) {
1771
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-text-left {
1772
- text-align: left; }
1773
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-text-right {
1774
- text-align: right; }
1775
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-text-center {
1776
- text-align: center; }
1777
- body.roboGalleryFields #wpcontent div.roboGalleryFields .medium-text-justify {
1778
- text-align: justify; } }
1779
- @media screen and (min-width: 64em) {
1780
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-text-left {
1781
- text-align: left; }
1782
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-text-right {
1783
- text-align: right; }
1784
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-text-center {
1785
- text-align: center; }
1786
- body.roboGalleryFields #wpcontent div.roboGalleryFields .large-text-justify {
1787
- text-align: justify; } }
1788
- body.roboGalleryFields #wpcontent div.roboGalleryFields .show-for-print {
1789
- display: none !important; }
1790
- @media print {
1791
- body.roboGalleryFields #wpcontent div.roboGalleryFields * {
1792
- background: transparent !important;
1793
- color: black !important;
1794
- box-shadow: none !important;
1795
- text-shadow: none !important; }
1796
- body.roboGalleryFields #wpcontent div.roboGalleryFields .show-for-print {
1797
- display: block !important; }
1798
- body.roboGalleryFields #wpcontent div.roboGalleryFields .hide-for-print {
1799
- display: none !important; }
1800
- body.roboGalleryFields #wpcontent div.roboGalleryFields table.show-for-print {
1801
- display: table !important; }
1802
- body.roboGalleryFields #wpcontent div.roboGalleryFields thead.show-for-print {
1803
- display: table-header-group !important; }
1804
- body.roboGalleryFields #wpcontent div.roboGalleryFields tbody.show-for-print {
1805
- display: table-row-group !important; }
1806
- body.roboGalleryFields #wpcontent div.roboGalleryFields tr.show-for-print {
1807
- display: table-row !important; }
1808
- body.roboGalleryFields #wpcontent div.roboGalleryFields td.show-for-print {
1809
- display: table-cell !important; }
1810
- body.roboGalleryFields #wpcontent div.roboGalleryFields th.show-for-print {
1811
- display: table-cell !important; }
1812
- body.roboGalleryFields #wpcontent div.roboGalleryFields a,
1813
- body.roboGalleryFields #wpcontent div.roboGalleryFields a:visited {
1814
- text-decoration: underline; }
1815
- body.roboGalleryFields #wpcontent div.roboGalleryFields a[href]:after {
1816
- content: " (" attr(href) ")"; }
1817
- body.roboGalleryFields #wpcontent div.roboGalleryFields .ir a:after,
1818
- body.roboGalleryFields #wpcontent div.roboGalleryFields a[href^='javascript:']:after,
1819
- body.roboGalleryFields #wpcontent div.roboGalleryFields a[href^='#']:after {
1820
- content: ''; }
1821
- body.roboGalleryFields #wpcontent div.roboGalleryFields abbr[title]:after {
1822
- content: " (" attr(title) ")"; }
1823
- body.roboGalleryFields #wpcontent div.roboGalleryFields pre,
1824
- body.roboGalleryFields #wpcontent div.roboGalleryFields blockquote {
1825
- border: 1px solid #8a8a8a;
1826
- page-break-inside: avoid; }
1827
- body.roboGalleryFields #wpcontent div.roboGalleryFields thead {
1828
- display: table-header-group; }
1829
- body.roboGalleryFields #wpcontent div.roboGalleryFields tr,
1830
- body.roboGalleryFields #wpcontent div.roboGalleryFields img {
1831
- page-break-inside: avoid; }
1832
- body.roboGalleryFields #wpcontent div.roboGalleryFields img {
1833
- max-width: 100% !important; }
1834
- @page {
1835
- body.roboGalleryFields #wpcontent div.roboGalleryFields {
1836
- margin: 0.5cm; } }
1837
- body.roboGalleryFields #wpcontent div.roboGalleryFields p,
1838
- body.roboGalleryFields #wpcontent div.roboGalleryFields h2,
1839
- body.roboGalleryFields #wpcontent div.roboGalleryFields h3 {
1840
- orphans: 3;
1841
- widows: 3; }
1842
- body.roboGalleryFields #wpcontent div.roboGalleryFields h2,
1843
- body.roboGalleryFields #wpcontent div.roboGalleryFields h3 {
1844
- page-break-after: avoid; } }
1845
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button {
1846
- display: inline-block;
1847
- text-align: center;
1848
- line-height: 1;
1849
- cursor: pointer;
1850
- -webkit-appearance: none;
1851
- transition: background-color 0.25s ease-out, color 0.25s ease-out;
1852
- vertical-align: middle;
1853
- border: 1px solid transparent;
1854
- border-radius: 0;
1855
- padding: 0.85em 1em;
1856
- margin: 0 0 1rem 0;
1857
- font-size: 0.9rem;
1858
- background-color: #2199e8;
1859
- color: #fefefe; }
1860
- [data-whatinput='mouse'] body.roboGalleryFields #wpcontent div.roboGalleryFields .button {
1861
- outline: 0; }
1862
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button:hover, body.roboGalleryFields #wpcontent div.roboGalleryFields .button:focus {
1863
- background-color: #1583cc;
1864
- color: #fefefe; }
1865
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button.tiny {
1866
- font-size: 0.6rem; }
1867
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button.small {
1868
- font-size: 0.75rem; }
1869
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button.large {
1870
- font-size: 1.25rem; }
1871
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button.expanded {
1872
- display: block;
1873
- width: 100%;
1874
- margin-left: 0;
1875
- margin-right: 0; }
1876
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button.primary {
1877
- background-color: #2199e8;
1878
- color: #fefefe; }
1879
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button.primary:hover, body.roboGalleryFields #wpcontent div.roboGalleryFields .button.primary:focus {
1880
- background-color: #147cc0;
1881
- color: #fefefe; }
1882
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button.secondary {
1883
- background-color: #777;
1884
- color: #fefefe; }
1885
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button.secondary:hover, body.roboGalleryFields #wpcontent div.roboGalleryFields .button.secondary:focus {
1886
- background-color: #5f5f5f;
1887
- color: #fefefe; }
1888
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button.success {
1889
- background-color: #3adb76;
1890
- color: #fefefe; }
1891
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button.success:hover, body.roboGalleryFields #wpcontent div.roboGalleryFields .button.success:focus {
1892
- background-color: #22bb5b;
1893
- color: #fefefe; }
1894
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button.warning {
1895
- background-color: #ffae00;
1896
- color: #fefefe; }
1897
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button.warning:hover, body.roboGalleryFields #wpcontent div.roboGalleryFields .button.warning:focus {
1898
- background-color: #cc8b00;
1899
- color: #fefefe; }
1900
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button.alert {
1901
- background-color: #ec5840;
1902
- color: #fefefe; }
1903
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button.alert:hover, body.roboGalleryFields #wpcontent div.roboGalleryFields .button.alert:focus {
1904
- background-color: #da3116;
1905
- color: #fefefe; }
1906
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button.hollow {
1907
- border: 1px solid #2199e8;
1908
- color: #2199e8; }
1909
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button.hollow, body.roboGalleryFields #wpcontent div.roboGalleryFields .button.hollow:hover, body.roboGalleryFields #wpcontent div.roboGalleryFields .button.hollow:focus {
1910
- background-color: transparent; }
1911
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button.hollow:hover, body.roboGalleryFields #wpcontent div.roboGalleryFields .button.hollow:focus {
1912
- border-color: #0c4d78;
1913
- color: #0c4d78; }
1914
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button.hollow.primary {
1915
- border: 1px solid #2199e8;
1916
- color: #2199e8; }
1917
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button.hollow.primary:hover, body.roboGalleryFields #wpcontent div.roboGalleryFields .button.hollow.primary:focus {
1918
- border-color: #0c4d78;
1919
- color: #0c4d78; }
1920
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button.hollow.secondary {
1921
- border: 1px solid #777;
1922
- color: #777; }
1923
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button.hollow.secondary:hover, body.roboGalleryFields #wpcontent div.roboGalleryFields .button.hollow.secondary:focus {
1924
- border-color: #3c3c3c;
1925
- color: #3c3c3c; }
1926
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button.hollow.success {
1927
- border: 1px solid #3adb76;
1928
- color: #3adb76; }
1929
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button.hollow.success:hover, body.roboGalleryFields #wpcontent div.roboGalleryFields .button.hollow.success:focus {
1930
- border-color: #157539;
1931
- color: #157539; }
1932
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button.hollow.warning {
1933
- border: 1px solid #ffae00;
1934
- color: #ffae00; }
1935
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button.hollow.warning:hover, body.roboGalleryFields #wpcontent div.roboGalleryFields .button.hollow.warning:focus {
1936
- border-color: #805700;
1937
- color: #805700; }
1938
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button.hollow.alert {
1939
- border: 1px solid #ec5840;
1940
- color: #ec5840; }
1941
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button.hollow.alert:hover, body.roboGalleryFields #wpcontent div.roboGalleryFields .button.hollow.alert:focus {
1942
- border-color: #881f0e;
1943
- color: #881f0e; }
1944
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button.disabled, body.roboGalleryFields #wpcontent div.roboGalleryFields .button[disabled] {
1945
- opacity: 0.25;
1946
- cursor: not-allowed; }
1947
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button.dropdown::after {
1948
- content: '';
1949
- display: block;
1950
- width: 0;
1951
- height: 0;
1952
- border: inset 0.4em;
1953
- border-color: #fefefe transparent transparent;
1954
- border-top-style: solid;
1955
- border-bottom-width: 0;
1956
- position: relative;
1957
- top: 0.4em;
1958
- float: right;
1959
- margin-left: 1em;
1960
- display: inline-block; }
1961
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button.arrow-only::after {
1962
- margin-left: 0;
1963
- float: none;
1964
- top: -0.1em; }
1965
- body.roboGalleryFields #wpcontent div.roboGalleryFields [type='text'], body.roboGalleryFields #wpcontent div.roboGalleryFields [type='password'], body.roboGalleryFields #wpcontent div.roboGalleryFields [type='date'], body.roboGalleryFields #wpcontent div.roboGalleryFields [type='datetime'], body.roboGalleryFields #wpcontent div.roboGalleryFields [type='datetime-local'], body.roboGalleryFields #wpcontent div.roboGalleryFields [type='month'], body.roboGalleryFields #wpcontent div.roboGalleryFields [type='week'], body.roboGalleryFields #wpcontent div.roboGalleryFields [type='email'], body.roboGalleryFields #wpcontent div.roboGalleryFields [type='number'], body.roboGalleryFields #wpcontent div.roboGalleryFields [type='search'], body.roboGalleryFields #wpcontent div.roboGalleryFields [type='tel'], body.roboGalleryFields #wpcontent div.roboGalleryFields [type='time'], body.roboGalleryFields #wpcontent div.roboGalleryFields [type='url'], body.roboGalleryFields #wpcontent div.roboGalleryFields [type='color'],
1966
- body.roboGalleryFields #wpcontent div.roboGalleryFields textarea {
1967
- display: block;
1968
- box-sizing: border-box;
1969
- width: 100%;
1970
- height: 2.4375rem;
1971
- padding: 0.5rem;
1972
- border: 1px solid #cacaca;
1973
- margin: 0 0 1rem;
1974
- font-family: inherit;
1975
- font-size: 1rem;
1976
- color: #0a0a0a;
1977
- background-color: #fefefe;
1978
- box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
1979
- border-radius: 0;
1980
- transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
1981
- -webkit-appearance: none;
1982
- -moz-appearance: none; }
1983
- body.roboGalleryFields #wpcontent div.roboGalleryFields [type='text']:focus, body.roboGalleryFields #wpcontent div.roboGalleryFields [type='password']:focus, body.roboGalleryFields #wpcontent div.roboGalleryFields [type='date']:focus, body.roboGalleryFields #wpcontent div.roboGalleryFields [type='datetime']:focus, body.roboGalleryFields #wpcontent div.roboGalleryFields [type='datetime-local']:focus, body.roboGalleryFields #wpcontent div.roboGalleryFields [type='month']:focus, body.roboGalleryFields #wpcontent div.roboGalleryFields [type='week']:focus, body.roboGalleryFields #wpcontent div.roboGalleryFields [type='email']:focus, body.roboGalleryFields #wpcontent div.roboGalleryFields [type='number']:focus, body.roboGalleryFields #wpcontent div.roboGalleryFields [type='search']:focus, body.roboGalleryFields #wpcontent div.roboGalleryFields [type='tel']:focus, body.roboGalleryFields #wpcontent div.roboGalleryFields [type='time']:focus, body.roboGalleryFields #wpcontent div.roboGalleryFields [type='url']:focus, body.roboGalleryFields #wpcontent div.roboGalleryFields [type='color']:focus,
1984
- body.roboGalleryFields #wpcontent div.roboGalleryFields textarea:focus {
1985
- border: 1px solid #8a8a8a;
1986
- background-color: #fefefe;
1987
- outline: none;
1988
- box-shadow: 0 0 5px #cacaca;
1989
- transition: box-shadow 0.5s, border-color 0.25s ease-in-out; }
1990
- body.roboGalleryFields #wpcontent div.roboGalleryFields textarea {
1991
- max-width: 100%; }
1992
- body.roboGalleryFields #wpcontent div.roboGalleryFields textarea[rows] {
1993
- height: auto; }
1994
- body.roboGalleryFields #wpcontent div.roboGalleryFields input::-webkit-input-placeholder,
1995
- body.roboGalleryFields #wpcontent div.roboGalleryFields textarea::-webkit-input-placeholder {
1996
- color: #cacaca; }
1997
- body.roboGalleryFields #wpcontent div.roboGalleryFields input::-moz-placeholder,
1998
- body.roboGalleryFields #wpcontent div.roboGalleryFields textarea::-moz-placeholder {
1999
- color: #cacaca; }
2000
- body.roboGalleryFields #wpcontent div.roboGalleryFields input:-ms-input-placeholder,
2001
- body.roboGalleryFields #wpcontent div.roboGalleryFields textarea:-ms-input-placeholder {
2002
- color: #cacaca; }
2003
- body.roboGalleryFields #wpcontent div.roboGalleryFields input::placeholder,
2004
- body.roboGalleryFields #wpcontent div.roboGalleryFields textarea::placeholder {
2005
- color: #cacaca; }
2006
- body.roboGalleryFields #wpcontent div.roboGalleryFields input:disabled, body.roboGalleryFields #wpcontent div.roboGalleryFields input[readonly],
2007
- body.roboGalleryFields #wpcontent div.roboGalleryFields textarea:disabled,
2008
- body.roboGalleryFields #wpcontent div.roboGalleryFields textarea[readonly] {
2009
- background-color: #e6e6e6;
2010
- cursor: default; }
2011
- body.roboGalleryFields #wpcontent div.roboGalleryFields [type='submit'],
2012
- body.roboGalleryFields #wpcontent div.roboGalleryFields [type='button'] {
2013
- border-radius: 0;
2014
- -webkit-appearance: none;
2015
- -moz-appearance: none; }
2016
- body.roboGalleryFields #wpcontent div.roboGalleryFields input[type='search'] {
2017
- box-sizing: border-box; }
2018
- body.roboGalleryFields #wpcontent div.roboGalleryFields [type='file'],
2019
- body.roboGalleryFields #wpcontent div.roboGalleryFields [type='checkbox'],
2020
- body.roboGalleryFields #wpcontent div.roboGalleryFields [type='radio'] {
2021
- margin: 0 0 1rem; }
2022
- body.roboGalleryFields #wpcontent div.roboGalleryFields [type='checkbox'] + label,
2023
- body.roboGalleryFields #wpcontent div.roboGalleryFields [type='radio'] + label {
2024
- display: inline-block;
2025
- margin-left: 0.5rem;
2026
- margin-right: 1rem;
2027
- margin-bottom: 0;
2028
- vertical-align: baseline; }
2029
- body.roboGalleryFields #wpcontent div.roboGalleryFields [type='checkbox'] + label[for],
2030
- body.roboGalleryFields #wpcontent div.roboGalleryFields [type='radio'] + label[for] {
2031
- cursor: pointer; }
2032
- body.roboGalleryFields #wpcontent div.roboGalleryFields label > [type='checkbox'],
2033
- body.roboGalleryFields #wpcontent div.roboGalleryFields label > [type='radio'] {
2034
- margin-right: 0.5rem; }
2035
- body.roboGalleryFields #wpcontent div.roboGalleryFields [type='file'] {
2036
- width: 100%; }
2037
- body.roboGalleryFields #wpcontent div.roboGalleryFields label {
2038
- display: block;
2039
- margin: 0;
2040
- font-size: 0.875rem;
2041
- font-weight: normal;
2042
- line-height: 1.8;
2043
- color: #0a0a0a; }
2044
- body.roboGalleryFields #wpcontent div.roboGalleryFields label.middle {
2045
- margin: 0 0 1rem;
2046
- padding: 0.5625rem 0; }
2047
- body.roboGalleryFields #wpcontent div.roboGalleryFields .help-text {
2048
- margin-top: -0.5rem;
2049
- font-size: 0.8125rem;
2050
- font-style: italic;
2051
- color: #0a0a0a; }
2052
- body.roboGalleryFields #wpcontent div.roboGalleryFields .input-group {
2053
- display: table;
2054
- width: 100%;
2055
- margin-bottom: 1rem; }
2056
- body.roboGalleryFields #wpcontent div.roboGalleryFields .input-group > :first-child {
2057
- border-radius: 0 0 0 0; }
2058
- body.roboGalleryFields #wpcontent div.roboGalleryFields .input-group > :last-child > * {
2059
- border-radius: 0 0 0 0; }
2060
- body.roboGalleryFields #wpcontent div.roboGalleryFields .input-group-label, body.roboGalleryFields #wpcontent div.roboGalleryFields .input-group-field, body.roboGalleryFields #wpcontent div.roboGalleryFields .input-group-button {
2061
- margin: 0;
2062
- display: table-cell;
2063
- vertical-align: middle; }
2064
- body.roboGalleryFields #wpcontent div.roboGalleryFields .input-group-label {
2065
- text-align: center;
2066
- padding: 0 1rem;
2067
- background: #e6e6e6;
2068
- color: #0a0a0a;
2069
- border: 1px solid #cacaca;
2070
- white-space: nowrap;
2071
- width: 1%;
2072
- height: 100%; }
2073
- body.roboGalleryFields #wpcontent div.roboGalleryFields .input-group-label:first-child {
2074
- border-right: 0; }
2075
- body.roboGalleryFields #wpcontent div.roboGalleryFields .input-group-label:last-child {
2076
- border-left: 0; }
2077
- body.roboGalleryFields #wpcontent div.roboGalleryFields .input-group-field {
2078
- border-radius: 0;
2079
- height: 2.5rem; }
2080
- body.roboGalleryFields #wpcontent div.roboGalleryFields .input-group-button {
2081
- padding-top: 0;
2082
- padding-bottom: 0;
2083
- text-align: center;
2084
- height: 100%;
2085
- width: 1%; }
2086
- body.roboGalleryFields #wpcontent div.roboGalleryFields .input-group-button a,
2087
- body.roboGalleryFields #wpcontent div.roboGalleryFields .input-group-button input,
2088
- body.roboGalleryFields #wpcontent div.roboGalleryFields .input-group-button button {
2089
- margin: 0; }
2090
- body.roboGalleryFields #wpcontent div.roboGalleryFields .input-group .input-group-button {
2091
- display: table-cell; }
2092
- body.roboGalleryFields #wpcontent div.roboGalleryFields fieldset {
2093
- border: 0;
2094
- padding: 0;
2095
- margin: 0; }
2096
- body.roboGalleryFields #wpcontent div.roboGalleryFields legend {
2097
- margin-bottom: 0.5rem;
2098
- max-width: 100%; }
2099
- body.roboGalleryFields #wpcontent div.roboGalleryFields .fieldset {
2100
- border: 1px solid #cacaca;
2101
- padding: 1.25rem;
2102
- margin: 1.125rem 0; }
2103
- body.roboGalleryFields #wpcontent div.roboGalleryFields .fieldset legend {
2104
- background: #fefefe;
2105
- padding: 0 0.1875rem;
2106
- margin: 0;
2107
- margin-left: -0.1875rem; }
2108
- body.roboGalleryFields #wpcontent div.roboGalleryFields select {
2109
- height: 2.4375rem;
2110
- padding: 0.5rem;
2111
- border: 1px solid #cacaca;
2112
- margin: 0 0 1rem;
2113
- font-size: 1rem;
2114
- font-family: inherit;
2115
- line-height: normal;
2116
- color: #0a0a0a;
2117
- background-color: #fefefe;
2118
- border-radius: 0;
2119
- -webkit-appearance: none;
2120
- -moz-appearance: none;
2121
- background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="32" height="24" viewBox="0 0 32 24"><polygon points="0,0 32,0 16,24" style="fill: rgb%28138, 138, 138%29"></polygon></svg>');
2122
- background-size: 9px 6px;
2123
- background-position: right center;
2124
- background-origin: content-box;
2125
- background-repeat: no-repeat; }
2126
- @media screen and (min-width: 0\0) {
2127
- body.roboGalleryFields #wpcontent div.roboGalleryFields select {
2128
- background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg=="); } }
2129
- body.roboGalleryFields #wpcontent div.roboGalleryFields select:disabled {
2130
- background-color: #e6e6e6;
2131
- cursor: default; }
2132
- body.roboGalleryFields #wpcontent div.roboGalleryFields select::-ms-expand {
2133
- display: none; }
2134
- body.roboGalleryFields #wpcontent div.roboGalleryFields select[multiple] {
2135
- height: auto;
2136
- background-image: none; }
2137
- body.roboGalleryFields #wpcontent div.roboGalleryFields .is-invalid-input:not(:focus) {
2138
- background-color: rgba(236, 88, 64, 0.1);
2139
- border-color: #ec5840; }
2140
- body.roboGalleryFields #wpcontent div.roboGalleryFields .is-invalid-label {
2141
- color: #ec5840; }
2142
- body.roboGalleryFields #wpcontent div.roboGalleryFields .form-error {
2143
- display: none;
2144
- margin-top: -0.5rem;
2145
- margin-bottom: 1rem;
2146
- font-size: 0.75rem;
2147
- font-weight: bold;
2148
- color: #ec5840; }
2149
- body.roboGalleryFields #wpcontent div.roboGalleryFields .form-error.is-visible {
2150
- display: block; }
2151
- body.roboGalleryFields #wpcontent div.roboGalleryFields input[type="range"] {
2152
- -webkit-appearance: none;
2153
- -moz-appearance: none;
2154
- display: block;
2155
- width: 100%;
2156
- height: auto;
2157
- cursor: pointer;
2158
- margin-top: 0.45rem;
2159
- margin-bottom: 0.45rem;
2160
- border: 0;
2161
- line-height: 1; }
2162
- body.roboGalleryFields #wpcontent div.roboGalleryFields input[type="range"]:focus {
2163
- outline: 0; }
2164
- body.roboGalleryFields #wpcontent div.roboGalleryFields input[type="range"][disabled] {
2165
- opacity: 0.25; }
2166
- body.roboGalleryFields #wpcontent div.roboGalleryFields input[type="range"]::-webkit-slider-runnable-track {
2167
- height: 0.5rem;
2168
- background: #e6e6e6; }
2169
- body.roboGalleryFields #wpcontent div.roboGalleryFields input[type="range"]::-webkit-slider-handle {
2170
- -webkit-appearance: none;
2171
- background: #2199e8;
2172
- width: 1.4rem;
2173
- height: 1.4rem;
2174
- margin-top: -0.45rem; }
2175
- body.roboGalleryFields #wpcontent div.roboGalleryFields input[type="range"]::-moz-range-track {
2176
- -moz-appearance: none;
2177
- height: 0.5rem;
2178
- background: #e6e6e6; }
2179
- body.roboGalleryFields #wpcontent div.roboGalleryFields input[type="range"]::-moz-range-thumb {
2180
- -moz-appearance: none;
2181
- background: #2199e8;
2182
- width: 1.4rem;
2183
- height: 1.4rem;
2184
- margin-top: -0.45rem; }
2185
- body.roboGalleryFields #wpcontent div.roboGalleryFields input[type="range"]::-ms-track {
2186
- height: 0.5rem;
2187
- background: #e6e6e6;
2188
- color: transparent;
2189
- border: 0;
2190
- overflow: visible;
2191
- border-top: 0.45rem solid #fefefe;
2192
- border-bottom: 0.45rem solid #fefefe; }
2193
- body.roboGalleryFields #wpcontent div.roboGalleryFields input[type="range"]::-ms-thumb {
2194
- background: #2199e8;
2195
- width: 1.4rem;
2196
- height: 1.4rem;
2197
- border: 0; }
2198
- body.roboGalleryFields #wpcontent div.roboGalleryFields input[type="range"]::-ms-fill-lower {
2199
- background: #cacaca; }
2200
- body.roboGalleryFields #wpcontent div.roboGalleryFields input[type="range"]::-ms-fill-upper {
2201
- background: #e6e6e6; }
2202
- output {
2203
- line-height: 1.4rem;
2204
- vertical-align: middle;
2205
- margin-left: 0.5em; }
2206
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button-group {
2207
- margin-bottom: 1rem;
2208
- font-size: 0; }
2209
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button-group::before, body.roboGalleryFields #wpcontent div.roboGalleryFields .button-group::after {
2210
- content: ' ';
2211
- display: table; }
2212
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button-group::after {
2213
- clear: both; }
2214
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button-group .button {
2215
- margin: 0;
2216
- font-size: 0.9rem; }
2217
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button-group .button:not(:last-child) {
2218
- margin-right: 1px; }
2219
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button-group.tiny .button {
2220
- font-size: 0.6rem; }
2221
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button-group.small .button {
2222
- font-size: 0.75rem; }
2223
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button-group.large .button {
2224
- font-size: 1.25rem; }
2225
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button-group.expanded {
2226
- margin-right: -1px; }
2227
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button-group.expanded::before, body.roboGalleryFields #wpcontent div.roboGalleryFields .button-group.expanded::after {
2228
- display: none; }
2229
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button-group.expanded .button:first-child:nth-last-child(2), body.roboGalleryFields #wpcontent div.roboGalleryFields .button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button {
2230
- display: inline-block;
2231
- width: 50%;
2232
- margin-right: 1px; }
2233
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button-group.expanded .button:first-child:nth-last-child(3), body.roboGalleryFields #wpcontent div.roboGalleryFields .button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button {
2234
- display: inline-block;
2235
- width: 33.33333%;
2236
- margin-right: 1px; }
2237
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button-group.expanded .button:first-child:nth-last-child(4), body.roboGalleryFields #wpcontent div.roboGalleryFields .button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button {
2238
- display: inline-block;
2239
- width: 25%;
2240
- margin-right: 1px; }
2241
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button-group.expanded .button:first-child:nth-last-child(5), body.roboGalleryFields #wpcontent div.roboGalleryFields .button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button {
2242
- display: inline-block;
2243
- width: 20%;
2244
- margin-right: 1px; }
2245
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button-group.expanded .button:first-child:nth-last-child(6), body.roboGalleryFields #wpcontent div.roboGalleryFields .button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button {
2246
- display: inline-block;
2247
- width: 16.66667%;
2248
- margin-right: 1px; }
2249
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button-group.primary .button {
2250
- background-color: #2199e8;
2251
- color: #fefefe; }
2252
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button-group.primary .button:hover, body.roboGalleryFields #wpcontent div.roboGalleryFields .button-group.primary .button:focus {
2253
- background-color: #147cc0;
2254
- color: #fefefe; }
2255
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button-group.secondary .button {
2256
- background-color: #777;
2257
- color: #fefefe; }
2258
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button-group.secondary .button:hover, body.roboGalleryFields #wpcontent div.roboGalleryFields .button-group.secondary .button:focus {
2259
- background-color: #5f5f5f;
2260
- color: #fefefe; }
2261
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button-group.success .button {
2262
- background-color: #3adb76;
2263
- color: #fefefe; }
2264
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button-group.success .button:hover, body.roboGalleryFields #wpcontent div.roboGalleryFields .button-group.success .button:focus {
2265
- background-color: #22bb5b;
2266
- color: #fefefe; }
2267
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button-group.warning .button {
2268
- background-color: #ffae00;
2269
- color: #fefefe; }
2270
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button-group.warning .button:hover, body.roboGalleryFields #wpcontent div.roboGalleryFields .button-group.warning .button:focus {
2271
- background-color: #cc8b00;
2272
- color: #fefefe; }
2273
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button-group.alert .button {
2274
- background-color: #ec5840;
2275
- color: #fefefe; }
2276
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button-group.alert .button:hover, body.roboGalleryFields #wpcontent div.roboGalleryFields .button-group.alert .button:focus {
2277
- background-color: #da3116;
2278
- color: #fefefe; }
2279
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button-group.stacked .button, body.roboGalleryFields #wpcontent div.roboGalleryFields .button-group.stacked-for-small .button, body.roboGalleryFields #wpcontent div.roboGalleryFields .button-group.stacked-for-medium .button {
2280
- width: 100%;
2281
- border-right: 1px solid transparent; }
2282
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button-group.stacked .button:not(:last-child), body.roboGalleryFields #wpcontent div.roboGalleryFields .button-group.stacked-for-small .button:not(:last-child), body.roboGalleryFields #wpcontent div.roboGalleryFields .button-group.stacked-for-medium .button:not(:last-child) {
2283
- border-bottom: 1px solid #fefefe; }
2284
- @media screen and (min-width: 40em) {
2285
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button-group.stacked-for-small .button {
2286
- width: auto; }
2287
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button-group.stacked-for-small .button:not(:last-child) {
2288
- margin-right: 1px; } }
2289
- @media screen and (min-width: 64em) {
2290
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button-group.stacked-for-medium .button {
2291
- width: auto; }
2292
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button-group.stacked-for-medium .button:not(:last-child) {
2293
- margin-right: 1px; } }
2294
- @media screen and (max-width: 39.9375em) {
2295
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button-group.stacked-for-small.expanded {
2296
- display: block; }
2297
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button-group.stacked-for-small.expanded .button {
2298
- display: block;
2299
- margin-right: 0; } }
2300
- body.roboGalleryFields #wpcontent div.roboGalleryFields .label {
2301
- display: inline-block;
2302
- padding: 0.33333rem 0.5rem;
2303
- font-size: 0.8rem;
2304
- line-height: 1;
2305
- white-space: nowrap;
2306
- cursor: default;
2307
- border-radius: 0;
2308
- background: #2199e8;
2309
- color: #fefefe; }
2310
- body.roboGalleryFields #wpcontent div.roboGalleryFields .label.secondary {
2311
- background: #777;
2312
- color: #fefefe; }
2313
- body.roboGalleryFields #wpcontent div.roboGalleryFields .label.success {
2314
- background: #3adb76;
2315
- color: #fefefe; }
2316
- body.roboGalleryFields #wpcontent div.roboGalleryFields .label.warning {
2317
- background: #ffae00;
2318
- color: #fefefe; }
2319
- body.roboGalleryFields #wpcontent div.roboGalleryFields .label.alert {
2320
- background: #ec5840;
2321
- color: #fefefe; }
2322
- body.roboGalleryFields #wpcontent div.roboGalleryFields .slider {
2323
- position: relative;
2324
- height: 0.5rem;
2325
- margin-top: 1.25rem;
2326
- margin-bottom: 2.25rem;
2327
- background-color: #e6e6e6;
2328
- cursor: pointer;
2329
- -webkit-user-select: none;
2330
- -moz-user-select: none;
2331
- -ms-user-select: none;
2332
- user-select: none;
2333
- -ms-touch-action: none;
2334
- touch-action: none; }
2335
- body.roboGalleryFields #wpcontent div.roboGalleryFields .slider-fill {
2336
- position: absolute;
2337
- top: 0;
2338
- left: 0;
2339
- display: inline-block;
2340
- max-width: 100%;
2341
- height: 0.5rem;
2342
- background-color: #cacaca;
2343
- transition: all 0.2s ease-in-out; }
2344
- body.roboGalleryFields #wpcontent div.roboGalleryFields .slider-fill.is-dragging {
2345
- transition: all 0s linear; }
2346
- body.roboGalleryFields #wpcontent div.roboGalleryFields .slider-handle {
2347
- position: absolute;
2348
- top: 50%;
2349
- -ms-transform: translateY(-50%);
2350
- transform: translateY(-50%);
2351
- position: absolute;
2352
- left: 0;
2353
- z-index: 1;
2354
- display: inline-block;
2355
- width: 1.4rem;
2356
- height: 1.4rem;
2357
- background-color: #2199e8;
2358
- transition: all 0.2s ease-in-out;
2359
- -ms-touch-action: manipulation;
2360
- touch-action: manipulation;
2361
- border-radius: 0; }
2362
- [data-whatinput='mouse'] body.roboGalleryFields #wpcontent div.roboGalleryFields .slider-handle {
2363
- outline: 0; }
2364
- body.roboGalleryFields #wpcontent div.roboGalleryFields .slider-handle:hover {
2365
- background-color: #1583cc; }
2366
- body.roboGalleryFields #wpcontent div.roboGalleryFields .slider-handle.is-dragging {
2367
- transition: all 0s linear; }
2368
- body.roboGalleryFields #wpcontent div.roboGalleryFields .slider.disabled,
2369
- body.roboGalleryFields #wpcontent div.roboGalleryFields .slider[disabled] {
2370
- opacity: 0.25;
2371
- cursor: not-allowed; }
2372
- body.roboGalleryFields #wpcontent div.roboGalleryFields .slider.vertical {
2373
- display: inline-block;
2374
- width: 0.5rem;
2375
- height: 12.5rem;
2376
- margin: 0 1.25rem;
2377
- -ms-transform: scale(1, -1);
2378
- transform: scale(1, -1); }
2379
- body.roboGalleryFields #wpcontent div.roboGalleryFields .slider.vertical .slider-fill {
2380
- top: 0;
2381
- width: 0.5rem;
2382
- max-height: 100%; }
2383
- body.roboGalleryFields #wpcontent div.roboGalleryFields .slider.vertical .slider-handle {
2384
- position: absolute;
2385
- top: 0;
2386
- left: 50%;
2387
- width: 1.4rem;
2388
- height: 1.4rem;
2389
- -ms-transform: translateX(-50%);
2390
- transform: translateX(-50%); }
2391
- body.roboGalleryFields #wpcontent div.roboGalleryFields .switch {
2392
- margin-bottom: 1rem;
2393
- outline: 0;
2394
- position: relative;
2395
- -webkit-user-select: none;
2396
- -moz-user-select: none;
2397
- -ms-user-select: none;
2398
- user-select: none;
2399
- color: #fefefe;
2400
- font-weight: bold;
2401
- font-size: 0.875rem; }
2402
- body.roboGalleryFields #wpcontent div.roboGalleryFields .switch-input {
2403
- opacity: 0;
2404
- position: absolute; }
2405
- body.roboGalleryFields #wpcontent div.roboGalleryFields .switch-paddle {
2406
- background: #cacaca;
2407
- cursor: pointer;
2408
- display: block;
2409
- position: relative;
2410
- width: 4rem;
2411
- height: 2rem;
2412
- transition: all 0.25s ease-out;
2413
- border-radius: 0;
2414
- color: inherit;
2415
- font-weight: inherit; }
2416
- input + body.roboGalleryFields #wpcontent div.roboGalleryFields .switch-paddle {
2417
- margin: 0; }
2418
- body.roboGalleryFields #wpcontent div.roboGalleryFields .switch-paddle::after {
2419
- background: #fefefe;
2420
- content: '';
2421
- display: block;
2422
- position: absolute;
2423
- height: 1.5rem;
2424
- left: 0.25rem;
2425
- top: 0.25rem;
2426
- width: 1.5rem;
2427
- transition: all 0.25s ease-out;
2428
- transform: translate3d(0, 0, 0);
2429
- border-radius: 0; }
2430
- input:checked ~ body.roboGalleryFields #wpcontent div.roboGalleryFields .switch-paddle {
2431
- background: #2199e8; }
2432
- input:checked ~ body.roboGalleryFields #wpcontent div.roboGalleryFields .switch-paddle::after {
2433
- left: 2.25rem; }
2434
- [data-whatinput='mouse'] input:focus ~ body.roboGalleryFields #wpcontent div.roboGalleryFields .switch-paddle {
2435
- outline: 0; }
2436
- body.roboGalleryFields #wpcontent div.roboGalleryFields .switch-active, body.roboGalleryFields #wpcontent div.roboGalleryFields .switch-inactive {
2437
- position: absolute;
2438
- top: 50%;
2439
- -ms-transform: translateY(-50%);
2440
- transform: translateY(-50%); }
2441
- body.roboGalleryFields #wpcontent div.roboGalleryFields .switch-active {
2442
- left: 8%;
2443
- display: none; }
2444
- input:checked + label > body.roboGalleryFields #wpcontent div.roboGalleryFields .switch-active {
2445
- display: block; }
2446
- body.roboGalleryFields #wpcontent div.roboGalleryFields .switch-inactive {
2447
- right: 15%; }
2448
- input:checked + label > body.roboGalleryFields #wpcontent div.roboGalleryFields .switch-inactive {
2449
- display: none; }
2450
- body.roboGalleryFields #wpcontent div.roboGalleryFields .switch.tiny .switch-paddle {
2451
- width: 3rem;
2452
- height: 1.5rem;
2453
- font-size: 0.625rem; }
2454
- body.roboGalleryFields #wpcontent div.roboGalleryFields .switch.tiny .switch-paddle::after {
2455
- width: 1rem;
2456
- height: 1rem; }
2457
- body.roboGalleryFields #wpcontent div.roboGalleryFields .switch.tiny input:checked ~ .switch-paddle::after {
2458
- left: 1.75rem; }
2459
- body.roboGalleryFields #wpcontent div.roboGalleryFields .switch.small .switch-paddle {
2460
- width: 3.5rem;
2461
- height: 1.75rem;
2462
- font-size: 0.75rem; }
2463
- body.roboGalleryFields #wpcontent div.roboGalleryFields .switch.small .switch-paddle::after {
2464
- width: 1.25rem;
2465
- height: 1.25rem; }
2466
- body.roboGalleryFields #wpcontent div.roboGalleryFields .switch.small input:checked ~ .switch-paddle::after {
2467
- left: 2rem; }
2468
- body.roboGalleryFields #wpcontent div.roboGalleryFields .switch.large .switch-paddle {
2469
- width: 5rem;
2470
- height: 2.5rem;
2471
- font-size: 1rem; }
2472
- body.roboGalleryFields #wpcontent div.roboGalleryFields .switch.large .switch-paddle::after {
2473
- width: 2rem;
2474
- height: 2rem; }
2475
- body.roboGalleryFields #wpcontent div.roboGalleryFields .switch.large input:checked ~ .switch-paddle::after {
2476
- left: 2.75rem; }
2477
- body.roboGalleryFields #wpcontent div.roboGalleryFields .has-tip {
2478
- border-bottom: dotted 1px #8a8a8a;
2479
- font-weight: bold;
2480
- position: relative;
2481
- display: inline-block;
2482
- cursor: help; }
2483
- body.roboGalleryFields #wpcontent div.roboGalleryFields .tooltip {
2484
- background-color: #0a0a0a;
2485
- color: #fefefe;
2486
- font-size: 80%;
2487
- padding: 0.75rem;
2488
- position: absolute;
2489
- z-index: 10;
2490
- top: calc(100% + 0.6495rem);
2491
- max-width: 10rem !important;
2492
- border-radius: 0; }
2493
- body.roboGalleryFields #wpcontent div.roboGalleryFields .tooltip::before {
2494
- content: '';
2495
- display: block;
2496
- width: 0;
2497
- height: 0;
2498
- border: inset 0.75rem;
2499
- border-color: transparent transparent #0a0a0a;
2500
- border-bottom-style: solid;
2501
- border-top-width: 0;
2502
- bottom: 100%;
2503
- position: absolute;
2504
- left: 50%;
2505
- -ms-transform: translateX(-50%);
2506
- transform: translateX(-50%); }
2507
- body.roboGalleryFields #wpcontent div.roboGalleryFields .tooltip.top::before {
2508
- content: '';
2509
- display: block;
2510
- width: 0;
2511
- height: 0;
2512
- border: inset 0.75rem;
2513
- border-color: #0a0a0a transparent transparent;
2514
- border-top-style: solid;
2515
- border-bottom-width: 0;
2516
- top: 100%;
2517
- bottom: auto; }
2518
- body.roboGalleryFields #wpcontent div.roboGalleryFields .tooltip.left::before {
2519
- content: '';
2520
- display: block;
2521
- width: 0;
2522
- height: 0;
2523
- border: inset 0.75rem;
2524
- border-color: transparent transparent transparent #0a0a0a;
2525
- border-left-style: solid;
2526
- border-right-width: 0;
2527
- bottom: auto;
2528
- left: 100%;
2529
- top: 50%;
2530
- -ms-transform: translateY(-50%);
2531
- transform: translateY(-50%); }
2532
- body.roboGalleryFields #wpcontent div.roboGalleryFields .tooltip.right::before {
2533
- content: '';
2534
- display: block;
2535
- width: 0;
2536
- height: 0;
2537
- border: inset 0.75rem;
2538
- border-color: transparent #0a0a0a transparent transparent;
2539
- border-right-style: solid;
2540
- border-left-width: 0;
2541
- bottom: auto;
2542
- left: auto;
2543
- right: 100%;
2544
- top: 50%;
2545
- -ms-transform: translateY(-50%);
2546
- transform: translateY(-50%); }
2547
- body.roboGalleryFields #wpcontent div.roboGalleryFields .hide {
2548
- display: none !important; }
2549
- body.roboGalleryFields #wpcontent div.roboGalleryFields .invisible {
2550
- visibility: hidden; }
2551
- @media screen and (max-width: 39.9375em) {
2552
- body.roboGalleryFields #wpcontent div.roboGalleryFields .hide-for-small-only {
2553
- display: none !important; } }
2554
- @media screen and (max-width: 0em), screen and (min-width: 40em) {
2555
- body.roboGalleryFields #wpcontent div.roboGalleryFields .show-for-small-only {
2556
- display: none !important; } }
2557
- @media screen and (min-width: 40em) {
2558
- body.roboGalleryFields #wpcontent div.roboGalleryFields .hide-for-medium {
2559
- display: none !important; } }
2560
- @media screen and (max-width: 39.9375em) {
2561
- body.roboGalleryFields #wpcontent div.roboGalleryFields .show-for-medium {
2562
- display: none !important; } }
2563
- @media screen and (min-width: 40em) and (max-width: 63.9375em) {
2564
- body.roboGalleryFields #wpcontent div.roboGalleryFields .hide-for-medium-only {
2565
- display: none !important; } }
2566
- @media screen and (max-width: 39.9375em), screen and (min-width: 64em) {
2567
- body.roboGalleryFields #wpcontent div.roboGalleryFields .show-for-medium-only {
2568
- display: none !important; } }
2569
- @media screen and (min-width: 64em) {
2570
- body.roboGalleryFields #wpcontent div.roboGalleryFields .hide-for-large {
2571
- display: none !important; } }
2572
- @media screen and (max-width: 63.9375em) {
2573
- body.roboGalleryFields #wpcontent div.roboGalleryFields .show-for-large {
2574
- display: none !important; } }
2575
- @media screen and (min-width: 64em) and (max-width: 74.9375em) {
2576
- body.roboGalleryFields #wpcontent div.roboGalleryFields .hide-for-large-only {
2577
- display: none !important; } }
2578
- @media screen and (max-width: 63.9375em), screen and (min-width: 75em) {
2579
- body.roboGalleryFields #wpcontent div.roboGalleryFields .show-for-large-only {
2580
- display: none !important; } }
2581
- body.roboGalleryFields #wpcontent div.roboGalleryFields .show-for-sr,
2582
- body.roboGalleryFields #wpcontent div.roboGalleryFields .show-on-focus {
2583
- position: absolute !important;
2584
- width: 1px;
2585
- height: 1px;
2586
- overflow: hidden;
2587
- clip: rect(0, 0, 0, 0); }
2588
- body.roboGalleryFields #wpcontent div.roboGalleryFields .show-on-focus:active, body.roboGalleryFields #wpcontent div.roboGalleryFields .show-on-focus:focus {
2589
- position: static !important;
2590
- height: auto;
2591
- width: auto;
2592
- overflow: visible;
2593
- clip: auto; }
2594
- body.roboGalleryFields #wpcontent div.roboGalleryFields .show-for-landscape,
2595
- body.roboGalleryFields #wpcontent div.roboGalleryFields .hide-for-portrait {
2596
- display: block !important; }
2597
- @media screen and (orientation: landscape) {
2598
- body.roboGalleryFields #wpcontent div.roboGalleryFields .show-for-landscape,
2599
- body.roboGalleryFields #wpcontent div.roboGalleryFields .hide-for-portrait {
2600
- display: block !important; } }
2601
- @media screen and (orientation: portrait) {
2602
- body.roboGalleryFields #wpcontent div.roboGalleryFields .show-for-landscape,
2603
- body.roboGalleryFields #wpcontent div.roboGalleryFields .hide-for-portrait {
2604
- display: none !important; } }
2605
- body.roboGalleryFields #wpcontent div.roboGalleryFields .hide-for-landscape,
2606
- body.roboGalleryFields #wpcontent div.roboGalleryFields .show-for-portrait {
2607
- display: none !important; }
2608
- @media screen and (orientation: landscape) {
2609
- body.roboGalleryFields #wpcontent div.roboGalleryFields .hide-for-landscape,
2610
- body.roboGalleryFields #wpcontent div.roboGalleryFields .show-for-portrait {
2611
- display: none !important; } }
2612
- @media screen and (orientation: portrait) {
2613
- body.roboGalleryFields #wpcontent div.roboGalleryFields .hide-for-landscape,
2614
- body.roboGalleryFields #wpcontent div.roboGalleryFields .show-for-portrait {
2615
- display: block !important; } }
2616
- body.roboGalleryFields #wpcontent div.roboGalleryFields .float-left {
2617
- float: left !important; }
2618
- body.roboGalleryFields #wpcontent div.roboGalleryFields .float-right {
2619
- float: right !important; }
2620
- body.roboGalleryFields #wpcontent div.roboGalleryFields .float-center {
2621
- display: block;
2622
- margin-left: auto;
2623
- margin-right: auto; }
2624
- body.roboGalleryFields #wpcontent div.roboGalleryFields .clearfix::before, body.roboGalleryFields #wpcontent div.roboGalleryFields .clearfix::after {
2625
- content: ' ';
2626
- display: table; }
2627
- body.roboGalleryFields #wpcontent div.roboGalleryFields .clearfix::after {
2628
- clear: both; }
2629
- body.roboGalleryFields #wpcontent div.roboGalleryFields * {
2630
- box-sizing: border-box; }
2631
- body.roboGalleryFields #wpcontent div.roboGalleryFields input[type=radio], body.roboGalleryFields #wpcontent div.roboGalleryFields input[type=checkbox] {
2632
- vertical-align: inherit; }
2633
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button {
2634
- height: auto; }
2635
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button:first-child,
2636
- body.roboGalleryFields #wpcontent div.roboGalleryFields .button:last-child {
2637
- border-radius: inherit; }
2638
- body.roboGalleryFields #wpcontent div.roboGalleryFields .row .row {
2639
- margin-left: -0.9375rem;
2640
- margin-right: -0.9375rem;
2641
- max-width: none; }
2642
- body.roboGalleryFields #wpcontent div.roboGalleryFields .metabox.content-before,
2643
- body.roboGalleryFields #wpcontent div.roboGalleryFields .metabox.content,
2644
- body.roboGalleryFields #wpcontent div.roboGalleryFields .metabox.content-after,
2645
- body.roboGalleryFields #wpcontent div.roboGalleryFields .metabox.wrap-field {
2646
- margin-bottom: 20px; }
2647
- body.roboGalleryFields #wpcontent div.roboGalleryFields .wrap-field {
2648
- position: relative; }
2649
- body.roboGalleryFields #wpcontent div.roboGalleryFields .wrap-field .lock-overlay {
2650
- position: absolute;
2651
- z-index: 1;
2652
- width: 100%;
2653
- height: 100%;
2654
- background: rgba(0, 0, 0, 0.5); }
2655
- body.roboGalleryFields #wpcontent div.roboGalleryFields .wrap-field .lock-overlay .lock-message {
2656
- position: absolute;
2657
- left: 50%;
2658
- top: 50%;
2659
- transform: translate(-50%, -50%);
2660
- -webkit-transform: translate(-50%, -50%);
2661
- -o-transform: translate(-50%, -50%);
2662
- -ms-transform: translate(-50%, -50%);
2663
- font-size: 2rem;
2664
- color: #e6e6e6; }
2665
- body.roboGalleryFields #wpcontent div.roboGalleryFields .wrap-field .field .text-before,
2666
- body.roboGalleryFields #wpcontent div.roboGalleryFields .wrap-field .field .text-after,
2667
- body.roboGalleryFields #wpcontent div.roboGalleryFields .wrap-field .field.text-before,
2668
- body.roboGalleryFields #wpcontent div.roboGalleryFields .wrap-field .field.text-after {
2669
- padding-top: 0.5rem; }
2670
- body.roboGalleryFields #wpcontent div.roboGalleryFields .wrap-field .switch-element input + label{
2671
- margin-left: 0;
2672
- }
2673
- body.roboGalleryFields #wpcontent div.roboGalleryFields .wrap-field .switch-element {
2674
- float: left;
2675
- margin-right: 20px; }
2676
- body.roboGalleryFields #wpcontent div.roboGalleryFields .wrap-field .switch-element input:checked ~ .switch-paddle {
2677
- background-color: #2199e8; }
2678
- body.roboGalleryFields #wpcontent div.roboGalleryFields .wrap-field .switch-element input:checked + label > .switch-active {
2679
- display: block; }
2680
- body.roboGalleryFields #wpcontent div.roboGalleryFields .wrap-field.checkbox-button .button-element,
2681
- body.roboGalleryFields #wpcontent div.roboGalleryFields .wrap-field.checkbox-group-button .button-element {
2682
- display: inline-block;
2683
- margin-bottom: 20px; }
2684
- body.roboGalleryFields #wpcontent div.roboGalleryFields .wrap-field.checkbox-button input[type=checkbox],
2685
- body.roboGalleryFields #wpcontent div.roboGalleryFields .wrap-field.checkbox-group-button input[type=checkbox] {
2686
- display: none; }
2687
- body.roboGalleryFields #wpcontent div.roboGalleryFields .wrap-field.checkbox-button input + label,
2688
- body.roboGalleryFields #wpcontent div.roboGalleryFields .wrap-field.checkbox-group-button input + label {
2689
- margin: 0;
2690
- background: #cacaca; }
2691
- body.roboGalleryFields #wpcontent div.roboGalleryFields .wrap-field.checkbox-button input + label:active,
2692
- body.roboGalleryFields #wpcontent div.roboGalleryFields .wrap-field.checkbox-group-button input + label:active {
2693
- -ms-transform: translateY(0px);
2694
- transform: translateY(0px); }
2695
- body.roboGalleryFields #wpcontent div.roboGalleryFields .wrap-field.checkbox-button input:checked + label,
2696
- body.roboGalleryFields #wpcontent div.roboGalleryFields .wrap-field.checkbox-group-button input:checked + label {
2697
- background: #2199e8; }
2698
- body.roboGalleryFields #wpcontent div.roboGalleryFields .wrap-field.radio-buttons-group .field .button-group input[type=radio] {
2699
- display: none; }
2700
- body.roboGalleryFields #wpcontent div.roboGalleryFields .wrap-field.radio-buttons-group .field .button-group input + label {
2701
- background: #cacaca; }
2702
- body.roboGalleryFields #wpcontent div.roboGalleryFields .wrap-field.radio-buttons-group .field .button-group input + label:active {
2703
- -ms-transform: translateY(0px);
2704
- transform: translateY(0px); }
2705
- body.roboGalleryFields #wpcontent div.roboGalleryFields .wrap-field.radio-buttons-group .field .button-group input:checked + label {
2706
- background: #2199e8; }
2707
- body.roboGalleryFields #wpcontent div.roboGalleryFields .wrap-field.composite-default .switch-element .switch.small label {
2708
- margin-top: 0.33rem; }
2709
- body.roboGalleryFields #wpcontent div.roboGalleryFields .twoj-gallery-option-new{
2710
- position: absolute;
2711
- top: 30px;
2712
- right: -37px;
2713
- font-size: 0.65rem;
2714
-
2715
- transform: rotate(-90deg);
2716
- -webkit-transform: rotate(-90deg);
2717
- -moz-transform: rotate(-90deg);
2718
- -ms-transform: rotate(-90deg);
2719
- -o-transform: rotate(-90deg);
2720
- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
2721
- }
2722
-
2723
-
2724
-
2725
- body.roboGalleryFields #wpcontent .apeLoading {
2726
- background-image: url( 'loading_clear.gif' );
2727
- background-repeat: no-repeat;
2728
- background-position: center;
2729
- width: auto;
2730
- height: 20px;
2731
- margin:0 auto;
2732
- }
2733
-
2734
- .inline-block{
2735
- display: inline-block;
2736
- }
2737
-
2738
- body.roboGalleryFields #wpcontent div.roboGalleryFields .hidden-default{
2739
- display: none;
2740
- }
2741
-
2742
- body.roboGalleryFields #wpcontent div.roboGalleryFields .metabox.wrap-field:nth-child(1){
2743
- padding-top: 10px;
2744
- }
2745
- body.roboGalleryFields #wpcontent div.roboGalleryFields .metabox.wrap-field:nth-last-child(2){
2746
- /*padding-bottom: 0;
2747
- margin-bottom: 0; */
2748
- }
2749
-
2750
-
2751
- body.roboGalleryFields #wpcontent div.roboGalleryFields .metabox.content:nth-last-child(2){
2752
- padding-bottom: 0;
2753
- margin-bottom: 0;
2754
- }
2755
-
2756
-
2757
- body.roboGalleryFields #wpcontent div.roboGalleryFields #robo_gallery_fields_themes_default_message.big{
2758
- text-align: center;
2759
- font-size: 1.5em;
2760
- }
2761
-
2762
-
2763
-
2764
- body.roboGalleryFields #wpcontent div.roboGalleryFields .checkIcon{}
2765
-
2766
- body.roboGalleryFields #wpcontent div.roboGalleryFields .checkIcon .dashicons{
2767
- font-size: 80px;
2768
- width: auto;
2769
- height: auto;
2770
- color: green;
2771
- }
2772
-
2773
- body.roboGalleryFields #wpcontent div.roboGalleryFields .checkIcon.ape-gallery-field-theme-default-current .dashicons{
2774
- float:left;
2775
- margin-left: -33px;
2776
- margin-bottom: -12px;
2777
- margin-top: -10px;
2778
- }
2779
- body.roboGalleryFields #wpcontent div.roboGalleryFields .ape-gallery-field-theme-default-current .desc{
2780
- padding-top: 10px;
2781
- font-weight: bold;
2782
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/extensions/fields/asset/core/js/app.js CHANGED
@@ -1,6 +1,6 @@
1
  /*
2
  * Robo Gallery
3
- * Version: 3.0.5 - 66649
4
  * By Robosoft
5
  *
6
  * Contact: https://robosoft.co/robogallery/
1
  /*
2
  * Robo Gallery
3
+ * Version: 3.0.7 - 90614
4
  * By Robosoft
5
  *
6
  * Contact: https://robosoft.co/robogallery/
app/extensions/fields/asset/fields/css/update.key.css CHANGED
@@ -6,4 +6,6 @@ body.roboGalleryFields #wpcontent div.roboGalleryFields div.robo-update-key-mess
6
  body.roboGalleryFields #wpcontent div.roboGalleryFields div.robo-update-key-message h6{
7
  margin-top: 9px;
8
  white-space: normal;
9
- }
 
 
6
  body.roboGalleryFields #wpcontent div.roboGalleryFields div.robo-update-key-message h6{
7
  margin-top: 9px;
8
  white-space: normal;
9
+ }
10
+
11
+
app/extensions/fields/asset/fields/gallery/js/gallery.lib.min.js CHANGED
@@ -1,7 +1,7 @@
1
  /*
2
 
3
  * Robo Gallery
4
- * Version: 3.0.5 - 66649
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
@@ -10,4 +10,4 @@
10
 
11
 
12
  */
13
- !function(t,e){if(void 0!==wp.media.view.emWpGallery)return console.log("EM Gallery already defined"),!1;var i=wp.media.view.MediaFrame.Select,a=wp.media.controller.Library,r=wp.media.view.l10n;wp.media.view.emWpGallery=i.extend({initialize:function(){this.counts={audio:{count:wp.media.view.settings.attachmentCounts.audio,state:"playlist"},video:{count:wp.media.view.settings.attachmentCounts.video,state:"video-playlist"}},e.defaults(this.options,{multiple:!0,editing:!0,state:"insert",metadata:{}}),i.prototype.initialize.apply(this,arguments),this.createIframeStates()},createStates:function(){var t=this.options;this.states.add([new a({id:"insert",title:r.insertMediaTitle,priority:20,toolbar:"main-insert",filterable:"all",library:wp.media.query(t.library),multiple:!!t.multiple&&"reset",editable:!1}),new a({id:"gallery",title:r.createGalleryTitle,priority:40,toolbar:"main-gallery",filterable:"uploaded",multiple:"add",editable:!0,library:wp.media.query(e.defaults({type:"image"},t.library))}),new wp.media.controller.EditImage({model:t.editImage}),new wp.media.controller.GalleryEdit({library:t.selection,editing:t.editing,menu:"gallery",multiple:!0,displaySettings:!1,displayUserSettings:!1}),new wp.media.controller.GalleryAdd({multiple:"add",editable:!0})])},bindHandlers:function(){var t;i.prototype.bindHandlers.apply(this,arguments),this.on("activate",this.activate,this),void 0!==e.find(this.counts,function(t){return 0===t.count})&&this.listenTo(wp.media.model.Attachments.all,"change:type",this.mediaTypeCounts),this.on("menu:create:gallery",this.createMenu,this),this.on("toolbar:create:main-insert",this.createToolbar,this),this.on("toolbar:create:gallery-add",this.createToolbar,this),this.on("toolbar:create:main-gallery",this.createToolbar,this),this.on("toolbar:create:main-embed",this.mainEmbedToolbar,this),t={menu:{default:"mainMenu",gallery:"galleryMenu"},content:{embed:"embedContent","edit-image":"editImageContent","edit-selection":"editSelectionContent"},toolbar:{"main-insert":"mainInsertToolbar","main-gallery":"mainGalleryToolbar","gallery-edit":"galleryEditToolbar","gallery-add":"galleryAddToolbar"}},e.each(t,function(t,i){e.each(t,function(t,e){this.on(i+":render:"+e,this[t],this)},this)},this)},activate:function(){e.each(this.counts,function(t){t.count<1&&this.menuItemVisibility(t.state,"hide")},this)},mediaTypeCounts:function(t,e){void 0!==this.counts[e]&&this.counts[e].count<1&&(this.counts[e].count++,this.menuItemVisibility(this.counts[e].state,"show"))},mainMenu:function(t){},menuItemVisibility:function(t,e){var i=this.menu.get();"hide"===e?i.hide(t):"show"===e&&i.show(t)},galleryMenu:function(t){var e=this.lastState(),i=e&&e.id,a=this;t.set({cancel:{text:r.cancelGalleryTitle,priority:20,click:function(){i?a.setState(i):a.close(),this.controller.modal.focusManager.focus()}},separateCancel:new wp.media.View({className:"separator",priority:40})})},embedContent:function(){var t=new wp.media.view.Embed({controller:this,model:this.state()}).render();this.content.set(t)},editSelectionContent:function(){var t,e=this.state(),i=e.get("selection");(t=new wp.media.view.AttachmentsBrowser({controller:this,collection:i,selection:i,model:e,sortable:!0,search:!1,date:!1,dragInfo:!0,AttachmentView:wp.media.view.Attachments.EditSelection}).render()).toolbar.set("backToLibrary",{text:r.returnToLibrary,priority:-100,click:function(){this.controller.content.mode("browse"),this.controller.modal.focusManager.focus()}}),this.content.set(t),this.trigger("edit:selection",this)},editImageContent:function(){var t=this.state().get("image"),e=new wp.media.view.EditImage({model:t,controller:this}).render();this.content.set(e),e.loadEditor()},selectionStatusToolbar:function(t){var e=this.state().get("editable");t.set("selection",new wp.media.view.Selection({controller:this,collection:this.state().get("selection"),priority:-40,editable:e&&function(){this.controller.content.mode("edit-selection")}}).render())},mainInsertToolbar:function(t){var e=this;this.selectionStatusToolbar(t),t.set("insert",{style:"primary",priority:80,text:r.insertIntoPost,requires:{selection:!0},click:function(){var t=e.state(),i=t.get("selection");e.close(),t.trigger("insert",i).reset()}})},mainGalleryToolbar:function(t){var e=this;this.selectionStatusToolbar(t),t.set("gallery",{style:"primary",text:r.createNewGallery,priority:60,requires:{selection:!0},click:function(){var t=e.state().get("selection"),i=e.state("gallery-edit"),a=t.where({type:"image"});i.set("library",new wp.media.model.Selection(a,{props:t.props.toJSON(),multiple:!0})),this.controller.setState("gallery-edit"),this.controller.modal.focusManager.focus()}})},galleryEditToolbar:function(){var t=this.state().get("editing");this.toolbar.set(new wp.media.view.Toolbar({controller:this,items:{insert:{style:"primary",text:t?r.updateGallery:r.insertGallery,priority:80,requires:{library:!0},click:function(){var t=this.controller,e=t.state();t.close(),e.trigger("update",e.get("library")),t.setState(t.options.state),t.reset()}}}}))},mainInsertToolbar:function(t){var e=this;this.selectionStatusToolbar(t),t.set("insert",{style:"primary",priority:80,text:r.insertIntoPost,requires:{selection:!0},click:function(){var t=e.state(),i=t.get("selection");e.close(),t.trigger("insert",i).reset()}})},galleryAddToolbar:function(t){this.selectionStatusToolbar(t),t.set("insert",{style:"primary",text:r.addToGallery,priority:80,requires:{selection:!0},click:function(){var t=this.controller,e=t.state();t.state("gallery-edit").get("library").add(e.get("selection").models),e.trigger("reset"),t.setState("gallery-edit"),this.controller.modal.focusManager.focus()}})}})}(jQuery,_);
1
  /*
2
 
3
  * Robo Gallery
4
+ * Version: 3.0.7 - 90614
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
10
 
11
 
12
  */
13
+ !function(t){var e,i,l;void 0===wp.media.view.emWpGallery?(e=wp.media.view.MediaFrame.Select,i=wp.media.controller.Library,l=wp.media.view.l10n,wp.media.view.emWpGallery=e.extend({initialize:function(){this.counts={audio:{count:wp.media.view.settings.attachmentCounts.audio,state:"playlist"},video:{count:wp.media.view.settings.attachmentCounts.video,state:"video-playlist"}},t.defaults(this.options,{multiple:!0,editing:!0,state:"insert",metadata:{}}),e.prototype.initialize.apply(this,arguments),this.createIframeStates()},createStates:function(){var e=this.options;this.states.add([new i({id:"insert",title:l.insertMediaTitle,priority:20,toolbar:"main-insert",filterable:"all",library:wp.media.query(e.library),multiple:!!e.multiple&&"reset",editable:!1}),new i({id:"gallery",title:l.createGalleryTitle,priority:40,toolbar:"main-gallery",filterable:"uploaded",multiple:"add",editable:!0,library:wp.media.query(t.defaults({type:"image"},e.library))}),new wp.media.controller.EditImage({model:e.editImage}),new wp.media.controller.GalleryEdit({library:e.selection,editing:e.editing,menu:"gallery",multiple:!0,displaySettings:!1,displayUserSettings:!1}),new wp.media.controller.GalleryAdd({multiple:"add",editable:!0})])},bindHandlers:function(){e.prototype.bindHandlers.apply(this,arguments),this.on("activate",this.activate,this),void 0!==t.find(this.counts,function(e){return 0===e.count})&&this.listenTo(wp.media.model.Attachments.all,"change:type",this.mediaTypeCounts),this.on("menu:create:gallery",this.createMenu,this),this.on("toolbar:create:main-insert",this.createToolbar,this),this.on("toolbar:create:gallery-add",this.createToolbar,this),this.on("toolbar:create:main-gallery",this.createToolbar,this),this.on("toolbar:create:main-embed",this.mainEmbedToolbar,this),t.each({menu:{default:"mainMenu",gallery:"galleryMenu"},content:{embed:"embedContent","edit-image":"editImageContent","edit-selection":"editSelectionContent"},toolbar:{"main-insert":"mainInsertToolbar","main-gallery":"mainGalleryToolbar","gallery-edit":"galleryEditToolbar","gallery-add":"galleryAddToolbar"}},function(e,i){t.each(e,function(e,t){this.on(i+":render:"+t,this[e],this)},this)},this)},activate:function(){t.each(this.counts,function(e){e.count<1&&this.menuItemVisibility(e.state,"hide")},this)},mediaTypeCounts:function(e,t){void 0!==this.counts[t]&&this.counts[t].count<1&&(this.counts[t].count++,this.menuItemVisibility(this.counts[t].state,"show"))},mainMenu:function(e){},menuItemVisibility:function(e,t){var i=this.menu.get();"hide"===t?i.hide(e):"show"===t&&i.show(e)},galleryMenu:function(e){var t=this.lastState(),i=t&&t.id,a=this;e.set({cancel:{text:l.cancelGalleryTitle,priority:20,click:function(){i?a.setState(i):a.close(),this.controller.modal.focusManager.focus()}},separateCancel:new wp.media.View({className:"separator",priority:40})})},embedContent:function(){var e=new wp.media.view.Embed({controller:this,model:this.state()}).render();this.content.set(e)},editSelectionContent:function(){var e=this.state(),t=e.get("selection"),e=new wp.media.view.AttachmentsBrowser({controller:this,collection:t,selection:t,model:e,sortable:!0,search:!1,date:!1,dragInfo:!0,AttachmentView:wp.media.view.Attachments.EditSelection}).render();e.toolbar.set("backToLibrary",{text:l.returnToLibrary,priority:-100,click:function(){this.controller.content.mode("browse"),this.controller.modal.focusManager.focus()}}),this.content.set(e),this.trigger("edit:selection",this)},editImageContent:function(){var e=this.state().get("image"),e=new wp.media.view.EditImage({model:e,controller:this}).render();this.content.set(e),e.loadEditor()},selectionStatusToolbar:function(e){var t=this.state().get("editable");e.set("selection",new wp.media.view.Selection({controller:this,collection:this.state().get("selection"),priority:-40,editable:t&&function(){this.controller.content.mode("edit-selection")}}).render())},mainInsertToolbar:function(e){var i=this;this.selectionStatusToolbar(e),e.set("insert",{style:"primary",priority:80,text:l.insertIntoPost,requires:{selection:!0},click:function(){var e=i.state(),t=e.get("selection");i.close(),e.trigger("insert",t).reset()}})},mainGalleryToolbar:function(e){var a=this;this.selectionStatusToolbar(e),e.set("gallery",{style:"primary",text:l.createNewGallery,priority:60,requires:{selection:!0},click:function(){var e=a.state().get("selection"),t=a.state("gallery-edit"),i=e.where({type:"image"});t.set("library",new wp.media.model.Selection(i,{props:e.props.toJSON(),multiple:!0})),this.controller.setState("gallery-edit"),this.controller.modal.focusManager.focus()}})},galleryEditToolbar:function(){var e=this.state().get("editing");this.toolbar.set(new wp.media.view.Toolbar({controller:this,items:{insert:{style:"primary",text:e?l.updateGallery:l.insertGallery,priority:80,requires:{library:!0},click:function(){var e=this.controller,t=e.state();e.close(),t.trigger("update",t.get("library")),e.setState(e.options.state),e.reset()}}}}))},galleryAddToolbar:function(e){this.selectionStatusToolbar(e),e.set("insert",{style:"primary",text:l.addToGallery,priority:80,requires:{selection:!0},click:function(){var e=this.controller,t=e.state();e.state("gallery-edit").get("library").add(t.get("selection").models),t.trigger("reset"),e.setState("gallery-edit"),this.controller.modal.focusManager.focus()}})}})):console.log("EM Gallery already defined")}((jQuery,_));
app/extensions/fields/asset/fields/gallery/js/script.min.js CHANGED
@@ -1,6 +1,6 @@
1
  /*
2
  * Robo Gallery
3
- * Version: 3.0.5 - 66649
4
  * By Robosoft
5
  *
6
  * Contact: https://robosoft.co/robogallery/
@@ -8,4 +8,4 @@
8
  * Licensed under the GPLv2 license - http://opensource.org/licenses/gpl-2.0.php
9
 
10
  */
11
- !function(e){function t(e){var t=jQuery(r),a={action:"robo_gallery_get_images_from_ids",idstring:e};jQuery.post(ajaxurl,a,function(e){t.html(e);var a=t.find("img").length;a<=10?t.addClass("items10"):a<=20?t.addClass("items20"):a<=30?t.addClass("items30"):t.addClass("items50")})}var a,l,n,i,o="gallery-library",r=document.getElementById("robo_gallery_images_preview"),s=document.getElementsByClassName("roboGalleryFieldImagesButton");if(0!=s.length){s=s[0],n=document.getElementById(s.getAttribute("data-id")),t(l=n.value),i=""==l?[]:l.split(","),r.addEventListener("click",function(e){e.preventDefault(),e.target.matches("img")&&s.click()});var d=function(e){a?a.open():(i.length>0&&(o="gallery-edit"),(a=new wp.media.view.emWpGallery({multiple:!0,state:o,library:{order:"ASC",orderby:"title",type:"image",search:null,uploadedTo:null,multiple:!0}})).on("ready",function(){if(0!=i.length){var e=a.state().get("library");wp.media.query({post__in:i}).more().then();i.forEach(function(t){attachment=wp.media.attachment(t),void 0!=attachment.attributes&&(attachment.attributes.sizes={medium:{url:roboGalleryFieldGallery.iconUrl}}),attachment.fetch(),e.add(attachment?[attachment]:[])})}}),a.on("open",function(){0!=i.length&&"gallery-edit"!=o&&(a.setState("gallery-edit"),a.options.state="gallery-edit",o="gallery-edit")}),a.on("insert",function(){var e=a.state().get("selection");console.log(e)}),a.on("update",function(e){var o,r=a.state();if(o=e||r.get("selection")){var s=o.toJSON();if(0!=s.length){i=[];for(var d=0;d<s.length;d++)i.push(s[d].id);l=i.join(","),console.log("idsList",l),t(l),n.value=l,console.log("gallery array",i)}}else console.log("return selection")}),a.open())};s.addEventListener("click",d)}else console.log("button not found ")}(jQuery);
1
  /*
2
  * Robo Gallery
3
+ * Version: 3.0.7 - 90614
4
  * By Robosoft
5
  *
6
  * Contact: https://robosoft.co/robogallery/
8
  * Licensed under the GPLv2 license - http://opensource.org/licenses/gpl-2.0.php
9
 
10
  */
11
+ !function(){var n,i,o,r,t="gallery-library",l=document.getElementById("robo_gallery_images_preview"),a=document.getElementsByClassName("roboGalleryFieldImagesButton");function s(e){var t=jQuery(l);jQuery.post(ajaxurl,{action:"robo_gallery_get_images_from_ids",idstring:e},function(e){t.html(e);e=t.find("img").length;e<=10?t.addClass("items10"):e<=20?t.addClass("items20"):e<=30?t.addClass("items30"):t.addClass("items50")})}0!=a.length?(a=a[0],o=document.getElementById(a.getAttribute("data-id")),s(i=o.value),r=""==i?[]:i.split(","),l.addEventListener("click",function(e){e.preventDefault(),e.target.matches("img")&&a.click()}),a.addEventListener("click",function(e){n||(0<r.length&&(t="gallery-edit"),(n=new wp.media.view.emWpGallery({multiple:!0,state:t,library:{order:"ASC",orderby:"title",type:"image",search:null,uploadedTo:null,multiple:!0}})).on("ready",function(){var t;0!=r.length&&(t=n.state().get("library"),wp.media.query({post__in:r}).more().then(),r.forEach(function(e){attachment=wp.media.attachment(e),null!=attachment.attributes&&(attachment.attributes.sizes={medium:{url:roboGalleryFieldGallery.iconUrl}}),attachment.fetch(),t.add(attachment?[attachment]:[])}))}),n.on("open",function(){0!=r.length&&"gallery-edit"!=t&&(n.setState("gallery-edit"),n.options.state="gallery-edit",t="gallery-edit")}),n.on("insert",function(){var e=n.state().get("selection");console.log(e)}),n.on("update",function(e){var t=n.state(),t=e||t.get("selection");if(t){var l=t.toJSON();if(0!=l.length){r=[];for(var a=0;a<l.length;a++)r.push(l[a].id);i=r.join(","),console.log("idsList",i),s(i),o.value=i,console.log("gallery array",r)}}else console.log("return selection")})),n.open()})):console.log("button not found ")}(jQuery);
app/extensions/fields/asset/help/help.js CHANGED
@@ -1,6 +1,6 @@
1
  /*
2
  * Robo Gallery
3
- * Version: 3.0.5 - 66649
4
  * By Robosoft
5
  *
6
  * Contact: https://robosoft.co/robogallery/
1
  /*
2
  * Robo Gallery
3
+ * Version: 3.0.7 - 90614
4
  * By Robosoft
5
  *
6
  * Contact: https://robosoft.co/robogallery/
app/extensions/fields/config/main.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Robo Gallery
4
- * Version: 3.0.5 - 66649
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
1
  <?php
2
  /*
3
  * Robo Gallery
4
+ * Version: 3.0.7 - 90614
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
app/extensions/fields/config/metabox/gallery_slider_animation.php ADDED
@@ -0,0 +1,89 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Robo Gallery
4
+ * Version: 3.0.7 - 90614
5
+ * By Robosoft
6
+ *
7
+ * Contact: https://robosoft.co/robogallery/
8
+ * Created: 2015
9
+ * Licensed under the GPLv2 license - http://opensource.org/licenses/gpl-2.0.php
10
+
11
+ */
12
+
13
+ return array(
14
+ 'active' => true,
15
+ 'order' => 4,
16
+ 'settings' => array(
17
+ 'id' => 'robo-gallery-slider-animation',
18
+ 'title' => __('Animation Options', 'robo-gallery'),
19
+ 'screen' => array( ROBO_GALLERY_TYPE_POST ),
20
+ 'context' => 'normal',
21
+ 'priority' => 'high', //'default',
22
+ 'for' => array( 'gallery_type' => array( 'slider' ) ),
23
+ 'callback_args' => null,
24
+ ),
25
+ 'view' => 'default',
26
+ 'state' => 'open',
27
+ 'fields' => array(
28
+
29
+ array(
30
+ 'type' => 'checkbox',
31
+ 'view' => 'switch',
32
+ 'name' => 'autoplay',
33
+ 'label' => __('Slider autoplay', 'robo-gallery'),
34
+ 'default' => 0,
35
+ 'options' => array(
36
+ 'size' => 'large',
37
+ 'onLabel' => 'On',
38
+ 'offLabel' => 'Off',
39
+ ),
40
+ "dependents" => array(
41
+ 0 => array(
42
+ 'hide' => array('#wrap-field-custom-delay'),
43
+ ),
44
+ 1 => array(
45
+ 'show' => array('#wrap-field-custom-delay'),
46
+ ),
47
+ )
48
+ ),
49
+
50
+ array(
51
+ 'type' => 'text',
52
+ 'view' => 'group',
53
+ 'name' => 'delay',
54
+ 'id' => 'custom-delay',
55
+ 'label' => __('Delay', 'robo-gallery'),
56
+ 'default' => 1500,
57
+ 'cb_sanitize' => 'intval',
58
+ 'options' => array(
59
+ 'rightLabel' => 'ms',
60
+ 'column' => '12',
61
+ 'columnWrap' => '12 medium-6',
62
+ ),
63
+
64
+ ),
65
+
66
+ array(
67
+ 'type' => 'radio',
68
+ 'view' => 'buttons-group',
69
+ 'name' => 'direction',
70
+ 'default' => 'horizontal',
71
+ 'label' => __('Direction', 'robo-gallery'),
72
+ 'options' => array(
73
+ 'values' => array(
74
+ array(
75
+ 'value' => 'vertical',
76
+ 'label' => 'Vertical',
77
+ ),
78
+ array(
79
+ 'value' => 'horizontal',
80
+ 'label' => 'Horizontal',
81
+ ),
82
+
83
+ ),
84
+ ),
85
+ ),
86
+
87
+
88
+ ),
89
+ );
app/extensions/fields/config/metabox/gallery_slider_content.php ADDED
@@ -0,0 +1,95 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Robo Gallery
4
+ * Version: 3.0.7 - 90614
5
+ * By Robosoft
6
+ *
7
+ * Contact: https://robosoft.co/robogallery/
8
+ * Created: 2015
9
+ * Licensed under the GPLv2 license - http://opensource.org/licenses/gpl-2.0.php
10
+
11
+ */
12
+
13
+
14
+ return array(
15
+ 'active' => true,
16
+ 'order' => 6,
17
+ 'settings' => array(
18
+ 'id' => 'robo-gallery-slider-content',
19
+ 'title' => __('Content Panel Settings ', 'robo-gallery'),
20
+ 'screen' => array( ROBO_GALLERY_TYPE_POST ),
21
+ 'context' => 'normal',
22
+ 'priority' => 'high', //'default',
23
+ 'for' => array( 'gallery_type' => array( 'slider' ) ),
24
+ 'callback_args' => null,
25
+ ),
26
+ 'view' => 'default',
27
+ 'state' => 'open',
28
+ 'fields' => array(
29
+
30
+ array(
31
+ 'type' => 'radio',
32
+ 'view' => 'buttons-group',
33
+ 'name' => 'content',
34
+ 'default' => 'show',
35
+ 'label' => __('Content panel', 'robo-gallery'),
36
+ 'options' => array(
37
+ 'values' => array(
38
+ array(
39
+ 'value' => 'hide',
40
+ 'label' => 'Hide',
41
+ ),
42
+ array(
43
+ 'value' => 'show',
44
+ 'label' => 'Show',
45
+ )
46
+ ),
47
+ ),
48
+ ),
49
+
50
+ array(
51
+ 'type' => 'radio',
52
+ 'view' => 'buttons-group',
53
+ 'name' => 'content_source',
54
+ 'default' => 'title',
55
+ 'label' => __('Content panel source', 'robo-gallery'),
56
+ 'options' => array(
57
+ 'values' => array(
58
+ array(
59
+ 'value' => 'title',
60
+ 'label' => 'Title',
61
+ ),
62
+ array(
63
+ 'value' => 'caption',
64
+ 'label' => 'Caption',
65
+ ),
66
+ array(
67
+ 'value' => 'desc',
68
+ 'label' => 'Description',
69
+ )
70
+ ),
71
+ ),
72
+ ),
73
+
74
+ array(
75
+ 'type' => 'radio',
76
+ 'view' => 'buttons-group',
77
+ 'name' => 'content_theme',
78
+ 'default' => 'light',
79
+ 'label' => __('Content panel theme', 'robo-gallery'),
80
+ 'options' => array(
81
+ 'values' => array(
82
+ array(
83
+ 'value' => 'light',
84
+ 'label' => 'Light',
85
+ ),
86
+ array(
87
+ 'value' => 'dark',
88
+ 'label' => 'Dark',
89
+ )
90
+ )
91
+ )
92
+ )
93
+
94
+ )
95
+ );
app/extensions/fields/config/metabox/gallery_slider_general.php ADDED
@@ -0,0 +1,200 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Robo Gallery
4
+ * Version: 3.0.7 - 90614
5
+ * By Robosoft
6
+ *
7
+ * Contact: https://robosoft.co/robogallery/
8
+ * Created: 2015
9
+ * Licensed under the GPLv2 license - http://opensource.org/licenses/gpl-2.0.php
10
+
11
+ */
12
+
13
+ return array(
14
+ 'active' => true,
15
+ 'order' => 2,
16
+ 'settings' => array(
17
+ 'id' => 'robo-gallery-slider-general',
18
+ 'title' => __('General Slider Options', 'robo-gallery'),
19
+ 'screen' => array( ROBO_GALLERY_TYPE_POST ),
20
+ 'context' => 'normal',
21
+ 'priority' => 'high', //'default',
22
+ 'for' => array( 'gallery_type' => array( 'slider' ) ),
23
+ 'callback_args' => null,
24
+ ),
25
+ 'view' => 'default',
26
+ 'state' => 'open',
27
+ 'fields' => array(
28
+
29
+ array(
30
+ 'type' => 'checkbox',
31
+ 'view' => 'switch',
32
+ 'name' => 'autoWidth',
33
+ 'label' => __('Slider Auto Width', 'robo-gallery'),
34
+ 'default' => 1,
35
+ 'options' => array(
36
+ 'size' => 'large',
37
+ 'onLabel' => 'On',
38
+ 'offLabel' => 'Off',
39
+ ),
40
+ "dependents" => array(
41
+ 0 => array(
42
+ 'show' => array('#wrap-field-width'),
43
+ ),
44
+ 1 => array(
45
+ 'hide' => array('#wrap-field-width'),
46
+ ),
47
+ )
48
+ ),
49
+
50
+ array(
51
+ 'type' => 'composite',
52
+ 'view' => 'default',
53
+ 'name' => 'width',
54
+ 'id' => 'width',
55
+ 'label' => __('Slider Width ', 'robo-gallery'),
56
+ 'description' => __( '', 'robo-gallery') ,
57
+ 'fields' => array(
58
+ array(
59
+ 'type' => 'text',
60
+ 'view' => 'default/llc4',
61
+ 'name' => 'value',
62
+ 'default' => 100,
63
+ ),
64
+
65
+ array(
66
+ 'type' => 'select',
67
+ 'view' => 'default/c2',
68
+ 'name' => 'type',
69
+ 'default' => '%',
70
+ 'options' => array(
71
+ 'values' => array(
72
+ 'px' => 'px',
73
+ '%' => '%',
74
+ ),
75
+ ),
76
+ ),
77
+ )
78
+ ),
79
+
80
+ array(
81
+ 'type' => 'checkbox',
82
+ 'view' => 'switch',
83
+ 'name' => 'autoHeight',
84
+ 'label' => __('Slider Auto Height', 'robo-gallery'),
85
+ 'default' => 1,
86
+ 'options' => array(
87
+ 'size' => 'large',
88
+ 'onLabel' => 'On',
89
+ 'offLabel' => 'Off',
90
+ ),
91
+ "dependents" => array(
92
+ 0 => array(
93
+ 'show' => array('#wrap-field-height'),
94
+ ),
95
+ 1 => array(
96
+ 'hide' => array('#wrap-field-height'),
97
+ ),
98
+ )
99
+ ),
100
+
101
+ array(
102
+ 'type' => 'composite',
103
+ 'view' => 'default',
104
+ 'name' => 'height',
105
+ 'id' => 'height',
106
+ 'label' => __('Slider Height', 'robo-gallery'),
107
+ 'description' => __( 'in our gallery we use smart algorithm for the size calculation. In Max Width option you define maximum allowed size of the gallery box', 'robo-gallery') ,
108
+ 'fields' => array(
109
+
110
+ array(
111
+ 'type' => 'text',
112
+ 'view' => 'default/llc4',
113
+ 'name' => 'value',
114
+ 'default' => 100,
115
+ ),
116
+
117
+ array(
118
+ 'type' => 'select',
119
+ 'view' => 'default/c2',
120
+ 'name' => 'type',
121
+ 'default' => 'vh',
122
+ 'options' => array(
123
+ 'values' => array(
124
+ 'px' => 'px',
125
+ '%' => '%',
126
+ 'vh' => 'vh',
127
+ ),
128
+ ),
129
+ ),
130
+ )
131
+ ),
132
+
133
+
134
+
135
+ array(
136
+ 'type' => 'select',
137
+ 'view' => 'default',
138
+ 'is_lock' => false,
139
+ 'name' => 'orderby',
140
+ 'default' => 'categoryD',
141
+ 'label' => 'Images order by ',
142
+ 'description' => '',
143
+ 'options' => array(
144
+ 'column' => 8,
145
+ 'values' => array(
146
+ 'categoryD' => __( 'Category &darr;', 'robo-gallery' ),
147
+ 'categoryU' => __( 'Category &uarr;', 'robo-gallery' ),
148
+
149
+ 'titleD' => __( 'Title &darr;', 'robo-gallery' ),
150
+ 'titleU' => __( 'Title &uarr;', 'robo-gallery' ),
151
+
152
+ 'dateD' => __( 'Date &darr;', 'robo-gallery' ),
153
+ 'dateU' => __( 'Date &uarr;', 'robo-gallery' ),
154
+
155
+ 'random' => __( 'Random', 'robo-gallery' ),
156
+ ),
157
+ ),
158
+ ),
159
+
160
+
161
+ array(
162
+ 'type' => 'radio',
163
+ 'view' => 'buttons-group',
164
+
165
+ 'name' => 'source',
166
+ 'default' => 'original',
167
+
168
+ 'label' => __('Slider Images Quality', 'robo-gallery'),
169
+
170
+ 'description' => sprintf(
171
+ ' %s <a href="%s" target="_blank">%s</a>',
172
+ __('here you can customize thumbnails quality, depend of this value you will have different thumbnails resolution. Please check values for the thumbnails resolutions', 'robo-gallery'),
173
+ admin_url( 'options-media.php' ),
174
+ __('here', 'robo-gallery')
175
+ ),
176
+
177
+ 'options' => array(
178
+ 'values' => array(
179
+ array(
180
+ 'value' => 'thumbnail',
181
+ 'label' => 'Small',
182
+ ),
183
+ array(
184
+ 'value' => 'medium',
185
+ 'label' => 'Medium',
186
+ ),
187
+ array(
188
+ 'value' => 'medium_large',
189
+ 'label' => 'Large',
190
+ ),
191
+ array(
192
+ 'value' => 'original',
193
+ 'label' => 'Full',
194
+ )
195
+ ),
196
+ ),
197
+ ),
198
+
199
+ ),
200
+ );
app/extensions/fields/config/metabox/gallery_slider_interface.php ADDED
@@ -0,0 +1,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Robo Gallery
4
+ * Version: 3.0.7 - 90614
5
+ * By Robosoft
6
+ *
7
+ * Contact: https://robosoft.co/robogallery/
8
+ * Created: 2015
9
+ * Licensed under the GPLv2 license - http://opensource.org/licenses/gpl-2.0.php
10
+
11
+ */
12
+
13
+ return array(
14
+ 'active' => true,
15
+ 'order' => 3,
16
+ 'settings' => array(
17
+ 'id' => 'robo-gallery-slider-interface',
18
+ 'title' => __('Interface Options', 'robo-gallery'),
19
+ 'screen' => array( ROBO_GALLERY_TYPE_POST ),
20
+ 'context' => 'normal',
21
+ 'priority' => 'high', //'default',
22
+ 'for' => array( 'gallery_type' => array( 'slider' ) ),
23
+ 'callback_args' => null,
24
+ ),
25
+ 'view' => 'default',
26
+ 'state' => 'open',
27
+ 'fields' => array(
28
+
29
+ array(
30
+ 'type' => 'radio',
31
+ 'view' => 'buttons-group',
32
+ 'name' => 'nav_buttons',
33
+ 'default' => 'show',
34
+ 'label' => __('Navigation buttons', 'robo-gallery'),
35
+ 'options' => array(
36
+ 'values' => array(
37
+ array(
38
+ 'value' => '',
39
+ 'label' => 'Hide',
40
+ ),
41
+ array(
42
+ 'value' => 'show',
43
+ 'label' => 'Show',
44
+ ),
45
+ ),
46
+ ),
47
+ ),
48
+
49
+ array(
50
+ 'type' => 'radio',
51
+ 'view' => 'buttons-group',
52
+ 'name' => 'nav_scrollbar',
53
+ 'default' => 'show',
54
+ 'label' => __('Scrollbar', 'robo-gallery'),
55
+ 'options' => array(
56
+ 'values' => array(
57
+ array(
58
+ 'value' => '',
59
+ 'label' => 'Hide',
60
+ ),
61
+ array(
62
+ 'value' => 'show',
63
+ 'label' => 'Show',
64
+ ),
65
+ ),
66
+ ),
67
+ ),
68
+
69
+
70
+ ),
71
+ );
app/extensions/fields/config/metabox/gallery_slider_lazyload.php ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Robo Gallery
4
+ * Version: 3.0.7 - 90614
5
+ * By Robosoft
6
+ *
7
+ * Contact: https://robosoft.co/robogallery/
8
+ * Created: 2015
9
+ * Licensed under the GPLv2 license - http://opensource.org/licenses/gpl-2.0.php
10
+
11
+ */
12
+
13
+
14
+ return array(
15
+ 'active' => true,
16
+ 'order' => 5,
17
+ 'settings' => array(
18
+ 'id' => 'robo-gallery-slider-lazyload',
19
+ 'title' => __('Lazy Load Settings ', 'robo-gallery'),
20
+ 'screen' => array( ROBO_GALLERY_TYPE_POST ),
21
+ 'context' => 'normal',
22
+ 'priority' => 'high', //'default',
23
+ 'for' => array( 'gallery_type' => array( 'slider' ) ),
24
+ 'callback_args' => null,
25
+ ),
26
+ 'view' => 'default',
27
+ 'state' => 'open',
28
+ 'fields' => array(
29
+
30
+ array(
31
+ 'type' => 'radio',
32
+ 'view' => 'buttons-group',
33
+ 'name' => 'preload',
34
+ 'default' => 'preload',
35
+ 'label' => __('Preload', 'robo-gallery'),
36
+ 'options' => array(
37
+ 'values' => array(
38
+ array(
39
+ 'value' => 'off',
40
+ 'label' => 'Off',
41
+ ),
42
+ array(
43
+ 'value' => 'preload',
44
+ 'label' => 'On',
45
+ ),
46
+ array(
47
+ 'value' => 'lazy',
48
+ 'label' => 'LazyLoad Dark',
49
+ ),
50
+ array(
51
+ 'value' => 'lazy_white',
52
+ 'label' => 'LazyLoad Light',
53
+ ),
54
+ ),
55
+ ),
56
+ ),
57
+
58
+ array(
59
+ 'type' => 'hidden',
60
+ 'view' => 'default',
61
+ 'name' => 'effect',
62
+ 'default' => 'slide',
63
+ ),
64
+ array(
65
+ 'type' => 'hidden',
66
+ 'view' => 'default',
67
+ 'name' => 'nav_pagination',
68
+ 'default' => 'bullets',
69
+ ),
70
+
71
+ ),
72
+ );
app/extensions/fields/config/metabox/gallery_type.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Robo Gallery
4
- * Version: 3.0.5 - 66649
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
1
  <?php
2
  /*
3
  * Robo Gallery
4
+ * Version: 3.0.7 - 90614
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
app/extensions/fields/config/metabox/gallery_youtube.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Robo Gallery
4
- * Version: 3.0.5 - 66649
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
1
  <?php
2
  /*
3
  * Robo Gallery
4
+ * Version: 3.0.7 - 90614
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
app/extensions/fields/config/metabox/image.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Robo Gallery
4
- * Version: 3.0.5 - 66649
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
@@ -32,6 +32,8 @@ return array(
32
 
33
  'wallstylepro',
34
 
 
 
35
  ''
36
  )
37
  ),
1
  <?php
2
  /*
3
  * Robo Gallery
4
+ * Version: 3.0.7 - 90614
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
32
 
33
  'wallstylepro',
34
 
35
+ 'slider',
36
+
37
  ''
38
  )
39
  ),
app/extensions/fields/config/metabox/shortcode.php ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Robo Gallery
4
+ * Version: 3.0.7 - 90614
5
+ * By Robosoft
6
+ *
7
+ * Contact: https://robosoft.co/robogallery/
8
+ * Created: 2015
9
+ * Licensed under the GPLv2 license - http://opensource.org/licenses/gpl-2.0.php
10
+
11
+ */
12
+
13
+ if ( ! defined( 'WPINC' ) ) exit;
14
+
15
+ if( empty($_GET['post']) ) return array();
16
+
17
+ return array(
18
+ 'active' => true,
19
+ 'order' => 1,
20
+ 'settings' => array(
21
+ 'id' => 'robo_gallery_shortcode',
22
+ 'title' => __('Gallery Shortcode', 'robo-gallery'),
23
+ 'screen' => array( ROBO_GALLERY_TYPE_POST ),
24
+ 'for' => array( 'gallery_type' => array( 'slider' ) ),
25
+ 'context' => 'side',
26
+ 'priority' => 'low',
27
+ ),
28
+ 'view' => 'default',
29
+ 'state' => 'open',
30
+ 'content' => sprintf(
31
+ '<div class="robo-gallery-shortcode">[robo-gallery id="%s"]</div>
32
+ <div class="robo-gallery-shortcode-desc">%s</div>',
33
+ (int) $_GET['post'],
34
+ __('use this shortcode to insert this gallery into page, post or widget', 'robo-gallery')
35
+ )
36
+ );
app/extensions/fields/config/metabox/update_notice.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Robo Gallery
4
- * Version: 3.0.5 - 66649
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
1
  <?php
2
  /*
3
  * Robo Gallery
4
+ * Version: 3.0.7 - 90614
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
app/extensions/fields/include/roboGalleryFields.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Robo Gallery
4
- * Version: 3.0.5 - 66649
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
@@ -74,7 +74,8 @@ class roboGalleryFields{
74
  wp_localize_script( ROBO_GALLERY_ASSETS_PREFIX.'help', ROBO_GALLERY_PREFIX.'fields_help_i18', $translation_array );
75
  */
76
  //fields
77
- // youtube
 
78
  wp_enqueue_script( ROBO_GALLERY_ASSETS_PREFIX.'-field-type-youtube', ROBO_GALLERY_FIELDS_URL.'asset/fields/youtube/script.js', array(), ROBO_GALLERY_VERSION, false);
79
  wp_enqueue_style ( ROBO_GALLERY_ASSETS_PREFIX.'-field-type-youtube', ROBO_GALLERY_FIELDS_URL.'asset/fields/youtube/style.css', array( ), '' );
80
 
1
  <?php
2
  /*
3
  * Robo Gallery
4
+ * Version: 3.0.7 - 90614
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
74
  wp_localize_script( ROBO_GALLERY_ASSETS_PREFIX.'help', ROBO_GALLERY_PREFIX.'fields_help_i18', $translation_array );
75
  */
76
  //fields
77
+
78
+ // youtube
79
  wp_enqueue_script( ROBO_GALLERY_ASSETS_PREFIX.'-field-type-youtube', ROBO_GALLERY_FIELDS_URL.'asset/fields/youtube/script.js', array(), ROBO_GALLERY_VERSION, false);
80
  wp_enqueue_style ( ROBO_GALLERY_ASSETS_PREFIX.'-field-type-youtube', ROBO_GALLERY_FIELDS_URL.'asset/fields/youtube/style.css', array( ), '' );
81
 
app/extensions/fields/include/roboGalleryFieldsAjax.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Robo Gallery
4
- * Version: 3.0.5 - 66649
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
1
  <?php
2
  /*
3
  * Robo Gallery
4
+ * Version: 3.0.7 - 90614
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
app/extensions/fields/include/roboGalleryFieldsConfig.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Robo Gallery
4
- * Version: 3.0.5 - 66649
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
1
  <?php
2
  /*
3
  * Robo Gallery
4
+ * Version: 3.0.7 - 90614
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
app/extensions/fields/include/roboGalleryFieldsConfig/roboGalleryFieldsConfigReader.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Robo Gallery
4
- * Version: 3.0.5 - 66649
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
1
  <?php
2
  /*
3
  * Robo Gallery
4
+ * Version: 3.0.7 - 90614
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
app/extensions/fields/include/roboGalleryFieldsConfig/roboGalleryFieldsConfigReaderInterface.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Robo Gallery
4
- * Version: 3.0.5 - 66649
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
1
  <?php
2
  /*
3
  * Robo Gallery
4
+ * Version: 3.0.7 - 90614
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
app/extensions/fields/include/roboGalleryFieldsConfig/roboGalleryFieldsConfigReaderPhp.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Robo Gallery
4
- * Version: 3.0.5 - 66649
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
1
  <?php
2
  /*
3
  * Robo Gallery
4
+ * Version: 3.0.7 - 90614
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
app/extensions/fields/include/roboGalleryFieldsField/roboGalleryFieldsField.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Robo Gallery
4
- * Version: 3.0.5 - 66649
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
1
  <?php
2
  /*
3
  * Robo Gallery
4
+ * Version: 3.0.7 - 90614
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
app/extensions/fields/include/roboGalleryFieldsField/roboGalleryFieldsFieldCheckbox.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Robo Gallery
4
- * Version: 3.0.5 - 66649
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
1
  <?php
2
  /*
3
  * Robo Gallery
4
+ * Version: 3.0.7 - 90614
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
app/extensions/fields/include/roboGalleryFieldsField/roboGalleryFieldsFieldCheckboxGroup.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Robo Gallery
4
- * Version: 3.0.5 - 66649
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
1
  <?php
2
  /*
3
  * Robo Gallery
4
+ * Version: 3.0.7 - 90614
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
app/extensions/fields/include/roboGalleryFieldsField/roboGalleryFieldsFieldCheckboxGroupButton.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Robo Gallery
4
- * Version: 3.0.5 - 66649
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
1
  <?php
2
  /*
3
  * Robo Gallery
4
+ * Version: 3.0.7 - 90614
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
app/extensions/fields/include/roboGalleryFieldsField/roboGalleryFieldsFieldCheckboxGroupSwitch.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Robo Gallery
4
- * Version: 3.0.5 - 66649
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
1
  <?php
2
  /*
3
  * Robo Gallery
4
+ * Version: 3.0.7 - 90614
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
app/extensions/fields/include/roboGalleryFieldsField/roboGalleryFieldsFieldGalleryType.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Robo Gallery
4
- * Version: 3.0.5 - 66649
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
1
  <?php
2
  /*
3
  * Robo Gallery
4
+ * Version: 3.0.7 - 90614
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
app/extensions/fields/include/roboGalleryFieldsField/roboGalleryFieldsFieldHtml.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Robo Gallery
4
- * Version: 3.0.5 - 66649
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
1
  <?php
2
  /*
3
  * Robo Gallery
4
+ * Version: 3.0.7 - 90614
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
app/extensions/fields/include/roboGalleryFieldsField/roboGalleryFieldsFieldSelectMultiple.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Robo Gallery
4
- * Version: 3.0.5 - 66649
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
1
  <?php
2
  /*
3
  * Robo Gallery
4
+ * Version: 3.0.7 - 90614
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
app/extensions/fields/include/roboGalleryFieldsField/roboGalleryFieldsFieldText.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Robo Gallery
4
- * Version: 3.0.5 - 66649
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
1
  <?php
2
  /*
3
  * Robo Gallery
4
+ * Version: 3.0.7 - 90614
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
app/extensions/fields/include/roboGalleryFieldsField/roboGalleryFieldsFieldTextColor.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Robo Gallery
4
- * Version: 3.0.5 - 66649
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
1
  <?php
2
  /*
3
  * Robo Gallery
4
+ * Version: 3.0.7 - 90614
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
app/extensions/fields/include/roboGalleryFieldsField/roboGalleryFieldsFieldTextSlider.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Robo Gallery
4
- * Version: 3.0.5 - 66649
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
1
  <?php
2
  /*
3
  * Robo Gallery
4
+ * Version: 3.0.7 - 90614
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
app/extensions/fields/include/roboGalleryFieldsField/roboGalleryFieldsFieldThemes.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Robo Gallery
4
- * Version: 3.0.5 - 66649
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
1
  <?php
2
  /*
3
  * Robo Gallery
4
+ * Version: 3.0.7 - 90614
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
app/extensions/fields/include/roboGalleryFieldsFieldFactory.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Robo Gallery
4
- * Version: 3.0.5 - 66649
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
1
  <?php
2
  /*
3
  * Robo Gallery
4
+ * Version: 3.0.7 - 90614
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
app/extensions/fields/include/roboGalleryFieldsHelper.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Robo Gallery
4
- * Version: 3.0.5 - 66649
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
1
  <?php
2
  /*
3
  * Robo Gallery
4
+ * Version: 3.0.7 - 90614
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
app/extensions/fields/include/roboGalleryFieldsMetaBoxClass.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Robo Gallery
4
- * Version: 3.0.5 - 66649
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
1
  <?php
2
  /*
3
  * Robo Gallery
4
+ * Version: 3.0.7 - 90614
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
app/extensions/fields/include/roboGalleryFieldsView.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Robo Gallery
4
- * Version: 3.0.5 - 66649
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
1
  <?php
2
  /*
3
  * Robo Gallery
4
+ * Version: 3.0.7 - 90614
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
app/extensions/fields/init.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Robo Gallery
4
- * Version: 3.0.5 - 66649
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
1
  <?php
2
  /*
3
  * Robo Gallery
4
+ * Version: 3.0.7 - 90614
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
app/extensions/fields/template/content/gallery_type/content.tpl.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Robo Gallery
4
- * Version: 3.0.5 - 66649
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
1
  <?php
2
  /*
3
  * Robo Gallery
4
+ * Version: 3.0.7 - 90614
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
app/extensions/fields/template/content/gallery_type/type_slider.tpl.php ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
1
+ <div id="roboGalleryThemeTypeDiv">
2
+ <img class="type-logo" src="<?php echo ROBO_GALLERY_URL; ?>app/extensions/galleryType/build/grids/slider_active.svg" style="width: 100px; height: 100px;" />
3
+ <h4><?php _e( "Slider", 'robo-gallery'); ?></h4>
4
+
5
+ </div>
6
+
app/extensions/fields/template/field/select/default.tpl.php CHANGED
@@ -18,10 +18,10 @@
18
  name="<?php echo $name; ?>"
19
  data-dependents='<?php echo $dependents; ?>' >
20
  <?php foreach ($options['values'] as $optionValue => $optionLabel) : ?>
21
- <option
22
  value="<?php echo $optionValue; ?>"
23
  <?php if ($optionValue == $value) { echo 'selected'; } ?>
24
- <?php if (is_array($options['disabled']) && in_array($optionValue, $options['disabled']) ) { echo 'disabled'; } ?>
25
  >
26
  <?php echo $optionLabel; ?>
27
  </option>
18
  name="<?php echo $name; ?>"
19
  data-dependents='<?php echo $dependents; ?>' >
20
  <?php foreach ($options['values'] as $optionValue => $optionLabel) : ?>
21
+ <option
22
  value="<?php echo $optionValue; ?>"
23
  <?php if ($optionValue == $value) { echo 'selected'; } ?>
24
+ <?php if (!empty($options['disabled']) && is_array($options['disabled']) && in_array($optionValue, $options['disabled']) ) { echo 'disabled'; } ?>
25
  >
26
  <?php echo $optionLabel; ?>
27
  </option>
app/extensions/fields/template/field/text/images.tpl.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Robo Gallery
4
- * Version: 3.0.5 - 66649
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
1
  <?php
2
  /*
3
  * Robo Gallery
4
+ * Version: 3.0.7 - 90614
5
  * By Robosoft
6
  *
7
  * Contact: https://robosoft.co/robogallery/
app/extensions/galleryType/build/grids/slider.svg ADDED
@@ -0,0 +1,172 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
6
+ xmlns:cc="http://creativecommons.org/ns#"
7
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
+ xmlns:svg="http://www.w3.org/2000/svg"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
+ width="512"
13
+ height="512"
14
+ viewBox="0 0 135.46666 135.46667"
15
+ version="1.1"
16
+ id="svg14156"
17
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
18
+ sodipodi:docname="slider.svg">
19
+ <defs
20
+ id="defs14150" />
21
+ <sodipodi:namedview
22
+ id="base"
23
+ pagecolor="#ffffff"
24
+ bordercolor="#666666"
25
+ borderopacity="1.0"
26
+ inkscape:pageopacity="0.0"
27
+ inkscape:pageshadow="2"
28
+ inkscape:zoom="1.4142136"
29
+ inkscape:cx="248.51382"
30
+ inkscape:cy="265.73601"
31
+ inkscape:document-units="mm"
32
+ inkscape:current-layer="g1791"
33
+ showgrid="false"
34
+ units="px"
35
+ showguides="true"
36
+ inkscape:guide-bbox="true"
37
+ showborder="true"
38
+ inkscape:showpageshadow="false"
39
+ inkscape:window-width="1920"
40
+ inkscape:window-height="1027"
41
+ inkscape:window-x="-8"
42
+ inkscape:window-y="-8"
43
+ inkscape:window-maximized="1">
44
+ <sodipodi:guide
45
+ position="0,239.63691"
46
+ orientation="1,0"
47
+ id="guide14701"
48
+ inkscape:locked="false" />
49
+ <sodipodi:guide
50
+ position="135.5018,135.46666"
51
+ orientation="0,1"
52
+ id="guide14703"
53
+ inkscape:locked="false" />
54
+ <sodipodi:guide
55
+ position="135.46666,135.48084"
56
+ orientation="1,0"
57
+ id="guide14705"
58
+ inkscape:locked="false" />
59
+ <sodipodi:guide
60
+ position="135.50077,0"
61
+ orientation="0,1"
62
+ id="guide14707"
63
+ inkscape:locked="false" />
64
+ </sodipodi:namedview>
65
+ <metadata
66
+ id="metadata14153">
67
+ <rdf:RDF>
68
+ <cc:Work
69
+ rdf:about="">
70
+ <dc:format>image/svg+xml</dc:format>
71
+ <dc:type
72
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
73
+ <dc:title />
74
+ </cc:Work>
75
+ </rdf:RDF>
76
+ </metadata>
77
+ <g
78
+ inkscape:label="Layer 1"
79
+ inkscape:groupmode="layer"
80
+ id="layer1"
81
+ transform="translate(0,-161.53332)">
82
+ <g
83
+ id="g1791">
84
+ <rect
85
+ y="163.5798"
86
+ x="2.0376937"
87
+ height="131.38831"
88
+ width="131.38831"
89
+ id="rect828-4-26-1-4"
90
+ style="opacity:1;fill:#f9f9f9;fill-opacity:1;stroke:#f9f9f9;stroke-width:4.07836676;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
91
+ <rect
92
+ y="171.24771"
93
+ x="10.80573"
94
+ height="104.04813"
95
+ width="112.82429"
96
+ id="rect826-6-2-7-6"
97
+ style="opacity:1;fill:#e0e0e0;fill-opacity:1;stroke:#e0e0e0;stroke-width:4.1087327;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
98
+ <ellipse
99
+ ry="3.9687507"
100
+ rx="3.9423215"
101
+ cy="287.16476"
102
+ cx="49.248737"
103
+ id="path1465"
104
+ style="opacity:1;fill:#e0e0e0;fill-opacity:1;stroke:#e0e0e0;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
105
+ <ellipse
106
+ ry="3.9687507"
107
+ rx="3.9423215"
108
+ cy="287.36536"
109
+ cx="61.912506"
110
+ id="path1465-6"
111
+ style="opacity:1;fill:#e0e0e0;fill-opacity:1;stroke:#e0e0e0;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
112
+ <ellipse
113
+ ry="3.9687507"
114
+ rx="3.9423215"
115
+ cy="287.49765"
116
+ cx="74.21563"
117
+ id="path1465-0"
118
+ style="opacity:1;fill:#e0e0e0;fill-opacity:1;stroke:#e0e0e0;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
119
+ <ellipse
120
+ ry="3.9687507"
121
+ rx="3.9423215"
122
+ cy="287.36539"
123
+ cx="85.989586"
124
+ id="path1465-1"
125
+ style="opacity:1;fill:#e0e0e0;fill-opacity:1;stroke:#e0e0e0;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
126
+ <ellipse
127
+ ry="3.9687507"
128
+ rx="3.9423215"
129
+ cy="226.93243"
130
+ cx="117.83379"
131
+ id="path1465-1-8"
132
+ style="opacity:1;fill:#f9f9f9;fill-opacity:1;stroke:#f9f9f9;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
133
+ <ellipse
134
+ ry="3.9687507"
135
+ rx="3.9423215"
136
+ cy="226.77747"
137
+ cx="16.463808"
138
+ id="path1465-1-8-4"
139
+ style="opacity:1;fill:#f9f9f9;fill-opacity:1;stroke:#f9f9f9;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
140
+ <rect
141
+ y="243.81793"
142
+ x="13.079138"
143
+ height="28.373188"
144
+ width="107.60918"
145
+ id="rect828-4-26-1-5"
146
+ style="opacity:1;fill:#f9f9f9;fill-opacity:1;stroke:#f9f9f9;stroke-width:1.71517432;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
147
+ <rect
148
+ y="249.26282"
149
+ x="17.131762"
150
+ height="4.8728938"
151
+ width="49.285126"
152
+ id="rect826-0-9-6-9-3-6"
153
+ style="opacity:1;fill:#e0e0e0;fill-opacity:1;stroke:#e0e0e0;stroke-width:0.58767998;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
154
+ <rect
155
+ transform="scale(1,-1)"
156
+ y="-260.95782"
157
+ x="17.131762"
158
+ height="1.9350408"
159
+ width="100.22615"
160
+ id="rect826-0-9-6-9-3-5"
161
+ style="opacity:1;fill:#e0e0e0;fill-opacity:1;stroke:#e0e0e0;stroke-width:0.5281108;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
162
+ <rect
163
+ transform="scale(1,-1)"
164
+ y="-267.48068"
165
+ x="17.131762"
166
+ height="1.935041"
167
+ width="95.370552"
168
+ id="rect826-0-9-6-9-3-5-8"
169
+ style="opacity:1;fill:#e0e0e0;fill-opacity:1;stroke:#e0e0e0;stroke-width:0.51515949;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
170
+ </g>
171
+ </g>
172
+ </svg>
app/extensions/galleryType/build/grids/slider_active.svg ADDED
@@ -0,0 +1,186 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
6
+ xmlns:cc="http://creativecommons.org/ns#"
7
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
+ xmlns:svg="http://www.w3.org/2000/svg"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
+ width="512"
13
+ height="512"
14
+ viewBox="0 0 135.46666 135.46667"
15
+ version="1.1"
16
+ id="svg14156"
17
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
18
+ sodipodi:docname="slider_active.svg">
19
+ <defs
20
+ id="defs14150" />
21
+ <sodipodi:namedview
22
+ id="base"
23
+ pagecolor="#ffffff"
24
+ bordercolor="#666666"
25
+ borderopacity="1.0"
26
+ inkscape:pageopacity="0.0"
27
+ inkscape:pageshadow="2"
28
+ inkscape:zoom="1.4142136"
29
+ inkscape:cx="223.36851"
30
+ inkscape:cy="196.74475"
31
+ inkscape:document-units="mm"
32
+ inkscape:current-layer="layer1"
33
+ showgrid="false"
34
+ units="px"
35
+ showguides="true"
36
+ inkscape:guide-bbox="true"
37
+ showborder="true"
38
+ inkscape:showpageshadow="false"
39
+ inkscape:window-width="1920"
40
+ inkscape:window-height="1027"
41
+ inkscape:window-x="-8"
42
+ inkscape:window-y="-8"
43
+ inkscape:window-maximized="1">
44
+ <sodipodi:guide
45
+ position="0,239.63691"
46
+ orientation="1,0"
47
+ id="guide14701"
48
+ inkscape:locked="false" />
49
+ <sodipodi:guide
50
+ position="135.5018,135.46666"
51
+ orientation="0,1"
52
+ id="guide14703"
53
+ inkscape:locked="false" />
54
+ <sodipodi:guide
55
+ position="135.46666,135.48084"
56
+ orientation="1,0"
57
+ id="guide14705"
58
+ inkscape:locked="false" />
59
+ <sodipodi:guide
60
+ position="135.50077,0"
61
+ orientation="0,1"
62
+ id="guide14707"
63
+ inkscape:locked="false" />
64
+ <sodipodi:guide
65
+ position="176.74166,9.5249999"
66
+ orientation="0,1"
67
+ id="guide1496"
68
+ inkscape:locked="false" />
69
+ </sodipodi:namedview>
70
+ <metadata
71
+ id="metadata14153">
72
+ <rdf:RDF>
73
+ <cc:Work
74
+ rdf:about="">
75
+ <dc:format>image/svg+xml</dc:format>
76
+ <dc:type
77
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
78
+ <dc:title />
79
+ </cc:Work>
80
+ </rdf:RDF>
81
+ </metadata>
82
+ <g
83
+ inkscape:label="Layer 1"
84
+ inkscape:groupmode="layer"
85
+ id="layer1"
86
+ transform="translate(0,-161.53332)">
87
+ <g
88
+ id="g1775"
89
+ transform="translate(-2.0401253,-0.11466244)">
90
+ <rect
91
+ y="163.68745"
92
+ x="4.0791411"
93
+ height="131.38831"
94
+ width="131.38831"
95
+ id="rect828-4-26-1-9"
96
+ style="opacity:1;fill:#66b8ef;fill-opacity:1;stroke:#66b8ef;stroke-width:4.07836676;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
97
+ <rect
98
+ y="171.24771"
99
+ x="12.92238"
100
+ height="104.04813"
101
+ width="112.82429"
102
+ id="rect826-6-2-7-2"
103
+ style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:4.1087327;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
104
+ <g
105
+ transform="translate(4.2333192,0.15494171)"
106
+ id="g1534-2">
107
+ <ellipse
108
+ style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0"
109
+ id="path1465-5"
110
+ cx="47.132065"
111
+ cy="287.00983"
112
+ rx="3.9423215"
113
+ ry="3.9687507" />
114
+ <ellipse
115
+ style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0"
116
+ id="path1465-6-3"
117
+ cx="59.795834"
118
+ cy="287.21042"
119
+ rx="3.9423215"
120
+ ry="3.9687507" />
121
+ <ellipse
122
+ style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0"
123
+ id="path1465-0-6"
124
+ cx="72.098961"
125
+ cy="287.34271"
126
+ rx="3.9423215"
127
+ ry="3.9687507" />
128
+ <ellipse
129
+ style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0"
130
+ id="path1465-1-86"
131
+ cx="83.872917"
132
+ cy="287.21045"
133
+ rx="3.9423215"
134
+ ry="3.9687507" />
135
+ </g>
136
+ <ellipse
137
+ ry="3.9687507"
138
+ rx="3.9423215"
139
+ cy="226.93243"
140
+ cx="119.95042"
141
+ id="path1465-1-8-6"
142
+ style="opacity:1;fill:#66b8ef;fill-opacity:1;stroke:#66b8ef;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
143
+ <ellipse
144
+ ry="3.9687507"
145
+ rx="3.9423215"
146
+ cy="226.77747"
147
+ cx="18.580462"
148
+ id="path1465-1-8-4-9"
149
+ style="opacity:1;fill:#66b8ef;fill-opacity:1;stroke:#66b8ef;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
150
+ <g
151
+ transform="translate(-172.85042,0.52916667)"
152
+ id="g1759">
153
+ <rect
154
+ style="opacity:1;fill:#e0e0e0;fill-opacity:1;stroke:#e0e0e0;stroke-width:1.71517432;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
155
+ id="rect828-4-26-1-5-5"
156
+ width="107.60918"
157
+ height="28.373188"
158
+ x="188.04622"
159
+ y="243.28876" />
160
+ <rect
161
+ style="opacity:1;fill:#f9f9f9;fill-opacity:1;stroke:#f9f9f9;stroke-width:0.58767998;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
162
+ id="rect826-0-9-6-9-3-1"
163
+ width="49.285126"
164
+ height="4.8728938"
165
+ x="192.09885"
166
+ y="248.73364" />
167
+ <rect
168
+ style="opacity:1;fill:#f9f9f9;fill-opacity:1;stroke:#f9f9f9;stroke-width:0.5281108;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
169
+ id="rect826-0-9-6-9-3-5-4"
170
+ width="100.22615"
171
+ height="1.9350408"
172
+ x="192.09885"
173
+ y="-260.42865"
174
+ transform="scale(1,-1)" />
175
+ <rect
176
+ style="opacity:1;fill:#f9f9f9;fill-opacity:1;stroke:#f9f9f9;stroke-width:0.51515949;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
177
+ id="rect826-0-9-6-9-3-5-8-1"
178
+ width="95.370552"
179
+ height="1.935041"
180
+ x="192.09885"
181
+ y="-266.95151"
182
+ transform="scale(1,-1)" />
183
+ </g>
184
+ </g>
185
+ </g>
186
+ </svg>
app/extensions/galleryType/build/grids/slider_pro.svg ADDED
@@ -0,0 +1,159 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
6
+ xmlns:cc="http://creativecommons.org/ns#"
7
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
+ xmlns:svg="http://www.w3.org/2000/svg"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
+ width="512"
13
+ height="512"
14
+ viewBox="0 0 135.46666 135.46667"
15
+ version="1.1"
16
+ id="svg14156"
17
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
18
+ sodipodi:docname="slider_pro.svg">
19
+ <defs
20
+ id="defs14150" />
21
+ <sodipodi:namedview
22
+ id="base"
23
+ pagecolor="#ffffff"
24
+ bordercolor="#666666"
25
+ borderopacity="1.0"
26
+ inkscape:pageopacity="0.0"
27
+ inkscape:pageshadow="2"
28
+ inkscape:zoom="1"
29
+ inkscape:cx="33"
30
+ inkscape:cy="246.0075"
31
+ inkscape:document-units="mm"
32
+ inkscape:current-layer="layer1"
33
+ showgrid="false"
34
+ units="px"
35
+ showguides="true"
36
+ inkscape:guide-bbox="true"
37
+ showborder="true"
38
+ inkscape:showpageshadow="false"
39
+ inkscape:window-width="1920"
40
+ inkscape:window-height="1027"
41
+ inkscape:window-x="-8"
42
+ inkscape:window-y="-8"
43
+ inkscape:window-maximized="1">
44
+ <sodipodi:guide
45
+ position="0,239.63691"
46
+ orientation="1,0"
47
+ id="guide14701"
48
+ inkscape:locked="false" />
49
+ <sodipodi:guide
50
+ position="135.5018,135.46666"
51
+ orientation="0,1"
52
+ id="guide14703"
53
+ inkscape:locked="false" />
54
+ <sodipodi:guide
55
+ position="135.46666,135.48084"
56
+ orientation="1,0"
57
+ id="guide14705"
58
+ inkscape:locked="false" />
59
+ <sodipodi:guide
60
+ position="135.50077,0"
61
+ orientation="0,1"
62
+ id="guide14707"
63
+ inkscape:locked="false" />
64
+ </sodipodi:namedview>
65
+ <metadata
66
+ id="metadata14153">
67
+ <rdf:RDF>
68
+ <cc:Work
69
+ rdf:about="">
70
+ <dc:format>image/svg+xml</dc:format>
71
+ <dc:type
72
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
73
+ <dc:title></dc:title>
74
+ </cc:Work>
75
+ </rdf:RDF>
76
+ </metadata>
77
+ <g
78
+ inkscape:label="Layer 1"
79
+ inkscape:groupmode="layer"
80
+ id="layer1"
81
+ transform="translate(0,-161.53332)">
82
+ <rect
83
+ style="opacity:1;fill:#f9f9f9;fill-opacity:1;stroke:#f9f9f9;stroke-width:4.07836676;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
84
+ id="rect828-4-26-1"
85
+ width="131.38831"
86
+ height="131.38831"
87
+ x="1.9616814"
88
+ y="163.49504" />
89
+ <rect
90
+ style="opacity:1;fill:#e0e0e0;fill-opacity:1;stroke:#e0e0e0;stroke-width:3.77395964;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
91
+ id="rect826-6-2-7"
92
+ width="119.01852"
93
+ height="83.21489"
94
+ x="7.7613115"
95
+ y="170.98767" />
96
+ <rect
97
+ style="opacity:1;fill:#e0e0e0;fill-opacity:1;stroke:#e0e0e0;stroke-width:0.97888362;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
98
+ id="rect826-0-9-6-9-3"
99
+ width="26.19046"
100
+ height="25.441345"
101
+ x="6.4553952"
102
+ y="263.93375" />
103
+ <rect
104
+ style="opacity:1;fill:#e0e0e0;fill-opacity:1;stroke:#e0e0e0;stroke-width:0.97818369;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
105
+ id="rect826-8-3-8-6-5-8"
106
+ width="26.19046"
107
+ height="25.441347"
108
+ x="38.697132"
109
+ y="263.96893" />
110
+ <rect
111
+ style="opacity:1;fill:#e0e0e0;fill-opacity:1;stroke:#e0e0e0;stroke-width:0.97818369;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
112
+ id="rect826-8-7-6-7-9-9-3"
113
+ width="26.19046"
114
+ height="25.441347"
115
+ x="71.040596"
116
+ y="263.79324" />
117
+ <rect
118
+ style="opacity:1;fill:#e0e0e0;fill-opacity:1;stroke:#e0e0e0;stroke-width:0.97818369;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
119
+ id="rect826-8-7-1-1-7-3-5-6"
120
+ width="26.19046"
121
+ height="25.441347"
122
+ x="102.88902"
123
+ y="263.69553" />
124
+ <g
125
+ id="g5216-4-0-0-2-6-5-6-9-0-4-5-0-2"
126
+ transform="matrix(0.19438351,0,0,0.2032779,107.41552,267.13529)"
127
+ style="fill:#000080">
128
+ <path
129
+ inkscape:connector-curvature="0"
130
+ d="M 92.49,35.284 H 59.206 V 2 c 0,-1.104 -0.896,-2 -2,-2 H 37.284 c -1.104,0 -2,0.896 -2,2 V 35.284 H 2 c -1.104,0 -2,0.896 -2,2 v 19.922 c 0,1.104 0.896,2 2,2 H 35.284 V 92.49 c 0,1.104 0.896,2 2,2 h 19.922 c 1.104,0 2,-0.896 2,-2 V 59.206 H 92.49 c 1.104,0 2,-0.896 2,-2 V 37.284 c 0,-1.104 -0.894,-2 -2,-2 z"
131
+ id="path5214-9-1-4-4-2-3-8-8-5-6-4-9-3"
132
+ style="fill:#000080" />
133
+ </g>
134
+ <path
135
+ inkscape:connector-curvature="0"
136
+ d="m 71.97979,209.07764 c -2.06362,-0.14731 -6.65978,-0.14674 -8.72056,0 -2.23139,0.15938 -2.49419,1.56886 -2.51079,5.27895 0.0161,3.70352 0.27714,5.11906 2.51079,5.27895 2.06131,0.14675 6.65694,0.14732 8.72056,0 2.23138,-0.15937 2.49417,-1.56885 2.51083,-5.27895 -0.0162,-3.70351 -0.27714,-5.11905 -2.51083,-5.27895 z m -6.07802,7.6741 v -4.79029 l 4.58069,2.39095 z"
137
+ id="path5257-7-51-7-5-5-6-8-7-54"
138
+ style="fill:#f9f9f9;fill-opacity:1;stroke-width:0.58554286" />
139
+ <g
140
+ id="g2911-3-6-1-7-6-4-3-0-5-8"
141
+ transform="matrix(0.02779177,0,0,0.02906347,44.443809,268.15577)"
142
+ style="fill:#f9f9f9;fill-opacity:1">
143
+ <g
144
+ id="g2909-3-7-5-5-2-2-5-3-9-7"
145
+ style="fill:#f9f9f9;fill-opacity:1">
146
+ <path
147
+ inkscape:connector-curvature="0"
148
+ d="m 245.531,245.532 c 4.893,-4.896 11.42,-7.589 18.375,-7.589 6.955,0 13.482,2.696 18.375,7.589 l 49.734,49.734 c 1.723,1.72 4.058,2.689 6.49,2.689 2.432,0 4.771,-0.967 6.49,-2.689 l 49.733,-49.734 c 1.724,-1.72 2.69,-4.058 2.69,-6.49 0,-2.433 -0.967,-4.771 -2.69,-6.49 l -49.733,-49.734 c -21.668,-21.662 -50.469,-33.589 -81.093,-33.589 -30.624,0 -59.425,11.928 -81.093,33.586 L 33.602,332.022 C 11.934,353.69 0,382.494 0,413.128 c 0,30.637 11.934,59.432 33.605,81.084 l 49.731,49.73 c 21.65,21.668 50.447,33.603 81.081,33.603 30.634,0 59.438,-11.935 81.108,-33.603 l 84.083,-84.082 c 2.705,-2.705 3.448,-6.803 1.869,-10.285 -1.496,-3.295 -4.776,-5.386 -8.356,-5.386 -0.205,0 -0.407,0.007 -0.615,0.021 -2.959,0.199 -5.958,0.297 -8.917,0.297 -23.354,0 -46.322,-6.208 -66.417,-17.956 -1.444,-0.844 -3.042,-1.254 -4.629,-1.254 -2.375,0 -4.725,0.921 -6.494,2.689 l -53.238,53.238 c -4.902,4.901 -11.426,7.604 -18.372,7.604 -6.949,0 -13.479,-2.699 -18.381,-7.604 L 96.324,431.49 c -4.908,-4.896 -7.61,-11.411 -7.616,-18.348 -0.003,-6.953 2.699,-13.489 7.616,-18.406 z"
149
+ id="path2905-5-8-0-9-7-0-1-4-0-4"
150
+ style="fill:#f9f9f9;fill-opacity:1" />
151
+ <path
152
+ inkscape:connector-curvature="0"
153
+ d="M 543.942,83.324 494.208,33.59 C 472.556,11.931 443.762,0 413.128,0 382.494,0 353.69,11.928 332.023,33.587 l -84.086,84.119 c -2.705,2.705 -3.448,6.806 -1.867,10.288 1.497,3.292 4.777,5.382 8.354,5.382 0.205,0 0.413,-0.006 0.621,-0.021 2.987,-0.202 6.013,-0.303 9,-0.303 23.4,0 46.316,6.206 66.274,17.947 1.45,0.854 3.057,1.267 4.65,1.267 2.375,0 4.725,-0.921 6.494,-2.689 l 53.274,-53.274 c 4.893,-4.896 11.42,-7.589 18.375,-7.589 6.955,0 13.482,2.696 18.375,7.589 l 49.734,49.734 c 10.123,10.135 10.123,26.634 -0.003,36.775 L 332.017,332.014 c -4.894,4.905 -11.408,7.604 -18.348,7.604 -6.956,0 -13.495,-2.702 -18.415,-7.61 l -49.723,-49.725 c -1.723,-1.72 -4.057,-2.69 -6.49,-2.69 -2.433,0 -4.771,0.967 -6.49,2.69 l -49.734,49.734 c -3.586,3.586 -3.586,9.397 0,12.983 l 49.734,49.734 c 21.668,21.668 50.469,33.602 81.093,33.602 30.625,0 59.426,-11.934 81.094,-33.602 L 543.943,245.528 c 21.668,-21.658 33.603,-50.462 33.603,-81.102 0,-30.64 -11.936,-59.443 -33.604,-81.102 z"
154
+ id="path2907-3-2-5-9-5-6-3-7-4-1"
155
+ style="fill:#f9f9f9;fill-opacity:1" />
156
+ </g>
157
+ </g>
158
+ </g>
159
+ </svg>
app/extensions/galleryType/build/grids/slider_pro_active.svg ADDED
@@ -0,0 +1,159 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
6
+ xmlns:cc="http://creativecommons.org/ns#"
7
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
+ xmlns:svg="http://www.w3.org/2000/svg"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
+ width="512"
13
+ height="512"
14
+ viewBox="0 0 135.46666 135.46667"
15
+ version="1.1"
16
+ id="svg14156"
17
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
18
+ sodipodi:docname="slider_pro_active.svg">
19
+ <defs
20
+ id="defs14150" />
21
+ <sodipodi:namedview
22
+ id="base"
23
+ pagecolor="#ffffff"
24
+ bordercolor="#666666"
25
+ borderopacity="1.0"
26
+ inkscape:pageopacity="0.0"
27
+ inkscape:pageshadow="2"
28
+ inkscape:zoom="1"
29
+ inkscape:cx="33"
30
+ inkscape:cy="246.0075"
31
+ inkscape:document-units="mm"
32
+ inkscape:current-layer="layer1"
33
+ showgrid="false"
34
+ units="px"
35
+ showguides="true"
36
+ inkscape:guide-bbox="true"
37
+ showborder="true"
38
+ inkscape:showpageshadow="false"
39
+ inkscape:window-width="1920"
40
+ inkscape:window-height="1027"
41
+ inkscape:window-x="-8"
42
+ inkscape:window-y="-8"
43
+ inkscape:window-maximized="1">
44
+ <sodipodi:guide
45
+ position="0,239.63691"
46
+ orientation="1,0"
47
+ id="guide14701"
48
+ inkscape:locked="false" />
49
+ <sodipodi:guide
50
+ position="135.5018,135.46666"
51
+ orientation="0,1"
52
+ id="guide14703"
53
+ inkscape:locked="false" />
54
+ <sodipodi:guide
55
+ position="135.46666,135.48084"
56
+ orientation="1,0"
57
+ id="guide14705"
58
+ inkscape:locked="false" />
59
+ <sodipodi:guide
60
+ position="135.50077,0"
61
+ orientation="0,1"
62
+ id="guide14707"
63
+ inkscape:locked="false" />
64
+ </sodipodi:namedview>
65
+ <metadata
66
+ id="metadata14153">
67
+ <rdf:RDF>
68
+ <cc:Work
69
+ rdf:about="">
70
+ <dc:format>image/svg+xml</dc:format>
71
+ <dc:type
72
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
73
+ <dc:title></dc:title>
74
+ </cc:Work>
75
+ </rdf:RDF>
76
+ </metadata>
77
+ <g
78
+ inkscape:label="Layer 1"
79
+ inkscape:groupmode="layer"
80
+ id="layer1"
81
+ transform="translate(0,-161.53332)">
82
+ <rect
83
+ style="opacity:1;fill:#66b8ef;fill-opacity:1;stroke:#66b8ef;stroke-width:4.07836676;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
84
+ id="rect828-4-26-1"
85
+ width="131.38831"
86
+ height="131.38831"
87
+ x="1.9616814"
88
+ y="163.49504" />
89
+ <rect
90
+ style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:3.77395964;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
91
+ id="rect826-6-2-7"
92
+ width="119.01852"
93
+ height="83.21489"
94
+ x="7.7613115"
95
+ y="170.98767" />
96
+ <rect
97
+ style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.97888362;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
98
+ id="rect826-0-9-6-9-3"
99
+ width="26.19046"
100
+ height="25.441345"
101
+ x="6.4553952"
102
+ y="263.93375" />
103
+ <rect
104
+ style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.97818369;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
105
+ id="rect826-8-3-8-6-5-8"
106
+ width="26.19046"
107
+ height="25.441347"
108
+ x="38.697132"
109
+ y="263.96893" />
110
+ <rect
111
+ style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.97818369;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
112
+ id="rect826-8-7-6-7-9-9-3"
113
+ width="26.19046"
114
+ height="25.441347"
115
+ x="71.040596"
116
+ y="263.79324" />
117
+ <rect
118
+ style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.97818369;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
119
+ id="rect826-8-7-1-1-7-3-5-6"
120
+ width="26.19046"
121
+ height="25.441347"
122
+ x="102.88902"
123
+ y="263.69553" />
124
+ <g
125
+ id="g5216-4-0-0-2-6-5-6-9-0-4-5-0-2"
126
+ transform="matrix(0.19438351,0,0,0.2032779,107.41552,267.13529)"
127
+ style="fill:#000080">
128
+ <path
129
+ inkscape:connector-curvature="0"
130
+ d="M 92.49,35.284 H 59.206 V 2 c 0,-1.104 -0.896,-2 -2,-2 H 37.284 c -1.104,0 -2,0.896 -2,2 V 35.284 H 2 c -1.104,0 -2,0.896 -2,2 v 19.922 c 0,1.104 0.896,2 2,2 H 35.284 V 92.49 c 0,1.104 0.896,2 2,2 h 19.922 c 1.104,0 2,-0.896 2,-2 V 59.206 H 92.49 c 1.104,0 2,-0.896 2,-2 V 37.284 c 0,-1.104 -0.894,-2 -2,-2 z"
131
+ id="path5214-9-1-4-4-2-3-8-8-5-6-4-9-3"
132
+ style="fill:#000080" />
133
+ </g>
134
+ <path
135
+ inkscape:connector-curvature="0"
136
+ d="m 71.97979,209.07764 c -2.06362,-0.14731 -6.65978,-0.14674 -8.72056,0 -2.23139,0.15938 -2.49419,1.56886 -2.51079,5.27895 0.0161,3.70352 0.27714,5.11906 2.51079,5.27895 2.06131,0.14675 6.65694,0.14732 8.72056,0 2.23138,-0.15937 2.49417,-1.56885 2.51083,-5.27895 -0.0162,-3.70351 -0.27714,-5.11905 -2.51083,-5.27895 z m -6.07802,7.6741 v -4.79029 l 4.58069,2.39095 z"
137
+ id="path5257-7-51-7-5-5-6-8-7-54"
138
+ style="fill:#66b8ef;fill-opacity:1;stroke-width:0.58554286" />
139
+ <g
140
+ id="g2911-3-6-1-7-6-4-3-0-5-8"
141
+ transform="matrix(0.02779177,0,0,0.02906347,44.443809,268.15577)"
142
+ style="fill:#66b8ef;fill-opacity:1">
143
+ <g
144
+ id="g2909-3-7-5-5-2-2-5-3-9-7"
145
+ style="fill:#66b8ef;fill-opacity:1">
146
+ <path
147
+ inkscape:connector-curvature="0"
148
+ d="m 245.531,245.532 c 4.893,-4.896 11.42,-7.589 18.375,-7.589 6.955,0 13.482,2.696 18.375,7.589 l 49.734,49.734 c 1.723,1.72 4.058,2.689 6.49,2.689 2.432,0 4.771,-0.967 6.49,-2.689 l 49.733,-49.734 c 1.724,-1.72 2.69,-4.058 2.69,-6.49 0,-2.433 -0.967,-4.771 -2.69,-6.49 l -49.733,-49.734 c -21.668,-21.662 -50.469,-33.589 -81.093,-33.589 -30.624,0 -59.425,11.928 -81.093,33.586 L 33.602,332.022 C 11.934,353.69 0,382.494 0,413.128 c 0,30.637 11.934,59.432 33.605,81.084 l 49.731,49.73 c 21.65,21.668 50.447,33.603 81.081,33.603 30.634,0 59.438,-11.935 81.108,-33.603 l 84.083,-84.082 c 2.705,-2.705 3.448,-6.803 1.869,-10.285 -1.496,-3.295 -4.776,-5.386 -8.356,-5.386 -0.205,0 -0.407,0.007 -0.615,0.021 -2.959,0.199 -5.958,0.297 -8.917,0.297 -23.354,0 -46.322,-6.208 -66.417,-17.956 -1.444,-0.844 -3.042,-1.254 -4.629,-1.254 -2.375,0 -4.725,0.921 -6.494,2.689 l -53.238,53.238 c -4.902,4.901 -11.426,7.604 -18.372,7.604 -6.949,0 -13.479,-2.699 -18.381,-7.604 L 96.324,431.49 c -4.908,-4.896 -7.61,-11.411 -7.616,-18.348 -0.003,-6.953 2.699,-13.489 7.616,-18.406 z"
149
+ id="path2905-5-8-0-9-7-0-1-4-0-4"
150
+ style="fill:#66b8ef;fill-opacity:1" />
151
+ <path
152
+ inkscape:connector-curvature="0"
153
+ d="M 543.942,83.324 494.208,33.59 C 472.556,11.931 443.762,0 413.128,0 382.494,0 353.69,11.928 332.023,33.587 l -84.086,84.119 c -2.705,2.705 -3.448,6.806 -1.867,10.288 1.497,3.292 4.777,5.382 8.354,5.382 0.205,0 0.413,-0.006 0.621,-0.021 2.987,-0.202 6.013,-0.303 9,-0.303 23.4,0 46.316,6.206 66.274,17.947 1.45,0.854 3.057,1.267 4.65,1.267 2.375,0 4.725,-0.921 6.494,-2.689 l 53.274,-53.274 c 4.893,-4.896 11.42,-7.589 18.375,-7.589 6.955,0 13.482,2.696 18.375,7.589 l 49.734,49.734 c 10.123,10.135 10.123,26.634 -0.003,36.775 L 332.017,332.014 c -4.894,4.905 -11.408,7.604 -18.348,7.604 -6.956,0 -13.495,-2.702 -18.415,-7.61 l -49.723,-49.725 c -1.723,-1.72 -4.057,-2.69 -6.49,-2.69 -2.433,0 -4.771,0.967 -6.49,2.69 l -49.734,49.734 c -3.586,3.586 -3.586,9.397 0,12.983 l 49.734,49.734 c 21.668,21.668 50.469,33.602 81.093,33.602 30.625,0 59.426,-11.934 81.094,-33.602 L 543.943,245.528 c 21.668,-21.658 33.603,-50.462 33.603,-81.102 0,-30.64 -11.936,-59.443 -33.604,-81.102 z"
154
+ id="path2907-3-2-5-9-5-6-3-7-4-1"
155
+ style="fill:#66b8ef;fill-opacity:1" />
156
+ </g>
157
+ </g>
158
+ </g>
159
+ </svg>
app/extensions/galleryType/build/static/css/main.min.css CHANGED
@@ -1,7 +1,7 @@
1
  .bootstrapiso>:not(#wpwrap){font-family:sans-serif;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0);margin:0;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left}html body.bootstrapiso:not(#random_id_string)>,html body.bootstrapiso>:not(#wpwrap){/*!
2
- * Bootstrap v4.5.0 (https://getbootstrap.com/)
3
- * Copyright 2011-2020 The Bootstrap Authors
4
- * Copyright 2011-2020 Twitter, Inc.
5
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
6
- */}html body.bootstrapiso:not(#random_id_string)>:root,html body.bootstrapiso>:not(#wpwrap) :root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#6c757d;--gray-dark:#343a40;--primary:#007bff;--secondary:#6c757d;--success:#28a745;--info:#17a2b8;--warning:#ffc107;--danger:#dc3545;--light:#f8f9fa;--dark:#343a40;--breakpoint-xs:0;--breakpoint-sm:576px;--breakpoint-md:768px;--breakpoint-lg:992px;--breakpoint-xl:1200px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}html body.bootstrapiso:not(#random_id_string)>*,html body.bootstrapiso:not(#random_id_string)>:after,html body.bootstrapiso:not(#random_id_string)>:before,html body.bootstrapiso>:not(#wpwrap) *,html body.bootstrapiso>:not(#wpwrap) :after,html body.bootstrapiso>:not(#wpwrap) :before{box-sizing:border-box}html body.bootstrapiso:not(#random_id_string)>html,html body.bootstrapiso>:not(#wpwrap) html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}html body.bootstrapiso:not(#random_id_string)>article,html body.bootstrapiso:not(#random_id_string)>aside,html body.bootstrapiso:not(#random_id_string)>figcaption,html body.bootstrapiso:not(#random_id_string)>figure,html body.bootstrapiso:not(#random_id_string)>footer,html body.bootstrapiso:not(#random_id_string)>header,html body.bootstrapiso:not(#random_id_string)>hgroup,html body.bootstrapiso:not(#random_id_string)>main,html body.bootstrapiso:not(#random_id_string)>nav,html body.bootstrapiso:not(#random_id_string)>section,html body.bootstrapiso>:not(#wpwrap) article,html body.bootstrapiso>:not(#wpwrap) aside,html body.bootstrapiso>:not(#wpwrap) figcaption,html body.bootstrapiso>:not(#wpwrap) figure,html body.bootstrapiso>:not(#wpwrap) footer,html body.bootstrapiso>:not(#wpwrap) header,html body.bootstrapiso>:not(#wpwrap) hgroup,html body.bootstrapiso>:not(#wpwrap) main,html body.bootstrapiso>:not(#wpwrap) nav,html body.bootstrapiso>:not(#wpwrap) section{display:block}html body.bootstrapiso:not(#random_id_string)>body,html body.bootstrapiso>:not(#wpwrap) body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}html body.bootstrapiso:not(#random_id_string)>[tabindex="-1"]:focus:not(:focus-visible),html body.bootstrapiso>:not(#wpwrap) [tabindex="-1"]:focus:not(:focus-visible){outline:0!important}html body.bootstrapiso:not(#random_id_string)>hr,html body.bootstrapiso>:not(#wpwrap) hr{box-sizing:content-box;height:0;overflow:visible}html body.bootstrapiso:not(#random_id_string)>h1,html body.bootstrapiso:not(#random_id_string)>h2,html body.bootstrapiso:not(#random_id_string)>h3,html body.bootstrapiso:not(#random_id_string)>h4,html body.bootstrapiso:not(#random_id_string)>h5,html body.bootstrapiso:not(#random_id_string)>h6,html body.bootstrapiso>:not(#wpwrap) h1,html body.bootstrapiso>:not(#wpwrap) h2,html body.bootstrapiso>:not(#wpwrap) h3,html body.bootstrapiso>:not(#wpwrap) h4,html body.bootstrapiso>:not(#wpwrap) h5,html body.bootstrapiso>:not(#wpwrap) h6{margin-top:0;margin-bottom:.5rem}html body.bootstrapiso:not(#random_id_string)>p,html body.bootstrapiso>:not(#wpwrap) p{margin-top:0;margin-bottom:1rem}html body.bootstrapiso:not(#random_id_string)>abbr[data-original-title],html body.bootstrapiso:not(#random_id_string)>abbr[title],html body.bootstrapiso>:not(#wpwrap) abbr[data-original-title],html body.bootstrapiso>:not(#wpwrap) abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}html body.bootstrapiso:not(#random_id_string)>address,html body.bootstrapiso>:not(#wpwrap) address{margin-bottom:1rem;font-style:normal;line-height:inherit}html body.bootstrapiso:not(#random_id_string)>dl,html body.bootstrapiso:not(#random_id_string)>ol,html body.bootstrapiso:not(#random_id_string)>ul,html body.bootstrapiso>:not(#wpwrap) dl,html body.bootstrapiso>:not(#wpwrap) ol,html body.bootstrapiso>:not(#wpwrap) ul{margin-top:0;margin-bottom:1rem}html body.bootstrapiso:not(#random_id_string)>ol ol,html body.bootstrapiso:not(#random_id_string)>ol ul,html body.bootstrapiso:not(#random_id_string)>ul ol,html body.bootstrapiso:not(#random_id_string)>ul ul,html body.bootstrapiso>:not(#wpwrap) ol ol,html body.bootstrapiso>:not(#wpwrap) ol ul,html body.bootstrapiso>:not(#wpwrap) ul ol,html body.bootstrapiso>:not(#wpwrap) ul ul{margin-bottom:0}html body.bootstrapiso:not(#random_id_string)>dt,html body.bootstrapiso>:not(#wpwrap) dt{font-weight:700}html body.bootstrapiso:not(#random_id_string)>dd,html body.bootstrapiso>:not(#wpwrap) dd{margin-bottom:.5rem;margin-left:0}html body.bootstrapiso:not(#random_id_string)>blockquote,html body.bootstrapiso>:not(#wpwrap) blockquote{margin:0 0 1rem}html body.bootstrapiso:not(#random_id_string)>b,html body.bootstrapiso:not(#random_id_string)>strong,html body.bootstrapiso>:not(#wpwrap) b,html body.bootstrapiso>:not(#wpwrap) strong{font-weight:bolder}html body.bootstrapiso:not(#random_id_string)>small,html body.bootstrapiso>:not(#wpwrap) small{font-size:80%}html body.bootstrapiso:not(#random_id_string)>sub,html body.bootstrapiso:not(#random_id_string)>sup,html body.bootstrapiso>:not(#wpwrap) sub,html body.bootstrapiso>:not(#wpwrap) sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}html body.bootstrapiso:not(#random_id_string)>sub,html body.bootstrapiso>:not(#wpwrap) sub{bottom:-.25em}html body.bootstrapiso:not(#random_id_string)>sup,html body.bootstrapiso>:not(#wpwrap) sup{top:-.5em}html body.bootstrapiso:not(#random_id_string)>a,html body.bootstrapiso>:not(#wpwrap) a{color:#007bff;text-decoration:none;background-color:transparent}html body.bootstrapiso:not(#random_id_string)>a:hover,html body.bootstrapiso>:not(#wpwrap) a:hover{color:#0056b3;text-decoration:underline}html body.bootstrapiso:not(#random_id_string)>a:not([href]),html body.bootstrapiso:not(#random_id_string)>a:not([href]):hover,html body.bootstrapiso>:not(#wpwrap) a:not([href]),html body.bootstrapiso>:not(#wpwrap) a:not([href]):hover{color:inherit;text-decoration:none}html body.bootstrapiso:not(#random_id_string)>code,html body.bootstrapiso:not(#random_id_string)>kbd,html body.bootstrapiso:not(#random_id_string)>pre,html body.bootstrapiso:not(#random_id_string)>samp,html body.bootstrapiso>:not(#wpwrap) code,html body.bootstrapiso>:not(#wpwrap) kbd,html body.bootstrapiso>:not(#wpwrap) pre,html body.bootstrapiso>:not(#wpwrap) samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}html body.bootstrapiso:not(#random_id_string)>pre,html body.bootstrapiso>:not(#wpwrap) pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}html body.bootstrapiso:not(#random_id_string)>figure,html body.bootstrapiso>:not(#wpwrap) figure{margin:0 0 1rem}html body.bootstrapiso:not(#random_id_string)>img,html body.bootstrapiso>:not(#wpwrap) img{vertical-align:middle;border-style:none}html body.bootstrapiso:not(#random_id_string)>svg,html body.bootstrapiso>:not(#wpwrap) svg{overflow:hidden;vertical-align:middle}html body.bootstrapiso:not(#random_id_string)>table,html body.bootstrapiso>:not(#wpwrap) table{border-collapse:collapse}html body.bootstrapiso:not(#random_id_string)>caption,html body.bootstrapiso>:not(#wpwrap) caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}html body.bootstrapiso:not(#random_id_string)>th,html body.bootstrapiso>:not(#wpwrap) th{text-align:inherit}html body.bootstrapiso:not(#random_id_string)>label,html body.bootstrapiso>:not(#wpwrap) label{display:inline-block;margin-bottom:.5rem}html body.bootstrapiso:not(#random_id_string)>button,html body.bootstrapiso>:not(#wpwrap) button{border-radius:0}html body.bootstrapiso:not(#random_id_string)>button:focus,html body.bootstrapiso>:not(#wpwrap) button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}html body.bootstrapiso:not(#random_id_string)>button,html body.bootstrapiso:not(#random_id_string)>input,html body.bootstrapiso:not(#random_id_string)>optgroup,html body.bootstrapiso:not(#random_id_string)>select,html body.bootstrapiso:not(#random_id_string)>textarea,html body.bootstrapiso>:not(#wpwrap) button,html body.bootstrapiso>:not(#wpwrap) input,html body.bootstrapiso>:not(#wpwrap) optgroup,html body.bootstrapiso>:not(#wpwrap) select,html body.bootstrapiso>:not(#wpwrap) textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}html body.bootstrapiso:not(#random_id_string)>button,html body.bootstrapiso:not(#random_id_string)>input,html body.bootstrapiso>:not(#wpwrap) button,html body.bootstrapiso>:not(#wpwrap) input{overflow:visible}html body.bootstrapiso:not(#random_id_string)>button,html body.bootstrapiso:not(#random_id_string)>select,html body.bootstrapiso>:not(#wpwrap) button,html body.bootstrapiso>:not(#wpwrap) select{text-transform:none}html body.bootstrapiso:not(#random_id_string)>[role=button],html body.bootstrapiso>:not(#wpwrap) [role=button]{cursor:pointer}html body.bootstrapiso:not(#random_id_string)>select,html body.bootstrapiso>:not(#wpwrap) select{word-wrap:normal}html body.bootstrapiso:not(#random_id_string)>[type=button],html body.bootstrapiso:not(#random_id_string)>[type=reset],html body.bootstrapiso:not(#random_id_string)>[type=submit],html body.bootstrapiso:not(#random_id_string)>button,html body.bootstrapiso>:not(#wpwrap) [type=button],html body.bootstrapiso>:not(#wpwrap) [type=reset],html body.bootstrapiso>:not(#wpwrap) [type=submit],html body.bootstrapiso>:not(#wpwrap) button{-webkit-appearance:button}html body.bootstrapiso:not(#random_id_string)>[type=button]:not(:disabled),html body.bootstrapiso:not(#random_id_string)>[type=reset]:not(:disabled),html body.bootstrapiso:not(#random_id_string)>[type=submit]:not(:disabled),html body.bootstrapiso:not(#random_id_string)>button:not(:disabled),html body.bootstrapiso>:not(#wpwrap) [type=button]:not(:disabled),html body.bootstrapiso>:not(#wpwrap) [type=reset]:not(:disabled),html body.bootstrapiso>:not(#wpwrap) [type=submit]:not(:disabled),html body.bootstrapiso>:not(#wpwrap) button:not(:disabled){cursor:pointer}html body.bootstrapiso:not(#random_id_string)>[type=button]::-moz-focus-inner,html body.bootstrapiso:not(#random_id_string)>[type=reset]::-moz-focus-inner,html body.bootstrapiso:not(#random_id_string)>[type=submit]::-moz-focus-inner,html body.bootstrapiso:not(#random_id_string)>button::-moz-focus-inner,html body.bootstrapiso>:not(#wpwrap) [type=button]::-moz-focus-inner,html body.bootstrapiso>:not(#wpwrap) [type=reset]::-moz-focus-inner,html body.bootstrapiso>:not(#wpwrap) [type=submit]::-moz-focus-inner,html body.bootstrapiso>:not(#wpwrap) button::-moz-focus-inner{padding:0;border-style:none}html body.bootstrapiso:not(#random_id_string)>input[type=checkbox],html body.bootstrapiso:not(#random_id_string)>input[type=radio],html body.bootstrapiso>:not(#wpwrap) input[type=checkbox],html body.bootstrapiso>:not(#wpwrap) input[type=radio]{box-sizing:border-box;padding:0}html body.bootstrapiso:not(#random_id_string)>textarea,html body.bootstrapiso>:not(#wpwrap) textarea{overflow:auto;resize:vertical}html body.bootstrapiso:not(#random_id_string)>fieldset,html body.bootstrapiso>:not(#wpwrap) fieldset{min-width:0;padding:0;margin:0;border:0}html body.bootstrapiso:not(#random_id_string)>legend,html body.bootstrapiso>:not(#wpwrap) legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}html body.bootstrapiso:not(#random_id_string)>progress,html body.bootstrapiso>:not(#wpwrap) progress{vertical-align:baseline}html body.bootstrapiso:not(#random_id_string)>[type=number]::-webkit-inner-spin-button,html body.bootstrapiso:not(#random_id_string)>[type=number]::-webkit-outer-spin-button,html body.bootstrapiso>:not(#wpwrap) [type=number]::-webkit-inner-spin-button,html body.bootstrapiso>:not(#wpwrap) [type=number]::-webkit-outer-spin-button{height:auto}html body.bootstrapiso:not(#random_id_string)>[type=search],html body.bootstrapiso>:not(#wpwrap) [type=search]{outline-offset:-2px;-webkit-appearance:none}html body.bootstrapiso:not(#random_id_string)>[type=search]::-webkit-search-decoration,html body.bootstrapiso>:not(#wpwrap) [type=search]::-webkit-search-decoration{-webkit-appearance:none}html body.bootstrapiso:not(#random_id_string)>::-webkit-file-upload-button,html body.bootstrapiso>:not(#wpwrap) ::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}html body.bootstrapiso:not(#random_id_string)>output,html body.bootstrapiso>:not(#wpwrap) output{display:inline-block}html body.bootstrapiso:not(#random_id_string)>summary,html body.bootstrapiso>:not(#wpwrap) summary{display:list-item;cursor:pointer}html body.bootstrapiso:not(#random_id_string)>template,html body.bootstrapiso>:not(#wpwrap) template{display:none}html body.bootstrapiso:not(#random_id_string)>[hidden],html body.bootstrapiso>:not(#wpwrap) [hidden]{display:none!important}html body.bootstrapiso:not(#random_id_string)>.h1,html body.bootstrapiso:not(#random_id_string)>.h2,html body.bootstrapiso:not(#random_id_string)>.h3,html body.bootstrapiso:not(#random_id_string)>.h4,html body.bootstrapiso:not(#random_id_string)>.h5,html body.bootstrapiso:not(#random_id_string)>.h6,html body.bootstrapiso:not(#random_id_string)>h1,html body.bootstrapiso:not(#random_id_string)>h2,html body.bootstrapiso:not(#random_id_string)>h3,html body.bootstrapiso:not(#random_id_string)>h4,html body.bootstrapiso:not(#random_id_string)>h5,html body.bootstrapiso:not(#random_id_string)>h6,html body.bootstrapiso>:not(#wpwrap) .h1,html body.bootstrapiso>:not(#wpwrap) .h2,html body.bootstrapiso>:not(#wpwrap) .h3,html body.bootstrapiso>:not(#wpwrap) .h4,html body.bootstrapiso>:not(#wpwrap) .h5,html body.bootstrapiso>:not(#wpwrap) .h6,html body.bootstrapiso>:not(#wpwrap) h1,html body.bootstrapiso>:not(#wpwrap) h2,html body.bootstrapiso>:not(#wpwrap) h3,html body.bootstrapiso>:not(#wpwrap) h4,html body.bootstrapiso>:not(#wpwrap) h5,html body.bootstrapiso>:not(#wpwrap) h6{margin-bottom:.5rem;font-weight:500;line-height:1.2}html body.bootstrapiso:not(#random_id_string)>.h1,html body.bootstrapiso:not(#random_id_string)>h1,html body.bootstrapiso>:not(#wpwrap) .h1,html body.bootstrapiso>:not(#wpwrap) h1{font-size:2.5rem}html body.bootstrapiso:not(#random_id_string)>.h2,html body.bootstrapiso:not(#random_id_string)>h2,html body.bootstrapiso>:not(#wpwrap) .h2,html body.bootstrapiso>:not(#wpwrap) h2{font-size:2rem}html body.bootstrapiso:not(#random_id_string)>.h3,html body.bootstrapiso:not(#random_id_string)>h3,html body.bootstrapiso>:not(#wpwrap) .h3,html body.bootstrapiso>:not(#wpwrap) h3{font-size:1.75rem}html body.bootstrapiso:not(#random_id_string)>.h4,html body.bootstrapiso:not(#random_id_string)>h4,html body.bootstrapiso>:not(#wpwrap) .h4,html body.bootstrapiso>:not(#wpwrap) h4{font-size:1.5rem}html body.bootstrapiso:not(#random_id_string)>.h5,html body.bootstrapiso:not(#random_id_string)>h5,html body.bootstrapiso>:not(#wpwrap) .h5,html body.bootstrapiso>:not(#wpwrap) h5{font-size:1.25rem}html body.bootstrapiso:not(#random_id_string)>.h6,html body.bootstrapiso:not(#random_id_string)>h6,html body.bootstrapiso>:not(#wpwrap) .h6,html body.bootstrapiso>:not(#wpwrap) h6{font-size:1rem}html body.bootstrapiso:not(#random_id_string)>.lead,html body.bootstrapiso>:not(#wpwrap) .lead{font-size:1.25rem;font-weight:300}html body.bootstrapiso:not(#random_id_string)>.display-1,html body.bootstrapiso>:not(#wpwrap) .display-1{font-size:6rem;font-weight:300;line-height:1.2}html body.bootstrapiso:not(#random_id_string)>.display-2,html body.bootstrapiso>:not(#wpwrap) .display-2{font-size:5.5rem;font-weight:300;line-height:1.2}html body.bootstrapiso:not(#random_id_string)>.display-3,html body.bootstrapiso>:not(#wpwrap) .display-3{font-size:4.5rem;font-weight:300;line-height:1.2}html body.bootstrapiso:not(#random_id_string)>.display-4,html body.bootstrapiso>:not(#wpwrap) .display-4{font-size:3.5rem;font-weight:300;line-height:1.2}html body.bootstrapiso:not(#random_id_string)>hr,html body.bootstrapiso>:not(#wpwrap) hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,.1)}html body.bootstrapiso:not(#random_id_string)>.small,html body.bootstrapiso:not(#random_id_string)>small,html body.bootstrapiso>:not(#wpwrap) .small,html body.bootstrapiso>:not(#wpwrap) small{font-size:80%;font-weight:400}html body.bootstrapiso:not(#random_id_string)>.mark,html body.bootstrapiso:not(#random_id_string)>mark,html body.bootstrapiso>:not(#wpwrap) .mark,html body.bootstrapiso>:not(#wpwrap) mark{padding:.2em;background-color:#fcf8e3}html body.bootstrapiso:not(#random_id_string)>.list-inline,html body.bootstrapiso:not(#random_id_string)>.list-unstyled,html body.bootstrapiso>:not(#wpwrap) .list-inline,html body.bootstrapiso>:not(#wpwrap) .list-unstyled{padding-left:0;list-style:none}html body.bootstrapiso:not(#random_id_string)>.list-inline-item,html body.bootstrapiso>:not(#wpwrap) .list-inline-item{display:inline-block}html body.bootstrapiso:not(#random_id_string)>.list-inline-item:not(:last-child),html body.bootstrapiso>:not(#wpwrap) .list-inline-item:not(:last-child){margin-right:.5rem}html body.bootstrapiso:not(#random_id_string)>.initialism,html body.bootstrapiso>:not(#wpwrap) .initialism{font-size:90%;text-transform:uppercase}html body.bootstrapiso:not(#random_id_string)>.blockquote,html body.bootstrapiso>:not(#wpwrap) .blockquote{margin-bottom:1rem;font-size:1.25rem}html body.bootstrapiso:not(#random_id_string)>.blockquote-footer,html body.bootstrapiso>:not(#wpwrap) .blockquote-footer{display:block;font-size:80%;color:#6c757d}html body.bootstrapiso:not(#random_id_string)>.blockquote-footer:before,html body.bootstrapiso>:not(#wpwrap) .blockquote-footer:before{content:"\2014\00A0"}html body.bootstrapiso:not(#random_id_string)>.img-fluid,html body.bootstrapiso>:not(#wpwrap) .img-fluid{max-width:100%;height:auto}html body.bootstrapiso:not(#random_id_string)>.img-thumbnail,html body.bootstrapiso>:not(#wpwrap) .img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}html body.bootstrapiso:not(#random_id_string)>.figure,html body.bootstrapiso>:not(#wpwrap) .figure{display:inline-block}html body.bootstrapiso:not(#random_id_string)>.figure-img,html body.bootstrapiso>:not(#wpwrap) .figure-img{margin-bottom:.5rem;line-height:1}html body.bootstrapiso:not(#random_id_string)>.figure-caption,html body.bootstrapiso>:not(#wpwrap) .figure-caption{font-size:90%;color:#6c757d}html body.bootstrapiso:not(#random_id_string)>code,html body.bootstrapiso>:not(#wpwrap) code{font-size:87.5%;color:#e83e8c;word-wrap:break-word}html body.bootstrapiso:not(#random_id_string)>a>code,html body.bootstrapiso>:not(#wpwrap) a>code{color:inherit}html body.bootstrapiso:not(#random_id_string)>kbd,html body.bootstrapiso>:not(#wpwrap) kbd{padding:.2rem .4rem;font-size:87.5%;color:#fff;background-color:#212529;border-radius:.2rem}html body.bootstrapiso:not(#random_id_string)>kbd kbd,html body.bootstrapiso>:not(#wpwrap) kbd kbd{padding:0;font-size:100%;font-weight:700}html body.bootstrapiso:not(#random_id_string)>pre,html body.bootstrapiso>:not(#wpwrap) pre{display:block;font-size:87.5%;color:#212529}html body.bootstrapiso:not(#random_id_string)>pre code,html body.bootstrapiso>:not(#wpwrap) pre code{font-size:inherit;color:inherit;word-break:normal}html body.bootstrapiso:not(#random_id_string)>.pre-scrollable,html body.bootstrapiso>:not(#wpwrap) .pre-scrollable{max-height:340px;overflow-y:scroll}html body.bootstrapiso:not(#random_id_string)>.container,html body.bootstrapiso>:not(#wpwrap) .container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){html body.bootstrapiso:not(#random_id_string)>.container,html body.bootstrapiso>:not(#wpwrap) .container{max-width:540px}}@media (min-width:768px){html body.bootstrapiso:not(#random_id_string)>.container,html body.bootstrapiso>:not(#wpwrap) .container{max-width:720px}}@media (min-width:992px){html body.bootstrapiso:not(#random_id_string)>.container,html body.bootstrapiso>:not(#wpwrap) .container{max-width:960px}}@media (min-width:1200px){html body.bootstrapiso:not(#random_id_string)>.container,html body.bootstrapiso>:not(#wpwrap) .container{max-width:1140px}}html body.bootstrapiso:not(#random_id_string)>.container-fluid,html body.bootstrapiso:not(#random_id_string)>.container-lg,html body.bootstrapiso:not(#random_id_string)>.container-md,html body.bootstrapiso:not(#random_id_string)>.container-sm,html body.bootstrapiso:not(#random_id_string)>.container-xl,html body.bootstrapiso>:not(#wpwrap) .container-fluid,html body.bootstrapiso>:not(#wpwrap) .container-lg,html body.bootstrapiso>:not(#wpwrap) .container-md,html body.bootstrapiso>:not(#wpwrap) .container-sm,html body.bootstrapiso>:not(#wpwrap) .container-xl{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){html body.bootstrapiso:not(#random_id_string)>.container,html body.bootstrapiso:not(#random_id_string)>.container-sm,html body.bootstrapiso>:not(#wpwrap) .container,html body.bootstrapiso>:not(#wpwrap) .container-sm{max-width:540px}}@media (min-width:768px){html body.bootstrapiso:not(#random_id_string)>.container,html body.bootstrapiso:not(#random_id_string)>.container-md,html body.bootstrapiso:not(#random_id_string)>.container-sm,html body.bootstrapiso>:not(#wpwrap) .container,html body.bootstrapiso>:not(#wpwrap) .container-md,html body.bootstrapiso>:not(#wpwrap) .container-sm{max-width:720px}}@media (min-width:992px){html body.bootstrapiso:not(#random_id_string)>.container,html body.bootstrapiso:not(#random_id_string)>.container-lg,html body.bootstrapiso:not(#random_id_string)>.container-md,html body.bootstrapiso:not(#random_id_string)>.container-sm,html body.bootstrapiso>:not(#wpwrap) .container,html body.bootstrapiso>:not(#wpwrap) .container-lg,html body.bootstrapiso>:not(#wpwrap) .container-md,html body.bootstrapiso>:not(#wpwrap) .container-sm{max-width:960px}}@media (min-width:1200px){html body.bootstrapiso:not(#random_id_string)>.container,html body.bootstrapiso:not(#random_id_string)>.container-lg,html body.bootstrapiso:not(#random_id_string)>.container-md,html body.bootstrapiso:not(#random_id_string)>.container-sm,html body.bootstrapiso:not(#random_id_string)>.container-xl,html body.bootstrapiso>:not(#wpwrap) .container,html body.bootstrapiso>:not(#wpwrap) .container-lg,html body.bootstrapiso>:not(#wpwrap) .container-md,html body.bootstrapiso>:not(#wpwrap) .container-sm,html body.bootstrapiso>:not(#wpwrap) .container-xl{max-width:1140px}}html body.bootstrapiso:not(#random_id_string)>.row,html body.bootstrapiso>:not(#wpwrap) .row{display:flex;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}html body.bootstrapiso:not(#random_id_string)>.no-gutters,html body.bootstrapiso>:not(#wpwrap) .no-gutters{margin-right:0;margin-left:0}html body.bootstrapiso:not(#random_id_string)>.no-gutters>.col,html body.bootstrapiso:not(#random_id_string)>.no-gutters>[class*=col-],html body.bootstrapiso>:not(#wpwrap) .no-gutters>.col,html body.bootstrapiso>:not(#wpwrap) .no-gutters>[class*=col-]{padding-right:0;padding-left:0}html body.bootstrapiso:not(#random_id_string)>.col,html body.bootstrapiso:not(#random_id_string)>.col-1,html body.bootstrapiso:not(#random_id_string)>.col-2,html body.bootstrapiso:not(#random_id_string)>.col-3,html body.bootstrapiso:not(#random_id_string)>.col-4,html body.bootstrapiso:not(#random_id_string)>.col-5,html body.bootstrapiso:not(#random_id_string)>.col-6,html body.bootstrapiso:not(#random_id_string)>.col-7,html body.bootstrapiso:not(#random_id_string)>.col-8,html body.bootstrapiso:not(#random_id_string)>.col-9,html body.bootstrapiso:not(#random_id_string)>.col-10,html body.bootstrapiso:not(#random_id_string)>.col-11,html body.bootstrapiso:not(#random_id_string)>.col-12,html body.bootstrapiso:not(#random_id_string)>.col-auto,html body.bootstrapiso:not(#random_id_string)>.col-lg,html body.bootstrapiso:not(#random_id_string)>.col-lg-1,html body.bootstrapiso:not(#random_id_string)>.col-lg-2,html body.bootstrapiso:not(#random_id_string)>.col-lg-3,html body.bootstrapiso:not(#random_id_string)>.col-lg-4,html body.bootstrapiso:not(#random_id_string)>.col-lg-5,html body.bootstrapiso:not(#random_id_string)>.col-lg-6,html body.bootstrapiso:not(#random_id_string)>.col-lg-7,html body.bootstrapiso:not(#random_id_string)>.col-lg-8,html body.bootstrapiso:not(#random_id_string)>.col-lg-9,html body.bootstrapiso:not(#random_id_string)>.col-lg-10,html body.bootstrapiso:not(#random_id_string)>.col-lg-11,html body.bootstrapiso:not(#random_id_string)>.col-lg-12,html body.bootstrapiso:not(#random_id_string)>.col-lg-auto,html body.bootstrapiso:not(#random_id_string)>.col-md,html body.bootstrapiso:not(#random_id_string)>.col-md-1,html body.bootstrapiso:not(#random_id_string)>.col-md-2,html body.bootstrapiso:not(#random_id_string)>.col-md-3,html body.bootstrapiso:not(#random_id_string)>.col-md-4,html body.bootstrapiso:not(#random_id_string)>.col-md-5,html body.bootstrapiso:not(#random_id_string)>.col-md-6,html body.bootstrapiso:not(#random_id_string)>.col-md-7,html body.bootstrapiso:not(#random_id_string)>.col-md-8,html body.bootstrapiso:not(#random_id_string)>.col-md-9,html body.bootstrapiso:not(#random_id_string)>.col-md-10,html body.bootstrapiso:not(#random_id_string)>.col-md-11,html body.bootstrapiso:not(#random_id_string)>.col-md-12,html body.bootstrapiso:not(#random_id_string)>.col-md-auto,html body.bootstrapiso:not(#random_id_string)>.col-sm,html body.bootstrapiso:not(#random_id_string)>.col-sm-1,html body.bootstrapiso:not(#random_id_string)>.col-sm-2,html body.bootstrapiso:not(#random_id_string)>.col-sm-3,html body.bootstrapiso:not(#random_id_string)>.col-sm-4,html body.bootstrapiso:not(#random_id_string)>.col-sm-5,html body.bootstrapiso:not(#random_id_string)>.col-sm-6,html body.bootstrapiso:not(#random_id_string)>.col-sm-7,html body.bootstrapiso:not(#random_id_string)>.col-sm-8,html body.bootstrapiso:not(#random_id_string)>.col-sm-9,html body.bootstrapiso:not(#random_id_string)>.col-sm-10,html body.bootstrapiso:not(#random_id_string)>.col-sm-11,html body.bootstrapiso:not(#random_id_string)>.col-sm-12,html body.bootstrapiso:not(#random_id_string)>.col-sm-auto,html body.bootstrapiso:not(#random_id_string)>.col-xl,html body.bootstrapiso:not(#random_id_string)>.col-xl-1,html body.bootstrapiso:not(#random_id_string)>.col-xl-2,html body.bootstrapiso:not(#random_id_string)>.col-xl-3,html body.bootstrapiso:not(#random_id_string)>.col-xl-4,html body.bootstrapiso:not(#random_id_string)>.col-xl-5,html body.bootstrapiso:not(#random_id_string)>.col-xl-6,html body.bootstrapiso:not(#random_id_string)>.col-xl-7,html body.bootstrapiso:not(#random_id_string)>.col-xl-8,html body.bootstrapiso:not(#random_id_string)>.col-xl-9,html body.bootstrapiso:not(#random_id_string)>.col-xl-10,html body.bootstrapiso:not(#random_id_string)>.col-xl-11,html body.bootstrapiso:not(#random_id_string)>.col-xl-12,html body.bootstrapiso:not(#random_id_string)>.col-xl-auto,html body.bootstrapiso>:not(#wpwrap) .col,html body.bootstrapiso>:not(#wpwrap) .col-1,html body.bootstrapiso>:not(#wpwrap) .col-2,html body.bootstrapiso>:not(#wpwrap) .col-3,html body.bootstrapiso>:not(#wpwrap) .col-4,html body.bootstrapiso>:not(#wpwrap) .col-5,html body.bootstrapiso>:not(#wpwrap) .col-6,html body.bootstrapiso>:not(#wpwrap) .col-7,html body.bootstrapiso>:not(#wpwrap) .col-8,html body.bootstrapiso>:not(#wpwrap) .col-9,html body.bootstrapiso>:not(#wpwrap) .col-10,html body.bootstrapiso>:not(#wpwrap) .col-11,html body.bootstrapiso>:not(#wpwrap) .col-12,html body.bootstrapiso>:not(#wpwrap) .col-auto,html body.bootstrapiso>:not(#wpwrap) .col-lg,html body.bootstrapiso>:not(#wpwrap) .col-lg-1,html body.bootstrapiso>:not(#wpwrap) .col-lg-2,html body.bootstrapiso>:not(#wpwrap) .col-lg-3,html body.bootstrapiso>:not(#wpwrap) .col-lg-4,html body.bootstrapiso>:not(#wpwrap) .col-lg-5,html body.bootstrapiso>:not(#wpwrap) .col-lg-6,html body.bootstrapiso>:not(#wpwrap) .col-lg-7,html body.bootstrapiso>:not(#wpwrap) .col-lg-8,html body.bootstrapiso>:not(#wpwrap) .col-lg-9,html body.bootstrapiso>:not(#wpwrap) .col-lg-10,html body.bootstrapiso>:not(#wpwrap) .col-lg-11,html body.bootstrapiso>:not(#wpwrap) .col-lg-12,html body.bootstrapiso>:not(#wpwrap) .col-lg-auto,html body.bootstrapiso>:not(#wpwrap) .col-md,html body.bootstrapiso>:not(#wpwrap) .col-md-1,html body.bootstrapiso>:not(#wpwrap) .col-md-2,html body.bootstrapiso>:not(#wpwrap) .col-md-3,html body.bootstrapiso>:not(#wpwrap) .col-md-4,html body.bootstrapiso>:not(#wpwrap) .col-md-5,html body.bootstrapiso>:not(#wpwrap) .col-md-6,html body.bootstrapiso>:not(#wpwrap) .col-md-7,html body.bootstrapiso>:not(#wpwrap) .col-md-8,html body.bootstrapiso>:not(#wpwrap) .col-md-9,html body.bootstrapiso>:not(#wpwrap) .col-md-10,html body.bootstrapiso>:not(#wpwrap) .col-md-11,html body.bootstrapiso>:not(#wpwrap) .col-md-12,html body.bootstrapiso>:not(#wpwrap) .col-md-auto,html body.bootstrapiso>:not(#wpwrap) .col-sm,html body.bootstrapiso>:not(#wpwrap) .col-sm-1,html body.bootstrapiso>:not(#wpwrap) .col-sm-2,html body.bootstrapiso>:not(#wpwrap) .col-sm-3,html body.bootstrapiso>:not(#wpwrap) .col-sm-4,html body.bootstrapiso>:not(#wpwrap) .col-sm-5,html body.bootstrapiso>:not(#wpwrap) .col-sm-6,html body.bootstrapiso>:not(#wpwrap) .col-sm-7,html body.bootstrapiso>:not(#wpwrap) .col-sm-8,html body.bootstrapiso>:not(#wpwrap) .col-sm-9,html body.bootstrapiso>:not(#wpwrap) .col-sm-10,html body.bootstrapiso>:not(#wpwrap) .col-sm-11,html body.bootstrapiso>:not(#wpwrap) .col-sm-12,html body.bootstrapiso>:not(#wpwrap) .col-sm-auto,html body.bootstrapiso>:not(#wpwrap) .col-xl,html body.bootstrapiso>:not(#wpwrap) .col-xl-1,html body.bootstrapiso>:not(#wpwrap) .col-xl-2,html body.bootstrapiso>:not(#wpwrap) .col-xl-3,html body.bootstrapiso>:not(#wpwrap) .col-xl-4,html body.bootstrapiso>:not(#wpwrap) .col-xl-5,html body.bootstrapiso>:not(#wpwrap) .col-xl-6,html body.bootstrapiso>:not(#wpwrap) .col-xl-7,html body.bootstrapiso>:not(#wpwrap) .col-xl-8,html body.bootstrapiso>:not(#wpwrap) .col-xl-9,html body.bootstrapiso>:not(#wpwrap) .col-xl-10,html body.bootstrapiso>:not(#wpwrap) .col-xl-11,html body.bootstrapiso>:not(#wpwrap) .col-xl-12,html body.bootstrapiso>:not(#wpwrap) .col-xl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}html body.bootstrapiso:not(#random_id_string)>.col,html body.bootstrapiso>:not(#wpwrap) .col{flex-basis:0;flex-grow:1;min-width:0;max-width:100%}html body.bootstrapiso:not(#random_id_string)>.row-cols-1>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-1>*{flex:0 0 100%;max-width:100%}html body.bootstrapiso:not(#random_id_string)>.row-cols-2>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-2>*{flex:0 0 50%;max-width:50%}html body.bootstrapiso:not(#random_id_string)>.row-cols-3>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-3>*{flex:0 0 33.333333%;max-width:33.333333%}html body.bootstrapiso:not(#random_id_string)>.row-cols-4>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-4>*{flex:0 0 25%;max-width:25%}html body.bootstrapiso:not(#random_id_string)>.row-cols-5>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-5>*{flex:0 0 20%;max-width:20%}html body.bootstrapiso:not(#random_id_string)>.row-cols-6>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-6>*{flex:0 0 16.666667%;max-width:16.666667%}html body.bootstrapiso:not(#random_id_string)>.col-auto,html body.bootstrapiso>:not(#wpwrap) .col-auto{flex:0 0 auto;width:auto;max-width:100%}html body.bootstrapiso:not(#random_id_string)>.col-1,html body.bootstrapiso>:not(#wpwrap) .col-1{flex:0 0 8.333333%;max-width:8.333333%}html body.bootstrapiso:not(#random_id_string)>.col-2,html body.bootstrapiso>:not(#wpwrap) .col-2{flex:0 0 16.666667%;max-width:16.666667%}html body.bootstrapiso:not(#random_id_string)>.col-3,html body.bootstrapiso>:not(#wpwrap) .col-3{flex:0 0 25%;max-width:25%}html body.bootstrapiso:not(#random_id_string)>.col-4,html body.bootstrapiso>:not(#wpwrap) .col-4{flex:0 0 33.333333%;max-width:33.333333%}html body.bootstrapiso:not(#random_id_string)>.col-5,html body.bootstrapiso>:not(#wpwrap) .col-5{flex:0 0 41.666667%;max-width:41.666667%}html body.bootstrapiso:not(#random_id_string)>.col-6,html body.bootstrapiso>:not(#wpwrap) .col-6{flex:0 0 50%;max-width:50%}html body.bootstrapiso:not(#random_id_string)>.col-7,html body.bootstrapiso>:not(#wpwrap) .col-7{flex:0 0 58.333333%;max-width:58.333333%}html body.bootstrapiso:not(#random_id_string)>.col-8,html body.bootstrapiso>:not(#wpwrap) .col-8{flex:0 0 66.666667%;max-width:66.666667%}html body.bootstrapiso:not(#random_id_string)>.col-9,html body.bootstrapiso>:not(#wpwrap) .col-9{flex:0 0 75%;max-width:75%}html body.bootstrapiso:not(#random_id_string)>.col-10,html body.bootstrapiso>:not(#wpwrap) .col-10{flex:0 0 83.333333%;max-width:83.333333%}html body.bootstrapiso:not(#random_id_string)>.col-11,html body.bootstrapiso>:not(#wpwrap) .col-11{flex:0 0 91.666667%;max-width:91.666667%}html body.bootstrapiso:not(#random_id_string)>.col-12,html body.bootstrapiso>:not(#wpwrap) .col-12{flex:0 0 100%;max-width:100%}html body.bootstrapiso:not(#random_id_string)>.order-first,html body.bootstrapiso>:not(#wpwrap) .order-first{order:-1}html body.bootstrapiso:not(#random_id_string)>.order-last,html body.bootstrapiso>:not(#wpwrap) .order-last{order:13}html body.bootstrapiso:not(#random_id_string)>.order-0,html body.bootstrapiso>:not(#wpwrap) .order-0{order:0}html body.bootstrapiso:not(#random_id_string)>.order-1,html body.bootstrapiso>:not(#wpwrap) .order-1{order:1}html body.bootstrapiso:not(#random_id_string)>.order-2,html body.bootstrapiso>:not(#wpwrap) .order-2{order:2}html body.bootstrapiso:not(#random_id_string)>.order-3,html body.bootstrapiso>:not(#wpwrap) .order-3{order:3}html body.bootstrapiso:not(#random_id_string)>.order-4,html body.bootstrapiso>:not(#wpwrap) .order-4{order:4}html body.bootstrapiso:not(#random_id_string)>.order-5,html body.bootstrapiso>:not(#wpwrap) .order-5{order:5}html body.bootstrapiso:not(#random_id_string)>.order-6,html body.bootstrapiso>:not(#wpwrap) .order-6{order:6}html body.bootstrapiso:not(#random_id_string)>.order-7,html body.bootstrapiso>:not(#wpwrap) .order-7{order:7}html body.bootstrapiso:not(#random_id_string)>.order-8,html body.bootstrapiso>:not(#wpwrap) .order-8{order:8}html body.bootstrapiso:not(#random_id_string)>.order-9,html body.bootstrapiso>:not(#wpwrap) .order-9{order:9}html body.bootstrapiso:not(#random_id_string)>.order-10,html body.bootstrapiso>:not(#wpwrap) .order-10{order:10}html body.bootstrapiso:not(#random_id_string)>.order-11,html body.bootstrapiso>:not(#wpwrap) .order-11{order:11}html body.bootstrapiso:not(#random_id_string)>.order-12,html body.bootstrapiso>:not(#wpwrap) .order-12{order:12}html body.bootstrapiso:not(#random_id_string)>.offset-1,html body.bootstrapiso>:not(#wpwrap) .offset-1{margin-left:8.333333%}html body.bootstrapiso:not(#random_id_string)>.offset-2,html body.bootstrapiso>:not(#wpwrap) .offset-2{margin-left:16.666667%}html body.bootstrapiso:not(#random_id_string)>.offset-3,html body.bootstrapiso>:not(#wpwrap) .offset-3{margin-left:25%}html body.bootstrapiso:not(#random_id_string)>.offset-4,html body.bootstrapiso>:not(#wpwrap) .offset-4{margin-left:33.333333%}html body.bootstrapiso:not(#random_id_string)>.offset-5,html body.bootstrapiso>:not(#wpwrap) .offset-5{margin-left:41.666667%}html body.bootstrapiso:not(#random_id_string)>.offset-6,html body.bootstrapiso>:not(#wpwrap) .offset-6{margin-left:50%}html body.bootstrapiso:not(#random_id_string)>.offset-7,html body.bootstrapiso>:not(#wpwrap) .offset-7{margin-left:58.333333%}html body.bootstrapiso:not(#random_id_string)>.offset-8,html body.bootstrapiso>:not(#wpwrap) .offset-8{margin-left:66.666667%}html body.bootstrapiso:not(#random_id_string)>.offset-9,html body.bootstrapiso>:not(#wpwrap) .offset-9{margin-left:75%}html body.bootstrapiso:not(#random_id_string)>.offset-10,html body.bootstrapiso>:not(#wpwrap) .offset-10{margin-left:83.333333%}html body.bootstrapiso:not(#random_id_string)>.offset-11,html body.bootstrapiso>:not(#wpwrap) .offset-11{margin-left:91.666667%}@media (min-width:576px){html body.bootstrapiso:not(#random_id_string)>.col-sm,html body.bootstrapiso>:not(#wpwrap) .col-sm{flex-basis:0;flex-grow:1;min-width:0;max-width:100%}html body.bootstrapiso:not(#random_id_string)>.row-cols-sm-1>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-sm-1>*{flex:0 0 100%;max-width:100%}html body.bootstrapiso:not(#random_id_string)>.row-cols-sm-2>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-sm-2>*{flex:0 0 50%;max-width:50%}html body.bootstrapiso:not(#random_id_string)>.row-cols-sm-3>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-sm-3>*{flex:0 0 33.333333%;max-width:33.333333%}html body.bootstrapiso:not(#random_id_string)>.row-cols-sm-4>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-sm-4>*{flex:0 0 25%;max-width:25%}html body.bootstrapiso:not(#random_id_string)>.row-cols-sm-5>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-sm-5>*{flex:0 0 20%;max-width:20%}html body.bootstrapiso:not(#random_id_string)>.row-cols-sm-6>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-sm-6>*{flex:0 0 16.666667%;max-width:16.666667%}html body.bootstrapiso:not(#random_id_string)>.col-sm-auto,html body.bootstrapiso>:not(#wpwrap) .col-sm-auto{flex:0 0 auto;width:auto;max-width:100%}html body.bootstrapiso:not(#random_id_string)>.col-sm-1,html body.bootstrapiso>:not(#wpwrap) .col-sm-1{flex:0 0 8.333333%;max-width:8.333333%}html body.bootstrapiso:not(#random_id_string)>.col-sm-2,html body.bootstrapiso>:not(#wpwrap) .col-sm-2{flex:0 0 16.666667%;max-width:16.666667%}html body.bootstrapiso:not(#random_id_string)>.col-sm-3,html body.bootstrapiso>:not(#wpwrap) .col-sm-3{flex:0 0 25%;max-width:25%}html body.bootstrapiso:not(#random_id_string)>.col-sm-4,html body.bootstrapiso>:not(#wpwrap) .col-sm-4{flex:0 0 33.333333%;max-width:33.333333%}html body.bootstrapiso:not(#random_id_string)>.col-sm-5,html body.bootstrapiso>:not(#wpwrap) .col-sm-5{flex:0 0 41.666667%;max-width:41.666667%}html body.bootstrapiso:not(#random_id_string)>.col-sm-6,html body.bootstrapiso>:not(#wpwrap) .col-sm-6{flex:0 0 50%;max-width:50%}html body.bootstrapiso:not(#random_id_string)>.col-sm-7,html body.bootstrapiso>:not(#wpwrap) .col-sm-7{flex:0 0 58.333333%;max-width:58.333333%}html body.bootstrapiso:not(#random_id_string)>.col-sm-8,html body.bootstrapiso>:not(#wpwrap) .col-sm-8{flex:0 0 66.666667%;max-width:66.666667%}html body.bootstrapiso:not(#random_id_string)>.col-sm-9,html body.bootstrapiso>:not(#wpwrap) .col-sm-9{flex:0 0 75%;max-width:75%}html body.bootstrapiso:not(#random_id_string)>.col-sm-10,html body.bootstrapiso>:not(#wpwrap) .col-sm-10{flex:0 0 83.333333%;max-width:83.333333%}html body.bootstrapiso:not(#random_id_string)>.col-sm-11,html body.bootstrapiso>:not(#wpwrap) .col-sm-11{flex:0 0 91.666667%;max-width:91.666667%}html body.bootstrapiso:not(#random_id_string)>.col-sm-12,html body.bootstrapiso>:not(#wpwrap) .col-sm-12{flex:0 0 100%;max-width:100%}html body.bootstrapiso:not(#random_id_string)>.order-sm-first,html body.bootstrapiso>:not(#wpwrap) .order-sm-first{order:-1}html body.bootstrapiso:not(#random_id_string)>.order-sm-last,html body.bootstrapiso>:not(#wpwrap) .order-sm-last{order:13}html body.bootstrapiso:not(#random_id_string)>.order-sm-0,html body.bootstrapiso>:not(#wpwrap) .order-sm-0{order:0}html body.bootstrapiso:not(#random_id_string)>.order-sm-1,html body.bootstrapiso>:not(#wpwrap) .order-sm-1{order:1}html body.bootstrapiso:not(#random_id_string)>.order-sm-2,html body.bootstrapiso>:not(#wpwrap) .order-sm-2{order:2}html body.bootstrapiso:not(#random_id_string)>.order-sm-3,html body.bootstrapiso>:not(#wpwrap) .order-sm-3{order:3}html body.bootstrapiso:not(#random_id_string)>.order-sm-4,html body.bootstrapiso>:not(#wpwrap) .order-sm-4{order:4}html body.bootstrapiso:not(#random_id_string)>.order-sm-5,html body.bootstrapiso>:not(#wpwrap) .order-sm-5{order:5}html body.bootstrapiso:not(#random_id_string)>.order-sm-6,html body.bootstrapiso>:not(#wpwrap) .order-sm-6{order:6}html body.bootstrapiso:not(#random_id_string)>.order-sm-7,html body.bootstrapiso>:not(#wpwrap) .order-sm-7{order:7}html body.bootstrapiso:not(#random_id_string)>.order-sm-8,html body.bootstrapiso>:not(#wpwrap) .order-sm-8{order:8}html body.bootstrapiso:not(#random_id_string)>.order-sm-9,html body.bootstrapiso>:not(#wpwrap) .order-sm-9{order:9}html body.bootstrapiso:not(#random_id_string)>.order-sm-10,html body.bootstrapiso>:not(#wpwrap) .order-sm-10{order:10}html body.bootstrapiso:not(#random_id_string)>.order-sm-11,html body.bootstrapiso>:not(#wpwrap) .order-sm-11{order:11}html body.bootstrapiso:not(#random_id_string)>.order-sm-12,html body.bootstrapiso>:not(#wpwrap) .order-sm-12{order:12}html body.bootstrapiso:not(#random_id_string)>.offset-sm-0,html body.bootstrapiso>:not(#wpwrap) .offset-sm-0{margin-left:0}html body.bootstrapiso:not(#random_id_string)>.offset-sm-1,html body.bootstrapiso>:not(#wpwrap) .offset-sm-1{margin-left:8.333333%}html body.bootstrapiso:not(#random_id_string)>.offset-sm-2,html body.bootstrapiso>:not(#wpwrap) .offset-sm-2{margin-left:16.666667%}html body.bootstrapiso:not(#random_id_string)>.offset-sm-3,html body.bootstrapiso>:not(#wpwrap) .offset-sm-3{margin-left:25%}html body.bootstrapiso:not(#random_id_string)>.offset-sm-4,html body.bootstrapiso>:not(#wpwrap) .offset-sm-4{margin-left:33.333333%}html body.bootstrapiso:not(#random_id_string)>.offset-sm-5,html body.bootstrapiso>:not(#wpwrap) .offset-sm-5{margin-left:41.666667%}html body.bootstrapiso:not(#random_id_string)>.offset-sm-6,html body.bootstrapiso>:not(#wpwrap) .offset-sm-6{margin-left:50%}html body.bootstrapiso:not(#random_id_string)>.offset-sm-7,html body.bootstrapiso>:not(#wpwrap) .offset-sm-7{margin-left:58.333333%}html body.bootstrapiso:not(#random_id_string)>.offset-sm-8,html body.bootstrapiso>:not(#wpwrap) .offset-sm-8{margin-left:66.666667%}html body.bootstrapiso:not(#random_id_string)>.offset-sm-9,html body.bootstrapiso>:not(#wpwrap) .offset-sm-9{margin-left:75%}html body.bootstrapiso:not(#random_id_string)>.offset-sm-10,html body.bootstrapiso>:not(#wpwrap) .offset-sm-10{margin-left:83.333333%}html body.bootstrapiso:not(#random_id_string)>.offset-sm-11,html body.bootstrapiso>:not(#wpwrap) .offset-sm-11{margin-left:91.666667%}}@media (min-width:768px){html body.bootstrapiso:not(#random_id_string)>.col-md,html body.bootstrapiso>:not(#wpwrap) .col-md{flex-basis:0;flex-grow:1;min-width:0;max-width:100%}html body.bootstrapiso:not(#random_id_string)>.row-cols-md-1>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-md-1>*{flex:0 0 100%;max-width:100%}html body.bootstrapiso:not(#random_id_string)>.row-cols-md-2>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-md-2>*{flex:0 0 50%;max-width:50%}html body.bootstrapiso:not(#random_id_string)>.row-cols-md-3>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-md-3>*{flex:0 0 33.333333%;max-width:33.333333%}html body.bootstrapiso:not(#random_id_string)>.row-cols-md-4>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-md-4>*{flex:0 0 25%;max-width:25%}html body.bootstrapiso:not(#random_id_string)>.row-cols-md-5>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-md-5>*{flex:0 0 20%;max-width:20%}html body.bootstrapiso:not(#random_id_string)>.row-cols-md-6>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-md-6>*{flex:0 0 16.666667%;max-width:16.666667%}html body.bootstrapiso:not(#random_id_string)>.col-md-auto,html body.bootstrapiso>:not(#wpwrap) .col-md-auto{flex:0 0 auto;width:auto;max-width:100%}html body.bootstrapiso:not(#random_id_string)>.col-md-1,html body.bootstrapiso>:not(#wpwrap) .col-md-1{flex:0 0 8.333333%;max-width:8.333333%}html body.bootstrapiso:not(#random_id_string)>.col-md-2,html body.bootstrapiso>:not(#wpwrap) .col-md-2{flex:0 0 16.666667%;max-width:16.666667%}html body.bootstrapiso:not(#random_id_string)>.col-md-3,html body.bootstrapiso>:not(#wpwrap) .col-md-3{flex:0 0 25%;max-width:25%}html body.bootstrapiso:not(#random_id_string)>.col-md-4,html body.bootstrapiso>:not(#wpwrap) .col-md-4{flex:0 0 33.333333%;max-width:33.333333%}html body.bootstrapiso:not(#random_id_string)>.col-md-5,html body.bootstrapiso>:not(#wpwrap) .col-md-5{flex:0 0 41.666667%;max-width:41.666667%}html body.bootstrapiso:not(#random_id_string)>.col-md-6,html body.bootstrapiso>:not(#wpwrap) .col-md-6{flex:0 0 50%;max-width:50%}html body.bootstrapiso:not(#random_id_string)>.col-md-7,html body.bootstrapiso>:not(#wpwrap) .col-md-7{flex:0 0 58.333333%;max-width:58.333333%}html body.bootstrapiso:not(#random_id_string)>.col-md-8,html body.bootstrapiso>:not(#wpwrap) .col-md-8{flex:0 0 66.666667%;max-width:66.666667%}html body.bootstrapiso:not(#random_id_string)>.col-md-9,html body.bootstrapiso>:not(#wpwrap) .col-md-9{flex:0 0 75%;max-width:75%}html body.bootstrapiso:not(#random_id_string)>.col-md-10,html body.bootstrapiso>:not(#wpwrap) .col-md-10{flex:0 0 83.333333%;max-width:83.333333%}html body.bootstrapiso:not(#random_id_string)>.col-md-11,html body.bootstrapiso>:not(#wpwrap) .col-md-11{flex:0 0 91.666667%;max-width:91.666667%}html body.bootstrapiso:not(#random_id_string)>.col-md-12,html body.bootstrapiso>:not(#wpwrap) .col-md-12{flex:0 0 100%;max-width:100%}html body.bootstrapiso:not(#random_id_string)>.order-md-first,html body.bootstrapiso>:not(#wpwrap) .order-md-first{order:-1}html body.bootstrapiso:not(#random_id_string)>.order-md-last,html body.bootstrapiso>:not(#wpwrap) .order-md-last{order:13}html body.bootstrapiso:not(#random_id_string)>.order-md-0,html body.bootstrapiso>:not(#wpwrap) .order-md-0{order:0}html body.bootstrapiso:not(#random_id_string)>.order-md-1,html body.bootstrapiso>:not(#wpwrap) .order-md-1{order:1}html body.bootstrapiso:not(#random_id_string)>.order-md-2,html body.bootstrapiso>:not(#wpwrap) .order-md-2{order:2}html body.bootstrapiso:not(#random_id_string)>.order-md-3,html body.bootstrapiso>:not(#wpwrap) .order-md-3{order:3}html body.bootstrapiso:not(#random_id_string)>.order-md-4,html body.bootstrapiso>:not(#wpwrap) .order-md-4{order:4}html body.bootstrapiso:not(#random_id_string)>.order-md-5,html body.bootstrapiso>:not(#wpwrap) .order-md-5{order:5}html body.bootstrapiso:not(#random_id_string)>.order-md-6,html body.bootstrapiso>:not(#wpwrap) .order-md-6{order:6}html body.bootstrapiso:not(#random_id_string)>.order-md-7,html body.bootstrapiso>:not(#wpwrap) .order-md-7{order:7}html body.bootstrapiso:not(#random_id_string)>.order-md-8,html body.bootstrapiso>:not(#wpwrap) .order-md-8{order:8}html body.bootstrapiso:not(#random_id_string)>.order-md-9,html body.bootstrapiso>:not(#wpwrap) .order-md-9{order:9}html body.bootstrapiso:not(#random_id_string)>.order-md-10,html body.bootstrapiso>:not(#wpwrap) .order-md-10{order:10}html body.bootstrapiso:not(#random_id_string)>.order-md-11,html body.bootstrapiso>:not(#wpwrap) .order-md-11{order:11}html body.bootstrapiso:not(#random_id_string)>.order-md-12,html body.bootstrapiso>:not(#wpwrap) .order-md-12{order:12}html body.bootstrapiso:not(#random_id_string)>.offset-md-0,html body.bootstrapiso>:not(#wpwrap) .offset-md-0{margin-left:0}html body.bootstrapiso:not(#random_id_string)>.offset-md-1,html body.bootstrapiso>:not(#wpwrap) .offset-md-1{margin-left:8.333333%}html body.bootstrapiso:not(#random_id_string)>.offset-md-2,html body.bootstrapiso>:not(#wpwrap) .offset-md-2{margin-left:16.666667%}html body.bootstrapiso:not(#random_id_string)>.offset-md-3,html body.bootstrapiso>:not(#wpwrap) .offset-md-3{margin-left:25%}html body.bootstrapiso:not(#random_id_string)>.offset-md-4,html body.bootstrapiso>:not(#wpwrap) .offset-md-4{margin-left:33.333333%}html body.bootstrapiso:not(#random_id_string)>.offset-md-5,html body.bootstrapiso>:not(#wpwrap) .offset-md-5{margin-left:41.666667%}html body.bootstrapiso:not(#random_id_string)>.offset-md-6,html body.bootstrapiso>:not(#wpwrap) .offset-md-6{margin-left:50%}html body.bootstrapiso:not(#random_id_string)>.offset-md-7,html body.bootstrapiso>:not(#wpwrap) .offset-md-7{margin-left:58.333333%}html body.bootstrapiso:not(#random_id_string)>.offset-md-8,html body.bootstrapiso>:not(#wpwrap) .offset-md-8{margin-left:66.666667%}html body.bootstrapiso:not(#random_id_string)>.offset-md-9,html body.bootstrapiso>:not(#wpwrap) .offset-md-9{margin-left:75%}html body.bootstrapiso:not(#random_id_string)>.offset-md-10,html body.bootstrapiso>:not(#wpwrap) .offset-md-10{margin-left:83.333333%}html body.bootstrapiso:not(#random_id_string)>.offset-md-11,html body.bootstrapiso>:not(#wpwrap) .offset-md-11{margin-left:91.666667%}}@media (min-width:992px){html body.bootstrapiso:not(#random_id_string)>.col-lg,html body.bootstrapiso>:not(#wpwrap) .col-lg{flex-basis:0;flex-grow:1;min-width:0;max-width:100%}html body.bootstrapiso:not(#random_id_string)>.row-cols-lg-1>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-lg-1>*{flex:0 0 100%;max-width:100%}html body.bootstrapiso:not(#random_id_string)>.row-cols-lg-2>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-lg-2>*{flex:0 0 50%;max-width:50%}html body.bootstrapiso:not(#random_id_string)>.row-cols-lg-3>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-lg-3>*{flex:0 0 33.333333%;max-width:33.333333%}html body.bootstrapiso:not(#random_id_string)>.row-cols-lg-4>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-lg-4>*{flex:0 0 25%;max-width:25%}html body.bootstrapiso:not(#random_id_string)>.row-cols-lg-5>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-lg-5>*{flex:0 0 20%;max-width:20%}html body.bootstrapiso:not(#random_id_string)>.row-cols-lg-6>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-lg-6>*{flex:0 0 16.666667%;max-width:16.666667%}html body.bootstrapiso:not(#random_id_string)>.col-lg-auto,html body.bootstrapiso>:not(#wpwrap) .col-lg-auto{flex:0 0 auto;width:auto;max-width:100%}html body.bootstrapiso:not(#random_id_string)>.col-lg-1,html body.bootstrapiso>:not(#wpwrap) .col-lg-1{flex:0 0 8.333333%;max-width:8.333333%}html body.bootstrapiso:not(#random_id_string)>.col-lg-2,html body.bootstrapiso>:not(#wpwrap) .col-lg-2{flex:0 0 16.666667%;max-width:16.666667%}html body.bootstrapiso:not(#random_id_string)>.col-lg-3,html body.bootstrapiso>:not(#wpwrap) .col-lg-3{flex:0 0 25%;max-width:25%}html body.bootstrapiso:not(#random_id_string)>.col-lg-4,html body.bootstrapiso>:not(#wpwrap) .col-lg-4{flex:0 0 33.333333%;max-width:33.333333%}html body.bootstrapiso:not(#random_id_string)>.col-lg-5,html body.bootstrapiso>:not(#wpwrap) .col-lg-5{flex:0 0 41.666667%;max-width:41.666667%}html body.bootstrapiso:not(#random_id_string)>.col-lg-6,html body.bootstrapiso>:not(#wpwrap) .col-lg-6{flex:0 0 50%;max-width:50%}html body.bootstrapiso:not(#random_id_string)>.col-lg-7,html body.bootstrapiso>:not(#wpwrap) .col-lg-7{flex:0 0 58.333333%;max-width:58.333333%}html body.bootstrapiso:not(#random_id_string)>.col-lg-8,html body.bootstrapiso>:not(#wpwrap) .col-lg-8{flex:0 0 66.666667%;max-width:66.666667%}html body.bootstrapiso:not(#random_id_string)>.col-lg-9,html body.bootstrapiso>:not(#wpwrap) .col-lg-9{flex:0 0 75%;max-width:75%}html body.bootstrapiso:not(#random_id_string)>.col-lg-10,html body.bootstrapiso>:not(#wpwrap) .col-lg-10{flex:0 0 83.333333%;max-width:83.333333%}html body.bootstrapiso:not(#random_id_string)>.col-lg-11,html body.bootstrapiso>:not(#wpwrap) .col-lg-11{flex:0 0 91.666667%;max-width:91.666667%}html body.bootstrapiso:not(#random_id_string)>.col-lg-12,html body.bootstrapiso>:not(#wpwrap) .col-lg-12{flex:0 0 100%;max-width:100%}html body.bootstrapiso:not(#random_id_string)>.order-lg-first,html body.bootstrapiso>:not(#wpwrap) .order-lg-first{order:-1}html body.bootstrapiso:not(#random_id_string)>.order-lg-last,html body.bootstrapiso>:not(#wpwrap) .order-lg-last{order:13}html body.bootstrapiso:not(#random_id_string)>.order-lg-0,html body.bootstrapiso>:not(#wpwrap) .order-lg-0{order:0}html body.bootstrapiso:not(#random_id_string)>.order-lg-1,html body.bootstrapiso>:not(#wpwrap) .order-lg-1{order:1}html body.bootstrapiso:not(#random_id_string)>.order-lg-2,html body.bootstrapiso>:not(#wpwrap) .order-lg-2{order:2}html body.bootstrapiso:not(#random_id_string)>.order-lg-3,html body.bootstrapiso>:not(#wpwrap) .order-lg-3{order:3}html body.bootstrapiso:not(#random_id_string)>.order-lg-4,html body.bootstrapiso>:not(#wpwrap) .order-lg-4{order:4}html body.bootstrapiso:not(#random_id_string)>.order-lg-5,html body.bootstrapiso>:not(#wpwrap) .order-lg-5{order:5}html body.bootstrapiso:not(#random_id_string)>.order-lg-6,html body.bootstrapiso>:not(#wpwrap) .order-lg-6{order:6}html body.bootstrapiso:not(#random_id_string)>.order-lg-7,html body.bootstrapiso>:not(#wpwrap) .order-lg-7{order:7}html body.bootstrapiso:not(#random_id_string)>.order-lg-8,html body.bootstrapiso>:not(#wpwrap) .order-lg-8{order:8}html body.bootstrapiso:not(#random_id_string)>.order-lg-9,html body.bootstrapiso>:not(#wpwrap) .order-lg-9{order:9}html body.bootstrapiso:not(#random_id_string)>.order-lg-10,html body.bootstrapiso>:not(#wpwrap) .order-lg-10{order:10}html body.bootstrapiso:not(#random_id_string)>.order-lg-11,html body.bootstrapiso>:not(#wpwrap) .order-lg-11{order:11}html body.bootstrapiso:not(#random_id_string)>.order-lg-12,html body.bootstrapiso>:not(#wpwrap) .order-lg-12{order:12}html body.bootstrapiso:not(#random_id_string)>.offset-lg-0,html body.bootstrapiso>:not(#wpwrap) .offset-lg-0{margin-left:0}html body.bootstrapiso:not(#random_id_string)>.offset-lg-1,html body.bootstrapiso>:not(#wpwrap) .offset-lg-1{margin-left:8.333333%}html body.bootstrapiso:not(#random_id_string)>.offset-lg-2,html body.bootstrapiso>:not(#wpwrap) .offset-lg-2{margin-left:16.666667%}html body.bootstrapiso:not(#random_id_string)>.offset-lg-3,html body.bootstrapiso>:not(#wpwrap) .offset-lg-3{margin-left:25%}html body.bootstrapiso:not(#random_id_string)>.offset-lg-4,html body.bootstrapiso>:not(#wpwrap) .offset-lg-4{margin-left:33.333333%}html body.bootstrapiso:not(#random_id_string)>.offset-lg-5,html body.bootstrapiso>:not(#wpwrap) .offset-lg-5{margin-left:41.666667%}html body.bootstrapiso:not(#random_id_string)>.offset-lg-6,html body.bootstrapiso>:not(#wpwrap) .offset-lg-6{margin-left:50%}html body.bootstrapiso:not(#random_id_string)>.offset-lg-7,html body.bootstrapiso>:not(#wpwrap) .offset-lg-7{margin-left:58.333333%}html body.bootstrapiso:not(#random_id_string)>.offset-lg-8,html body.bootstrapiso>:not(#wpwrap) .offset-lg-8{margin-left:66.666667%}html body.bootstrapiso:not(#random_id_string)>.offset-lg-9,html body.bootstrapiso>:not(#wpwrap) .offset-lg-9{margin-left:75%}html body.bootstrapiso:not(#random_id_string)>.offset-lg-10,html body.bootstrapiso>:not(#wpwrap) .offset-lg-10{margin-left:83.333333%}html body.bootstrapiso:not(#random_id_string)>.offset-lg-11,html body.bootstrapiso>:not(#wpwrap) .offset-lg-11{margin-left:91.666667%}}@media (min-width:1200px){html body.bootstrapiso:not(#random_id_string)>.col-xl,html body.bootstrapiso>:not(#wpwrap) .col-xl{flex-basis:0;flex-grow:1;min-width:0;max-width:100%}html body.bootstrapiso:not(#random_id_string)>.row-cols-xl-1>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-xl-1>*{flex:0 0 100%;max-width:100%}html body.bootstrapiso:not(#random_id_string)>.row-cols-xl-2>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-xl-2>*{flex:0 0 50%;max-width:50%}html body.bootstrapiso:not(#random_id_string)>.row-cols-xl-3>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-xl-3>*{flex:0 0 33.333333%;max-width:33.333333%}html body.bootstrapiso:not(#random_id_string)>.row-cols-xl-4>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-xl-4>*{flex:0 0 25%;max-width:25%}html body.bootstrapiso:not(#random_id_string)>.row-cols-xl-5>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-xl-5>*{flex:0 0 20%;max-width:20%}html body.bootstrapiso:not(#random_id_string)>.row-cols-xl-6>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-xl-6>*{flex:0 0 16.666667%;max-width:16.666667%}html body.bootstrapiso:not(#random_id_string)>.col-xl-auto,html body.bootstrapiso>:not(#wpwrap) .col-xl-auto{flex:0 0 auto;width:auto;max-width:100%}html body.bootstrapiso:not(#random_id_string)>.col-xl-1,html body.bootstrapiso>:not(#wpwrap) .col-xl-1{flex:0 0 8.333333%;max-width:8.333333%}html body.bootstrapiso:not(#random_id_string)>.col-xl-2,html body.bootstrapiso>:not(#wpwrap) .col-xl-2{flex:0 0 16.666667%;max-width:16.666667%}html body.bootstrapiso:not(#random_id_string)>.col-xl-3,html body.bootstrapiso>:not(#wpwrap) .col-xl-3{flex:0 0 25%;max-width:25%}html body.bootstrapiso:not(#random_id_string)>.col-xl-4,html body.bootstrapiso>:not(#wpwrap) .col-xl-4{flex:0 0 33.333333%;max-width:33.333333%}html body.bootstrapiso:not(#random_id_string)>.col-xl-5,html body.bootstrapiso>:not(#wpwrap) .col-xl-5{flex:0 0 41.666667%;max-width:41.666667%}html body.bootstrapiso:not(#random_id_string)>.col-xl-6,html body.bootstrapiso>:not(#wpwrap) .col-xl-6{flex:0 0 50%;max-width:50%}html body.bootstrapiso:not(#random_id_string)>.col-xl-7,html body.bootstrapiso>:not(#wpwrap) .col-xl-7{flex:0 0 58.333333%;max-width:58.333333%}html body.bootstrapiso:not(#random_id_string)>.col-xl-8,html body.bootstrapiso>:not(#wpwrap) .col-xl-8{flex:0 0 66.666667%;max-width:66.666667%}html body.bootstrapiso:not(#random_id_string)>.col-xl-9,html body.bootstrapiso>:not(#wpwrap) .col-xl-9{flex:0 0 75%;max-width:75%}html body.bootstrapiso:not(#random_id_string)>.col-xl-10,html body.bootstrapiso>:not(#wpwrap) .col-xl-10{flex:0 0 83.333333%;max-width:83.333333%}html body.bootstrapiso:not(#random_id_string)>.col-xl-11,html body.bootstrapiso>:not(#wpwrap) .col-xl-11{flex:0 0 91.666667%;max-width:91.666667%}html body.bootstrapiso:not(#random_id_string)>.col-xl-12,html body.bootstrapiso>:not(#wpwrap) .col-xl-12{flex:0 0 100%;max-width:100%}html body.bootstrapiso:not(#random_id_string)>.order-xl-first,html body.bootstrapiso>:not(#wpwrap) .order-xl-first{order:-1}html body.bootstrapiso:not(#random_id_string)>.order-xl-last,html body.bootstrapiso>:not(#wpwrap) .order-xl-last{order:13}html body.bootstrapiso:not(#random_id_string)>.order-xl-0,html body.bootstrapiso>:not(#wpwrap) .order-xl-0{order:0}html body.bootstrapiso:not(#random_id_string)>.order-xl-1,html body.bootstrapiso>:not(#wpwrap) .order-xl-1{order:1}html body.bootstrapiso:not(#random_id_string)>.order-xl-2,html body.bootstrapiso>:not(#wpwrap) .order-xl-2{order:2}html body.bootstrapiso:not(#random_id_string)>.order-xl-3,html body.bootstrapiso>:not(#wpwrap) .order-xl-3{order:3}html body.bootstrapiso:not(#random_id_string)>.order-xl-4,html body.bootstrapiso>:not(#wpwrap) .order-xl-4{order:4}html body.bootstrapiso:not(#random_id_string)>.order-xl-5,html body.bootstrapiso>:not(#wpwrap) .order-xl-5{order:5}html body.bootstrapiso:not(#random_id_string)>.order-xl-6,html body.bootstrapiso>:not(#wpwrap) .order-xl-6{order:6}html body.bootstrapiso:not(#random_id_string)>.order-xl-7,html body.bootstrapiso>:not(#wpwrap) .order-xl-7{order:7}html body.bootstrapiso:not(#random_id_string)>.order-xl-8,html body.bootstrapiso>:not(#wpwrap) .order-xl-8{order:8}html body.bootstrapiso:not(#random_id_string)>.order-xl-9,html body.bootstrapiso>:not(#wpwrap) .order-xl-9{order:9}html body.bootstrapiso:not(#random_id_string)>.order-xl-10,html body.bootstrapiso>:not(#wpwrap) .order-xl-10{order:10}html body.bootstrapiso:not(#random_id_string)>.order-xl-11,html body.bootstrapiso>:not(#wpwrap) .order-xl-11{order:11}html body.bootstrapiso:not(#random_id_string)>.order-xl-12,html body.bootstrapiso>:not(#wpwrap) .order-xl-12{order:12}html body.bootstrapiso:not(#random_id_string)>.offset-xl-0,html body.bootstrapiso>:not(#wpwrap) .offset-xl-0{margin-left:0}html body.bootstrapiso:not(#random_id_string)>.offset-xl-1,html body.bootstrapiso>:not(#wpwrap) .offset-xl-1{margin-left:8.333333%}html body.bootstrapiso:not(#random_id_string)>.offset-xl-2,html body.bootstrapiso>:not(#wpwrap) .offset-xl-2{margin-left:16.666667%}html body.bootstrapiso:not(#random_id_string)>.offset-xl-3,html body.bootstrapiso>:not(#wpwrap) .offset-xl-3{margin-left:25%}html body.bootstrapiso:not(#random_id_string)>.offset-xl-4,html body.bootstrapiso>:not(#wpwrap) .offset-xl-4{margin-left:33.333333%}html body.bootstrapiso:not(#random_id_string)>.offset-xl-5,html body.bootstrapiso>:not(#wpwrap) .offset-xl-5{margin-left:41.666667%}html body.bootstrapiso:not(#random_id_string)>.offset-xl-6,html body.bootstrapiso>:not(#wpwrap) .offset-xl-6{margin-left:50%}html body.bootstrapiso:not(#random_id_string)>.offset-xl-7,html body.bootstrapiso>:not(#wpwrap) .offset-xl-7{margin-left:58.333333%}html body.bootstrapiso:not(#random_id_string)>.offset-xl-8,html body.bootstrapiso>:not(#wpwrap) .offset-xl-8{margin-left:66.666667%}html body.bootstrapiso:not(#random_id_string)>.offset-xl-9,html body.bootstrapiso>:not(#wpwrap) .offset-xl-9{margin-left:75%}html body.bootstrapiso:not(#random_id_string)>.offset-xl-10,html body.bootstrapiso>:not(#wpwrap) .offset-xl-10{margin-left:83.333333%}html body.bootstrapiso:not(#random_id_string)>.offset-xl-11,html body.bootstrapiso>:not(#wpwrap) .offset-xl-11{margin-left:91.666667%}}html body.bootstrapiso:not(#random_id_string)>.table,html body.bootstrapiso>:not(#wpwrap) .table{width:100%;margin-bottom:1rem;color:#212529}html body.bootstrapiso:not(#random_id_string)>.table td,html body.bootstrapiso:not(#random_id_string)>.table th,html body.bootstrapiso>:not(#wpwrap) .table td,html body.bootstrapiso>:not(#wpwrap) .table th{padding:.75rem;vertical-align:top;border-top:1px solid #dee2e6}html body.bootstrapiso:not(#random_id_string)>.table thead th,html body.bootstrapiso>:not(#wpwrap) .table thead th{vertical-align:bottom;border-bottom:2px solid #dee2e6}html body.bootstrapiso:not(#random_id_string)>.table tbody+tbody,html body.bootstrapiso>:not(#wpwrap) .table tbody+tbody{border-top:2px solid #dee2e6}html body.bootstrapiso:not(#random_id_string)>.table-sm td,html body.bootstrapiso:not(#random_id_string)>.table-sm th,html body.bootstrapiso>:not(#wpwrap) .table-sm td,html body.bootstrapiso>:not(#wpwrap) .table-sm th{padding:.3rem}html body.bootstrapiso:not(#random_id_string)>.table-bordered,html body.bootstrapiso:not(#random_id_string)>.table-bordered td,html body.bootstrapiso:not(#random_id_string)>.table-bordered th,html body.bootstrapiso>:not(#wpwrap) .table-bordered,html body.bootstrapiso>:not(#wpwrap) .table-bordered td,html body.bootstrapiso>:not(#wpwrap) .table-bordered th{border:1px solid #dee2e6}html body.bootstrapiso:not(#random_id_string)>.table-bordered thead td,html body.bootstrapiso:not(#random_id_string)>.table-bordered thead th,html body.bootstrapiso>:not(#wpwrap) .table-bordered thead td,html body.bootstrapiso>:not(#wpwrap) .table-bordered thead th{border-bottom-width:2px}html body.bootstrapiso:not(#random_id_string)>.table-borderless tbody+tbody,html body.bootstrapiso:not(#random_id_string)>.table-borderless td,html body.bootstrapiso:not(#random_id_string)>.table-borderless th,html body.bootstrapiso:not(#random_id_string)>.table-borderless thead th,html body.bootstrapiso>:not(#wpwrap) .table-borderless tbody+tbody,html body.bootstrapiso>:not(#wpwrap) .table-borderless td,html body.bootstrapiso>:not(#wpwrap) .table-borderless th,html body.bootstrapiso>:not(#wpwrap) .table-borderless thead th{border:0}html body.bootstrapiso:not(#random_id_string)>.table-striped tbody tr:nth-of-type(odd),html body.bootstrapiso>:not(#wpwrap) .table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}html body.bootstrapiso:not(#random_id_string)>.table-hover tbody tr:hover,html body.bootstrapiso>:not(#wpwrap) .table-hover tbody tr:hover{color:#212529;background-color:rgba(0,0,0,.075)}html body.bootstrapiso:not(#random_id_string)>.table-primary,html body.bootstrapiso:not(#random_id_string)>.table-primary>td,html body.bootstrapiso:not(#random_id_string)>.table-primary>th,html body.bootstrapiso>:not(#wpwrap) .table-primary,html body.bootstrapiso>:not(#wpwrap) .table-primary>td,html body.bootstrapiso>:not(#wpwrap) .table-primary>th{background-color:#b8daff}html body.bootstrapiso:not(#random_id_string)>.table-primary tbody+tbody,html body.bootstrapiso:not(#random_id_string)>.table-primary td,html body.bootstrapiso:not(#random_id_string)>.table-primary th,html body.bootstrapiso:not(#random_id_string)>.table-primary thead th,html body.bootstrapiso>:not(#wpwrap) .table-primary tbody+tbody,html body.bootstrapiso>:not(#wpwrap) .table-primary td,html body.bootstrapiso>:not(#wpwrap) .table-primary th,html body.bootstrapiso>:not(#wpwrap) .table-primary thead th{border-color:#7abaff}html body.bootstrapiso:not(#random_id_string)>.table-hover .table-primary:hover,html body.bootstrapiso:not(#random_id_string)>.table-hover .table-primary:hover>td,html body.bootstrapiso:not(#random_id_string)>.table-hover .table-primary:hover>th,html body.bootstrapiso>:not(#wpwrap) .table-hover .table-primary:hover,html body.bootstrapiso>:not(#wpwrap) .table-hover .table-primary:hover>td,html body.bootstrapiso>:not(#wpwrap) .table-hover .table-primary:hover>th{background-color:#9fcdff}html body.bootstrapiso:not(#random_id_string)>.table-secondary,html body.bootstrapiso:not(#random_id_string)>.table-secondary>td,html body.bootstrapiso:not(#random_id_string)>.table-secondary>th,html body.bootstrapiso>:not(#wpwrap) .table-secondary,html body.bootstrapiso>:not(#wpwrap) .table-secondary>td,html body.bootstrapiso>:not(#wpwrap) .table-secondary>th{background-color:#d6d8db}html body.bootstrapiso:not(#random_id_string)>.table-secondary tbody+tbody,html body.bootstrapiso:not(#random_id_string)>.table-secondary td,html body.bootstrapiso:not(#random_id_string)>.table-secondary th,html body.bootstrapiso:not(#random_id_string)>.table-secondary thead th,html body.bootstrapiso>:not(#wpwrap) .table-secondary tbody+tbody,html body.bootstrapiso>:not(#wpwrap) .table-secondary td,html body.bootstrapiso>:not(#wpwrap) .table-secondary th,html body.bootstrapiso>:not(#wpwrap) .table-secondary thead th{border-color:#b3b7bb}html body.bootstrapiso:not(#random_id_string)>.table-hover .table-secondary:hover,html body.bootstrapiso:not(#random_id_string)>.table-hover .table-secondary:hover>td,html body.bootstrapiso:not(#random_id_string)>.table-hover .table-secondary:hover>th,html body.bootstrapiso>:not(#wpwrap) .table-hover .table-secondary:hover,html body.bootstrapiso>:not(#wpwrap) .table-hover .table-secondary:hover>td,html body.bootstrapiso>:not(#wpwrap) .table-hover .table-secondary:hover>th{background-color:#c8cbcf}html body.bootstrapiso:not(#random_id_string)>.table-success,html body.bootstrapiso:not(#random_id_string)>.table-success>td,html body.bootstrapiso:not(#random_id_string)>.table-success>th,html body.bootstrapiso>:not(#wpwrap) .table-success,html body.bootstrapiso>:not(#wpwrap) .table-success>td,html body.bootstrapiso>:not(#wpwrap) .table-success>th{background-color:#c3e6cb}html body.bootstrapiso:not(#random_id_string)>.table-success tbody+tbody,html body.bootstrapiso:not(#random_id_string)>.table-success td,html body.bootstrapiso:not(#random_id_string)>.table-success th,html body.bootstrapiso:not(#random_id_string)>.table-success thead th,html body.bootstrapiso>:not(#wpwrap) .table-success tbody+tbody,html body.bootstrapiso>:not(#wpwrap) .table-success td,html body.bootstrapiso>:not(#wpwrap) .table-success th,html body.bootstrapiso>:not(#wpwrap) .table-success thead th{border-color:#8fd19e}html body.bootstrapiso:not(#random_id_string)>.table-hover .table-success:hover,html body.bootstrapiso:not(#random_id_string)>.table-hover .table-success:hover>td,html body.bootstrapiso:not(#random_id_string)>.table-hover .table-success:hover>th,html body.bootstrapiso>:not(#wpwrap) .table-hover .table-success:hover,html body.bootstrapiso>:not(#wpwrap) .table-hover .table-success:hover>td,html body.bootstrapiso>:not(#wpwrap) .table-hover .table-success:hover>th{background-color:#b1dfbb}html body.bootstrapiso:not(#random_id_string)>.table-info,html body.bootstrapiso:not(#random_id_string)>.table-info>td,html body.bootstrapiso:not(#random_id_string)>.table-info>th,html body.bootstrapiso>:not(#wpwrap) .table-info,html body.bootstrapiso>:not(#wpwrap) .table-info>td,html body.bootstrapiso>:not(#wpwrap) .table-info>th{background-color:#bee5eb}html body.bootstrapiso:not(#random_id_string)>.table-info tbody+tbody,html body.bootstrapiso:not(#random_id_string)>.table-info td,html body.bootstrapiso:not(#random_id_string)>.table-info th,html body.bootstrapiso:not(#random_id_string)>.table-info thead th,html body.bootstrapiso>:not(#wpwrap) .table-info tbody+tbody,html body.bootstrapiso>:not(#wpwrap) .table-info td,html body.bootstrapiso>:not(#wpwrap) .table-info th,html body.bootstrapiso>:not(#wpwrap) .table-info thead th{border-color:#86cfda}html body.bootstrapiso:not(#random_id_string)>.table-hover .table-info:hover,html body.bootstrapiso:not(#random_id_string)>.table-hover .table-info:hover>td,html body.bootstrapiso:not(#random_id_string)>.table-hover .table-info:hover>th,html body.bootstrapiso>:not(#wpwrap) .table-hover .table-info:hover,html body.bootstrapiso>:not(#wpwrap) .table-hover .table-info:hover>td,html body.bootstrapiso>:not(#wpwrap) .table-hover .table-info:hover>th{background-color:#abdde5}html body.bootstrapiso:not(#random_id_string)>.table-warning,html body.bootstrapiso:not(#random_id_string)>.table-warning>td,html body.bootstrapiso:not(#random_id_string)>.table-warning>th,html body.bootstrapiso>:not(#wpwrap) .table-warning,html body.bootstrapiso>:not(#wpwrap) .table-warning>td,html body.bootstrapiso>:not(#wpwrap) .table-warning>th{background-color:#ffeeba}html body.bootstrapiso:not(#random_id_string)>.table-warning tbody+tbody,html body.bootstrapiso:not(#random_id_string)>.table-warning td,html body.bootstrapiso:not(#random_id_string)>.table-warning th,html body.bootstrapiso:not(#random_id_string)>.table-warning thead th,html body.bootstrapiso>:not(#wpwrap) .table-warning tbody+tbody,html body.bootstrapiso>:not(#wpwrap) .table-warning td,html body.bootstrapiso>:not(#wpwrap) .table-warning th,html body.bootstrapiso>:not(#wpwrap) .table-warning thead th{border-color:#ffdf7e}html body.bootstrapiso:not(#random_id_string)>.table-hover .table-warning:hover,html body.bootstrapiso:not(#random_id_string)>.table-hover .table-warning:hover>td,html body.bootstrapiso:not(#random_id_string)>.table-hover .table-warning:hover>th,html body.bootstrapiso>:not(#wpwrap) .table-hover .table-warning:hover,html body.bootstrapiso>:not(#wpwrap) .table-hover .table-warning:hover>td,html body.bootstrapiso>:not(#wpwrap) .table-hover .table-warning:hover>th{background-color:#ffe8a1}html body.bootstrapiso:not(#random_id_string)>.table-danger,html body.bootstrapiso:not(#random_id_string)>.table-danger>td,html body.bootstrapiso:not(#random_id_string)>.table-danger>th,html body.bootstrapiso>:not(#wpwrap) .table-danger,html body.bootstrapiso>:not(#wpwrap) .table-danger>td,html body.bootstrapiso>:not(#wpwrap) .table-danger>th{background-color:#f5c6cb}html body.bootstrapiso:not(#random_id_string)>.table-danger tbody+tbody,html body.bootstrapiso:not(#random_id_string)>.table-danger td,html body.bootstrapiso:not(#random_id_string)>.table-danger th,html body.bootstrapiso:not(#random_id_string)>.table-danger thead th,html body.bootstrapiso>:not(#wpwrap) .table-danger tbody+tbody,html body.bootstrapiso>:not(#wpwrap) .table-danger td,html body.bootstrapiso>:not(#wpwrap) .table-danger th,html body.bootstrapiso>:not(#wpwrap) .table-danger thead th{border-color:#ed969e}html body.bootstrapiso:not(#random_id_string)>.table-hover .table-danger:hover,html body.bootstrapiso:not(#random_id_string)>.table-hover .table-danger:hover>td,html body.bootstrapiso:not(#random_id_string)>.table-hover .table-danger:hover>th,html body.bootstrapiso>:not(#wpwrap) .table-hover .table-danger:hover,html body.bootstrapiso>:not(#wpwrap) .table-hover .table-danger:hover>td,html body.bootstrapiso>:not(#wpwrap) .table-hover .table-danger:hover>th{background-color:#f1b0b7}html body.bootstrapiso:not(#random_id_string)>.table-light,html body.bootstrapiso:not(#random_id_string)>.table-light>td,html body.bootstrapiso:not(#random_id_string)>.table-light>th,html body.bootstrapiso>:not(#wpwrap) .table-light,html body.bootstrapiso>:not(#wpwrap) .table-light>td,html body.bootstrapiso>:not(#wpwrap) .table-light>th{background-color:#fdfdfe}html body.bootstrapiso:not(#random_id_string)>.table-light tbody+tbody,html body.bootstrapiso:not(#random_id_string)>.table-light td,html body.bootstrapiso:not(#random_id_string)>.table-light th,html body.bootstrapiso:not(#random_id_string)>.table-light thead th,html body.bootstrapiso>:not(#wpwrap) .table-light tbody+tbody,html body.bootstrapiso>:not(#wpwrap) .table-light td,html body.bootstrapiso>:not(#wpwrap) .table-light th,html body.bootstrapiso>:not(#wpwrap) .table-light thead th{border-color:#fbfcfc}html body.bootstrapiso:not(#random_id_string)>.table-hover .table-light:hover,html body.bootstrapiso:not(#random_id_string)>.table-hover .table-light:hover>td,html body.bootstrapiso:not(#random_id_string)>.table-hover .table-light:hover>th,html body.bootstrapiso>:not(#wpwrap) .table-hover .table-light:hover,html body.bootstrapiso>:not(#wpwrap) .table-hover .table-light:hover>td,html body.bootstrapiso>:not(#wpwrap) .table-hover .table-light:hover>th{background-color:#ececf6}html body.bootstrapiso:not(#random_id_string)>.table-dark,html body.bootstrapiso:not(#random_id_string)>.table-dark>td,html body.bootstrapiso:not(#random_id_string)>.table-dark>th,html body.bootstrapiso>:not(#wpwrap) .table-dark,html body.bootstrapiso>:not(#wpwrap) .table-dark>td,html body.bootstrapiso>:not(#wpwrap) .table-dark>th{background-color:#c6c8ca}html body.bootstrapiso:not(#random_id_string)>.table-dark tbody+tbody,html body.bootstrapiso:not(#random_id_string)>.table-dark td,html body.bootstrapiso:not(#random_id_string)>.table-dark th,html body.bootstrapiso:not(#random_id_string)>.table-dark thead th,html body.bootstrapiso>:not(#wpwrap) .table-dark tbody+tbody,html body.bootstrapiso>:not(#wpwrap) .table-dark td,html body.bootstrapiso>:not(#wpwrap) .table-dark th,html body.bootstrapiso>:not(#wpwrap) .table-dark thead th{border-color:#95999c}html body.bootstrapiso:not(#random_id_string)>.table-hover .table-dark:hover,html body.bootstrapiso:not(#random_id_string)>.table-hover .table-dark:hover>td,html body.bootstrapiso:not(#random_id_string)>.table-hover .table-dark:hover>th,html body.bootstrapiso>:not(#wpwrap) .table-hover .table-dark:hover,html body.bootstrapiso>:not(#wpwrap) .table-hover .table-dark:hover>td,html body.bootstrapiso>:not(#wpwrap) .table-hover .table-dark:hover>th{background-color:#b9bbbe}html body.bootstrapiso:not(#random_id_string)>.table-active,html body.bootstrapiso:not(#random_id_string)>.table-active>td,html body.bootstrapiso:not(#random_id_string)>.table-active>th,html body.bootstrapiso:not(#random_id_string)>.table-hover .table-active:hover,html body.bootstrapiso:not(#random_id_string)>.table-hover .table-active:hover>td,html body.bootstrapiso:not(#random_id_string)>.table-hover .table-active:hover>th,html body.bootstrapiso>:not(#wpwrap) .table-active,html body.bootstrapiso>:not(#wpwrap) .table-active>td,html body.bootstrapiso>:not(#wpwrap) .table-active>th,html body.bootstrapiso>:not(#wpwrap) .table-hover .table-active:hover,html body.bootstrapiso>:not(#wpwrap) .table-hover .table-active:hover>td,html body.bootstrapiso>:not(#wpwrap) .table-hover .table-active:hover>th{background-color:rgba(0,0,0,.075)}html body.bootstrapiso:not(#random_id_string)>.table .thead-dark th,html body.bootstrapiso>:not(#wpwrap) .table .thead-dark th{color:#fff;background-color:#343a40;border-color:#454d55}html body.bootstrapiso:not(#random_id_string)>.table .thead-light th,html body.bootstrapiso>:not(#wpwrap) .table .thead-light th{color:#495057;background-color:#e9ecef;border-color:#dee2e6}html body.bootstrapiso:not(#random_id_string)>.table-dark,html body.bootstrapiso>:not(#wpwrap) .table-dark{color:#fff;background-color:#343a40}html body.bootstrapiso:not(#random_id_string)>.table-dark td,html body.bootstrapiso:not(#random_id_string)>.table-dark th,html body.bootstrapiso:not(#random_id_string)>.table-dark thead th,html body.bootstrapiso>:not(#wpwrap) .table-dark td,html body.bootstrapiso>:not(#wpwrap) .table-dark th,html body.bootstrapiso>:not(#wpwrap) .table-dark thead th{border-color:#454d55}html body.bootstrapiso:not(#random_id_string)>.table-dark.table-bordered,html body.bootstrapiso>:not(#wpwrap) .table-dark.table-bordered{border:0}html body.bootstrapiso:not(#random_id_string)>.table-dark.table-striped tbody tr:nth-of-type(odd),html body.bootstrapiso>:not(#wpwrap) .table-dark.table-striped tbody tr:nth-of-type(odd){background-color:hsla(0,0%,100%,.05)}html body.bootstrapiso:not(#random_id_string)>.table-dark.table-hover tbody tr:hover,html body.bootstrapiso>:not(#wpwrap) .table-dark.table-hover tbody tr:hover{color:#fff;background-color:hsla(0,0%,100%,.075)}@media (max-width:575.98px){html body.bootstrapiso:not(#random_id_string)>.table-responsive-sm,html body.bootstrapiso>:not(#wpwrap) .table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}html body.bootstrapiso:not(#random_id_string)>.table-responsive-sm>.table-bordered,html body.bootstrapiso>:not(#wpwrap) .table-responsive-sm>.table-bordered{border:0}}@media (max-width:767.98px){html body.bootstrapiso:not(#random_id_string)>.table-responsive-md,html body.bootstrapiso>:not(#wpwrap) .table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}html body.bootstrapiso:not(#random_id_string)>.table-responsive-md>.table-bordered,html body.bootstrapiso>:not(#wpwrap) .table-responsive-md>.table-bordered{border:0}}@media (max-width:991.98px){html body.bootstrapiso:not(#random_id_string)>.table-responsive-lg,html body.bootstrapiso>:not(#wpwrap) .table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}html body.bootstrapiso:not(#random_id_string)>.table-responsive-lg>.table-bordered,html body.bootstrapiso>:not(#wpwrap) .table-responsive-lg>.table-bordered{border:0}}@media (max-width:1199.98px){html body.bootstrapiso:not(#random_id_string)>.table-responsive-xl,html body.bootstrapiso>:not(#wpwrap) .table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}html body.bootstrapiso:not(#random_id_string)>.table-responsive-xl>.table-bordered,html body.bootstrapiso>:not(#wpwrap) .table-responsive-xl>.table-bordered{border:0}}html body.bootstrapiso:not(#random_id_string)>.table-responsive,html body.bootstrapiso>:not(#wpwrap) .table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}html body.bootstrapiso:not(#random_id_string)>.table-responsive>.table-bordered,html body.bootstrapiso>:not(#wpwrap) .table-responsive>.table-bordered{border:0}html body.bootstrapiso:not(#random_id_string)>.form-control,html body.bootstrapiso>:not(#wpwrap) .form-control{display:block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){html body.bootstrapiso:not(#random_id_string)>.form-control,html body.bootstrapiso>:not(#wpwrap) .form-control{transition:none}}html body.bootstrapiso:not(#random_id_string)>.form-control::-ms-expand,html body.bootstrapiso>:not(#wpwrap) .form-control::-ms-expand{background-color:transparent;border:0}html body.bootstrapiso:not(#random_id_string)>.form-control:-moz-focusring,html body.bootstrapiso>:not(#wpwrap) .form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}html body.bootstrapiso:not(#random_id_string)>.form-control:focus,html body.bootstrapiso>:not(#wpwrap) .form-control:focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}html body.bootstrapiso:not(#random_id_string)>.form-control::-webkit-input-placeholder,html body.bootstrapiso>:not(#wpwrap) .form-control::-webkit-input-placeholder{color:#6c757d;opacity:1}html body.bootstrapiso:not(#random_id_string)>.form-control:-ms-input-placeholder,html body.bootstrapiso>:not(#wpwrap) .form-control:-ms-input-placeholder{color:#6c757d;opacity:1}html body.bootstrapiso:not(#random_id_string)>.form-control::-ms-input-placeholder,html body.bootstrapiso>:not(#wpwrap) .form-control::-ms-input-placeholder{color:#6c757d;opacity:1}html body.bootstrapiso:not(#random_id_string)>.form-control::placeholder,html body.bootstrapiso>:not(#wpwrap) .form-control::placeholder{color:#6c757d;opacity:1}html body.bootstrapiso:not(#random_id_string)>.form-control:disabled,html body.bootstrapiso:not(#random_id_string)>.form-control[readonly],html body.bootstrapiso>:not(#wpwrap) .form-control:disabled,html body.bootstrapiso>:not(#wpwrap) .form-control[readonly]{background-color:#e9ecef;opacity:1}html body.bootstrapiso:not(#random_id_string)>input[type=date].form-control,html body.bootstrapiso:not(#random_id_string)>input[type=datetime-local].form-control,html body.bootstrapiso:not(#random_id_string)>input[type=month].form-control,html body.bootstrapiso:not(#random_id_string)>input[type=time].form-control,html body.bootstrapiso>:not(#wpwrap) input[type=date].form-control,html body.bootstrapiso>:not(#wpwrap) input[type=datetime-local].form-control,html body.bootstrapiso>:not(#wpwrap) input[type=month].form-control,html body.bootstrapiso>:not(#wpwrap) input[type=time].form-control{-webkit-appearance:none;-moz-appearance:none;appearance:none}html body.bootstrapiso:not(#random_id_string)>select.form-control:focus::-ms-value,html body.bootstrapiso>:not(#wpwrap) select.form-control:focus::-ms-value{color:#495057;background-color:#fff}html body.bootstrapiso:not(#random_id_string)>.form-control-file,html body.bootstrapiso:not(#random_id_string)>.form-control-range,html body.bootstrapiso>:not(#wpwrap) .form-control-file,html body.bootstrapiso>:not(#wpwrap) .form-control-range{display:block;width:100%}html body.bootstrapiso:not(#random_id_string)>.col-form-label,html body.bootstrapiso>:not(#wpwrap) .col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}html body.bootstrapiso:not(#random_id_string)>.col-form-label-lg,html body.bootstrapiso>:not(#wpwrap) .col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem;line-height:1.5}html body.bootstrapiso:not(#random_id_string)>.col-form-label-sm,html body.bootstrapiso>:not(#wpwrap) .col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem;line-height:1.5}html body.bootstrapiso:not(#random_id_string)>.form-control-plaintext,html body.bootstrapiso>:not(#wpwrap) .form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;font-size:1rem;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}html body.bootstrapiso:not(#random_id_string)>.form-control-plaintext.form-control-lg,html body.bootstrapiso:not(#random_id_string)>.form-control-plaintext.form-control-sm,html body.bootstrapiso>:not(#wpwrap) .form-control-plaintext.form-control-lg,html body.bootstrapiso>:not(#wpwrap) .form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}html body.bootstrapiso:not(#random_id_string)>.form-control-sm,html body.bootstrapiso>:not(#wpwrap) .form-control-sm{height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}html body.bootstrapiso:not(#random_id_string)>.form-control-lg,html body.bootstrapiso>:not(#wpwrap) .form-control-lg{height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}html body.bootstrapiso:not(#random_id_string)>select.form-control[multiple],html body.bootstrapiso:not(#random_id_string)>select.form-control[size],html body.bootstrapiso:not(#random_id_string)>textarea.form-control,html body.bootstrapiso>:not(#wpwrap) select.form-control[multiple],html body.bootstrapiso>:not(#wpwrap) select.form-control[size],html body.bootstrapiso>:not(#wpwrap) textarea.form-control{height:auto}html body.bootstrapiso:not(#random_id_string)>.form-group,html body.bootstrapiso>:not(#wpwrap) .form-group{margin-bottom:1rem}html body.bootstrapiso:not(#random_id_string)>.form-text,html body.bootstrapiso>:not(#wpwrap) .form-text{display:block;margin-top:.25rem}html body.bootstrapiso:not(#random_id_string)>.form-row,html body.bootstrapiso>:not(#wpwrap) .form-row{display:flex;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}html body.bootstrapiso:not(#random_id_string)>.form-row>.col,html body.bootstrapiso:not(#random_id_string)>.form-row>[class*=col-],html body.bootstrapiso>:not(#wpwrap) .form-row>.col,html body.bootstrapiso>:not(#wpwrap) .form-row>[class*=col-]{padding-right:5px;padding-left:5px}html body.bootstrapiso:not(#random_id_string)>.form-check,html body.bootstrapiso>:not(#wpwrap) .form-check{position:relative;display:block;padding-left:1.25rem}html body.bootstrapiso:not(#random_id_string)>.form-check-input,html body.bootstrapiso>:not(#wpwrap) .form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}html body.bootstrapiso:not(#random_id_string)>.form-check-input:disabled~.form-check-label,html body.bootstrapiso:not(#random_id_string)>.form-check-input[disabled]~.form-check-label,html body.bootstrapiso>:not(#wpwrap) .form-check-input:disabled~.form-check-label,html body.bootstrapiso>:not(#wpwrap) .form-check-input[disabled]~.form-check-label{color:#6c757d}html body.bootstrapiso:not(#random_id_string)>.form-check-label,html body.bootstrapiso>:not(#wpwrap) .form-check-label{margin-bottom:0}html body.bootstrapiso:not(#random_id_string)>.form-check-inline,html body.bootstrapiso>:not(#wpwrap) .form-check-inline{display:inline-flex;align-items:center;padding-left:0;margin-right:.75rem}html body.bootstrapiso:not(#random_id_string)>.form-check-inline .form-check-input,html body.bootstrapiso>:not(#wpwrap) .form-check-inline .form-check-input{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}html body.bootstrapiso:not(#random_id_string)>.valid-feedback,html body.bootstrapiso>:not(#wpwrap) .valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#28a745}html body.bootstrapiso:not(#random_id_string)>.valid-tooltip,html body.bootstrapiso>:not(#wpwrap) .valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(40,167,69,.9);border-radius:.25rem}html body.bootstrapiso:not(#random_id_string)>.is-valid~.valid-feedback,html body.bootstrapiso:not(#random_id_string)>.is-valid~.valid-tooltip,html body.bootstrapiso:not(#random_id_string)>.was-validated :valid~.valid-feedback,html body.bootstrapiso:not(#random_id_string)>.was-validated :valid~.valid-tooltip,html body.bootstrapiso>:not(#wpwrap) .is-valid~.valid-feedback,html body.bootstrapiso>:not(#wpwrap) .is-valid~.valid-tooltip,html body.bootstrapiso>:not(#wpwrap) .was-validated :valid~.valid-feedback,html body.bootstrapiso>:not(#wpwrap) .was-validated :valid~.valid-tooltip{display:block}html body.bootstrapiso:not(#random_id_string)>.form-control.is-valid,html body.bootstrapiso:not(#random_id_string)>.was-validated .form-control:valid,html body.bootstrapiso>:not(#wpwrap) .form-control.is-valid,html body.bootstrapiso>:not(#wpwrap) .was-validated .form-control:valid{border-color:#28a745;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}html body.bootstrapiso:not(#random_id_string)>.form-control.is-valid:focus,html body.bootstrapiso:not(#random_id_string)>.was-validated .form-control:valid:focus,html body.bootstrapiso>:not(#wpwrap) .form-control.is-valid:focus,html body.bootstrapiso>:not(#wpwrap) .was-validated .form-control:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}html body.bootstrapiso:not(#random_id_string)>.was-validated textarea.form-control:valid,html body.bootstrapiso:not(#random_id_string)>textarea.form-control.is-valid,html body.bootstrapiso>:not(#wpwrap) .was-validated textarea.form-control:valid,html body.bootstrapiso>:not(#wpwrap) textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}html body.bootstrapiso:not(#random_id_string)>.custom-select.is-valid,html body.bootstrapiso:not(#random_id_string)>.was-validated .custom-select:valid,html body.bootstrapiso>:not(#wpwrap) .custom-select.is-valid,html body.bootstrapiso>:not(#wpwrap) .was-validated .custom-select:valid{border-color:#28a745;padding-right:calc(.75em + 2.3125rem);background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)}html body.bootstrapiso:not(#random_id_string)>.custom-select.is-valid:focus,html body.bootstrapiso:not(#random_id_string)>.was-validated .custom-select:valid:focus,html body.bootstrapiso>:not(#wpwrap) .custom-select.is-valid:focus,html body.bootstrapiso>:not(#wpwrap) .was-validated .custom-select:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}html body.bootstrapiso:not(#random_id_string)>.form-check-input.is-valid~.form-check-label,html body.bootstrapiso:not(#random_id_string)>.was-validated .form-check-input:valid~.form-check-label,html body.bootstrapiso>:not(#wpwrap) .form-check-input.is-valid~.form-check-label,html body.bootstrapiso>:not(#wpwrap) .was-validated .form-check-input:valid~.form-check-label{color:#28a745}html body.bootstrapiso:not(#random_id_string)>.form-check-input.is-valid~.valid-feedback,html body.bootstrapiso:not(#random_id_string)>.form-check-input.is-valid~.valid-tooltip,html body.bootstrapiso:not(#random_id_string)>.was-validated .form-check-input:valid~.valid-feedback,html body.bootstrapiso:not(#random_id_string)>.was-validated .form-check-input:valid~.valid-tooltip,html body.bootstrapiso>:not(#wpwrap) .form-check-input.is-valid~.valid-feedback,html body.bootstrapiso>:not(#wpwrap) .form-check-input.is-valid~.valid-tooltip,html body.bootstrapiso>:not(#wpwrap) .was-validated .form-check-input:valid~.valid-feedback,html body.bootstrapiso>:not(#wpwrap) .was-validated .form-check-input:valid~.valid-tooltip{display:block}html body.bootstrapiso:not(#random_id_string)>.custom-control-input.is-valid~.custom-control-label,html body.bootstrapiso:not(#random_id_string)>.was-validated .custom-control-input:valid~.custom-control-label,html body.bootstrapiso>:not(#wpwrap) .custom-control-input.is-valid~.custom-control-label,html body.bootstrapiso>:not(#wpwrap) .was-validated .custom-control-input:valid~.custom-control-label{color:#28a745}html body.bootstrapiso:not(#random_id_string)>.custom-control-input.is-valid~.custom-control-label:before,html body.bootstrapiso:not(#random_id_string)>.was-validated .custom-control-input:valid~.custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .custom-control-input.is-valid~.custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .was-validated .custom-control-input:valid~.custom-control-label:before{border-color:#28a745}html body.bootstrapiso:not(#random_id_string)>.custom-control-input.is-valid:checked~.custom-control-label:before,html body.bootstrapiso:not(#random_id_string)>.was-validated .custom-control-input:valid:checked~.custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .custom-control-input.is-valid:checked~.custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .was-validated .custom-control-input:valid:checked~.custom-control-label:before{border-color:#34ce57;background-color:#34ce57}html body.bootstrapiso:not(#random_id_string)>.custom-control-input.is-valid:focus~.custom-control-label:before,html body.bootstrapiso:not(#random_id_string)>.was-validated .custom-control-input:valid:focus~.custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .custom-control-input.is-valid:focus~.custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .was-validated .custom-control-input:valid:focus~.custom-control-label:before{box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}html body.bootstrapiso:not(#random_id_string)>.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label:before,html body.bootstrapiso:not(#random_id_string)>.custom-file-input.is-valid~.custom-file-label,html body.bootstrapiso:not(#random_id_string)>.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label:before,html body.bootstrapiso:not(#random_id_string)>.was-validated .custom-file-input:valid~.custom-file-label,html body.bootstrapiso>:not(#wpwrap) .custom-control-input.is-valid:focus:not(:checked)~.custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .custom-file-input.is-valid~.custom-file-label,html body.bootstrapiso>:not(#wpwrap) .was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .was-validated .custom-file-input:valid~.custom-file-label{border-color:#28a745}html body.bootstrapiso:not(#random_id_string)>.custom-file-input.is-valid:focus~.custom-file-label,html body.bootstrapiso:not(#random_id_string)>.was-validated .custom-file-input:valid:focus~.custom-file-label,html body.bootstrapiso>:not(#wpwrap) .custom-file-input.is-valid:focus~.custom-file-label,html body.bootstrapiso>:not(#wpwrap) .was-validated .custom-file-input:valid:focus~.custom-file-label{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}html body.bootstrapiso:not(#random_id_string)>.invalid-feedback,html body.bootstrapiso>:not(#wpwrap) .invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#dc3545}html body.bootstrapiso:not(#random_id_string)>.invalid-tooltip,html body.bootstrapiso>:not(#wpwrap) .invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(220,53,69,.9);border-radius:.25rem}html body.bootstrapiso:not(#random_id_string)>.is-invalid~.invalid-feedback,html body.bootstrapiso:not(#random_id_string)>.is-invalid~.invalid-tooltip,html body.bootstrapiso:not(#random_id_string)>.was-validated :invalid~.invalid-feedback,html body.bootstrapiso:not(#random_id_string)>.was-validated :invalid~.invalid-tooltip,html body.bootstrapiso>:not(#wpwrap) .is-invalid~.invalid-feedback,html body.bootstrapiso>:not(#wpwrap) .is-invalid~.invalid-tooltip,html body.bootstrapiso>:not(#wpwrap) .was-validated :invalid~.invalid-feedback,html body.bootstrapiso>:not(#wpwrap) .was-validated :invalid~.invalid-tooltip{display:block}html body.bootstrapiso:not(#random_id_string)>.form-control.is-invalid,html body.bootstrapiso:not(#random_id_string)>.was-validated .form-control:invalid,html body.bootstrapiso>:not(#wpwrap) .form-control.is-invalid,html body.bootstrapiso>:not(#wpwrap) .was-validated .form-control:invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}html body.bootstrapiso:not(#random_id_string)>.form-control.is-invalid:focus,html body.bootstrapiso:not(#random_id_string)>.was-validated .form-control:invalid:focus,html body.bootstrapiso>:not(#wpwrap) .form-control.is-invalid:focus,html body.bootstrapiso>:not(#wpwrap) .was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}html body.bootstrapiso:not(#random_id_string)>.was-validated textarea.form-control:invalid,html body.bootstrapiso:not(#random_id_string)>textarea.form-control.is-invalid,html body.bootstrapiso>:not(#wpwrap) .was-validated textarea.form-control:invalid,html body.bootstrapiso>:not(#wpwrap) textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}html body.bootstrapiso:not(#random_id_string)>.custom-select.is-invalid,html body.bootstrapiso:not(#random_id_string)>.was-validated .custom-select:invalid,html body.bootstrapiso>:not(#wpwrap) .custom-select.is-invalid,html body.bootstrapiso>:not(#wpwrap) .was-validated .custom-select:invalid{border-color:#dc3545;padding-right:calc(.75em + 2.3125rem);background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3E%3C/svg%3E") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)}html body.bootstrapiso:not(#random_id_string)>.custom-select.is-invalid:focus,html body.bootstrapiso:not(#random_id_string)>.was-validated .custom-select:invalid:focus,html body.bootstrapiso>:not(#wpwrap) .custom-select.is-invalid:focus,html body.bootstrapiso>:not(#wpwrap) .was-validated .custom-select:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}html body.bootstrapiso:not(#random_id_string)>.form-check-input.is-invalid~.form-check-label,html body.bootstrapiso:not(#random_id_string)>.was-validated .form-check-input:invalid~.form-check-label,html body.bootstrapiso>:not(#wpwrap) .form-check-input.is-invalid~.form-check-label,html body.bootstrapiso>:not(#wpwrap) .was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}html body.bootstrapiso:not(#random_id_string)>.form-check-input.is-invalid~.invalid-feedback,html body.bootstrapiso:not(#random_id_string)>.form-check-input.is-invalid~.invalid-tooltip,html body.bootstrapiso:not(#random_id_string)>.was-validated .form-check-input:invalid~.invalid-feedback,html body.bootstrapiso:not(#random_id_string)>.was-validated .form-check-input:invalid~.invalid-tooltip,html body.bootstrapiso>:not(#wpwrap) .form-check-input.is-invalid~.invalid-feedback,html body.bootstrapiso>:not(#wpwrap) .form-check-input.is-invalid~.invalid-tooltip,html body.bootstrapiso>:not(#wpwrap) .was-validated .form-check-input:invalid~.invalid-feedback,html body.bootstrapiso>:not(#wpwrap) .was-validated .form-check-input:invalid~.invalid-tooltip{display:block}html body.bootstrapiso:not(#random_id_string)>.custom-control-input.is-invalid~.custom-control-label,html body.bootstrapiso:not(#random_id_string)>.was-validated .custom-control-input:invalid~.custom-control-label,html body.bootstrapiso>:not(#wpwrap) .custom-control-input.is-invalid~.custom-control-label,html body.bootstrapiso>:not(#wpwrap) .was-validated .custom-control-input:invalid~.custom-control-label{color:#dc3545}html body.bootstrapiso:not(#random_id_string)>.custom-control-input.is-invalid~.custom-control-label:before,html body.bootstrapiso:not(#random_id_string)>.was-validated .custom-control-input:invalid~.custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .custom-control-input.is-invalid~.custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .was-validated .custom-control-input:invalid~.custom-control-label:before{border-color:#dc3545}html body.bootstrapiso:not(#random_id_string)>.custom-control-input.is-invalid:checked~.custom-control-label:before,html body.bootstrapiso:not(#random_id_string)>.was-validated .custom-control-input:invalid:checked~.custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .custom-control-input.is-invalid:checked~.custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .was-validated .custom-control-input:invalid:checked~.custom-control-label:before{border-color:#e4606d;background-color:#e4606d}html body.bootstrapiso:not(#random_id_string)>.custom-control-input.is-invalid:focus~.custom-control-label:before,html body.bootstrapiso:not(#random_id_string)>.was-validated .custom-control-input:invalid:focus~.custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .custom-control-input.is-invalid:focus~.custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .was-validated .custom-control-input:invalid:focus~.custom-control-label:before{box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}html body.bootstrapiso:not(#random_id_string)>.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label:before,html body.bootstrapiso:not(#random_id_string)>.custom-file-input.is-invalid~.custom-file-label,html body.bootstrapiso:not(#random_id_string)>.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label:before,html body.bootstrapiso:not(#random_id_string)>.was-validated .custom-file-input:invalid~.custom-file-label,html body.bootstrapiso>:not(#wpwrap) .custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .custom-file-input.is-invalid~.custom-file-label,html body.bootstrapiso>:not(#wpwrap) .was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .was-validated .custom-file-input:invalid~.custom-file-label{border-color:#dc3545}html body.bootstrapiso:not(#random_id_string)>.custom-file-input.is-invalid:focus~.custom-file-label,html body.bootstrapiso:not(#random_id_string)>.was-validated .custom-file-input:invalid:focus~.custom-file-label,html body.bootstrapiso>:not(#wpwrap) .custom-file-input.is-invalid:focus~.custom-file-label,html body.bootstrapiso>:not(#wpwrap) .was-validated .custom-file-input:invalid:focus~.custom-file-label{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}html body.bootstrapiso:not(#random_id_string)>.form-inline,html body.bootstrapiso>:not(#wpwrap) .form-inline{display:flex;flex-flow:row wrap;align-items:center}html body.bootstrapiso:not(#random_id_string)>.form-inline .form-check,html body.bootstrapiso>:not(#wpwrap) .form-inline .form-check{width:100%}@media (min-width:576px){html body.bootstrapiso:not(#random_id_string)>.form-inline label,html body.bootstrapiso>:not(#wpwrap) .form-inline label{display:flex;align-items:center;justify-content:center;margin-bottom:0}html body.bootstrapiso:not(#random_id_string)>.form-inline .form-group,html body.bootstrapiso>:not(#wpwrap) .form-inline .form-group{display:flex;flex:0 0 auto;flex-flow:row wrap;align-items:center;margin-bottom:0}html body.bootstrapiso:not(#random_id_string)>.form-inline .form-control,html body.bootstrapiso>:not(#wpwrap) .form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}html body.bootstrapiso:not(#random_id_string)>.form-inline .form-control-plaintext,html body.bootstrapiso>:not(#wpwrap) .form-inline .form-control-plaintext{display:inline-block}html body.bootstrapiso:not(#random_id_string)>.form-inline .custom-select,html body.bootstrapiso:not(#random_id_string)>.form-inline .input-group,html body.bootstrapiso>:not(#wpwrap) .form-inline .custom-select,html body.bootstrapiso>:not(#wpwrap) .form-inline .input-group{width:auto}html body.bootstrapiso:not(#random_id_string)>.form-inline .form-check,html body.bootstrapiso>:not(#wpwrap) .form-inline .form-check{display:flex;align-items:center;justify-content:center;width:auto;padding-left:0}html body.bootstrapiso:not(#random_id_string)>.form-inline .form-check-input,html body.bootstrapiso>:not(#wpwrap) .form-inline .form-check-input{position:relative;flex-shrink:0;margin-top:0;margin-right:.25rem;margin-left:0}html body.bootstrapiso:not(#random_id_string)>.form-inline .custom-control,html body.bootstrapiso>:not(#wpwrap) .form-inline .custom-control{align-items:center;justify-content:center}html body.bootstrapiso:not(#random_id_string)>.form-inline .custom-control-label,html body.bootstrapiso>:not(#wpwrap) .form-inline .custom-control-label{margin-bottom:0}}html body.bootstrapiso:not(#random_id_string)>.btn,html body.bootstrapiso>:not(#wpwrap) .btn{display:inline-block;font-weight:400;color:#212529;text-align:center;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){html body.bootstrapiso:not(#random_id_string)>.btn,html body.bootstrapiso>:not(#wpwrap) .btn{transition:none}}html body.bootstrapiso:not(#random_id_string)>.btn:hover,html body.bootstrapiso>:not(#wpwrap) .btn:hover{color:#212529;text-decoration:none}html body.bootstrapiso:not(#random_id_string)>.btn.focus,html body.bootstrapiso:not(#random_id_string)>.btn:focus,html body.bootstrapiso>:not(#wpwrap) .btn.focus,html body.bootstrapiso>:not(#wpwrap) .btn:focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}html body.bootstrapiso:not(#random_id_string)>.btn.disabled,html body.bootstrapiso:not(#random_id_string)>.btn:disabled,html body.bootstrapiso>:not(#wpwrap) .btn.disabled,html body.bootstrapiso>:not(#wpwrap) .btn:disabled{opacity:.65}html body.bootstrapiso:not(#random_id_string)>.btn:not(:disabled):not(.disabled),html body.bootstrapiso>:not(#wpwrap) .btn:not(:disabled):not(.disabled){cursor:pointer}html body.bootstrapiso:not(#random_id_string)>a.btn.disabled,html body.bootstrapiso:not(#random_id_string)>fieldset:disabled a.btn,html body.bootstrapiso>:not(#wpwrap) a.btn.disabled,html body.bootstrapiso>:not(#wpwrap) fieldset:disabled a.btn{pointer-events:none}html body.bootstrapiso:not(#random_id_string)>.btn-primary,html body.bootstrapiso>:not(#wpwrap) .btn-primary{color:#fff;background-color:#007bff;border-color:#007bff}html body.bootstrapiso:not(#random_id_string)>.btn-primary:hover,html body.bootstrapiso>:not(#wpwrap) .btn-primary:hover{color:#fff;background-color:#0069d9;border-color:#0062cc}html body.bootstrapiso:not(#random_id_string)>.btn-primary.focus,html body.bootstrapiso:not(#random_id_string)>.btn-primary:focus,html body.bootstrapiso>:not(#wpwrap) .btn-primary.focus,html body.bootstrapiso>:not(#wpwrap) .btn-primary:focus{color:#fff;background-color:#0069d9;border-color:#0062cc;box-shadow:0 0 0 .2rem rgba(38,143,255,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-primary.disabled,html body.bootstrapiso:not(#random_id_string)>.btn-primary:disabled,html body.bootstrapiso>:not(#wpwrap) .btn-primary.disabled,html body.bootstrapiso>:not(#wpwrap) .btn-primary:disabled{color:#fff;background-color:#007bff;border-color:#007bff}html body.bootstrapiso:not(#random_id_string)>.btn-primary:not(:disabled):not(.disabled).active,html body.bootstrapiso:not(#random_id_string)>.btn-primary:not(:disabled):not(.disabled):active,html body.bootstrapiso:not(#random_id_string)>.show>.btn-primary.dropdown-toggle,html body.bootstrapiso>:not(#wpwrap) .btn-primary:not(:disabled):not(.disabled).active,html body.bootstrapiso>:not(#wpwrap) .btn-primary:not(:disabled):not(.disabled):active,html body.bootstrapiso>:not(#wpwrap) .show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0062cc;border-color:#005cbf}html body.bootstrapiso:not(#random_id_string)>.btn-primary:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso:not(#random_id_string)>.btn-primary:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso:not(#random_id_string)>.show>.btn-primary.dropdown-toggle:focus,html body.bootstrapiso>:not(#wpwrap) .btn-primary:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso>:not(#wpwrap) .btn-primary:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso>:not(#wpwrap) .show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(38,143,255,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-secondary,html body.bootstrapiso>:not(#wpwrap) .btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}html body.bootstrapiso:not(#random_id_string)>.btn-secondary:hover,html body.bootstrapiso>:not(#wpwrap) .btn-secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62}html body.bootstrapiso:not(#random_id_string)>.btn-secondary.focus,html body.bootstrapiso:not(#random_id_string)>.btn-secondary:focus,html body.bootstrapiso>:not(#wpwrap) .btn-secondary.focus,html body.bootstrapiso>:not(#wpwrap) .btn-secondary:focus{color:#fff;background-color:#5a6268;border-color:#545b62;box-shadow:0 0 0 .2rem rgba(130,138,145,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-secondary.disabled,html body.bootstrapiso:not(#random_id_string)>.btn-secondary:disabled,html body.bootstrapiso>:not(#wpwrap) .btn-secondary.disabled,html body.bootstrapiso>:not(#wpwrap) .btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}html body.bootstrapiso:not(#random_id_string)>.btn-secondary:not(:disabled):not(.disabled).active,html body.bootstrapiso:not(#random_id_string)>.btn-secondary:not(:disabled):not(.disabled):active,html body.bootstrapiso:not(#random_id_string)>.show>.btn-secondary.dropdown-toggle,html body.bootstrapiso>:not(#wpwrap) .btn-secondary:not(:disabled):not(.disabled).active,html body.bootstrapiso>:not(#wpwrap) .btn-secondary:not(:disabled):not(.disabled):active,html body.bootstrapiso>:not(#wpwrap) .show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}html body.bootstrapiso:not(#random_id_string)>.btn-secondary:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso:not(#random_id_string)>.btn-secondary:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso:not(#random_id_string)>.show>.btn-secondary.dropdown-toggle:focus,html body.bootstrapiso>:not(#wpwrap) .btn-secondary:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso>:not(#wpwrap) .btn-secondary:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso>:not(#wpwrap) .show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(130,138,145,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-success,html body.bootstrapiso>:not(#wpwrap) .btn-success{color:#fff;background-color:#28a745;border-color:#28a745}html body.bootstrapiso:not(#random_id_string)>.btn-success:hover,html body.bootstrapiso>:not(#wpwrap) .btn-success:hover{color:#fff;background-color:#218838;border-color:#1e7e34}html body.bootstrapiso:not(#random_id_string)>.btn-success.focus,html body.bootstrapiso:not(#random_id_string)>.btn-success:focus,html body.bootstrapiso>:not(#wpwrap) .btn-success.focus,html body.bootstrapiso>:not(#wpwrap) .btn-success:focus{color:#fff;background-color:#218838;border-color:#1e7e34;box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-success.disabled,html body.bootstrapiso:not(#random_id_string)>.btn-success:disabled,html body.bootstrapiso>:not(#wpwrap) .btn-success.disabled,html body.bootstrapiso>:not(#wpwrap) .btn-success:disabled{color:#fff;background-color:#28a745;border-color:#28a745}html body.bootstrapiso:not(#random_id_string)>.btn-success:not(:disabled):not(.disabled).active,html body.bootstrapiso:not(#random_id_string)>.btn-success:not(:disabled):not(.disabled):active,html body.bootstrapiso:not(#random_id_string)>.show>.btn-success.dropdown-toggle,html body.bootstrapiso>:not(#wpwrap) .btn-success:not(:disabled):not(.disabled).active,html body.bootstrapiso>:not(#wpwrap) .btn-success:not(:disabled):not(.disabled):active,html body.bootstrapiso>:not(#wpwrap) .show>.btn-success.dropdown-toggle{color:#fff;background-color:#1e7e34;border-color:#1c7430}html body.bootstrapiso:not(#random_id_string)>.btn-success:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso:not(#random_id_string)>.btn-success:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso:not(#random_id_string)>.show>.btn-success.dropdown-toggle:focus,html body.bootstrapiso>:not(#wpwrap) .btn-success:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso>:not(#wpwrap) .btn-success:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso>:not(#wpwrap) .show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-info,html body.bootstrapiso>:not(#wpwrap) .btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}html body.bootstrapiso:not(#random_id_string)>.btn-info:hover,html body.bootstrapiso>:not(#wpwrap) .btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}html body.bootstrapiso:not(#random_id_string)>.btn-info.focus,html body.bootstrapiso:not(#random_id_string)>.btn-info:focus,html body.bootstrapiso>:not(#wpwrap) .btn-info.focus,html body.bootstrapiso>:not(#wpwrap) .btn-info:focus{color:#fff;background-color:#138496;border-color:#117a8b;box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-info.disabled,html body.bootstrapiso:not(#random_id_string)>.btn-info:disabled,html body.bootstrapiso>:not(#wpwrap) .btn-info.disabled,html body.bootstrapiso>:not(#wpwrap) .btn-info:disabled{color:#fff;background-color:#17a2b8;border-color:#17a2b8}html body.bootstrapiso:not(#random_id_string)>.btn-info:not(:disabled):not(.disabled).active,html body.bootstrapiso:not(#random_id_string)>.btn-info:not(:disabled):not(.disabled):active,html body.bootstrapiso:not(#random_id_string)>.show>.btn-info.dropdown-toggle,html body.bootstrapiso>:not(#wpwrap) .btn-info:not(:disabled):not(.disabled).active,html body.bootstrapiso>:not(#wpwrap) .btn-info:not(:disabled):not(.disabled):active,html body.bootstrapiso>:not(#wpwrap) .show>.btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f}html body.bootstrapiso:not(#random_id_string)>.btn-info:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso:not(#random_id_string)>.btn-info:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso:not(#random_id_string)>.show>.btn-info.dropdown-toggle:focus,html body.bootstrapiso>:not(#wpwrap) .btn-info:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso>:not(#wpwrap) .btn-info:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso>:not(#wpwrap) .show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-warning,html body.bootstrapiso>:not(#wpwrap) .btn-warning{color:#212529;background-color:#ffc107;border-color:#ffc107}html body.bootstrapiso:not(#random_id_string)>.btn-warning:hover,html body.bootstrapiso>:not(#wpwrap) .btn-warning:hover{color:#212529;background-color:#e0a800;border-color:#d39e00}html body.bootstrapiso:not(#random_id_string)>.btn-warning.focus,html body.bootstrapiso:not(#random_id_string)>.btn-warning:focus,html body.bootstrapiso>:not(#wpwrap) .btn-warning.focus,html body.bootstrapiso>:not(#wpwrap) .btn-warning:focus{color:#212529;background-color:#e0a800;border-color:#d39e00;box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-warning.disabled,html body.bootstrapiso:not(#random_id_string)>.btn-warning:disabled,html body.bootstrapiso>:not(#wpwrap) .btn-warning.disabled,html body.bootstrapiso>:not(#wpwrap) .btn-warning:disabled{color:#212529;background-color:#ffc107;border-color:#ffc107}html body.bootstrapiso:not(#random_id_string)>.btn-warning:not(:disabled):not(.disabled).active,html body.bootstrapiso:not(#random_id_string)>.btn-warning:not(:disabled):not(.disabled):active,html body.bootstrapiso:not(#random_id_string)>.show>.btn-warning.dropdown-toggle,html body.bootstrapiso>:not(#wpwrap) .btn-warning:not(:disabled):not(.disabled).active,html body.bootstrapiso>:not(#wpwrap) .btn-warning:not(:disabled):not(.disabled):active,html body.bootstrapiso>:not(#wpwrap) .show>.btn-warning.dropdown-toggle{color:#212529;background-color:#d39e00;border-color:#c69500}html body.bootstrapiso:not(#random_id_string)>.btn-warning:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso:not(#random_id_string)>.btn-warning:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso:not(#random_id_string)>.show>.btn-warning.dropdown-toggle:focus,html body.bootstrapiso>:not(#wpwrap) .btn-warning:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso>:not(#wpwrap) .btn-warning:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso>:not(#wpwrap) .show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-danger,html body.bootstrapiso>:not(#wpwrap) .btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}html body.bootstrapiso:not(#random_id_string)>.btn-danger:hover,html body.bootstrapiso>:not(#wpwrap) .btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}html body.bootstrapiso:not(#random_id_string)>.btn-danger.focus,html body.bootstrapiso:not(#random_id_string)>.btn-danger:focus,html body.bootstrapiso>:not(#wpwrap) .btn-danger.focus,html body.bootstrapiso>:not(#wpwrap) .btn-danger:focus{color:#fff;background-color:#c82333;border-color:#bd2130;box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-danger.disabled,html body.bootstrapiso:not(#random_id_string)>.btn-danger:disabled,html body.bootstrapiso>:not(#wpwrap) .btn-danger.disabled,html body.bootstrapiso>:not(#wpwrap) .btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}html body.bootstrapiso:not(#random_id_string)>.btn-danger:not(:disabled):not(.disabled).active,html body.bootstrapiso:not(#random_id_string)>.btn-danger:not(:disabled):not(.disabled):active,html body.bootstrapiso:not(#random_id_string)>.show>.btn-danger.dropdown-toggle,html body.bootstrapiso>:not(#wpwrap) .btn-danger:not(:disabled):not(.disabled).active,html body.bootstrapiso>:not(#wpwrap) .btn-danger:not(:disabled):not(.disabled):active,html body.bootstrapiso>:not(#wpwrap) .show>.btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d}html body.bootstrapiso:not(#random_id_string)>.btn-danger:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso:not(#random_id_string)>.btn-danger:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso:not(#random_id_string)>.show>.btn-danger.dropdown-toggle:focus,html body.bootstrapiso>:not(#wpwrap) .btn-danger:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso>:not(#wpwrap) .btn-danger:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso>:not(#wpwrap) .show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-light,html body.bootstrapiso>:not(#wpwrap) .btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}html body.bootstrapiso:not(#random_id_string)>.btn-light:hover,html body.bootstrapiso>:not(#wpwrap) .btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}html body.bootstrapiso:not(#random_id_string)>.btn-light.focus,html body.bootstrapiso:not(#random_id_string)>.btn-light:focus,html body.bootstrapiso>:not(#wpwrap) .btn-light.focus,html body.bootstrapiso>:not(#wpwrap) .btn-light:focus{color:#212529;background-color:#e2e6ea;border-color:#dae0e5;box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-light.disabled,html body.bootstrapiso:not(#random_id_string)>.btn-light:disabled,html body.bootstrapiso>:not(#wpwrap) .btn-light.disabled,html body.bootstrapiso>:not(#wpwrap) .btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}html body.bootstrapiso:not(#random_id_string)>.btn-light:not(:disabled):not(.disabled).active,html body.bootstrapiso:not(#random_id_string)>.btn-light:not(:disabled):not(.disabled):active,html body.bootstrapiso:not(#random_id_string)>.show>.btn-light.dropdown-toggle,html body.bootstrapiso>:not(#wpwrap) .btn-light:not(:disabled):not(.disabled).active,html body.bootstrapiso>:not(#wpwrap) .btn-light:not(:disabled):not(.disabled):active,html body.bootstrapiso>:not(#wpwrap) .show>.btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}html body.bootstrapiso:not(#random_id_string)>.btn-light:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso:not(#random_id_string)>.btn-light:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso:not(#random_id_string)>.show>.btn-light.dropdown-toggle:focus,html body.bootstrapiso>:not(#wpwrap) .btn-light:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso>:not(#wpwrap) .btn-light:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso>:not(#wpwrap) .show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-dark,html body.bootstrapiso>:not(#wpwrap) .btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}html body.bootstrapiso:not(#random_id_string)>.btn-dark:hover,html body.bootstrapiso>:not(#wpwrap) .btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}html body.bootstrapiso:not(#random_id_string)>.btn-dark.focus,html body.bootstrapiso:not(#random_id_string)>.btn-dark:focus,html body.bootstrapiso>:not(#wpwrap) .btn-dark.focus,html body.bootstrapiso>:not(#wpwrap) .btn-dark:focus{color:#fff;background-color:#23272b;border-color:#1d2124;box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-dark.disabled,html body.bootstrapiso:not(#random_id_string)>.btn-dark:disabled,html body.bootstrapiso>:not(#wpwrap) .btn-dark.disabled,html body.bootstrapiso>:not(#wpwrap) .btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}html body.bootstrapiso:not(#random_id_string)>.btn-dark:not(:disabled):not(.disabled).active,html body.bootstrapiso:not(#random_id_string)>.btn-dark:not(:disabled):not(.disabled):active,html body.bootstrapiso:not(#random_id_string)>.show>.btn-dark.dropdown-toggle,html body.bootstrapiso>:not(#wpwrap) .btn-dark:not(:disabled):not(.disabled).active,html body.bootstrapiso>:not(#wpwrap) .btn-dark:not(:disabled):not(.disabled):active,html body.bootstrapiso>:not(#wpwrap) .show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}html body.bootstrapiso:not(#random_id_string)>.btn-dark:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso:not(#random_id_string)>.btn-dark:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso:not(#random_id_string)>.show>.btn-dark.dropdown-toggle:focus,html body.bootstrapiso>:not(#wpwrap) .btn-dark:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso>:not(#wpwrap) .btn-dark:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso>:not(#wpwrap) .show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-outline-primary,html body.bootstrapiso>:not(#wpwrap) .btn-outline-primary{color:#007bff;border-color:#007bff}html body.bootstrapiso:not(#random_id_string)>.btn-outline-primary:hover,html body.bootstrapiso>:not(#wpwrap) .btn-outline-primary:hover{color:#fff;background-color:#007bff;border-color:#007bff}html body.bootstrapiso:not(#random_id_string)>.btn-outline-primary.focus,html body.bootstrapiso:not(#random_id_string)>.btn-outline-primary:focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-primary.focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-primary:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-outline-primary.disabled,html body.bootstrapiso:not(#random_id_string)>.btn-outline-primary:disabled,html body.bootstrapiso>:not(#wpwrap) .btn-outline-primary.disabled,html body.bootstrapiso>:not(#wpwrap) .btn-outline-primary:disabled{color:#007bff;background-color:transparent}html body.bootstrapiso:not(#random_id_string)>.btn-outline-primary:not(:disabled):not(.disabled).active,html body.bootstrapiso:not(#random_id_string)>.btn-outline-primary:not(:disabled):not(.disabled):active,html body.bootstrapiso:not(#random_id_string)>.show>.btn-outline-primary.dropdown-toggle,html body.bootstrapiso>:not(#wpwrap) .btn-outline-primary:not(:disabled):not(.disabled).active,html body.bootstrapiso>:not(#wpwrap) .btn-outline-primary:not(:disabled):not(.disabled):active,html body.bootstrapiso>:not(#wpwrap) .show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#007bff;border-color:#007bff}html body.bootstrapiso:not(#random_id_string)>.btn-outline-primary:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso:not(#random_id_string)>.btn-outline-primary:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso:not(#random_id_string)>.show>.btn-outline-primary.dropdown-toggle:focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-primary:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-primary:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso>:not(#wpwrap) .show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-outline-secondary,html body.bootstrapiso>:not(#wpwrap) .btn-outline-secondary{color:#6c757d;border-color:#6c757d}html body.bootstrapiso:not(#random_id_string)>.btn-outline-secondary:hover,html body.bootstrapiso>:not(#wpwrap) .btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}html body.bootstrapiso:not(#random_id_string)>.btn-outline-secondary.focus,html body.bootstrapiso:not(#random_id_string)>.btn-outline-secondary:focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-secondary.focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-secondary:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-outline-secondary.disabled,html body.bootstrapiso:not(#random_id_string)>.btn-outline-secondary:disabled,html body.bootstrapiso>:not(#wpwrap) .btn-outline-secondary.disabled,html body.bootstrapiso>:not(#wpwrap) .btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}html body.bootstrapiso:not(#random_id_string)>.btn-outline-secondary:not(:disabled):not(.disabled).active,html body.bootstrapiso:not(#random_id_string)>.btn-outline-secondary:not(:disabled):not(.disabled):active,html body.bootstrapiso:not(#random_id_string)>.show>.btn-outline-secondary.dropdown-toggle,html body.bootstrapiso>:not(#wpwrap) .btn-outline-secondary:not(:disabled):not(.disabled).active,html body.bootstrapiso>:not(#wpwrap) .btn-outline-secondary:not(:disabled):not(.disabled):active,html body.bootstrapiso>:not(#wpwrap) .show>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#6c757d;border-color:#6c757d}html body.bootstrapiso:not(#random_id_string)>.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso:not(#random_id_string)>.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso:not(#random_id_string)>.show>.btn-outline-secondary.dropdown-toggle:focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-secondary:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso>:not(#wpwrap) .show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-outline-success,html body.bootstrapiso>:not(#wpwrap) .btn-outline-success{color:#28a745;border-color:#28a745}html body.bootstrapiso:not(#random_id_string)>.btn-outline-success:hover,html body.bootstrapiso>:not(#wpwrap) .btn-outline-success:hover{color:#fff;background-color:#28a745;border-color:#28a745}html body.bootstrapiso:not(#random_id_string)>.btn-outline-success.focus,html body.bootstrapiso:not(#random_id_string)>.btn-outline-success:focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-success.focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-success:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-outline-success.disabled,html body.bootstrapiso:not(#random_id_string)>.btn-outline-success:disabled,html body.bootstrapiso>:not(#wpwrap) .btn-outline-success.disabled,html body.bootstrapiso>:not(#wpwrap) .btn-outline-success:disabled{color:#28a745;background-color:transparent}html body.bootstrapiso:not(#random_id_string)>.btn-outline-success:not(:disabled):not(.disabled).active,html body.bootstrapiso:not(#random_id_string)>.btn-outline-success:not(:disabled):not(.disabled):active,html body.bootstrapiso:not(#random_id_string)>.show>.btn-outline-success.dropdown-toggle,html body.bootstrapiso>:not(#wpwrap) .btn-outline-success:not(:disabled):not(.disabled).active,html body.bootstrapiso>:not(#wpwrap) .btn-outline-success:not(:disabled):not(.disabled):active,html body.bootstrapiso>:not(#wpwrap) .show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#28a745;border-color:#28a745}html body.bootstrapiso:not(#random_id_string)>.btn-outline-success:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso:not(#random_id_string)>.btn-outline-success:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso:not(#random_id_string)>.show>.btn-outline-success.dropdown-toggle:focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-success:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-success:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso>:not(#wpwrap) .show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-outline-info,html body.bootstrapiso>:not(#wpwrap) .btn-outline-info{color:#17a2b8;border-color:#17a2b8}html body.bootstrapiso:not(#random_id_string)>.btn-outline-info:hover,html body.bootstrapiso>:not(#wpwrap) .btn-outline-info:hover{color:#fff;background-color:#17a2b8;border-color:#17a2b8}html body.bootstrapiso:not(#random_id_string)>.btn-outline-info.focus,html body.bootstrapiso:not(#random_id_string)>.btn-outline-info:focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-info.focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-info:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-outline-info.disabled,html body.bootstrapiso:not(#random_id_string)>.btn-outline-info:disabled,html body.bootstrapiso>:not(#wpwrap) .btn-outline-info.disabled,html body.bootstrapiso>:not(#wpwrap) .btn-outline-info:disabled{color:#17a2b8;background-color:transparent}html body.bootstrapiso:not(#random_id_string)>.btn-outline-info:not(:disabled):not(.disabled).active,html body.bootstrapiso:not(#random_id_string)>.btn-outline-info:not(:disabled):not(.disabled):active,html body.bootstrapiso:not(#random_id_string)>.show>.btn-outline-info.dropdown-toggle,html body.bootstrapiso>:not(#wpwrap) .btn-outline-info:not(:disabled):not(.disabled).active,html body.bootstrapiso>:not(#wpwrap) .btn-outline-info:not(:disabled):not(.disabled):active,html body.bootstrapiso>:not(#wpwrap) .show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#17a2b8;border-color:#17a2b8}html body.bootstrapiso:not(#random_id_string)>.btn-outline-info:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso:not(#random_id_string)>.btn-outline-info:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso:not(#random_id_string)>.show>.btn-outline-info.dropdown-toggle:focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-info:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-info:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso>:not(#wpwrap) .show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-outline-warning,html body.bootstrapiso>:not(#wpwrap) .btn-outline-warning{color:#ffc107;border-color:#ffc107}html body.bootstrapiso:not(#random_id_string)>.btn-outline-warning:hover,html body.bootstrapiso>:not(#wpwrap) .btn-outline-warning:hover{color:#212529;background-color:#ffc107;border-color:#ffc107}html body.bootstrapiso:not(#random_id_string)>.btn-outline-warning.focus,html body.bootstrapiso:not(#random_id_string)>.btn-outline-warning:focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-warning.focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-warning:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-outline-warning.disabled,html body.bootstrapiso:not(#random_id_string)>.btn-outline-warning:disabled,html body.bootstrapiso>:not(#wpwrap) .btn-outline-warning.disabled,html body.bootstrapiso>:not(#wpwrap) .btn-outline-warning:disabled{color:#ffc107;background-color:transparent}html body.bootstrapiso:not(#random_id_string)>.btn-outline-warning:not(:disabled):not(.disabled).active,html body.bootstrapiso:not(#random_id_string)>.btn-outline-warning:not(:disabled):not(.disabled):active,html body.bootstrapiso:not(#random_id_string)>.show>.btn-outline-warning.dropdown-toggle,html body.bootstrapiso>:not(#wpwrap) .btn-outline-warning:not(:disabled):not(.disabled).active,html body.bootstrapiso>:not(#wpwrap) .btn-outline-warning:not(:disabled):not(.disabled):active,html body.bootstrapiso>:not(#wpwrap) .show>.btn-outline-warning.dropdown-toggle{color:#212529;background-color:#ffc107;border-color:#ffc107}html body.bootstrapiso:not(#random_id_string)>.btn-outline-warning:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso:not(#random_id_string)>.btn-outline-warning:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso:not(#random_id_string)>.show>.btn-outline-warning.dropdown-toggle:focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-warning:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-warning:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso>:not(#wpwrap) .show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-outline-danger,html body.bootstrapiso>:not(#wpwrap) .btn-outline-danger{color:#dc3545;border-color:#dc3545}html body.bootstrapiso:not(#random_id_string)>.btn-outline-danger:hover,html body.bootstrapiso>:not(#wpwrap) .btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}html body.bootstrapiso:not(#random_id_string)>.btn-outline-danger.focus,html body.bootstrapiso:not(#random_id_string)>.btn-outline-danger:focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-danger.focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-danger:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-outline-danger.disabled,html body.bootstrapiso:not(#random_id_string)>.btn-outline-danger:disabled,html body.bootstrapiso>:not(#wpwrap) .btn-outline-danger.disabled,html body.bootstrapiso>:not(#wpwrap) .btn-outline-danger:disabled{color:#dc3545;background-color:transparent}html body.bootstrapiso:not(#random_id_string)>.btn-outline-danger:not(:disabled):not(.disabled).active,html body.bootstrapiso:not(#random_id_string)>.btn-outline-danger:not(:disabled):not(.disabled):active,html body.bootstrapiso:not(#random_id_string)>.show>.btn-outline-danger.dropdown-toggle,html body.bootstrapiso>:not(#wpwrap) .btn-outline-danger:not(:disabled):not(.disabled).active,html body.bootstrapiso>:not(#wpwrap) .btn-outline-danger:not(:disabled):not(.disabled):active,html body.bootstrapiso>:not(#wpwrap) .show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dc3545;border-color:#dc3545}html body.bootstrapiso:not(#random_id_string)>.btn-outline-danger:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso:not(#random_id_string)>.btn-outline-danger:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso:not(#random_id_string)>.show>.btn-outline-danger.dropdown-toggle:focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-danger:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-danger:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso>:not(#wpwrap) .show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-outline-light,html body.bootstrapiso>:not(#wpwrap) .btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}html body.bootstrapiso:not(#random_id_string)>.btn-outline-light:hover,html body.bootstrapiso>:not(#wpwrap) .btn-outline-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}html body.bootstrapiso:not(#random_id_string)>.btn-outline-light.focus,html body.bootstrapiso:not(#random_id_string)>.btn-outline-light:focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-light.focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-light:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-outline-light.disabled,html body.bootstrapiso:not(#random_id_string)>.btn-outline-light:disabled,html body.bootstrapiso>:not(#wpwrap) .btn-outline-light.disabled,html body.bootstrapiso>:not(#wpwrap) .btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}html body.bootstrapiso:not(#random_id_string)>.btn-outline-light:not(:disabled):not(.disabled).active,html body.bootstrapiso:not(#random_id_string)>.btn-outline-light:not(:disabled):not(.disabled):active,html body.bootstrapiso:not(#random_id_string)>.show>.btn-outline-light.dropdown-toggle,html body.bootstrapiso>:not(#wpwrap) .btn-outline-light:not(:disabled):not(.disabled).active,html body.bootstrapiso>:not(#wpwrap) .btn-outline-light:not(:disabled):not(.disabled):active,html body.bootstrapiso>:not(#wpwrap) .show>.btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}html body.bootstrapiso:not(#random_id_string)>.btn-outline-light:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso:not(#random_id_string)>.btn-outline-light:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso:not(#random_id_string)>.show>.btn-outline-light.dropdown-toggle:focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-light:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-light:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso>:not(#wpwrap) .show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-outline-dark,html body.bootstrapiso>:not(#wpwrap) .btn-outline-dark{color:#343a40;border-color:#343a40}html body.bootstrapiso:not(#random_id_string)>.btn-outline-dark:hover,html body.bootstrapiso>:not(#wpwrap) .btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}html body.bootstrapiso:not(#random_id_string)>.btn-outline-dark.focus,html body.bootstrapiso:not(#random_id_string)>.btn-outline-dark:focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-dark.focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-dark:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-outline-dark.disabled,html body.bootstrapiso:not(#random_id_string)>.btn-outline-dark:disabled,html body.bootstrapiso>:not(#wpwrap) .btn-outline-dark.disabled,html body.bootstrapiso>:not(#wpwrap) .btn-outline-dark:disabled{color:#343a40;background-color:transparent}html body.bootstrapiso:not(#random_id_string)>.btn-outline-dark:not(:disabled):not(.disabled).active,html body.bootstrapiso:not(#random_id_string)>.btn-outline-dark:not(:disabled):not(.disabled):active,html body.bootstrapiso:not(#random_id_string)>.show>.btn-outline-dark.dropdown-toggle,html body.bootstrapiso>:not(#wpwrap) .btn-outline-dark:not(:disabled):not(.disabled).active,html body.bootstrapiso>:not(#wpwrap) .btn-outline-dark:not(:disabled):not(.disabled):active,html body.bootstrapiso>:not(#wpwrap) .show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}html body.bootstrapiso:not(#random_id_string)>.btn-outline-dark:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso:not(#random_id_string)>.btn-outline-dark:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso:not(#random_id_string)>.show>.btn-outline-dark.dropdown-toggle:focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-dark:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-dark:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso>:not(#wpwrap) .show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-link,html body.bootstrapiso>:not(#wpwrap) .btn-link{font-weight:400;color:#007bff;text-decoration:none}html body.bootstrapiso:not(#random_id_string)>.btn-link:hover,html body.bootstrapiso>:not(#wpwrap) .btn-link:hover{color:#0056b3;text-decoration:underline}html body.bootstrapiso:not(#random_id_string)>.btn-link.focus,html body.bootstrapiso:not(#random_id_string)>.btn-link:focus,html body.bootstrapiso>:not(#wpwrap) .btn-link.focus,html body.bootstrapiso>:not(#wpwrap) .btn-link:focus{text-decoration:underline}html body.bootstrapiso:not(#random_id_string)>.btn-link.disabled,html body.bootstrapiso:not(#random_id_string)>.btn-link:disabled,html body.bootstrapiso>:not(#wpwrap) .btn-link.disabled,html body.bootstrapiso>:not(#wpwrap) .btn-link:disabled{color:#6c757d;pointer-events:none}html body.bootstrapiso:not(#random_id_string)>.btn-group-lg>.btn,html body.bootstrapiso:not(#random_id_string)>.btn-lg,html body.bootstrapiso>:not(#wpwrap) .btn-group-lg>.btn,html body.bootstrapiso>:not(#wpwrap) .btn-lg{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}html body.bootstrapiso:not(#random_id_string)>.btn-group-sm>.btn,html body.bootstrapiso:not(#random_id_string)>.btn-sm,html body.bootstrapiso>:not(#wpwrap) .btn-group-sm>.btn,html body.bootstrapiso>:not(#wpwrap) .btn-sm{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}html body.bootstrapiso:not(#random_id_string)>.btn-block,html body.bootstrapiso>:not(#wpwrap) .btn-block{display:block;width:100%}html body.bootstrapiso:not(#random_id_string)>.btn-block+.btn-block,html body.bootstrapiso>:not(#wpwrap) .btn-block+.btn-block{margin-top:.5rem}html body.bootstrapiso:not(#random_id_string)>input[type=button].btn-block,html body.bootstrapiso:not(#random_id_string)>input[type=reset].btn-block,html body.bootstrapiso:not(#random_id_string)>input[type=submit].btn-block,html body.bootstrapiso>:not(#wpwrap) input[type=button].btn-block,html body.bootstrapiso>:not(#wpwrap) input[type=reset].btn-block,html body.bootstrapiso>:not(#wpwrap) input[type=submit].btn-block{width:100%}html body.bootstrapiso:not(#random_id_string)>.fade,html body.bootstrapiso>:not(#wpwrap) .fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){html body.bootstrapiso:not(#random_id_string)>.fade,html body.bootstrapiso>:not(#wpwrap) .fade{transition:none}}html body.bootstrapiso:not(#random_id_string)>.fade:not(.show),html body.bootstrapiso>:not(#wpwrap) .fade:not(.show){opacity:0}html body.bootstrapiso:not(#random_id_string)>.collapse:not(.show),html body.bootstrapiso>:not(#wpwrap) .collapse:not(.show){display:none}html body.bootstrapiso:not(#random_id_string)>.collapsing,html body.bootstrapiso>:not(#wpwrap) .collapsing{position:relative;height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){html body.bootstrapiso:not(#random_id_string)>.collapsing,html body.bootstrapiso>:not(#wpwrap) .collapsing{transition:none}}html body.bootstrapiso:not(#random_id_string)>.dropdown,html body.bootstrapiso:not(#random_id_string)>.dropleft,html body.bootstrapiso:not(#random_id_string)>.dropright,html body.bootstrapiso:not(#random_id_string)>.dropup,html body.bootstrapiso>:not(#wpwrap) .dropdown,html body.bootstrapiso>:not(#wpwrap) .dropleft,html body.bootstrapiso>:not(#wpwrap) .dropright,html body.bootstrapiso>:not(#wpwrap) .dropup{position:relative}html body.bootstrapiso:not(#random_id_string)>.dropdown-toggle,html body.bootstrapiso>:not(#wpwrap) .dropdown-toggle{white-space:nowrap}html body.bootstrapiso:not(#random_id_string)>.dropdown-toggle:after,html body.bootstrapiso>:not(#wpwrap) .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}html body.bootstrapiso:not(#random_id_string)>.dropdown-toggle:empty:after,html body.bootstrapiso>:not(#wpwrap) .dropdown-toggle:empty:after{margin-left:0}html body.bootstrapiso:not(#random_id_string)>.dropdown-menu,html body.bootstrapiso>:not(#wpwrap) .dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}html body.bootstrapiso:not(#random_id_string)>.dropdown-menu-left,html body.bootstrapiso>:not(#wpwrap) .dropdown-menu-left{right:auto;left:0}html body.bootstrapiso:not(#random_id_string)>.dropdown-menu-right,html body.bootstrapiso>:not(#wpwrap) .dropdown-menu-right{right:0;left:auto}@media (min-width:576px){html body.bootstrapiso:not(#random_id_string)>.dropdown-menu-sm-left,html body.bootstrapiso>:not(#wpwrap) .dropdown-menu-sm-left{right:auto;left:0}html body.bootstrapiso:not(#random_id_string)>.dropdown-menu-sm-right,html body.bootstrapiso>:not(#wpwrap) .dropdown-menu-sm-right{right:0;left:auto}}@media (min-width:768px){html body.bootstrapiso:not(#random_id_string)>.dropdown-menu-md-left,html body.bootstrapiso>:not(#wpwrap) .dropdown-menu-md-left{right:auto;left:0}html body.bootstrapiso:not(#random_id_string)>.dropdown-menu-md-right,html body.bootstrapiso>:not(#wpwrap) .dropdown-menu-md-right{right:0;left:auto}}@media (min-width:992px){html body.bootstrapiso:not(#random_id_string)>.dropdown-menu-lg-left,html body.bootstrapiso>:not(#wpwrap) .dropdown-menu-lg-left{right:auto;left:0}html body.bootstrapiso:not(#random_id_string)>.dropdown-menu-lg-right,html body.bootstrapiso>:not(#wpwrap) .dropdown-menu-lg-right{right:0;left:auto}}@media (min-width:1200px){html body.bootstrapiso:not(#random_id_string)>.dropdown-menu-xl-left,html body.bootstrapiso>:not(#wpwrap) .dropdown-menu-xl-left{right:auto;left:0}html body.bootstrapiso:not(#random_id_string)>.dropdown-menu-xl-right,html body.bootstrapiso>:not(#wpwrap) .dropdown-menu-xl-right{right:0;left:auto}}html body.bootstrapiso:not(#random_id_string)>.dropup .dropdown-menu,html body.bootstrapiso>:not(#wpwrap) .dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}html body.bootstrapiso:not(#random_id_string)>.dropup .dropdown-toggle:after,html body.bootstrapiso>:not(#wpwrap) .dropup .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}html body.bootstrapiso:not(#random_id_string)>.dropup .dropdown-toggle:empty:after,html body.bootstrapiso>:not(#wpwrap) .dropup .dropdown-toggle:empty:after{margin-left:0}html body.bootstrapiso:not(#random_id_string)>.dropright .dropdown-menu,html body.bootstrapiso>:not(#wpwrap) .dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}html body.bootstrapiso:not(#random_id_string)>.dropright .dropdown-toggle:after,html body.bootstrapiso>:not(#wpwrap) .dropright .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}html body.bootstrapiso:not(#random_id_string)>.dropright .dropdown-toggle:empty:after,html body.bootstrapiso>:not(#wpwrap) .dropright .dropdown-toggle:empty:after{margin-left:0}html body.bootstrapiso:not(#random_id_string)>.dropright .dropdown-toggle:after,html body.bootstrapiso>:not(#wpwrap) .dropright .dropdown-toggle:after{vertical-align:0}html body.bootstrapiso:not(#random_id_string)>.dropleft .dropdown-menu,html body.bootstrapiso>:not(#wpwrap) .dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}html body.bootstrapiso:not(#random_id_string)>.dropleft .dropdown-toggle:after,html body.bootstrapiso>:not(#wpwrap) .dropleft .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";display:none}html body.bootstrapiso:not(#random_id_string)>.dropleft .dropdown-toggle:before,html body.bootstrapiso>:not(#wpwrap) .dropleft .dropdown-toggle:before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}html body.bootstrapiso:not(#random_id_string)>.dropleft .dropdown-toggle:empty:after,html body.bootstrapiso>:not(#wpwrap) .dropleft .dropdown-toggle:empty:after{margin-left:0}html body.bootstrapiso:not(#random_id_string)>.dropleft .dropdown-toggle:before,html body.bootstrapiso>:not(#wpwrap) .dropleft .dropdown-toggle:before{vertical-align:0}html body.bootstrapiso:not(#random_id_string)>.dropdown-menu[x-placement^=bottom],html body.bootstrapiso:not(#random_id_string)>.dropdown-menu[x-placement^=left],html body.bootstrapiso:not(#random_id_string)>.dropdown-menu[x-placement^=right],html body.bootstrapiso:not(#random_id_string)>.dropdown-menu[x-placement^=top],html body.bootstrapiso>:not(#wpwrap) .dropdown-menu[x-placement^=bottom],html body.bootstrapiso>:not(#wpwrap) .dropdown-menu[x-placement^=left],html body.bootstrapiso>:not(#wpwrap) .dropdown-menu[x-placement^=right],html body.bootstrapiso>:not(#wpwrap) .dropdown-menu[x-placement^=top]{right:auto;bottom:auto}html body.bootstrapiso:not(#random_id_string)>.dropdown-divider,html body.bootstrapiso>:not(#wpwrap) .dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}html body.bootstrapiso:not(#random_id_string)>.dropdown-item,html body.bootstrapiso>:not(#wpwrap) .dropdown-item{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}html body.bootstrapiso:not(#random_id_string)>.dropdown-item:focus,html body.bootstrapiso:not(#random_id_string)>.dropdown-item:hover,html body.bootstrapiso>:not(#wpwrap) .dropdown-item:focus,html body.bootstrapiso>:not(#wpwrap) .dropdown-item:hover{color:#16181b;text-decoration:none;background-color:#f8f9fa}html body.bootstrapiso:not(#random_id_string)>.dropdown-item.active,html body.bootstrapiso:not(#random_id_string)>.dropdown-item:active,html body.bootstrapiso>:not(#wpwrap) .dropdown-item.active,html body.bootstrapiso>:not(#wpwrap) .dropdown-item:active{color:#fff;text-decoration:none;background-color:#007bff}html body.bootstrapiso:not(#random_id_string)>.dropdown-item.disabled,html body.bootstrapiso:not(#random_id_string)>.dropdown-item:disabled,html body.bootstrapiso>:not(#wpwrap) .dropdown-item.disabled,html body.bootstrapiso>:not(#wpwrap) .dropdown-item:disabled{color:#6c757d;pointer-events:none;background-color:transparent}html body.bootstrapiso:not(#random_id_string)>.dropdown-menu.show,html body.bootstrapiso>:not(#wpwrap) .dropdown-menu.show{display:block}html body.bootstrapiso:not(#random_id_string)>.dropdown-header,html body.bootstrapiso>:not(#wpwrap) .dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}html body.bootstrapiso:not(#random_id_string)>.dropdown-item-text,html body.bootstrapiso>:not(#wpwrap) .dropdown-item-text{display:block;padding:.25rem 1.5rem;color:#212529}html body.bootstrapiso:not(#random_id_string)>.btn-group,html body.bootstrapiso:not(#random_id_string)>.btn-group-vertical,html body.bootstrapiso>:not(#wpwrap) .btn-group,html body.bootstrapiso>:not(#wpwrap) .btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}html body.bootstrapiso:not(#random_id_string)>.btn-group-vertical>.btn,html body.bootstrapiso:not(#random_id_string)>.btn-group>.btn,html body.bootstrapiso>:not(#wpwrap) .btn-group-vertical>.btn,html body.bootstrapiso>:not(#wpwrap) .btn-group>.btn{position:relative;flex:1 1 auto}html body.bootstrapiso:not(#random_id_string)>.btn-group-vertical>.btn.active,html body.bootstrapiso:not(#random_id_string)>.btn-group-vertical>.btn:active,html body.bootstrapiso:not(#random_id_string)>.btn-group-vertical>.btn:focus,html body.bootstrapiso:not(#random_id_string)>.btn-group-vertical>.btn:hover,html body.bootstrapiso:not(#random_id_string)>.btn-group>.btn.active,html body.bootstrapiso:not(#random_id_string)>.btn-group>.btn:active,html body.bootstrapiso:not(#random_id_string)>.btn-group>.btn:focus,html body.bootstrapiso:not(#random_id_string)>.btn-group>.btn:hover,html body.bootstrapiso>:not(#wpwrap) .btn-group-vertical>.btn.active,html body.bootstrapiso>:not(#wpwrap) .btn-group-vertical>.btn:active,html body.bootstrapiso>:not(#wpwrap) .btn-group-vertical>.btn:focus,html body.bootstrapiso>:not(#wpwrap) .btn-group-vertical>.btn:hover,html body.bootstrapiso>:not(#wpwrap) .btn-group>.btn.active,html body.bootstrapiso>:not(#wpwrap) .btn-group>.btn:active,html body.bootstrapiso>:not(#wpwrap) .btn-group>.btn:focus,html body.bootstrapiso>:not(#wpwrap) .btn-group>.btn:hover{z-index:1}html body.bootstrapiso:not(#random_id_string)>.btn-toolbar,html body.bootstrapiso>:not(#wpwrap) .btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}html body.bootstrapiso:not(#random_id_string)>.btn-toolbar .input-group,html body.bootstrapiso>:not(#wpwrap) .btn-toolbar .input-group{width:auto}html body.bootstrapiso:not(#random_id_string)>.btn-group>.btn-group:not(:first-child),html body.bootstrapiso:not(#random_id_string)>.btn-group>.btn:not(:first-child),html body.bootstrapiso>:not(#wpwrap) .btn-group>.btn-group:not(:first-child),html body.bootstrapiso>:not(#wpwrap) .btn-group>.btn:not(:first-child){margin-left:-1px}html body.bootstrapiso:not(#random_id_string)>.btn-group>.btn-group:not(:last-child)>.btn,html body.bootstrapiso:not(#random_id_string)>.btn-group>.btn:not(:last-child):not(.dropdown-toggle),html body.bootstrapiso>:not(#wpwrap) .btn-group>.btn-group:not(:last-child)>.btn,html body.bootstrapiso>:not(#wpwrap) .btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}html body.bootstrapiso:not(#random_id_string)>.btn-group>.btn-group:not(:first-child)>.btn,html body.bootstrapiso:not(#random_id_string)>.btn-group>.btn:not(:first-child),html body.bootstrapiso>:not(#wpwrap) .btn-group>.btn-group:not(:first-child)>.btn,html body.bootstrapiso>:not(#wpwrap) .btn-group>.btn:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}html body.bootstrapiso:not(#random_id_string)>.dropdown-toggle-split,html body.bootstrapiso>:not(#wpwrap) .dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}html body.bootstrapiso:not(#random_id_string)>.dropdown-toggle-split:after,html body.bootstrapiso:not(#random_id_string)>.dropright .dropdown-toggle-split:after,html body.bootstrapiso:not(#random_id_string)>.dropup .dropdown-toggle-split:after,html body.bootstrapiso>:not(#wpwrap) .dropdown-toggle-split:after,html body.bootstrapiso>:not(#wpwrap) .dropright .dropdown-toggle-split:after,html body.bootstrapiso>:not(#wpwrap) .dropup .dropdown-toggle-split:after{margin-left:0}html body.bootstrapiso:not(#random_id_string)>.dropleft .dropdown-toggle-split:before,html body.bootstrapiso>:not(#wpwrap) .dropleft .dropdown-toggle-split:before{margin-right:0}html body.bootstrapiso:not(#random_id_string)>.btn-group-sm>.btn+.dropdown-toggle-split,html body.bootstrapiso:not(#random_id_string)>.btn-sm+.dropdown-toggle-split,html body.bootstrapiso>:not(#wpwrap) .btn-group-sm>.btn+.dropdown-toggle-split,html body.bootstrapiso>:not(#wpwrap) .btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}html body.bootstrapiso:not(#random_id_string)>.btn-group-lg>.btn+.dropdown-toggle-split,html body.bootstrapiso:not(#random_id_string)>.btn-lg+.dropdown-toggle-split,html body.bootstrapiso>:not(#wpwrap) .btn-group-lg>.btn+.dropdown-toggle-split,html body.bootstrapiso>:not(#wpwrap) .btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}html body.bootstrapiso:not(#random_id_string)>.btn-group-vertical,html body.bootstrapiso>:not(#wpwrap) .btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}html body.bootstrapiso:not(#random_id_string)>.btn-group-vertical>.btn,html body.bootstrapiso:not(#random_id_string)>.btn-group-vertical>.btn-group,html body.bootstrapiso>:not(#wpwrap) .btn-group-vertical>.btn,html body.bootstrapiso>:not(#wpwrap) .btn-group-vertical>.btn-group{width:100%}html body.bootstrapiso:not(#random_id_string)>.btn-group-vertical>.btn-group:not(:first-child),html body.bootstrapiso:not(#random_id_string)>.btn-group-vertical>.btn:not(:first-child),html body.bootstrapiso>:not(#wpwrap) .btn-group-vertical>.btn-group:not(:first-child),html body.bootstrapiso>:not(#wpwrap) .btn-group-vertical>.btn:not(:first-child){margin-top:-1px}html body.bootstrapiso:not(#random_id_string)>.btn-group-vertical>.btn-group:not(:last-child)>.btn,html body.bootstrapiso:not(#random_id_string)>.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),html body.bootstrapiso>:not(#wpwrap) .btn-group-vertical>.btn-group:not(:last-child)>.btn,html body.bootstrapiso>:not(#wpwrap) .btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}html body.bootstrapiso:not(#random_id_string)>.btn-group-vertical>.btn-group:not(:first-child)>.btn,html body.bootstrapiso:not(#random_id_string)>.btn-group-vertical>.btn:not(:first-child),html body.bootstrapiso>:not(#wpwrap) .btn-group-vertical>.btn-group:not(:first-child)>.btn,html body.bootstrapiso>:not(#wpwrap) .btn-group-vertical>.btn:not(:first-child){border-top-left-radius:0;border-top-right-radius:0}html body.bootstrapiso:not(#random_id_string)>.btn-group-toggle>.btn,html body.bootstrapiso:not(#random_id_string)>.btn-group-toggle>.btn-group>.btn,html body.bootstrapiso>:not(#wpwrap) .btn-group-toggle>.btn,html body.bootstrapiso>:not(#wpwrap) .btn-group-toggle>.btn-group>.btn{margin-bottom:0}html body.bootstrapiso:not(#random_id_string)>.btn-group-toggle>.btn-group>.btn input[type=checkbox],html body.bootstrapiso:not(#random_id_string)>.btn-group-toggle>.btn-group>.btn input[type=radio],html body.bootstrapiso:not(#random_id_string)>.btn-group-toggle>.btn input[type=checkbox],html body.bootstrapiso:not(#random_id_string)>.btn-group-toggle>.btn input[type=radio],html body.bootstrapiso>:not(#wpwrap) .btn-group-toggle>.btn-group>.btn input[type=checkbox],html body.bootstrapiso>:not(#wpwrap) .btn-group-toggle>.btn-group>.btn input[type=radio],html body.bootstrapiso>:not(#wpwrap) .btn-group-toggle>.btn input[type=checkbox],html body.bootstrapiso>:not(#wpwrap) .btn-group-toggle>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}html body.bootstrapiso:not(#random_id_string)>.input-group,html body.bootstrapiso>:not(#wpwrap) .input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}html body.bootstrapiso:not(#random_id_string)>.input-group>.custom-file,html body.bootstrapiso:not(#random_id_string)>.input-group>.custom-select,html body.bootstrapiso:not(#random_id_string)>.input-group>.form-control,html body.bootstrapiso:not(#random_id_string)>.input-group>.form-control-plaintext,html body.bootstrapiso>:not(#wpwrap) .input-group>.custom-file,html body.bootstrapiso>:not(#wpwrap) .input-group>.custom-select,html body.bootstrapiso>:not(#wpwrap) .input-group>.form-control,html body.bootstrapiso>:not(#wpwrap) .input-group>.form-control-plaintext{position:relative;flex:1 1 auto;width:1%;min-width:0;margin-bottom:0}html body.bootstrapiso:not(#random_id_string)>.input-group>.custom-file+.custom-file,html body.bootstrapiso:not(#random_id_string)>.input-group>.custom-file+.custom-select,html body.bootstrapiso:not(#random_id_string)>.input-group>.custom-file+.form-control,html body.bootstrapiso:not(#random_id_string)>.input-group>.custom-select+.custom-file,html body.bootstrapiso:not(#random_id_string)>.input-group>.custom-select+.custom-select,html body.bootstrapiso:not(#random_id_string)>.input-group>.custom-select+.form-control,html body.bootstrapiso:not(#random_id_string)>.input-group>.form-control+.custom-file,html body.bootstrapiso:not(#random_id_string)>.input-group>.form-control+.custom-select,html body.bootstrapiso:not(#random_id_string)>.input-group>.form-control+.form-control,html body.bootstrapiso:not(#random_id_string)>.input-group>.form-control-plaintext+.custom-file,html body.bootstrapiso:not(#random_id_string)>.input-group>.form-control-plaintext+.custom-select,html body.bootstrapiso:not(#random_id_string)>.input-group>.form-control-plaintext+.form-control,html body.bootstrapiso>:not(#wpwrap) .input-group>.custom-file+.custom-file,html body.bootstrapiso>:not(#wpwrap) .input-group>.custom-file+.custom-select,html body.bootstrapiso>:not(#wpwrap) .input-group>.custom-file+.form-control,html body.bootstrapiso>:not(#wpwrap) .input-group>.custom-select+.custom-file,html body.bootstrapiso>:not(#wpwrap) .input-group>.custom-select+.custom-select,html body.bootstrapiso>:not(#wpwrap) .input-group>.custom-select+.form-control,html body.bootstrapiso>:not(#wpwrap) .input-group>.form-control+.custom-file,html body.bootstrapiso>:not(#wpwrap) .input-group>.form-control+.custom-select,html body.bootstrapiso>:not(#wpwrap) .input-group>.form-control+.form-control,html body.bootstrapiso>:not(#wpwrap) .input-group>.form-control-plaintext+.custom-file,html body.bootstrapiso>:not(#wpwrap) .input-group>.form-control-plaintext+.custom-select,html body.bootstrapiso>:not(#wpwrap) .input-group>.form-control-plaintext+.form-control{margin-left:-1px}html body.bootstrapiso:not(#random_id_string)>.input-group>.custom-file .custom-file-input:focus~.custom-file-label,html body.bootstrapiso:not(#random_id_string)>.input-group>.custom-select:focus,html body.bootstrapiso:not(#random_id_string)>.input-group>.form-control:focus,html body.bootstrapiso>:not(#wpwrap) .input-group>.custom-file .custom-file-input:focus~.custom-file-label,html body.bootstrapiso>:not(#wpwrap) .input-group>.custom-select:focus,html body.bootstrapiso>:not(#wpwrap) .input-group>.form-control:focus{z-index:3}html body.bootstrapiso:not(#random_id_string)>.input-group>.custom-file .custom-file-input:focus,html body.bootstrapiso>:not(#wpwrap) .input-group>.custom-file .custom-file-input:focus{z-index:4}html body.bootstrapiso:not(#random_id_string)>.input-group>.custom-select:not(:last-child),html body.bootstrapiso:not(#random_id_string)>.input-group>.form-control:not(:last-child),html body.bootstrapiso>:not(#wpwrap) .input-group>.custom-select:not(:last-child),html body.bootstrapiso>:not(#wpwrap) .input-group>.form-control:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}html body.bootstrapiso:not(#random_id_string)>.input-group>.custom-select:not(:first-child),html body.bootstrapiso:not(#random_id_string)>.input-group>.form-control:not(:first-child),html body.bootstrapiso>:not(#wpwrap) .input-group>.custom-select:not(:first-child),html body.bootstrapiso>:not(#wpwrap) .input-group>.form-control:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}html body.bootstrapiso:not(#random_id_string)>.input-group>.custom-file,html body.bootstrapiso>:not(#wpwrap) .input-group>.custom-file{display:flex;align-items:center}html body.bootstrapiso:not(#random_id_string)>.input-group>.custom-file:not(:last-child) .custom-file-label,html body.bootstrapiso:not(#random_id_string)>.input-group>.custom-file:not(:last-child) .custom-file-label:after,html body.bootstrapiso>:not(#wpwrap) .input-group>.custom-file:not(:last-child) .custom-file-label,html body.bootstrapiso>:not(#wpwrap) .input-group>.custom-file:not(:last-child) .custom-file-label:after{border-top-right-radius:0;border-bottom-right-radius:0}html body.bootstrapiso:not(#random_id_string)>.input-group>.custom-file:not(:first-child) .custom-file-label,html body.bootstrapiso>:not(#wpwrap) .input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}html body.bootstrapiso:not(#random_id_string)>.input-group-append,html body.bootstrapiso:not(#random_id_string)>.input-group-prepend,html body.bootstrapiso>:not(#wpwrap) .input-group-append,html body.bootstrapiso>:not(#wpwrap) .input-group-prepend{display:flex}html body.bootstrapiso:not(#random_id_string)>.input-group-append .btn,html body.bootstrapiso:not(#random_id_string)>.input-group-prepend .btn,html body.bootstrapiso>:not(#wpwrap) .input-group-append .btn,html body.bootstrapiso>:not(#wpwrap) .input-group-prepend .btn{position:relative;z-index:2}html body.bootstrapiso:not(#random_id_string)>.input-group-append .btn:focus,html body.bootstrapiso:not(#random_id_string)>.input-group-prepend .btn:focus,html body.bootstrapiso>:not(#wpwrap) .input-group-append .btn:focus,html body.bootstrapiso>:not(#wpwrap) .input-group-prepend .btn:focus{z-index:3}html body.bootstrapiso:not(#random_id_string)>.input-group-append .btn+.btn,html body.bootstrapiso:not(#random_id_string)>.input-group-append .btn+.input-group-text,html body.bootstrapiso:not(#random_id_string)>.input-group-append .input-group-text+.btn,html body.bootstrapiso:not(#random_id_string)>.input-group-append .input-group-text+.input-group-text,html body.bootstrapiso:not(#random_id_string)>.input-group-prepend .btn+.btn,html body.bootstrapiso:not(#random_id_string)>.input-group-prepend .btn+.input-group-text,html body.bootstrapiso:not(#random_id_string)>.input-group-prepend .input-group-text+.btn,html body.bootstrapiso:not(#random_id_string)>.input-group-prepend .input-group-text+.input-group-text,html body.bootstrapiso>:not(#wpwrap) .input-group-append .btn+.btn,html body.bootstrapiso>:not(#wpwrap) .input-group-append .btn+.input-group-text,html body.bootstrapiso>:not(#wpwrap) .input-group-append .input-group-text+.btn,html body.bootstrapiso>:not(#wpwrap) .input-group-append .input-group-text+.input-group-text,html body.bootstrapiso>:not(#wpwrap) .input-group-prepend .btn+.btn,html body.bootstrapiso>:not(#wpwrap) .input-group-prepend .btn+.input-group-text,html body.bootstrapiso>:not(#wpwrap) .input-group-prepend .input-group-text+.btn,html body.bootstrapiso>:not(#wpwrap) .input-group-prepend .input-group-text+.input-group-text{margin-left:-1px}html body.bootstrapiso:not(#random_id_string)>.input-group-prepend,html body.bootstrapiso>:not(#wpwrap) .input-group-prepend{margin-right:-1px}html body.bootstrapiso:not(#random_id_string)>.input-group-append,html body.bootstrapiso>:not(#wpwrap) .input-group-append{margin-left:-1px}html body.bootstrapiso:not(#random_id_string)>.input-group-text,html body.bootstrapiso>:not(#wpwrap) .input-group-text{display:flex;align-items:center;padding:.375rem .75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}html body.bootstrapiso:not(#random_id_string)>.input-group-text input[type=checkbox],html body.bootstrapiso:not(#random_id_string)>.input-group-text input[type=radio],html body.bootstrapiso>:not(#wpwrap) .input-group-text input[type=checkbox],html body.bootstrapiso>:not(#wpwrap) .input-group-text input[type=radio]{margin-top:0}html body.bootstrapiso:not(#random_id_string)>.input-group-lg>.custom-select,html body.bootstrapiso:not(#random_id_string)>.input-group-lg>.form-control:not(textarea),html body.bootstrapiso>:not(#wpwrap) .input-group-lg>.custom-select,html body.bootstrapiso>:not(#wpwrap) .input-group-lg>.form-control:not(textarea){height:calc(1.5em + 1rem + 2px)}html body.bootstrapiso:not(#random_id_string)>.input-group-lg>.custom-select,html body.bootstrapiso:not(#random_id_string)>.input-group-lg>.form-control,html body.bootstrapiso:not(#random_id_string)>.input-group-lg>.input-group-append>.btn,html body.bootstrapiso:not(#random_id_string)>.input-group-lg>.input-group-append>.input-group-text,html body.bootstrapiso:not(#random_id_string)>.input-group-lg>.input-group-prepend>.btn,html body.bootstrapiso:not(#random_id_string)>.input-group-lg>.input-group-prepend>.input-group-text,html body.bootstrapiso>:not(#wpwrap) .input-group-lg>.custom-select,html body.bootstrapiso>:not(#wpwrap) .input-group-lg>.form-control,html body.bootstrapiso>:not(#wpwrap) .input-group-lg>.input-group-append>.btn,html body.bootstrapiso>:not(#wpwrap) .input-group-lg>.input-group-append>.input-group-text,html body.bootstrapiso>:not(#wpwrap) .input-group-lg>.input-group-prepend>.btn,html body.bootstrapiso>:not(#wpwrap) .input-group-lg>.input-group-prepend>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}html body.bootstrapiso:not(#random_id_string)>.input-group-sm>.custom-select,html body.bootstrapiso:not(#random_id_string)>.input-group-sm>.form-control:not(textarea),html body.bootstrapiso>:not(#wpwrap) .input-group-sm>.custom-select,html body.bootstrapiso>:not(#wpwrap) .input-group-sm>.form-control:not(textarea){height:calc(1.5em + .5rem + 2px)}html body.bootstrapiso:not(#random_id_string)>.input-group-sm>.custom-select,html body.bootstrapiso:not(#random_id_string)>.input-group-sm>.form-control,html body.bootstrapiso:not(#random_id_string)>.input-group-sm>.input-group-append>.btn,html body.bootstrapiso:not(#random_id_string)>.input-group-sm>.input-group-append>.input-group-text,html body.bootstrapiso:not(#random_id_string)>.input-group-sm>.input-group-prepend>.btn,html body.bootstrapiso:not(#random_id_string)>.input-group-sm>.input-group-prepend>.input-group-text,html body.bootstrapiso>:not(#wpwrap) .input-group-sm>.custom-select,html body.bootstrapiso>:not(#wpwrap) .input-group-sm>.form-control,html body.bootstrapiso>:not(#wpwrap) .input-group-sm>.input-group-append>.btn,html body.bootstrapiso>:not(#wpwrap) .input-group-sm>.input-group-append>.input-group-text,html body.bootstrapiso>:not(#wpwrap) .input-group-sm>.input-group-prepend>.btn,html body.bootstrapiso>:not(#wpwrap) .input-group-sm>.input-group-prepend>.input-group-text{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}html body.bootstrapiso:not(#random_id_string)>.input-group-lg>.custom-select,html body.bootstrapiso:not(#random_id_string)>.input-group-sm>.custom-select,html body.bootstrapiso>:not(#wpwrap) .input-group-lg>.custom-select,html body.bootstrapiso>:not(#wpwrap) .input-group-sm>.custom-select{padding-right:1.75rem}html body.bootstrapiso:not(#random_id_string)>.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),html body.bootstrapiso:not(#random_id_string)>.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),html body.bootstrapiso:not(#random_id_string)>.input-group>.input-group-append:not(:last-child)>.btn,html body.bootstrapiso:not(#random_id_string)>.input-group>.input-group-append:not(:last-child)>.input-group-text,html body.bootstrapiso:not(#random_id_string)>.input-group>.input-group-prepend>.btn,html body.bootstrapiso:not(#random_id_string)>.input-group>.input-group-prepend>.input-group-text,html body.bootstrapiso>:not(#wpwrap) .input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),html body.bootstrapiso>:not(#wpwrap) .input-group>.input-group-append:last-child>.input-group-text:not(:last-child),html body.bootstrapiso>:not(#wpwrap) .input-group>.input-group-append:not(:last-child)>.btn,html body.bootstrapiso>:not(#wpwrap) .input-group>.input-group-append:not(:last-child)>.input-group-text,html body.bootstrapiso>:not(#wpwrap) .input-group>.input-group-prepend>.btn,html body.bootstrapiso>:not(#wpwrap) .input-group>.input-group-prepend>.input-group-text{border-top-right-radius:0;border-bottom-right-radius:0}html body.bootstrapiso:not(#random_id_string)>.input-group>.input-group-append>.btn,html body.bootstrapiso:not(#random_id_string)>.input-group>.input-group-append>.input-group-text,html body.bootstrapiso:not(#random_id_string)>.input-group>.input-group-prepend:first-child>.btn:not(:first-child),html body.bootstrapiso:not(#random_id_string)>.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),html body.bootstrapiso:not(#random_id_string)>.input-group>.input-group-prepend:not(:first-child)>.btn,html body.bootstrapiso:not(#random_id_string)>.input-group>.input-group-prepend:not(:first-child)>.input-group-text,html body.bootstrapiso>:not(#wpwrap) .input-group>.input-group-append>.btn,html body.bootstrapiso>:not(#wpwrap) .input-group>.input-group-append>.input-group-text,html body.bootstrapiso>:not(#wpwrap) .input-group>.input-group-prepend:first-child>.btn:not(:first-child),html body.bootstrapiso>:not(#wpwrap) .input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),html body.bootstrapiso>:not(#wpwrap) .input-group>.input-group-prepend:not(:first-child)>.btn,html body.bootstrapiso>:not(#wpwrap) .input-group>.input-group-prepend:not(:first-child)>.input-group-text{border-top-left-radius:0;border-bottom-left-radius:0}html body.bootstrapiso:not(#random_id_string)>.custom-control,html body.bootstrapiso>:not(#wpwrap) .custom-control{position:relative;display:block;min-height:1.5rem;padding-left:1.5rem}html body.bootstrapiso:not(#random_id_string)>.custom-control-inline,html body.bootstrapiso>:not(#wpwrap) .custom-control-inline{display:inline-flex;margin-right:1rem}html body.bootstrapiso:not(#random_id_string)>.custom-control-input,html body.bootstrapiso>:not(#wpwrap) .custom-control-input{position:absolute;left:0;z-index:-1;width:1rem;height:1.25rem;opacity:0}html body.bootstrapiso:not(#random_id_string)>.custom-control-input:checked~.custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .custom-control-input:checked~.custom-control-label:before{color:#fff;border-color:#007bff;background-color:#007bff}html body.bootstrapiso:not(#random_id_string)>.custom-control-input:focus~.custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .custom-control-input:focus~.custom-control-label:before{box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}html body.bootstrapiso:not(#random_id_string)>.custom-control-input:focus:not(:checked)~.custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .custom-control-input:focus:not(:checked)~.custom-control-label:before{border-color:#80bdff}html body.bootstrapiso:not(#random_id_string)>.custom-control-input:not(:disabled):active~.custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .custom-control-input:not(:disabled):active~.custom-control-label:before{color:#fff;background-color:#b3d7ff;border-color:#b3d7ff}html body.bootstrapiso:not(#random_id_string)>.custom-control-input:disabled~.custom-control-label,html body.bootstrapiso:not(#random_id_string)>.custom-control-input[disabled]~.custom-control-label,html body.bootstrapiso>:not(#wpwrap) .custom-control-input:disabled~.custom-control-label,html body.bootstrapiso>:not(#wpwrap) .custom-control-input[disabled]~.custom-control-label{color:#6c757d}html body.bootstrapiso:not(#random_id_string)>.custom-control-input:disabled~.custom-control-label:before,html body.bootstrapiso:not(#random_id_string)>.custom-control-input[disabled]~.custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .custom-control-input:disabled~.custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .custom-control-input[disabled]~.custom-control-label:before{background-color:#e9ecef}html body.bootstrapiso:not(#random_id_string)>.custom-control-label,html body.bootstrapiso>:not(#wpwrap) .custom-control-label{position:relative;margin-bottom:0;vertical-align:top}html body.bootstrapiso:not(#random_id_string)>.custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .custom-control-label:before{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";background-color:#fff;border:1px solid #adb5bd}html body.bootstrapiso:not(#random_id_string)>.custom-control-label:after,html body.bootstrapiso>:not(#wpwrap) .custom-control-label:after{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:"";background:no-repeat 50%/50% 50%}html body.bootstrapiso:not(#random_id_string)>.custom-checkbox .custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .custom-checkbox .custom-control-label:before{border-radius:.25rem}html body.bootstrapiso:not(#random_id_string)>.custom-checkbox .custom-control-input:checked~.custom-control-label:after,html body.bootstrapiso>:not(#wpwrap) .custom-checkbox .custom-control-input:checked~.custom-control-label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3E%3C/svg%3E")}html body.bootstrapiso:not(#random_id_string)>.custom-checkbox .custom-control-input:indeterminate~.custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .custom-checkbox .custom-control-input:indeterminate~.custom-control-label:before{border-color:#007bff;background-color:#007bff}html body.bootstrapiso:not(#random_id_string)>.custom-checkbox .custom-control-input:indeterminate~.custom-control-label:after,html body.bootstrapiso>:not(#wpwrap) .custom-checkbox .custom-control-input:indeterminate~.custom-control-label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E")}html body.bootstrapiso:not(#random_id_string)>.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .custom-checkbox .custom-control-input:disabled:checked~.custom-control-label:before{background-color:rgba(0,123,255,.5)}html body.bootstrapiso:not(#random_id_string)>.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label:before{background-color:rgba(0,123,255,.5)}html body.bootstrapiso:not(#random_id_string)>.custom-radio .custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .custom-radio .custom-control-label:before{border-radius:50%}html body.bootstrapiso:not(#random_id_string)>.custom-radio .custom-control-input:checked~.custom-control-label:after,html body.bootstrapiso>:not(#wpwrap) .custom-radio .custom-control-input:checked~.custom-control-label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E")}html body.bootstrapiso:not(#random_id_string)>.custom-radio .custom-control-input:disabled:checked~.custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .custom-radio .custom-control-input:disabled:checked~.custom-control-label:before{background-color:rgba(0,123,255,.5)}html body.bootstrapiso:not(#random_id_string)>.custom-switch,html body.bootstrapiso>:not(#wpwrap) .custom-switch{padding-left:2.25rem}html body.bootstrapiso:not(#random_id_string)>.custom-switch .custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .custom-switch .custom-control-label:before{left:-2.25rem;width:1.75rem;pointer-events:all;border-radius:.5rem}html body.bootstrapiso:not(#random_id_string)>.custom-switch .custom-control-label:after,html body.bootstrapiso>:not(#wpwrap) .custom-switch .custom-control-label:after{top:calc(.25rem + 2px);left:calc(-2.25rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);background-color:#adb5bd;border-radius:.5rem;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){html body.bootstrapiso:not(#random_id_string)>.custom-switch .custom-control-label:after,html body.bootstrapiso>:not(#wpwrap) .custom-switch .custom-control-label:after{transition:none}}html body.bootstrapiso:not(#random_id_string)>.custom-switch .custom-control-input:checked~.custom-control-label:after,html body.bootstrapiso>:not(#wpwrap) .custom-switch .custom-control-input:checked~.custom-control-label:after{background-color:#fff;transform:translateX(.75rem)}html body.bootstrapiso:not(#random_id_string)>.custom-switch .custom-control-input:disabled:checked~.custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .custom-switch .custom-control-input:disabled:checked~.custom-control-label:before{background-color:rgba(0,123,255,.5)}html body.bootstrapiso:not(#random_id_string)>.custom-select,html body.bootstrapiso>:not(#wpwrap) .custom-select{display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem 1.75rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;vertical-align:middle;background:#fff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center/8px 10px;border:1px solid #ced4da;border-radius:.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}html body.bootstrapiso:not(#random_id_string)>.custom-select:focus,html body.bootstrapiso>:not(#wpwrap) .custom-select:focus{border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}html body.bootstrapiso:not(#random_id_string)>.custom-select:focus::-ms-value,html body.bootstrapiso>:not(#wpwrap) .custom-select:focus::-ms-value{color:#495057;background-color:#fff}html body.bootstrapiso:not(#random_id_string)>.custom-select[multiple],html body.bootstrapiso:not(#random_id_string)>.custom-select[size]:not([size="1"]),html body.bootstrapiso>:not(#wpwrap) .custom-select[multiple],html body.bootstrapiso>:not(#wpwrap) .custom-select[size]:not([size="1"]){height:auto;padding-right:.75rem;background-image:none}html body.bootstrapiso:not(#random_id_string)>.custom-select:disabled,html body.bootstrapiso>:not(#wpwrap) .custom-select:disabled{color:#6c757d;background-color:#e9ecef}html body.bootstrapiso:not(#random_id_string)>.custom-select::-ms-expand,html body.bootstrapiso>:not(#wpwrap) .custom-select::-ms-expand{display:none}html body.bootstrapiso:not(#random_id_string)>.custom-select:-moz-focusring,html body.bootstrapiso>:not(#wpwrap) .custom-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}html body.bootstrapiso:not(#random_id_string)>.custom-select-sm,html body.bootstrapiso>:not(#wpwrap) .custom-select-sm{height:calc(1.5em + .5rem + 2px);padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}html body.bootstrapiso:not(#random_id_string)>.custom-select-lg,html body.bootstrapiso>:not(#wpwrap) .custom-select-lg{height:calc(1.5em + 1rem + 2px);padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}html body.bootstrapiso:not(#random_id_string)>.custom-file,html body.bootstrapiso>:not(#wpwrap) .custom-file{position:relative;display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);margin-bottom:0}html body.bootstrapiso:not(#random_id_string)>.custom-file-input,html body.bootstrapiso>:not(#wpwrap) .custom-file-input{position:relative;z-index:2;width:100%;height:calc(1.5em + .75rem + 2px);margin:0;opacity:0}html body.bootstrapiso:not(#random_id_string)>.custom-file-input:focus~.custom-file-label,html body.bootstrapiso>:not(#wpwrap) .custom-file-input:focus~.custom-file-label{border-color:#80bdff;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}html body.bootstrapiso:not(#random_id_string)>.custom-file-input:disabled~.custom-file-label,html body.bootstrapiso:not(#random_id_string)>.custom-file-input[disabled]~.custom-file-label,html body.bootstrapiso>:not(#wpwrap) .custom-file-input:disabled~.custom-file-label,html body.bootstrapiso>:not(#wpwrap) .custom-file-input[disabled]~.custom-file-label{background-color:#e9ecef}html body.bootstrapiso:not(#random_id_string)>.custom-file-input:lang(en)~.custom-file-label:after,html body.bootstrapiso>:not(#wpwrap) .custom-file-input:lang(en)~.custom-file-label:after{content:"Browse"}html body.bootstrapiso:not(#random_id_string)>.custom-file-input~.custom-file-label[data-browse]:after,html body.bootstrapiso>:not(#wpwrap) .custom-file-input~.custom-file-label[data-browse]:after{content:attr(data-browse)}html body.bootstrapiso:not(#random_id_string)>.custom-file-label,html body.bootstrapiso>:not(#wpwrap) .custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem}html body.bootstrapiso:not(#random_id_string)>.custom-file-label:after,html body.bootstrapiso>:not(#wpwrap) .custom-file-label:after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:calc(1.5em + .75rem);padding:.375rem .75rem;line-height:1.5;color:#495057;content:"Browse";background-color:#e9ecef;border-left:inherit;border-radius:0 .25rem .25rem 0}html body.bootstrapiso:not(#random_id_string)>.custom-range,html body.bootstrapiso>:not(#wpwrap) .custom-range{width:100%;height:1.4rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}html body.bootstrapiso:not(#random_id_string)>.custom-range:focus,html body.bootstrapiso>:not(#wpwrap) .custom-range:focus{outline:none}html body.bootstrapiso:not(#random_id_string)>.custom-range:focus::-webkit-slider-thumb,html body.bootstrapiso>:not(#wpwrap) .custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}html body.bootstrapiso:not(#random_id_string)>.custom-range:focus::-moz-range-thumb,html body.bootstrapiso>:not(#wpwrap) .custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}html body.bootstrapiso:not(#random_id_string)>.custom-range:focus::-ms-thumb,html body.bootstrapiso>:not(#wpwrap) .custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}html body.bootstrapiso:not(#random_id_string)>.custom-range::-moz-focus-outer,html body.bootstrapiso>:not(#wpwrap) .custom-range::-moz-focus-outer{border:0}html body.bootstrapiso:not(#random_id_string)>.custom-range::-webkit-slider-thumb,html body.bootstrapiso>:not(#wpwrap) .custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#007bff;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){html body.bootstrapiso:not(#random_id_string)>.custom-range::-webkit-slider-thumb,html body.bootstrapiso>:not(#wpwrap) .custom-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}html body.bootstrapiso:not(#random_id_string)>.custom-range::-webkit-slider-thumb:active,html body.bootstrapiso>:not(#wpwrap) .custom-range::-webkit-slider-thumb:active{background-color:#b3d7ff}html body.bootstrapiso:not(#random_id_string)>.custom-range::-webkit-slider-runnable-track,html body.bootstrapiso>:not(#wpwrap) .custom-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}html body.bootstrapiso:not(#random_id_string)>.custom-range::-moz-range-thumb,html body.bootstrapiso>:not(#wpwrap) .custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#007bff;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){html body.bootstrapiso:not(#random_id_string)>.custom-range::-moz-range-thumb,html body.bootstrapiso>:not(#wpwrap) .custom-range::-moz-range-thumb{-moz-transition:none;transition:none}}html body.bootstrapiso:not(#random_id_string)>.custom-range::-moz-range-thumb:active,html body.bootstrapiso>:not(#wpwrap) .custom-range::-moz-range-thumb:active{background-color:#b3d7ff}html body.bootstrapiso:not(#random_id_string)>.custom-range::-moz-range-track,html body.bootstrapiso>:not(#wpwrap) .custom-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}html body.bootstrapiso:not(#random_id_string)>.custom-range::-ms-thumb,html body.bootstrapiso>:not(#wpwrap) .custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:.2rem;margin-left:.2rem;background-color:#007bff;border:0;border-radius:1rem;-ms-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media (prefers-reduced-motion:reduce){html body.bootstrapiso:not(#random_id_string)>.custom-range::-ms-thumb,html body.bootstrapiso>:not(#wpwrap) .custom-range::-ms-thumb{-ms-transition:none;transition:none}}html body.bootstrapiso:not(#random_id_string)>.custom-range::-ms-thumb:active,html body.bootstrapiso>:not(#wpwrap) .custom-range::-ms-thumb:active{background-color:#b3d7ff}html body.bootstrapiso:not(#random_id_string)>.custom-range::-ms-track,html body.bootstrapiso>:not(#wpwrap) .custom-range::-ms-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:.5rem}html body.bootstrapiso:not(#random_id_string)>.custom-range::-ms-fill-lower,html body.bootstrapiso>:not(#wpwrap) .custom-range::-ms-fill-lower{background-color:#dee2e6;border-radius:1rem}html body.bootstrapiso:not(#random_id_string)>.custom-range::-ms-fill-upper,html body.bootstrapiso>:not(#wpwrap) .custom-range::-ms-fill-upper{margin-right:15px;background-color:#dee2e6;border-radius:1rem}html body.bootstrapiso:not(#random_id_string)>.custom-range:disabled::-webkit-slider-thumb,html body.bootstrapiso>:not(#wpwrap) .custom-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}html body.bootstrapiso:not(#random_id_string)>.custom-range:disabled::-webkit-slider-runnable-track,html body.bootstrapiso>:not(#wpwrap) .custom-range:disabled::-webkit-slider-runnable-track{cursor:default}html body.bootstrapiso:not(#random_id_string)>.custom-range:disabled::-moz-range-thumb,html body.bootstrapiso>:not(#wpwrap) .custom-range:disabled::-moz-range-thumb{background-color:#adb5bd}html body.bootstrapiso:not(#random_id_string)>.custom-range:disabled::-moz-range-track,html body.bootstrapiso>:not(#wpwrap) .custom-range:disabled::-moz-range-track{cursor:default}html body.bootstrapiso:not(#random_id_string)>.custom-range:disabled::-ms-thumb,html body.bootstrapiso>:not(#wpwrap) .custom-range:disabled::-ms-thumb{background-color:#adb5bd}html body.bootstrapiso:not(#random_id_string)>.custom-control-label:before,html body.bootstrapiso:not(#random_id_string)>.custom-file-label,html body.bootstrapiso:not(#random_id_string)>.custom-select,html body.bootstrapiso>:not(#wpwrap) .custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .custom-file-label,html body.bootstrapiso>:not(#wpwrap) .custom-select{transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){html body.bootstrapiso:not(#random_id_string)>.custom-control-label:before,html body.bootstrapiso:not(#random_id_string)>.custom-file-label,html body.bootstrapiso:not(#random_id_string)>.custom-select,html body.bootstrapiso>:not(#wpwrap) .custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .custom-file-label,html body.bootstrapiso>:not(#wpwrap) .custom-select{transition:none}}html body.bootstrapiso:not(#random_id_string)>.nav,html body.bootstrapiso>:not(#wpwrap) .nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}html body.bootstrapiso:not(#random_id_string)>.nav-link,html body.bootstrapiso>:not(#wpwrap) .nav-link{display:block;padding:.5rem 1rem}html body.bootstrapiso:not(#random_id_string)>.nav-link:focus,html body.bootstrapiso:not(#random_id_string)>.nav-link:hover,html body.bootstrapiso>:not(#wpwrap) .nav-link:focus,html body.bootstrapiso>:not(#wpwrap) .nav-link:hover{text-decoration:none}html body.bootstrapiso:not(#random_id_string)>.nav-link.disabled,html body.bootstrapiso>:not(#wpwrap) .nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}html body.bootstrapiso:not(#random_id_string)>.nav-tabs,html body.bootstrapiso>:not(#wpwrap) .nav-tabs{border-bottom:1px solid #dee2e6}html body.bootstrapiso:not(#random_id_string)>.nav-tabs .nav-item,html body.bootstrapiso>:not(#wpwrap) .nav-tabs .nav-item{margin-bottom:-1px}html body.bootstrapiso:not(#random_id_string)>.nav-tabs .nav-link,html body.bootstrapiso>:not(#wpwrap) .nav-tabs .nav-link{border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}html body.bootstrapiso:not(#random_id_string)>.nav-tabs .nav-link:focus,html body.bootstrapiso:not(#random_id_string)>.nav-tabs .nav-link:hover,html body.bootstrapiso>:not(#wpwrap) .nav-tabs .nav-link:focus,html body.bootstrapiso>:not(#wpwrap) .nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6}html body.bootstrapiso:not(#random_id_string)>.nav-tabs .nav-link.disabled,html body.bootstrapiso>:not(#wpwrap) .nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}html body.bootstrapiso:not(#random_id_string)>.nav-tabs .nav-item.show .nav-link,html body.bootstrapiso:not(#random_id_string)>.nav-tabs .nav-link.active,html body.bootstrapiso>:not(#wpwrap) .nav-tabs .nav-item.show .nav-link,html body.bootstrapiso>:not(#wpwrap) .nav-tabs .nav-link.active{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}html body.bootstrapiso:not(#random_id_string)>.nav-tabs .dropdown-menu,html body.bootstrapiso>:not(#wpwrap) .nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}html body.bootstrapiso:not(#random_id_string)>.nav-pills .nav-link,html body.bootstrapiso>:not(#wpwrap) .nav-pills .nav-link{border-radius:.25rem}html body.bootstrapiso:not(#random_id_string)>.nav-pills .nav-link.active,html body.bootstrapiso:not(#random_id_string)>.nav-pills .show>.nav-link,html body.bootstrapiso>:not(#wpwrap) .nav-pills .nav-link.active,html body.bootstrapiso>:not(#wpwrap) .nav-pills .show>.nav-link{color:#fff;background-color:#007bff}html body.bootstrapiso:not(#random_id_string)>.nav-fill .nav-item,html body.bootstrapiso>:not(#wpwrap) .nav-fill .nav-item{flex:1 1 auto;text-align:center}html body.bootstrapiso:not(#random_id_string)>.nav-justified .nav-item,html body.bootstrapiso>:not(#wpwrap) .nav-justified .nav-item{flex-basis:0;flex-grow:1;text-align:center}html body.bootstrapiso:not(#random_id_string)>.tab-content>.tab-pane,html body.bootstrapiso>:not(#wpwrap) .tab-content>.tab-pane{display:none}html body.bootstrapiso:not(#random_id_string)>.tab-content>.active,html body.bootstrapiso>:not(#wpwrap) .tab-content>.active{display:block}html body.bootstrapiso:not(#random_id_string)>.navbar,html body.bootstrapiso>:not(#wpwrap) .navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding:.5rem 1rem}html body.bootstrapiso:not(#random_id_string)>.navbar .container,html body.bootstrapiso:not(#random_id_string)>.navbar .container-fluid,html body.bootstrapiso:not(#random_id_string)>.navbar .container-lg,html body.bootstrapiso:not(#random_id_string)>.navbar .container-md,html body.bootstrapiso:not(#random_id_string)>.navbar .container-sm,html body.bootstrapiso:not(#random_id_string)>.navbar .container-xl,html body.bootstrapiso>:not(#wpwrap) .navbar .container,html body.bootstrapiso>:not(#wpwrap) .navbar .container-fluid,html body.bootstrapiso>:not(#wpwrap) .navbar .container-lg,html body.bootstrapiso>:not(#wpwrap) .navbar .container-md,html body.bootstrapiso>:not(#wpwrap) .navbar .container-sm,html body.bootstrapiso>:not(#wpwrap) .navbar .container-xl{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between}html body.bootstrapiso:not(#random_id_string)>.navbar-brand,html body.bootstrapiso>:not(#wpwrap) .navbar-brand{display:inline-block;padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;line-height:inherit;white-space:nowrap}html body.bootstrapiso:not(#random_id_string)>.navbar-brand:focus,html body.bootstrapiso:not(#random_id_string)>.navbar-brand:hover,html body.bootstrapiso>:not(#wpwrap) .navbar-brand:focus,html body.bootstrapiso>:not(#wpwrap) .navbar-brand:hover{text-decoration:none}html body.bootstrapiso:not(#random_id_string)>.navbar-nav,html body.bootstrapiso>:not(#wpwrap) .navbar-nav{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}html body.bootstrapiso:not(#random_id_string)>.navbar-nav .nav-link,html body.bootstrapiso>:not(#wpwrap) .navbar-nav .nav-link{padding-right:0;padding-left:0}html body.bootstrapiso:not(#random_id_string)>.navbar-nav .dropdown-menu,html body.bootstrapiso>:not(#wpwrap) .navbar-nav .dropdown-menu{position:static;float:none}html body.bootstrapiso:not(#random_id_string)>.navbar-text,html body.bootstrapiso>:not(#wpwrap) .navbar-text{display:inline-block;padding-top:.5rem;padding-bottom:.5rem}html body.bootstrapiso:not(#random_id_string)>.navbar-collapse,html body.bootstrapiso>:not(#wpwrap) .navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}html body.bootstrapiso:not(#random_id_string)>.navbar-toggler,html body.bootstrapiso>:not(#wpwrap) .navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem}html body.bootstrapiso:not(#random_id_string)>.navbar-toggler:focus,html body.bootstrapiso:not(#random_id_string)>.navbar-toggler:hover,html body.bootstrapiso>:not(#wpwrap) .navbar-toggler:focus,html body.bootstrapiso>:not(#wpwrap) .navbar-toggler:hover{text-decoration:none}html body.bootstrapiso:not(#random_id_string)>.navbar-toggler-icon,html body.bootstrapiso>:not(#wpwrap) .navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:no-repeat 50%;background-size:100% 100%}@media (max-width:575.98px){html body.bootstrapiso:not(#random_id_string)>.navbar-expand-sm>.container,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-sm>.container-fluid,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-sm>.container-lg,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-sm>.container-md,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-sm>.container-sm,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-sm>.container-xl,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-sm>.container,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-sm>.container-fluid,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-sm>.container-lg,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-sm>.container-md,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-sm>.container-sm,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-sm>.container-xl{padding-right:0;padding-left:0}}@media (min-width:576px){html body.bootstrapiso:not(#random_id_string)>.navbar-expand-sm,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-sm{flex-flow:row nowrap;justify-content:flex-start}html body.bootstrapiso:not(#random_id_string)>.navbar-expand-sm .navbar-nav,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-sm .navbar-nav{flex-direction:row}html body.bootstrapiso:not(#random_id_string)>.navbar-expand-sm .navbar-nav .dropdown-menu,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}html body.bootstrapiso:not(#random_id_string)>.navbar-expand-sm .navbar-nav .nav-link,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}html body.bootstrapiso:not(#random_id_string)>.navbar-expand-sm>.container,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-sm>.container-fluid,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-sm>.container-lg,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-sm>.container-md,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-sm>.container-sm,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-sm>.container-xl,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-sm>.container,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-sm>.container-fluid,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-sm>.container-lg,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-sm>.container-md,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-sm>.container-sm,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-sm>.container-xl{flex-wrap:nowrap}html body.bootstrapiso:not(#random_id_string)>.navbar-expand-sm .navbar-collapse,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}html body.bootstrapiso:not(#random_id_string)>.navbar-expand-sm .navbar-toggler,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-sm .navbar-toggler{display:none}}@media (max-width:767.98px){html body.bootstrapiso:not(#random_id_string)>.navbar-expand-md>.container,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-md>.container-fluid,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-md>.container-lg,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-md>.container-md,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-md>.container-sm,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-md>.container-xl,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-md>.container,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-md>.container-fluid,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-md>.container-lg,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-md>.container-md,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-md>.container-sm,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-md>.container-xl{padding-right:0;padding-left:0}}@media (min-width:768px){html body.bootstrapiso:not(#random_id_string)>.navbar-expand-md,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-md{flex-flow:row nowrap;justify-content:flex-start}html body.bootstrapiso:not(#random_id_string)>.navbar-expand-md .navbar-nav,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-md .navbar-nav{flex-direction:row}html body.bootstrapiso:not(#random_id_string)>.navbar-expand-md .navbar-nav .dropdown-menu,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}html body.bootstrapiso:not(#random_id_string)>.navbar-expand-md .navbar-nav .nav-link,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}html body.bootstrapiso:not(#random_id_string)>.navbar-expand-md>.container,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-md>.container-fluid,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-md>.container-lg,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-md>.container-md,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-md>.container-sm,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-md>.container-xl,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-md>.container,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-md>.container-fluid,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-md>.container-lg,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-md>.container-md,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-md>.container-sm,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-md>.container-xl{flex-wrap:nowrap}html body.bootstrapiso:not(#random_id_string)>.navbar-expand-md .navbar-collapse,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}html body.bootstrapiso:not(#random_id_string)>.navbar-expand-md .navbar-toggler,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-md .navbar-toggler{display:none}}@media (max-width:991.98px){html body.bootstrapiso:not(#random_id_string)>.navbar-expand-lg>.container,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-lg>.container-fluid,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-lg>.container-lg,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-lg>.container-md,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-lg>.container-sm,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-lg>.container-xl,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-lg>.container,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-lg>.container-fluid,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-lg>.container-lg,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-lg>.container-md,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-lg>.container-sm,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-lg>.container-xl{padding-right:0;padding-left:0}}@media (min-width:992px){html body.bootstrapiso:not(#random_id_string)>.navbar-expand-lg,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-lg{flex-flow:row nowrap;justify-content:flex-start}html body.bootstrapiso:not(#random_id_string)>.navbar-expand-lg .navbar-nav,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-lg .navbar-nav{flex-direction:row}html body.bootstrapiso:not(#random_id_string)>.navbar-expand-lg .navbar-nav .dropdown-menu,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}html body.bootstrapiso:not(#random_id_string)>.navbar-expand-lg .navbar-nav .nav-link,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}html body.bootstrapiso:not(#random_id_string)>.navbar-expand-lg>.container,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-lg>.container-fluid,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-lg>.container-lg,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-lg>.container-md,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-lg>.container-sm,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-lg>.container-xl,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-lg>.container,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-lg>.container-fluid,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-lg>.container-lg,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-lg>.container-md,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-lg>.container-sm,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-lg>.container-xl{flex-wrap:nowrap}html body.bootstrapiso:not(#random_id_string)>.navbar-expand-lg .navbar-collapse,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}html body.bootstrapiso:not(#random_id_string)>.navbar-expand-lg .navbar-toggler,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-lg .navbar-toggler{display:none}}@media (max-width:1199.98px){html body.bootstrapiso:not(#random_id_string)>.navbar-expand-xl>.container,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-xl>.container-fluid,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-xl>.container-lg,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-xl>.container-md,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-xl>.container-sm,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-xl>.container-xl,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-xl>.container,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-xl>.container-fluid,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-xl>.container-lg,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-xl>.container-md,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-xl>.container-sm,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-xl>.container-xl{padding-right:0;padding-left:0}}@media (min-width:1200px){html body.bootstrapiso:not(#random_id_string)>.navbar-expand-xl,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-xl{flex-flow:row nowrap;justify-content:flex-start}html body.bootstrapiso:not(#random_id_string)>.navbar-expand-xl .navbar-nav,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-xl .navbar-nav{flex-direction:row}html body.bootstrapiso:not(#random_id_string)>.navbar-expand-xl .navbar-nav .dropdown-menu,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}html body.bootstrapiso:not(#random_id_string)>.navbar-expand-xl .navbar-nav .nav-link,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}html body.bootstrapiso:not(#random_id_string)>.navbar-expand-xl>.container,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-xl>.container-fluid,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-xl>.container-lg,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-xl>.container-md,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-xl>.container-sm,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-xl>.container-xl,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-xl>.container,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-xl>.container-fluid,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-xl>.container-lg,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-xl>.container-md,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-xl>.container-sm,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-xl>.container-xl{flex-wrap:nowrap}html body.bootstrapiso:not(#random_id_string)>.navbar-expand-xl .navbar-collapse,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}html body.bootstrapiso:not(#random_id_string)>.navbar-expand-xl .navbar-toggler,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-xl .navbar-toggler{display:none}}html body.bootstrapiso:not(#random_id_string)>.navbar-expand,html body.bootstrapiso>:not(#wpwrap) .navbar-expand{flex-flow:row nowrap;justify-content:flex-start}html body.bootstrapiso:not(#random_id_string)>.navbar-expand>.container,html body.bootstrapiso:not(#random_id_string)>.navbar-expand>.container-fluid,html body.bootstrapiso:not(#random_id_string)>.navbar-expand>.container-lg,html body.bootstrapiso:not(#random_id_string)>.navbar-expand>.container-md,html body.bootstrapiso:not(#random_id_string)>.navbar-expand>.container-sm,html body.bootstrapiso:not(#random_id_string)>.navbar-expand>.container-xl,html body.bootstrapiso>:not(#wpwrap) .navbar-expand>.container,html body.bootstrapiso>:not(#wpwrap) .navbar-expand>.container-fluid,html body.bootstrapiso>:not(#wpwrap) .navbar-expand>.container-lg,html body.bootstrapiso>:not(#wpwrap) .navbar-expand>.container-md,html body.bootstrapiso>:not(#wpwrap) .navbar-expand>.container-sm,html body.bootstrapiso>:not(#wpwrap) .navbar-expand>.container-xl{padding-right:0;padding-left:0}html body.bootstrapiso:not(#random_id_string)>.navbar-expand .navbar-nav,html body.bootstrapiso>:not(#wpwrap) .navbar-expand .navbar-nav{flex-direction:row}html body.bootstrapiso:not(#random_id_string)>.navbar-expand .navbar-nav .dropdown-menu,html body.bootstrapiso>:not(#wpwrap) .navbar-expand .navbar-nav .dropdown-menu{position:absolute}html body.bootstrapiso:not(#random_id_string)>.navbar-expand .navbar-nav .nav-link,html body.bootstrapiso>:not(#wpwrap) .navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}html body.bootstrapiso:not(#random_id_string)>.navbar-expand>.container,html body.bootstrapiso:not(#random_id_string)>.navbar-expand>.container-fluid,html body.bootstrapiso:not(#random_id_string)>.navbar-expand>.container-lg,html body.bootstrapiso:not(#random_id_string)>.navbar-expand>.container-md,html body.bootstrapiso:not(#random_id_string)>.navbar-expand>.container-sm,html body.bootstrapiso:not(#random_id_string)>.navbar-expand>.container-xl,html body.bootstrapiso>:not(#wpwrap) .navbar-expand>.container,html body.bootstrapiso>:not(#wpwrap) .navbar-expand>.container-fluid,html body.bootstrapiso>:not(#wpwrap) .navbar-expand>.container-lg,html body.bootstrapiso>:not(#wpwrap) .navbar-expand>.container-md,html body.bootstrapiso>:not(#wpwrap) .navbar-expand>.container-sm,html body.bootstrapiso>:not(#wpwrap) .navbar-expand>.container-xl{flex-wrap:nowrap}html body.bootstrapiso:not(#random_id_string)>.navbar-expand .navbar-collapse,html body.bootstrapiso>:not(#wpwrap) .navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}html body.bootstrapiso:not(#random_id_string)>.navbar-expand .navbar-toggler,html body.bootstrapiso>:not(#wpwrap) .navbar-expand .navbar-toggler{display:none}html body.bootstrapiso:not(#random_id_string)>.navbar-light .navbar-brand,html body.bootstrapiso:not(#random_id_string)>.navbar-light .navbar-brand:focus,html body.bootstrapiso:not(#random_id_string)>.navbar-light .navbar-brand:hover,html body.bootstrapiso>:not(#wpwrap) .navbar-light .navbar-brand,html body.bootstrapiso>:not(#wpwrap) .navbar-light .navbar-brand:focus,html body.bootstrapiso>:not(#wpwrap) .navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}html body.bootstrapiso:not(#random_id_string)>.navbar-light .navbar-nav .nav-link,html body.bootstrapiso>:not(#wpwrap) .navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.5)}html body.bootstrapiso:not(#random_id_string)>.navbar-light .navbar-nav .nav-link:focus,html body.bootstrapiso:not(#random_id_string)>.navbar-light .navbar-nav .nav-link:hover,html body.bootstrapiso>:not(#wpwrap) .navbar-light .navbar-nav .nav-link:focus,html body.bootstrapiso>:not(#wpwrap) .navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}html body.bootstrapiso:not(#random_id_string)>.navbar-light .navbar-nav .nav-link.disabled,html body.bootstrapiso>:not(#wpwrap) .navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}html body.bootstrapiso:not(#random_id_string)>.navbar-light .navbar-nav .active>.nav-link,html body.bootstrapiso:not(#random_id_string)>.navbar-light .navbar-nav .nav-link.active,html body.bootstrapiso:not(#random_id_string)>.navbar-light .navbar-nav .nav-link.show,html body.bootstrapiso:not(#random_id_string)>.navbar-light .navbar-nav .show>.nav-link,html body.bootstrapiso>:not(#wpwrap) .navbar-light .navbar-nav .active>.nav-link,html body.bootstrapiso>:not(#wpwrap) .navbar-light .navbar-nav .nav-link.active,html body.bootstrapiso>:not(#wpwrap) .navbar-light .navbar-nav .nav-link.show,html body.bootstrapiso>:not(#wpwrap) .navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}html body.bootstrapiso:not(#random_id_string)>.navbar-light .navbar-toggler,html body.bootstrapiso>:not(#wpwrap) .navbar-light .navbar-toggler{color:rgba(0,0,0,.5);border-color:rgba(0,0,0,.1)}html body.bootstrapiso:not(#random_id_string)>.navbar-light .navbar-toggler-icon,html body.bootstrapiso>:not(#wpwrap) .navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}html body.bootstrapiso:not(#random_id_string)>.navbar-light .navbar-text,html body.bootstrapiso>:not(#wpwrap) .navbar-light .navbar-text{color:rgba(0,0,0,.5)}html body.bootstrapiso:not(#random_id_string)>.navbar-light .navbar-text a,html body.bootstrapiso:not(#random_id_string)>.navbar-light .navbar-text a:focus,html body.bootstrapiso:not(#random_id_string)>.navbar-light .navbar-text a:hover,html body.bootstrapiso>:not(#wpwrap) .navbar-light .navbar-text a,html body.bootstrapiso>:not(#wpwrap) .navbar-light .navbar-text a:focus,html body.bootstrapiso>:not(#wpwrap) .navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}html body.bootstrapiso:not(#random_id_string)>.navbar-dark .navbar-brand,html body.bootstrapiso:not(#random_id_string)>.navbar-dark .navbar-brand:focus,html body.bootstrapiso:not(#random_id_string)>.navbar-dark .navbar-brand:hover,html body.bootstrapiso>:not(#wpwrap) .navbar-dark .navbar-brand,html body.bootstrapiso>:not(#wpwrap) .navbar-dark .navbar-brand:focus,html body.bootstrapiso>:not(#wpwrap) .navbar-dark .navbar-brand:hover{color:#fff}html body.bootstrapiso:not(#random_id_string)>.navbar-dark .navbar-nav .nav-link,html body.bootstrapiso>:not(#wpwrap) .navbar-dark .navbar-nav .nav-link{color:hsla(0,0%,100%,.5)}html body.bootstrapiso:not(#random_id_string)>.navbar-dark .navbar-nav .nav-link:focus,html body.bootstrapiso:not(#random_id_string)>.navbar-dark .navbar-nav .nav-link:hover,html body.bootstrapiso>:not(#wpwrap) .navbar-dark .navbar-nav .nav-link:focus,html body.bootstrapiso>:not(#wpwrap) .navbar-dark .navbar-nav .nav-link:hover{color:hsla(0,0%,100%,.75)}html body.bootstrapiso:not(#random_id_string)>.navbar-dark .navbar-nav .nav-link.disabled,html body.bootstrapiso>:not(#wpwrap) .navbar-dark .navbar-nav .nav-link.disabled{color:hsla(0,0%,100%,.25)}html body.bootstrapiso:not(#random_id_string)>.navbar-dark .navbar-nav .active>.nav-link,html body.bootstrapiso:not(#random_id_string)>.navbar-dark .navbar-nav .nav-link.active,html body.bootstrapiso:not(#random_id_string)>.navbar-dark .navbar-nav .nav-link.show,html body.bootstrapiso:not(#random_id_string)>.navbar-dark .navbar-nav .show>.nav-link,html body.bootstrapiso>:not(#wpwrap) .navbar-dark .navbar-nav .active>.nav-link,html body.bootstrapiso>:not(#wpwrap) .navbar-dark .navbar-nav .nav-link.active,html body.bootstrapiso>:not(#wpwrap) .navbar-dark .navbar-nav .nav-link.show,html body.bootstrapiso>:not(#wpwrap) .navbar-dark .navbar-nav .show>.nav-link{color:#fff}html body.bootstrapiso:not(#random_id_string)>.navbar-dark .navbar-toggler,html body.bootstrapiso>:not(#wpwrap) .navbar-dark .navbar-toggler{color:hsla(0,0%,100%,.5);border-color:hsla(0,0%,100%,.1)}html body.bootstrapiso:not(#random_id_string)>.navbar-dark .navbar-toggler-icon,html body.bootstrapiso>:not(#wpwrap) .navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}html body.bootstrapiso:not(#random_id_string)>.navbar-dark .navbar-text,html body.bootstrapiso>:not(#wpwrap) .navbar-dark .navbar-text{color:hsla(0,0%,100%,.5)}html body.bootstrapiso:not(#random_id_string)>.navbar-dark .navbar-text a,html body.bootstrapiso:not(#random_id_string)>.navbar-dark .navbar-text a:focus,html body.bootstrapiso:not(#random_id_string)>.navbar-dark .navbar-text a:hover,html body.bootstrapiso>:not(#wpwrap) .navbar-dark .navbar-text a,html body.bootstrapiso>:not(#wpwrap) .navbar-dark .navbar-text a:focus,html body.bootstrapiso>:not(#wpwrap) .navbar-dark .navbar-text a:hover{color:#fff}html body.bootstrapiso:not(#random_id_string)>.card,html body.bootstrapiso>:not(#wpwrap) .card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}html body.bootstrapiso:not(#random_id_string)>.card>hr,html body.bootstrapiso>:not(#wpwrap) .card>hr{margin-right:0;margin-left:0}html body.bootstrapiso:not(#random_id_string)>.card>.list-group,html body.bootstrapiso>:not(#wpwrap) .card>.list-group{border-top:inherit;border-bottom:inherit}html body.bootstrapiso:not(#random_id_string)>.card>.list-group:first-child,html body.bootstrapiso>:not(#wpwrap) .card>.list-group:first-child{border-top-width:0;border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}html body.bootstrapiso:not(#random_id_string)>.card>.list-group:last-child,html body.bootstrapiso>:not(#wpwrap) .card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}html body.bootstrapiso:not(#random_id_string)>.card-body,html body.bootstrapiso>:not(#wpwrap) .card-body{flex:1 1 auto;min-height:1px;padding:1.25rem}html body.bootstrapiso:not(#random_id_string)>.card-title,html body.bootstrapiso>:not(#wpwrap) .card-title{margin-bottom:.75rem}html body.bootstrapiso:not(#random_id_string)>.card-subtitle,html body.bootstrapiso>:not(#wpwrap) .card-subtitle{margin-top:-.375rem;margin-bottom:0}html body.bootstrapiso:not(#random_id_string)>.card-text:last-child,html body.bootstrapiso>:not(#wpwrap) .card-text:last-child{margin-bottom:0}html body.bootstrapiso:not(#random_id_string)>.card-link:hover,html body.bootstrapiso>:not(#wpwrap) .card-link:hover{text-decoration:none}html body.bootstrapiso:not(#random_id_string)>.card-link+.card-link,html body.bootstrapiso>:not(#wpwrap) .card-link+.card-link{margin-left:1.25rem}html body.bootstrapiso:not(#random_id_string)>.card-header,html body.bootstrapiso>:not(#wpwrap) .card-header{padding:.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}html body.bootstrapiso:not(#random_id_string)>.card-header:first-child,html body.bootstrapiso>:not(#wpwrap) .card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}html body.bootstrapiso:not(#random_id_string)>.card-header+.list-group .list-group-item:first-child,html body.bootstrapiso>:not(#wpwrap) .card-header+.list-group .list-group-item:first-child{border-top:0}html body.bootstrapiso:not(#random_id_string)>.card-footer,html body.bootstrapiso>:not(#wpwrap) .card-footer{padding:.75rem 1.25rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}html body.bootstrapiso:not(#random_id_string)>.card-footer:last-child,html body.bootstrapiso>:not(#wpwrap) .card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}html body.bootstrapiso:not(#random_id_string)>.card-header-tabs,html body.bootstrapiso>:not(#wpwrap) .card-header-tabs{margin-right:-.625rem;margin-bottom:-.75rem;margin-left:-.625rem;border-bottom:0}html body.bootstrapiso:not(#random_id_string)>.card-header-pills,html body.bootstrapiso>:not(#wpwrap) .card-header-pills{margin-right:-.625rem;margin-left:-.625rem}html body.bootstrapiso:not(#random_id_string)>.card-img-overlay,html body.bootstrapiso>:not(#wpwrap) .card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem}html body.bootstrapiso:not(#random_id_string)>.card-img,html body.bootstrapiso:not(#random_id_string)>.card-img-bottom,html body.bootstrapiso:not(#random_id_string)>.card-img-top,html body.bootstrapiso>:not(#wpwrap) .card-img,html body.bootstrapiso>:not(#wpwrap) .card-img-bottom,html body.bootstrapiso>:not(#wpwrap) .card-img-top{flex-shrink:0;width:100%}html body.bootstrapiso:not(#random_id_string)>.card-img,html body.bootstrapiso:not(#random_id_string)>.card-img-top,html body.bootstrapiso>:not(#wpwrap) .card-img,html body.bootstrapiso>:not(#wpwrap) .card-img-top{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}html body.bootstrapiso:not(#random_id_string)>.card-img,html body.bootstrapiso:not(#random_id_string)>.card-img-bottom,html body.bootstrapiso>:not(#wpwrap) .card-img,html body.bootstrapiso>:not(#wpwrap) .card-img-bottom{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}html body.bootstrapiso:not(#random_id_string)>.card-deck .card,html body.bootstrapiso>:not(#wpwrap) .card-deck .card{margin-bottom:15px}@media (min-width:576px){html body.bootstrapiso:not(#random_id_string)>.card-deck,html body.bootstrapiso>:not(#wpwrap) .card-deck{display:flex;flex-flow:row wrap;margin-right:-15px;margin-left:-15px}html body.bootstrapiso:not(#random_id_string)>.card-deck .card,html body.bootstrapiso>:not(#wpwrap) .card-deck .card{flex:1 0;margin-right:15px;margin-bottom:0;margin-left:15px}}html body.bootstrapiso:not(#random_id_string)>.card-group>.card,html body.bootstrapiso>:not(#wpwrap) .card-group>.card{margin-bottom:15px}@media (min-width:576px){html body.bootstrapiso:not(#random_id_string)>.card-group,html body.bootstrapiso>:not(#wpwrap) .card-group{display:flex;flex-flow:row wrap}html body.bootstrapiso:not(#random_id_string)>.card-group>.card,html body.bootstrapiso>:not(#wpwrap) .card-group>.card{flex:1 0;margin-bottom:0}html body.bootstrapiso:not(#random_id_string)>.card-group>.card+.card,html body.bootstrapiso>:not(#wpwrap) .card-group>.card+.card{margin-left:0;border-left:0}html body.bootstrapiso:not(#random_id_string)>.card-group>.card:not(:last-child),html body.bootstrapiso>:not(#wpwrap) .card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}html body.bootstrapiso:not(#random_id_string)>.card-group>.card:not(:last-child) .card-header,html body.bootstrapiso:not(#random_id_string)>.card-group>.card:not(:last-child) .card-img-top,html body.bootstrapiso>:not(#wpwrap) .card-group>.card:not(:last-child) .card-header,html body.bootstrapiso>:not(#wpwrap) .card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}html body.bootstrapiso:not(#random_id_string)>.card-group>.card:not(:last-child) .card-footer,html body.bootstrapiso:not(#random_id_string)>.card-group>.card:not(:last-child) .card-img-bottom,html body.bootstrapiso>:not(#wpwrap) .card-group>.card:not(:last-child) .card-footer,html body.bootstrapiso>:not(#wpwrap) .card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}html body.bootstrapiso:not(#random_id_string)>.card-group>.card:not(:first-child),html body.bootstrapiso>:not(#wpwrap) .card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}html body.bootstrapiso:not(#random_id_string)>.card-group>.card:not(:first-child) .card-header,html body.bootstrapiso:not(#random_id_string)>.card-group>.card:not(:first-child) .card-img-top,html body.bootstrapiso>:not(#wpwrap) .card-group>.card:not(:first-child) .card-header,html body.bootstrapiso>:not(#wpwrap) .card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}html body.bootstrapiso:not(#random_id_string)>.card-group>.card:not(:first-child) .card-footer,html body.bootstrapiso:not(#random_id_string)>.card-group>.card:not(:first-child) .card-img-bottom,html body.bootstrapiso>:not(#wpwrap) .card-group>.card:not(:first-child) .card-footer,html body.bootstrapiso>:not(#wpwrap) .card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}html body.bootstrapiso:not(#random_id_string)>.card-columns .card,html body.bootstrapiso>:not(#wpwrap) .card-columns .card{margin-bottom:.75rem}@media (min-width:576px){html body.bootstrapiso:not(#random_id_string)>.card-columns,html body.bootstrapiso>:not(#wpwrap) .card-columns{-webkit-column-count:3;column-count:3;-webkit-column-gap:1.25rem;-moz-column-gap:1.25rem;grid-column-gap:1.25rem;column-gap:1.25rem;orphans:1;widows:1}html body.bootstrapiso:not(#random_id_string)>.card-columns .card,html body.bootstrapiso>:not(#wpwrap) .card-columns .card{display:inline-block;width:100%}}html body.bootstrapiso:not(#random_id_string)>.accordion>.card,html body.bootstrapiso>:not(#wpwrap) .accordion>.card{overflow:hidden}html body.bootstrapiso:not(#random_id_string)>.accordion>.card:not(:last-of-type),html body.bootstrapiso>:not(#wpwrap) .accordion>.card:not(:last-of-type){border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}html body.bootstrapiso:not(#random_id_string)>.accordion>.card:not(:first-of-type),html body.bootstrapiso>:not(#wpwrap) .accordion>.card:not(:first-of-type){border-top-left-radius:0;border-top-right-radius:0}html body.bootstrapiso:not(#random_id_string)>.accordion>.card>.card-header,html body.bootstrapiso>:not(#wpwrap) .accordion>.card>.card-header{border-radius:0;margin-bottom:-1px}html body.bootstrapiso:not(#random_id_string)>.breadcrumb,html body.bootstrapiso>:not(#wpwrap) .breadcrumb{display:flex;flex-wrap:wrap;padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#e9ecef;border-radius:.25rem}html body.bootstrapiso:not(#random_id_string)>.breadcrumb-item,html body.bootstrapiso>:not(#wpwrap) .breadcrumb-item{display:flex}html body.bootstrapiso:not(#random_id_string)>.breadcrumb-item+.breadcrumb-item,html body.bootstrapiso>:not(#wpwrap) .breadcrumb-item+.breadcrumb-item{padding-left:.5rem}html body.bootstrapiso:not(#random_id_string)>.breadcrumb-item+.breadcrumb-item:before,html body.bootstrapiso>:not(#wpwrap) .breadcrumb-item+.breadcrumb-item:before{display:inline-block;padding-right:.5rem;color:#6c757d;content:"/"}html body.bootstrapiso:not(#random_id_string)>.breadcrumb-item+.breadcrumb-item:hover:before,html body.bootstrapiso>:not(#wpwrap) .breadcrumb-item+.breadcrumb-item:hover:before{text-decoration:underline;text-decoration:none}html body.bootstrapiso:not(#random_id_string)>.breadcrumb-item.active,html body.bootstrapiso>:not(#wpwrap) .breadcrumb-item.active{color:#6c757d}html body.bootstrapiso:not(#random_id_string)>.pagination,html body.bootstrapiso>:not(#wpwrap) .pagination{display:flex;padding-left:0;list-style:none;border-radius:.25rem}html body.bootstrapiso:not(#random_id_string)>.page-link,html body.bootstrapiso>:not(#wpwrap) .page-link{position:relative;display:block;padding:.5rem .75rem;margin-left:-1px;line-height:1.25;color:#007bff;background-color:#fff;border:1px solid #dee2e6}html body.bootstrapiso:not(#random_id_string)>.page-link:hover,html body.bootstrapiso>:not(#wpwrap) .page-link:hover{z-index:2;color:#0056b3;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}html body.bootstrapiso:not(#random_id_string)>.page-link:focus,html body.bootstrapiso>:not(#wpwrap) .page-link:focus{z-index:3;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}html body.bootstrapiso:not(#random_id_string)>.page-item:first-child .page-link,html body.bootstrapiso>:not(#wpwrap) .page-item:first-child .page-link{margin-left:0;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}html body.bootstrapiso:not(#random_id_string)>.page-item:last-child .page-link,html body.bootstrapiso>:not(#wpwrap) .page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}html body.bootstrapiso:not(#random_id_string)>.page-item.active .page-link,html body.bootstrapiso>:not(#wpwrap) .page-item.active .page-link{z-index:3;color:#fff;background-color:#007bff;border-color:#007bff}html body.bootstrapiso:not(#random_id_string)>.page-item.disabled .page-link,html body.bootstrapiso>:not(#wpwrap) .page-item.disabled .page-link{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}html body.bootstrapiso:not(#random_id_string)>.pagination-lg .page-link,html body.bootstrapiso>:not(#wpwrap) .pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem;line-height:1.5}html body.bootstrapiso:not(#random_id_string)>.pagination-lg .page-item:first-child .page-link,html body.bootstrapiso>:not(#wpwrap) .pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}html body.bootstrapiso:not(#random_id_string)>.pagination-lg .page-item:last-child .page-link,html body.bootstrapiso>:not(#wpwrap) .pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}html body.bootstrapiso:not(#random_id_string)>.pagination-sm .page-link,html body.bootstrapiso>:not(#wpwrap) .pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem;line-height:1.5}html body.bootstrapiso:not(#random_id_string)>.pagination-sm .page-item:first-child .page-link,html body.bootstrapiso>:not(#wpwrap) .pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}html body.bootstrapiso:not(#random_id_string)>.pagination-sm .page-item:last-child .page-link,html body.bootstrapiso>:not(#wpwrap) .pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}html body.bootstrapiso:not(#random_id_string)>.badge,html body.bootstrapiso>:not(#wpwrap) .badge{display:inline-block;padding:.25em .4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){html body.bootstrapiso:not(#random_id_string)>.badge,html body.bootstrapiso>:not(#wpwrap) .badge{transition:none}}html body.bootstrapiso:not(#random_id_string)>a.badge:focus,html body.bootstrapiso:not(#random_id_string)>a.badge:hover,html body.bootstrapiso>:not(#wpwrap) a.badge:focus,html body.bootstrapiso>:not(#wpwrap) a.badge:hover{text-decoration:none}html body.bootstrapiso:not(#random_id_string)>.badge:empty,html body.bootstrapiso>:not(#wpwrap) .badge:empty{display:none}html body.bootstrapiso:not(#random_id_string)>.btn .badge,html body.bootstrapiso>:not(#wpwrap) .btn .badge{position:relative;top:-1px}html body.bootstrapiso:not(#random_id_string)>.badge-pill,html body.bootstrapiso>:not(#wpwrap) .badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}html body.bootstrapiso:not(#random_id_string)>.badge-primary,html body.bootstrapiso>:not(#wpwrap) .badge-primary{color:#fff;background-color:#007bff}html body.bootstrapiso:not(#random_id_string)>a.badge-primary:focus,html body.bootstrapiso:not(#random_id_string)>a.badge-primary:hover,html body.bootstrapiso>:not(#wpwrap) a.badge-primary:focus,html body.bootstrapiso>:not(#wpwrap) a.badge-primary:hover{color:#fff;background-color:#0062cc}html body.bootstrapiso:not(#random_id_string)>a.badge-primary.focus,html body.bootstrapiso:not(#random_id_string)>a.badge-primary:focus,html body.bootstrapiso>:not(#wpwrap) a.badge-primary.focus,html body.bootstrapiso>:not(#wpwrap) a.badge-primary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}html body.bootstrapiso:not(#random_id_string)>.badge-secondary,html body.bootstrapiso>:not(#wpwrap) .badge-secondary{color:#fff;background-color:#6c757d}html body.bootstrapiso:not(#random_id_string)>a.badge-secondary:focus,html body.bootstrapiso:not(#random_id_string)>a.badge-secondary:hover,html body.bootstrapiso>:not(#wpwrap) a.badge-secondary:focus,html body.bootstrapiso>:not(#wpwrap) a.badge-secondary:hover{color:#fff;background-color:#545b62}html body.bootstrapiso:not(#random_id_string)>a.badge-secondary.focus,html body.bootstrapiso:not(#random_id_string)>a.badge-secondary:focus,html body.bootstrapiso>:not(#wpwrap) a.badge-secondary.focus,html body.bootstrapiso>:not(#wpwrap) a.badge-secondary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}html body.bootstrapiso:not(#random_id_string)>.badge-success,html body.bootstrapiso>:not(#wpwrap) .badge-success{color:#fff;background-color:#28a745}html body.bootstrapiso:not(#random_id_string)>a.badge-success:focus,html body.bootstrapiso:not(#random_id_string)>a.badge-success:hover,html body.bootstrapiso>:not(#wpwrap) a.badge-success:focus,html body.bootstrapiso>:not(#wpwrap) a.badge-success:hover{color:#fff;background-color:#1e7e34}html body.bootstrapiso:not(#random_id_string)>a.badge-success.focus,html body.bootstrapiso:not(#random_id_string)>a.badge-success:focus,html body.bootstrapiso>:not(#wpwrap) a.badge-success.focus,html body.bootstrapiso>:not(#wpwrap) a.badge-success:focus{outline:0;box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}html body.bootstrapiso:not(#random_id_string)>.badge-info,html body.bootstrapiso>:not(#wpwrap) .badge-info{color:#fff;background-color:#17a2b8}html body.bootstrapiso:not(#random_id_string)>a.badge-info:focus,html body.bootstrapiso:not(#random_id_string)>a.badge-info:hover,html body.bootstrapiso>:not(#wpwrap) a.badge-info:focus,html body.bootstrapiso>:not(#wpwrap) a.badge-info:hover{color:#fff;background-color:#117a8b}html body.bootstrapiso:not(#random_id_string)>a.badge-info.focus,html body.bootstrapiso:not(#random_id_string)>a.badge-info:focus,html body.bootstrapiso>:not(#wpwrap) a.badge-info.focus,html body.bootstrapiso>:not(#wpwrap) a.badge-info:focus{outline:0;box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}html body.bootstrapiso:not(#random_id_string)>.badge-warning,html body.bootstrapiso>:not(#wpwrap) .badge-warning{color:#212529;background-color:#ffc107}html body.bootstrapiso:not(#random_id_string)>a.badge-warning:focus,html body.bootstrapiso:not(#random_id_string)>a.badge-warning:hover,html body.bootstrapiso>:not(#wpwrap) a.badge-warning:focus,html body.bootstrapiso>:not(#wpwrap) a.badge-warning:hover{color:#212529;background-color:#d39e00}html body.bootstrapiso:not(#random_id_string)>a.badge-warning.focus,html body.bootstrapiso:not(#random_id_string)>a.badge-warning:focus,html body.bootstrapiso>:not(#wpwrap) a.badge-warning.focus,html body.bootstrapiso>:not(#wpwrap) a.badge-warning:focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}html body.bootstrapiso:not(#random_id_string)>.badge-danger,html body.bootstrapiso>:not(#wpwrap) .badge-danger{color:#fff;background-color:#dc3545}html body.bootstrapiso:not(#random_id_string)>a.badge-danger:focus,html body.bootstrapiso:not(#random_id_string)>a.badge-danger:hover,html body.bootstrapiso>:not(#wpwrap) a.badge-danger:focus,html body.bootstrapiso>:not(#wpwrap) a.badge-danger:hover{color:#fff;background-color:#bd2130}html body.bootstrapiso:not(#random_id_string)>a.badge-danger.focus,html body.bootstrapiso:not(#random_id_string)>a.badge-danger:focus,html body.bootstrapiso>:not(#wpwrap) a.badge-danger.focus,html body.bootstrapiso>:not(#wpwrap) a.badge-danger:focus{outline:0;box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}html body.bootstrapiso:not(#random_id_string)>.badge-light,html body.bootstrapiso>:not(#wpwrap) .badge-light{color:#212529;background-color:#f8f9fa}html body.bootstrapiso:not(#random_id_string)>a.badge-light:focus,html body.bootstrapiso:not(#random_id_string)>a.badge-light:hover,html body.bootstrapiso>:not(#wpwrap) a.badge-light:focus,html body.bootstrapiso>:not(#wpwrap) a.badge-light:hover{color:#212529;background-color:#dae0e5}html body.bootstrapiso:not(#random_id_string)>a.badge-light.focus,html body.bootstrapiso:not(#random_id_string)>a.badge-light:focus,html body.bootstrapiso>:not(#wpwrap) a.badge-light.focus,html body.bootstrapiso>:not(#wpwrap) a.badge-light:focus{outline:0;box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}html body.bootstrapiso:not(#random_id_string)>.badge-dark,html body.bootstrapiso>:not(#wpwrap) .badge-dark{color:#fff;background-color:#343a40}html body.bootstrapiso:not(#random_id_string)>a.badge-dark:focus,html body.bootstrapiso:not(#random_id_string)>a.badge-dark:hover,html body.bootstrapiso>:not(#wpwrap) a.badge-dark:focus,html body.bootstrapiso>:not(#wpwrap) a.badge-dark:hover{color:#fff;background-color:#1d2124}html body.bootstrapiso:not(#random_id_string)>a.badge-dark.focus,html body.bootstrapiso:not(#random_id_string)>a.badge-dark:focus,html body.bootstrapiso>:not(#wpwrap) a.badge-dark.focus,html body.bootstrapiso>:not(#wpwrap) a.badge-dark:focus{outline:0;box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}html body.bootstrapiso:not(#random_id_string)>.jumbotron,html body.bootstrapiso>:not(#wpwrap) .jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#e9ecef;border-radius:.3rem}@media (min-width:576px){html body.bootstrapiso:not(#random_id_string)>.jumbotron,html body.bootstrapiso>:not(#wpwrap) .jumbotron{padding:4rem 2rem}}html body.bootstrapiso:not(#random_id_string)>.jumbotron-fluid,html body.bootstrapiso>:not(#wpwrap) .jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}html body.bootstrapiso:not(#random_id_string)>.alert,html body.bootstrapiso>:not(#wpwrap) .alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}html body.bootstrapiso:not(#random_id_string)>.alert-heading,html body.bootstrapiso>:not(#wpwrap) .alert-heading{color:inherit}html body.bootstrapiso:not(#random_id_string)>.alert-link,html body.bootstrapiso>:not(#wpwrap) .alert-link{font-weight:700}html body.bootstrapiso:not(#random_id_string)>.alert-dismissible,html body.bootstrapiso>:not(#wpwrap) .alert-dismissible{padding-right:4rem}html body.bootstrapiso:not(#random_id_string)>.alert-dismissible .close,html body.bootstrapiso>:not(#wpwrap) .alert-dismissible .close{position:absolute;top:0;right:0;padding:.75rem 1.25rem;color:inherit}html body.bootstrapiso:not(#random_id_string)>.alert-primary,html body.bootstrapiso>:not(#wpwrap) .alert-primary{color:#004085;background-color:#cce5ff;border-color:#b8daff}html body.bootstrapiso:not(#random_id_string)>.alert-primary hr,html body.bootstrapiso>:not(#wpwrap) .alert-primary hr{border-top-color:#9fcdff}html body.bootstrapiso:not(#random_id_string)>.alert-primary .alert-link,html body.bootstrapiso>:not(#wpwrap) .alert-primary .alert-link{color:#002752}html body.bootstrapiso:not(#random_id_string)>.alert-secondary,html body.bootstrapiso>:not(#wpwrap) .alert-secondary{color:#383d41;background-color:#e2e3e5;border-color:#d6d8db}html body.bootstrapiso:not(#random_id_string)>.alert-secondary hr,html body.bootstrapiso>:not(#wpwrap) .alert-secondary hr{border-top-color:#c8cbcf}html body.bootstrapiso:not(#random_id_string)>.alert-secondary .alert-link,html body.bootstrapiso>:not(#wpwrap) .alert-secondary .alert-link{color:#202326}html body.bootstrapiso:not(#random_id_string)>.alert-success,html body.bootstrapiso>:not(#wpwrap) .alert-success{color:#155724;background-color:#d4edda;border-color:#c3e6cb}html body.bootstrapiso:not(#random_id_string)>.alert-success hr,html body.bootstrapiso>:not(#wpwrap) .alert-success hr{border-top-color:#b1dfbb}html body.bootstrapiso:not(#random_id_string)>.alert-success .alert-link,html body.bootstrapiso>:not(#wpwrap) .alert-success .alert-link{color:#0b2e13}html body.bootstrapiso:not(#random_id_string)>.alert-info,html body.bootstrapiso>:not(#wpwrap) .alert-info{color:#0c5460;background-color:#d1ecf1;border-color:#bee5eb}html body.bootstrapiso:not(#random_id_string)>.alert-info hr,html body.bootstrapiso>:not(#wpwrap) .alert-info hr{border-top-color:#abdde5}html body.bootstrapiso:not(#random_id_string)>.alert-info .alert-link,html body.bootstrapiso>:not(#wpwrap) .alert-info .alert-link{color:#062c33}html body.bootstrapiso:not(#random_id_string)>.alert-warning,html body.bootstrapiso>:not(#wpwrap) .alert-warning{color:#856404;background-color:#fff3cd;border-color:#ffeeba}html body.bootstrapiso:not(#random_id_string)>.alert-warning hr,html body.bootstrapiso>:not(#wpwrap) .alert-warning hr{border-top-color:#ffe8a1}html body.bootstrapiso:not(#random_id_string)>.alert-warning .alert-link,html body.bootstrapiso>:not(#wpwrap) .alert-warning .alert-link{color:#533f03}html body.bootstrapiso:not(#random_id_string)>.alert-danger,html body.bootstrapiso>:not(#wpwrap) .alert-danger{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}html body.bootstrapiso:not(#random_id_string)>.alert-danger hr,html body.bootstrapiso>:not(#wpwrap) .alert-danger hr{border-top-color:#f1b0b7}html body.bootstrapiso:not(#random_id_string)>.alert-danger .alert-link,html body.bootstrapiso>:not(#wpwrap) .alert-danger .alert-link{color:#491217}html body.bootstrapiso:not(#random_id_string)>.alert-light,html body.bootstrapiso>:not(#wpwrap) .alert-light{color:#818182;background-color:#fefefe;border-color:#fdfdfe}html body.bootstrapiso:not(#random_id_string)>.alert-light hr,html body.bootstrapiso>:not(#wpwrap) .alert-light hr{border-top-color:#ececf6}html body.bootstrapiso:not(#random_id_string)>.alert-light .alert-link,html body.bootstrapiso>:not(#wpwrap) .alert-light .alert-link{color:#686868}html body.bootstrapiso:not(#random_id_string)>.alert-dark,html body.bootstrapiso>:not(#wpwrap) .alert-dark{color:#1b1e21;background-color:#d6d8d9;border-color:#c6c8ca}html body.bootstrapiso:not(#random_id_string)>.alert-dark hr,html body.bootstrapiso>:not(#wpwrap) .alert-dark hr{border-top-color:#b9bbbe}html body.bootstrapiso:not(#random_id_string)>.alert-dark .alert-link,html body.bootstrapiso>:not(#wpwrap) .alert-dark .alert-link{color:#040505}@-webkit-keyframes progress-bar-stripes{0%{background-position:1rem 0}to{background-position:0 0}}@keyframes progress-bar-stripes{0%{background-position:1rem 0}to{background-position:0 0}}html body.bootstrapiso:not(#random_id_string)>.progress,html body.bootstrapiso>:not(#wpwrap) .progress{display:flex;height:1rem;overflow:hidden;line-height:0;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}html body.bootstrapiso:not(#random_id_string)>.progress-bar,html body.bootstrapiso>:not(#wpwrap) .progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#007bff;transition:width .6s ease}@media (prefers-reduced-motion:reduce){html body.bootstrapiso:not(#random_id_string)>.progress-bar,html body.bootstrapiso>:not(#wpwrap) .progress-bar{transition:none}}html body.bootstrapiso:not(#random_id_string)>.progress-bar-striped,html body.bootstrapiso>:not(#wpwrap) .progress-bar-striped{background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);background-size:1rem 1rem}html body.bootstrapiso:not(#random_id_string)>.progress-bar-animated,html body.bootstrapiso>:not(#wpwrap) .progress-bar-animated{-webkit-animation:progress-bar-stripes 1s linear infinite;animation:progress-bar-stripes 1s linear infinite}@media (prefers-reduced-motion:reduce){html body.bootstrapiso:not(#random_id_string)>.progress-bar-animated,html body.bootstrapiso>:not(#wpwrap) .progress-bar-animated{-webkit-animation:none;animation:none}}html body.bootstrapiso:not(#random_id_string)>.media,html body.bootstrapiso>:not(#wpwrap) .media{display:flex;align-items:flex-start}html body.bootstrapiso:not(#random_id_string)>.media-body,html body.bootstrapiso>:not(#wpwrap) .media-body{flex:1 1}html body.bootstrapiso:not(#random_id_string)>.list-group,html body.bootstrapiso>:not(#wpwrap) .list-group{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.25rem}html body.bootstrapiso:not(#random_id_string)>.list-group-item-action,html body.bootstrapiso>:not(#wpwrap) .list-group-item-action{width:100%;color:#495057;text-align:inherit}html body.bootstrapiso:not(#random_id_string)>.list-group-item-action:focus,html body.bootstrapiso:not(#random_id_string)>.list-group-item-action:hover,html body.bootstrapiso>:not(#wpwrap) .list-group-item-action:focus,html body.bootstrapiso>:not(#wpwrap) .list-group-item-action:hover{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}html body.bootstrapiso:not(#random_id_string)>.list-group-item-action:active,html body.bootstrapiso>:not(#wpwrap) .list-group-item-action:active{color:#212529;background-color:#e9ecef}html body.bootstrapiso:not(#random_id_string)>.list-group-item,html body.bootstrapiso>:not(#wpwrap) .list-group-item{position:relative;display:block;padding:.75rem 1.25rem;background-color:#fff;border:1px solid rgba(0,0,0,.125)}html body.bootstrapiso:not(#random_id_string)>.list-group-item:first-child,html body.bootstrapiso>:not(#wpwrap) .list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}html body.bootstrapiso:not(#random_id_string)>.list-group-item:last-child,html body.bootstrapiso>:not(#wpwrap) .list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}html body.bootstrapiso:not(#random_id_string)>.list-group-item.disabled,html body.bootstrapiso:not(#random_id_string)>.list-group-item:disabled,html body.bootstrapiso>:not(#wpwrap) .list-group-item.disabled,html body.bootstrapiso>:not(#wpwrap) .list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}html body.bootstrapiso:not(#random_id_string)>.list-group-item.active,html body.bootstrapiso>:not(#wpwrap) .list-group-item.active{z-index:2;color:#fff;background-color:#007bff;border-color:#007bff}html body.bootstrapiso:not(#random_id_string)>.list-group-item+.list-group-item,html body.bootstrapiso>:not(#wpwrap) .list-group-item+.list-group-item{border-top-width:0}html body.bootstrapiso:not(#random_id_string)>.list-group-item+.list-group-item.active,html body.bootstrapiso>:not(#wpwrap) .list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal{flex-direction:row}html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal>.list-group-item:first-child,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal>.list-group-item:last-child,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal>.list-group-item.active,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal>.list-group-item.active{margin-top:0}html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal>.list-group-item+.list-group-item,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal>.list-group-item+.list-group-item.active,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media (min-width:576px){html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal-sm,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal-sm{flex-direction:row}html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal-sm>.list-group-item:first-child,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal-sm>.list-group-item:last-child,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal-sm>.list-group-item.active,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal-sm>.list-group-item.active{margin-top:0}html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal-sm>.list-group-item+.list-group-item,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal-sm>.list-group-item+.list-group-item.active,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:768px){html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal-md,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal-md{flex-direction:row}html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal-md>.list-group-item:first-child,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal-md>.list-group-item:last-child,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal-md>.list-group-item.active,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal-md>.list-group-item.active{margin-top:0}html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal-md>.list-group-item+.list-group-item,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal-md>.list-group-item+.list-group-item.active,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:992px){html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal-lg,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal-lg{flex-direction:row}html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal-lg>.list-group-item:first-child,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal-lg>.list-group-item:last-child,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal-lg>.list-group-item.active,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal-lg>.list-group-item.active{margin-top:0}html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal-lg>.list-group-item+.list-group-item,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal-lg>.list-group-item+.list-group-item.active,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:1200px){html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal-xl,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal-xl{flex-direction:row}html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal-xl>.list-group-item:first-child,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal-xl>.list-group-item:last-child,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal-xl>.list-group-item.active,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal-xl>.list-group-item.active{margin-top:0}html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal-xl>.list-group-item+.list-group-item,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal-xl>.list-group-item+.list-group-item.active,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}html body.bootstrapiso:not(#random_id_string)>.list-group-flush,html body.bootstrapiso>:not(#wpwrap) .list-group-flush{border-radius:0}html body.bootstrapiso:not(#random_id_string)>.list-group-flush>.list-group-item,html body.bootstrapiso>:not(#wpwrap) .list-group-flush>.list-group-item{border-width:0 0 1px}html body.bootstrapiso:not(#random_id_string)>.list-group-flush>.list-group-item:last-child,html body.bootstrapiso>:not(#wpwrap) .list-group-flush>.list-group-item:last-child{border-bottom-width:0}html body.bootstrapiso:not(#random_id_string)>.list-group-item-primary,html body.bootstrapiso>:not(#wpwrap) .list-group-item-primary{color:#004085;background-color:#b8daff}html body.bootstrapiso:not(#random_id_string)>.list-group-item-primary.list-group-item-action:focus,html body.bootstrapiso:not(#random_id_string)>.list-group-item-primary.list-group-item-action:hover,html body.bootstrapiso>:not(#wpwrap) .list-group-item-primary.list-group-item-action:focus,html body.bootstrapiso>:not(#wpwrap) .list-group-item-primary.list-group-item-action:hover{color:#004085;background-color:#9fcdff}html body.bootstrapiso:not(#random_id_string)>.list-group-item-primary.list-group-item-action.active,html body.bootstrapiso>:not(#wpwrap) .list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#004085;border-color:#004085}html body.bootstrapiso:not(#random_id_string)>.list-group-item-secondary,html body.bootstrapiso>:not(#wpwrap) .list-group-item-secondary{color:#383d41;background-color:#d6d8db}html body.bootstrapiso:not(#random_id_string)>.list-group-item-secondary.list-group-item-action:focus,html body.bootstrapiso:not(#random_id_string)>.list-group-item-secondary.list-group-item-action:hover,html body.bootstrapiso>:not(#wpwrap) .list-group-item-secondary.list-group-item-action:focus,html body.bootstrapiso>:not(#wpwrap) .list-group-item-secondary.list-group-item-action:hover{color:#383d41;background-color:#c8cbcf}html body.bootstrapiso:not(#random_id_string)>.list-group-item-secondary.list-group-item-action.active,html body.bootstrapiso>:not(#wpwrap) .list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#383d41;border-color:#383d41}html body.bootstrapiso:not(#random_id_string)>.list-group-item-success,html body.bootstrapiso>:not(#wpwrap) .list-group-item-success{color:#155724;background-color:#c3e6cb}html body.bootstrapiso:not(#random_id_string)>.list-group-item-success.list-group-item-action:focus,html body.bootstrapiso:not(#random_id_string)>.list-group-item-success.list-group-item-action:hover,html body.bootstrapiso>:not(#wpwrap) .list-group-item-success.list-group-item-action:focus,html body.bootstrapiso>:not(#wpwrap) .list-group-item-success.list-group-item-action:hover{color:#155724;background-color:#b1dfbb}html body.bootstrapiso:not(#random_id_string)>.list-group-item-success.list-group-item-action.active,html body.bootstrapiso>:not(#wpwrap) .list-group-item-success.list-group-item-action.active{color:#fff;background-color:#155724;border-color:#155724}html body.bootstrapiso:not(#random_id_string)>.list-group-item-info,html body.bootstrapiso>:not(#wpwrap) .list-group-item-info{color:#0c5460;background-color:#bee5eb}html body.bootstrapiso:not(#random_id_string)>.list-group-item-info.list-group-item-action:focus,html body.bootstrapiso:not(#random_id_string)>.list-group-item-info.list-group-item-action:hover,html body.bootstrapiso>:not(#wpwrap) .list-group-item-info.list-group-item-action:focus,html body.bootstrapiso>:not(#wpwrap) .list-group-item-info.list-group-item-action:hover{color:#0c5460;background-color:#abdde5}html body.bootstrapiso:not(#random_id_string)>.list-group-item-info.list-group-item-action.active,html body.bootstrapiso>:not(#wpwrap) .list-group-item-info.list-group-item-action.active{color:#fff;background-color:#0c5460;border-color:#0c5460}html body.bootstrapiso:not(#random_id_string)>.list-group-item-warning,html body.bootstrapiso>:not(#wpwrap) .list-group-item-warning{color:#856404;background-color:#ffeeba}html body.bootstrapiso:not(#random_id_string)>.list-group-item-warning.list-group-item-action:focus,html body.bootstrapiso:not(#random_id_string)>.list-group-item-warning.list-group-item-action:hover,html body.bootstrapiso>:not(#wpwrap) .list-group-item-warning.list-group-item-action:focus,html body.bootstrapiso>:not(#wpwrap) .list-group-item-warning.list-group-item-action:hover{color:#856404;background-color:#ffe8a1}html body.bootstrapiso:not(#random_id_string)>.list-group-item-warning.list-group-item-action.active,html body.bootstrapiso>:not(#wpwrap) .list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#856404;border-color:#856404}html body.bootstrapiso:not(#random_id_string)>.list-group-item-danger,html body.bootstrapiso>:not(#wpwrap) .list-group-item-danger{color:#721c24;background-color:#f5c6cb}html body.bootstrapiso:not(#random_id_string)>.list-group-item-danger.list-group-item-action:focus,html body.bootstrapiso:not(#random_id_string)>.list-group-item-danger.list-group-item-action:hover,html body.bootstrapiso>:not(#wpwrap) .list-group-item-danger.list-group-item-action:focus,html body.bootstrapiso>:not(#wpwrap) .list-group-item-danger.list-group-item-action:hover{color:#721c24;background-color:#f1b0b7}html body.bootstrapiso:not(#random_id_string)>.list-group-item-danger.list-group-item-action.active,html body.bootstrapiso>:not(#wpwrap) .list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#721c24;border-color:#721c24}html body.bootstrapiso:not(#random_id_string)>.list-group-item-light,html body.bootstrapiso>:not(#wpwrap) .list-group-item-light{color:#818182;background-color:#fdfdfe}html body.bootstrapiso:not(#random_id_string)>.list-group-item-light.list-group-item-action:focus,html body.bootstrapiso:not(#random_id_string)>.list-group-item-light.list-group-item-action:hover,html body.bootstrapiso>:not(#wpwrap) .list-group-item-light.list-group-item-action:focus,html body.bootstrapiso>:not(#wpwrap) .list-group-item-light.list-group-item-action:hover{color:#818182;background-color:#ececf6}html body.bootstrapiso:not(#random_id_string)>.list-group-item-light.list-group-item-action.active,html body.bootstrapiso>:not(#wpwrap) .list-group-item-light.list-group-item-action.active{color:#fff;background-color:#818182;border-color:#818182}html body.bootstrapiso:not(#random_id_string)>.list-group-item-dark,html body.bootstrapiso>:not(#wpwrap) .list-group-item-dark{color:#1b1e21;background-color:#c6c8ca}html body.bootstrapiso:not(#random_id_string)>.list-group-item-dark.list-group-item-action:focus,html body.bootstrapiso:not(#random_id_string)>.list-group-item-dark.list-group-item-action:hover,html body.bootstrapiso>:not(#wpwrap) .list-group-item-dark.list-group-item-action:focus,html body.bootstrapiso>:not(#wpwrap) .list-group-item-dark.list-group-item-action:hover{color:#1b1e21;background-color:#b9bbbe}html body.bootstrapiso:not(#random_id_string)>.list-group-item-dark.list-group-item-action.active,html body.bootstrapiso>:not(#wpwrap) .list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#1b1e21;border-color:#1b1e21}html body.bootstrapiso:not(#random_id_string)>.close,html body.bootstrapiso>:not(#wpwrap) .close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}html body.bootstrapiso:not(#random_id_string)>.close:hover,html body.bootstrapiso>:not(#wpwrap) .close:hover{color:#000;text-decoration:none}html body.bootstrapiso:not(#random_id_string)>.close:not(:disabled):not(.disabled):focus,html body.bootstrapiso:not(#random_id_string)>.close:not(:disabled):not(.disabled):hover,html body.bootstrapiso>:not(#wpwrap) .close:not(:disabled):not(.disabled):focus,html body.bootstrapiso>:not(#wpwrap) .close:not(:disabled):not(.disabled):hover{opacity:.75}html body.bootstrapiso:not(#random_id_string)>button.close,html body.bootstrapiso>:not(#wpwrap) button.close{padding:0;background-color:transparent;border:0}html body.bootstrapiso:not(#random_id_string)>a.close.disabled,html body.bootstrapiso>:not(#wpwrap) a.close.disabled{pointer-events:none}html body.bootstrapiso:not(#random_id_string)>.toast,html body.bootstrapiso>:not(#wpwrap) .toast{max-width:350px;overflow:hidden;font-size:.875rem;background-color:hsla(0,0%,100%,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .25rem .75rem rgba(0,0,0,.1);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);opacity:0;border-radius:.25rem}html body.bootstrapiso:not(#random_id_string)>.toast:not(:last-child),html body.bootstrapiso>:not(#wpwrap) .toast:not(:last-child){margin-bottom:.75rem}html body.bootstrapiso:not(#random_id_string)>.toast.showing,html body.bootstrapiso>:not(#wpwrap) .toast.showing{opacity:1}html body.bootstrapiso:not(#random_id_string)>.toast.show,html body.bootstrapiso>:not(#wpwrap) .toast.show{display:block;opacity:1}html body.bootstrapiso:not(#random_id_string)>.toast.hide,html body.bootstrapiso>:not(#wpwrap) .toast.hide{display:none}html body.bootstrapiso:not(#random_id_string)>.toast-header,html body.bootstrapiso>:not(#wpwrap) .toast-header{display:flex;align-items:center;padding:.25rem .75rem;color:#6c757d;background-color:hsla(0,0%,100%,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05)}html body.bootstrapiso:not(#random_id_string)>.toast-body,html body.bootstrapiso>:not(#wpwrap) .toast-body{padding:.75rem}html body.bootstrapiso:not(#random_id_string)>.modal-open,html body.bootstrapiso>:not(#wpwrap) .modal-open{overflow:hidden}html body.bootstrapiso:not(#random_id_string)>.modal-open .modal,html body.bootstrapiso>:not(#wpwrap) .modal-open .modal{overflow-x:hidden;overflow-y:auto}html body.bootstrapiso:not(#random_id_string)>.modal,html body.bootstrapiso>:not(#wpwrap) .modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}html body.bootstrapiso:not(#random_id_string)>.modal-dialog,html body.bootstrapiso>:not(#wpwrap) .modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}html body.bootstrapiso:not(#random_id_string)>.modal.fade .modal-dialog,html body.bootstrapiso>:not(#wpwrap) .modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translateY(-50px)}@media (prefers-reduced-motion:reduce){html body.bootstrapiso:not(#random_id_string)>.modal.fade .modal-dialog,html body.bootstrapiso>:not(#wpwrap) .modal.fade .modal-dialog{transition:none}}html body.bootstrapiso:not(#random_id_string)>.modal.show .modal-dialog,html body.bootstrapiso>:not(#wpwrap) .modal.show .modal-dialog{transform:none}html body.bootstrapiso:not(#random_id_string)>.modal.modal-static .modal-dialog,html body.bootstrapiso>:not(#wpwrap) .modal.modal-static .modal-dialog{transform:scale(1.02)}html body.bootstrapiso:not(#random_id_string)>.modal-dialog-scrollable,html body.bootstrapiso>:not(#wpwrap) .modal-dialog-scrollable{display:flex;max-height:calc(100% - 1rem)}html body.bootstrapiso:not(#random_id_string)>.modal-dialog-scrollable .modal-content,html body.bootstrapiso>:not(#wpwrap) .modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}html body.bootstrapiso:not(#random_id_string)>.modal-dialog-scrollable .modal-footer,html body.bootstrapiso:not(#random_id_string)>.modal-dialog-scrollable .modal-header,html body.bootstrapiso>:not(#wpwrap) .modal-dialog-scrollable .modal-footer,html body.bootstrapiso>:not(#wpwrap) .modal-dialog-scrollable .modal-header{flex-shrink:0}html body.bootstrapiso:not(#random_id_string)>.modal-dialog-scrollable .modal-body,html body.bootstrapiso>:not(#wpwrap) .modal-dialog-scrollable .modal-body{overflow-y:auto}html body.bootstrapiso:not(#random_id_string)>.modal-dialog-centered,html body.bootstrapiso>:not(#wpwrap) .modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}html body.bootstrapiso:not(#random_id_string)>.modal-dialog-centered:before,html body.bootstrapiso>:not(#wpwrap) .modal-dialog-centered:before{display:block;height:calc(100vh - 1rem);height:-webkit-min-content;height:-moz-min-content;height:min-content;content:""}html body.bootstrapiso:not(#random_id_string)>.modal-dialog-centered.modal-dialog-scrollable,html body.bootstrapiso>:not(#wpwrap) .modal-dialog-centered.modal-dialog-scrollable{flex-direction:column;justify-content:center;height:100%}html body.bootstrapiso:not(#random_id_string)>.modal-dialog-centered.modal-dialog-scrollable .modal-content,html body.bootstrapiso>:not(#wpwrap) .modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}html body.bootstrapiso:not(#random_id_string)>.modal-dialog-centered.modal-dialog-scrollable:before,html body.bootstrapiso>:not(#wpwrap) .modal-dialog-centered.modal-dialog-scrollable:before{content:none}html body.bootstrapiso:not(#random_id_string)>.modal-content,html body.bootstrapiso>:not(#wpwrap) .modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}html body.bootstrapiso:not(#random_id_string)>.modal-backdrop,html body.bootstrapiso>:not(#wpwrap) .modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}html body.bootstrapiso:not(#random_id_string)>.modal-backdrop.fade,html body.bootstrapiso>:not(#wpwrap) .modal-backdrop.fade{opacity:0}html body.bootstrapiso:not(#random_id_string)>.modal-backdrop.show,html body.bootstrapiso>:not(#wpwrap) .modal-backdrop.show{opacity:.5}html body.bootstrapiso:not(#random_id_string)>.modal-header,html body.bootstrapiso>:not(#wpwrap) .modal-header{display:flex;align-items:flex-start;justify-content:space-between;padding:1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}html body.bootstrapiso:not(#random_id_string)>.modal-header .close,html body.bootstrapiso>:not(#wpwrap) .modal-header .close{padding:1rem;margin:-1rem -1rem -1rem auto}html body.bootstrapiso:not(#random_id_string)>.modal-title,html body.bootstrapiso>:not(#wpwrap) .modal-title{margin-bottom:0;line-height:1.5}html body.bootstrapiso:not(#random_id_string)>.modal-body,html body.bootstrapiso>:not(#wpwrap) .modal-body{position:relative;flex:1 1 auto;padding:1rem}html body.bootstrapiso:not(#random_id_string)>.modal-footer,html body.bootstrapiso>:not(#wpwrap) .modal-footer{display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}html body.bootstrapiso:not(#random_id_string)>.modal-footer>*,html body.bootstrapiso>:not(#wpwrap) .modal-footer>*{margin:.25rem}html body.bootstrapiso:not(#random_id_string)>.modal-scrollbar-measure,html body.bootstrapiso>:not(#wpwrap) .modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:576px){html body.bootstrapiso:not(#random_id_string)>.modal-dialog,html body.bootstrapiso>:not(#wpwrap) .modal-dialog{max-width:500px;margin:1.75rem auto}html body.bootstrapiso:not(#random_id_string)>.modal-dialog-scrollable,html body.bootstrapiso>:not(#wpwrap) .modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}html body.bootstrapiso:not(#random_id_string)>.modal-dialog-scrollable .modal-content,html body.bootstrapiso>:not(#wpwrap) .modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}html body.bootstrapiso:not(#random_id_string)>.modal-dialog-centered,html body.bootstrapiso>:not(#wpwrap) .modal-dialog-centered{min-height:calc(100% - 3.5rem)}html body.bootstrapiso:not(#random_id_string)>.modal-dialog-centered:before,html body.bootstrapiso>:not(#wpwrap) .modal-dialog-centered:before{height:calc(100vh - 3.5rem);height:-webkit-min-content;height:-moz-min-content;height:min-content}html body.bootstrapiso:not(#random_id_string)>.modal-sm,html body.bootstrapiso>:not(#wpwrap) .modal-sm{max-width:300px}}@media (min-width:992px){html body.bootstrapiso:not(#random_id_string)>.modal-lg,html body.bootstrapiso:not(#random_id_string)>.modal-xl,html body.bootstrapiso>:not(#wpwrap) .modal-lg,html body.bootstrapiso>:not(#wpwrap) .modal-xl{max-width:800px}}@media (min-width:1200px){html body.bootstrapiso:not(#random_id_string)>.modal-xl,html body.bootstrapiso>:not(#wpwrap) .modal-xl{max-width:1140px}}html body.bootstrapiso:not(#random_id_string)>.tooltip,html body.bootstrapiso>:not(#wpwrap) .tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}html body.bootstrapiso:not(#random_id_string)>.tooltip.show,html body.bootstrapiso>:not(#wpwrap) .tooltip.show{opacity:.9}html body.bootstrapiso:not(#random_id_string)>.tooltip .arrow,html body.bootstrapiso>:not(#wpwrap) .tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}html body.bootstrapiso:not(#random_id_string)>.tooltip .arrow:before,html body.bootstrapiso>:not(#wpwrap) .tooltip .arrow:before{position:absolute;content:"";border-color:transparent;border-style:solid}html body.bootstrapiso:not(#random_id_string)>.bs-tooltip-auto[x-placement^=top],html body.bootstrapiso:not(#random_id_string)>.bs-tooltip-top,html body.bootstrapiso>:not(#wpwrap) .bs-tooltip-auto[x-placement^=top],html body.bootstrapiso>:not(#wpwrap) .bs-tooltip-top{padding:.4rem 0}html body.bootstrapiso:not(#random_id_string)>.bs-tooltip-auto[x-placement^=top] .arrow,html body.bootstrapiso:not(#random_id_string)>.bs-tooltip-top .arrow,html body.bootstrapiso>:not(#wpwrap) .bs-tooltip-auto[x-placement^=top] .arrow,html body.bootstrapiso>:not(#wpwrap) .bs-tooltip-top .arrow{bottom:0}html body.bootstrapiso:not(#random_id_string)>.bs-tooltip-auto[x-placement^=top] .arrow:before,html body.bootstrapiso:not(#random_id_string)>.bs-tooltip-top .arrow:before,html body.bootstrapiso>:not(#wpwrap) .bs-tooltip-auto[x-placement^=top] .arrow:before,html body.bootstrapiso>:not(#wpwrap) .bs-tooltip-top .arrow:before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}html body.bootstrapiso:not(#random_id_string)>.bs-tooltip-auto[x-placement^=right],html body.bootstrapiso:not(#random_id_string)>.bs-tooltip-right,html body.bootstrapiso>:not(#wpwrap) .bs-tooltip-auto[x-placement^=right],html body.bootstrapiso>:not(#wpwrap) .bs-tooltip-right{padding:0 .4rem}html body.bootstrapiso:not(#random_id_string)>.bs-tooltip-auto[x-placement^=right] .arrow,html body.bootstrapiso:not(#random_id_string)>.bs-tooltip-right .arrow,html body.bootstrapiso>:not(#wpwrap) .bs-tooltip-auto[x-placement^=right] .arrow,html body.bootstrapiso>:not(#wpwrap) .bs-tooltip-right .arrow{left:0;width:.4rem;height:.8rem}html body.bootstrapiso:not(#random_id_string)>.bs-tooltip-auto[x-placement^=right] .arrow:before,html body.bootstrapiso:not(#random_id_string)>.bs-tooltip-right .arrow:before,html body.bootstrapiso>:not(#wpwrap) .bs-tooltip-auto[x-placement^=right] .arrow:before,html body.bootstrapiso>:not(#wpwrap) .bs-tooltip-right .arrow:before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}html body.bootstrapiso:not(#random_id_string)>.bs-tooltip-auto[x-placement^=bottom],html body.bootstrapiso:not(#random_id_string)>.bs-tooltip-bottom,html body.bootstrapiso>:not(#wpwrap) .bs-tooltip-auto[x-placement^=bottom],html body.bootstrapiso>:not(#wpwrap) .bs-tooltip-bottom{padding:.4rem 0}html body.bootstrapiso:not(#random_id_string)>.bs-tooltip-auto[x-placement^=bottom] .arrow,html body.bootstrapiso:not(#random_id_string)>.bs-tooltip-bottom .arrow,html body.bootstrapiso>:not(#wpwrap) .bs-tooltip-auto[x-placement^=bottom] .arrow,html body.bootstrapiso>:not(#wpwrap) .bs-tooltip-bottom .arrow{top:0}html body.bootstrapiso:not(#random_id_string)>.bs-tooltip-auto[x-placement^=bottom] .arrow:before,html body.bootstrapiso:not(#random_id_string)>.bs-tooltip-bottom .arrow:before,html body.bootstrapiso>:not(#wpwrap) .bs-tooltip-auto[x-placement^=bottom] .arrow:before,html body.bootstrapiso>:not(#wpwrap) .bs-tooltip-bottom .arrow:before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}html body.bootstrapiso:not(#random_id_string)>.bs-tooltip-auto[x-placement^=left],html body.bootstrapiso:not(#random_id_string)>.bs-tooltip-left,html body.bootstrapiso>:not(#wpwrap) .bs-tooltip-auto[x-placement^=left],html body.bootstrapiso>:not(#wpwrap) .bs-tooltip-left{padding:0 .4rem}html body.bootstrapiso:not(#random_id_string)>.bs-tooltip-auto[x-placement^=left] .arrow,html body.bootstrapiso:not(#random_id_string)>.bs-tooltip-left .arrow,html body.bootstrapiso>:not(#wpwrap) .bs-tooltip-auto[x-placement^=left] .arrow,html body.bootstrapiso>:not(#wpwrap) .bs-tooltip-left .arrow{right:0;width:.4rem;height:.8rem}html body.bootstrapiso:not(#random_id_string)>.bs-tooltip-auto[x-placement^=left] .arrow:before,html body.bootstrapiso:not(#random_id_string)>.bs-tooltip-left .arrow:before,html body.bootstrapiso>:not(#wpwrap) .bs-tooltip-auto[x-placement^=left] .arrow:before,html body.bootstrapiso>:not(#wpwrap) .bs-tooltip-left .arrow:before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}html body.bootstrapiso:not(#random_id_string)>.tooltip-inner,html body.bootstrapiso>:not(#wpwrap) .tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}html body.bootstrapiso:not(#random_id_string)>.popover,html body.bootstrapiso>:not(#wpwrap) .popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}html body.bootstrapiso:not(#random_id_string)>.popover .arrow,html body.bootstrapiso>:not(#wpwrap) .popover .arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 .3rem}html body.bootstrapiso:not(#random_id_string)>.popover .arrow:after,html body.bootstrapiso:not(#random_id_string)>.popover .arrow:before,html body.bootstrapiso>:not(#wpwrap) .popover .arrow:after,html body.bootstrapiso>:not(#wpwrap) .popover .arrow:before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}html body.bootstrapiso:not(#random_id_string)>.bs-popover-auto[x-placement^=top],html body.bootstrapiso:not(#random_id_string)>.bs-popover-top,html body.bootstrapiso>:not(#wpwrap) .bs-popover-auto[x-placement^=top],html body.bootstrapiso>:not(#wpwrap) .bs-popover-top{margin-bottom:.5rem}html body.bootstrapiso:not(#random_id_string)>.bs-popover-auto[x-placement^=top]>.arrow,html body.bootstrapiso:not(#random_id_string)>.bs-popover-top>.arrow,html body.bootstrapiso>:not(#wpwrap) .bs-popover-auto[x-placement^=top]>.arrow,html body.bootstrapiso>:not(#wpwrap) .bs-popover-top>.arrow{bottom:calc(-.5rem - 1px)}html body.bootstrapiso:not(#random_id_string)>.bs-popover-auto[x-placement^=top]>.arrow:before,html body.bootstrapiso:not(#random_id_string)>.bs-popover-top>.arrow:before,html body.bootstrapiso>:not(#wpwrap) .bs-popover-auto[x-placement^=top]>.arrow:before,html body.bootstrapiso>:not(#wpwrap) .bs-popover-top>.arrow:before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}html body.bootstrapiso:not(#random_id_string)>.bs-popover-auto[x-placement^=top]>.arrow:after,html body.bootstrapiso:not(#random_id_string)>.bs-popover-top>.arrow:after,html body.bootstrapiso>:not(#wpwrap) .bs-popover-auto[x-placement^=top]>.arrow:after,html body.bootstrapiso>:not(#wpwrap) .bs-popover-top>.arrow:after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}html body.bootstrapiso:not(#random_id_string)>.bs-popover-auto[x-placement^=right],html body.bootstrapiso:not(#random_id_string)>.bs-popover-right,html body.bootstrapiso>:not(#wpwrap) .bs-popover-auto[x-placement^=right],html body.bootstrapiso>:not(#wpwrap) .bs-popover-right{margin-left:.5rem}html body.bootstrapiso:not(#random_id_string)>.bs-popover-auto[x-placement^=right]>.arrow,html body.bootstrapiso:not(#random_id_string)>.bs-popover-right>.arrow,html body.bootstrapiso>:not(#wpwrap) .bs-popover-auto[x-placement^=right]>.arrow,html body.bootstrapiso>:not(#wpwrap) .bs-popover-right>.arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}html body.bootstrapiso:not(#random_id_string)>.bs-popover-auto[x-placement^=right]>.arrow:before,html body.bootstrapiso:not(#random_id_string)>.bs-popover-right>.arrow:before,html body.bootstrapiso>:not(#wpwrap) .bs-popover-auto[x-placement^=right]>.arrow:before,html body.bootstrapiso>:not(#wpwrap) .bs-popover-right>.arrow:before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}html body.bootstrapiso:not(#random_id_string)>.bs-popover-auto[x-placement^=right]>.arrow:after,html body.bootstrapiso:not(#random_id_string)>.bs-popover-right>.arrow:after,html body.bootstrapiso>:not(#wpwrap) .bs-popover-auto[x-placement^=right]>.arrow:after,html body.bootstrapiso>:not(#wpwrap) .bs-popover-right>.arrow:after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}html body.bootstrapiso:not(#random_id_string)>.bs-popover-auto[x-placement^=bottom],html body.bootstrapiso:not(#random_id_string)>.bs-popover-bottom,html body.bootstrapiso>:not(#wpwrap) .bs-popover-auto[x-placement^=bottom],html body.bootstrapiso>:not(#wpwrap) .bs-popover-bottom{margin-top:.5rem}html body.bootstrapiso:not(#random_id_string)>.bs-popover-auto[x-placement^=bottom]>.arrow,html body.bootstrapiso:not(#random_id_string)>.bs-popover-bottom>.arrow,html body.bootstrapiso>:not(#wpwrap) .bs-popover-auto[x-placement^=bottom]>.arrow,html body.bootstrapiso>:not(#wpwrap) .bs-popover-bottom>.arrow{top:calc(-.5rem - 1px)}html body.bootstrapiso:not(#random_id_string)>.bs-popover-auto[x-placement^=bottom]>.arrow:before,html body.bootstrapiso:not(#random_id_string)>.bs-popover-bottom>.arrow:before,html body.bootstrapiso>:not(#wpwrap) .bs-popover-auto[x-placement^=bottom]>.arrow:before,html body.bootstrapiso>:not(#wpwrap) .bs-popover-bottom>.arrow:before{top:0;border-width:0 .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}html body.bootstrapiso:not(#random_id_string)>.bs-popover-auto[x-placement^=bottom]>.arrow:after,html body.bootstrapiso:not(#random_id_string)>.bs-popover-bottom>.arrow:after,html body.bootstrapiso>:not(#wpwrap) .bs-popover-auto[x-placement^=bottom]>.arrow:after,html body.bootstrapiso>:not(#wpwrap) .bs-popover-bottom>.arrow:after{top:1px;border-width:0 .5rem .5rem;border-bottom-color:#fff}html body.bootstrapiso:not(#random_id_string)>.bs-popover-auto[x-placement^=bottom] .popover-header:before,html body.bootstrapiso:not(#random_id_string)>.bs-popover-bottom .popover-header:before,html body.bootstrapiso>:not(#wpwrap) .bs-popover-auto[x-placement^=bottom] .popover-header:before,html body.bootstrapiso>:not(#wpwrap) .bs-popover-bottom .popover-header:before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f7f7f7}html body.bootstrapiso:not(#random_id_string)>.bs-popover-auto[x-placement^=left],html body.bootstrapiso:not(#random_id_string)>.bs-popover-left,html body.bootstrapiso>:not(#wpwrap) .bs-popover-auto[x-placement^=left],html body.bootstrapiso>:not(#wpwrap) .bs-popover-left{margin-right:.5rem}html body.bootstrapiso:not(#random_id_string)>.bs-popover-auto[x-placement^=left]>.arrow,html body.bootstrapiso:not(#random_id_string)>.bs-popover-left>.arrow,html body.bootstrapiso>:not(#wpwrap) .bs-popover-auto[x-placement^=left]>.arrow,html body.bootstrapiso>:not(#wpwrap) .bs-popover-left>.arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}html body.bootstrapiso:not(#random_id_string)>.bs-popover-auto[x-placement^=left]>.arrow:before,html body.bootstrapiso:not(#random_id_string)>.bs-popover-left>.arrow:before,html body.bootstrapiso>:not(#wpwrap) .bs-popover-auto[x-placement^=left]>.arrow:before,html body.bootstrapiso>:not(#wpwrap) .bs-popover-left>.arrow:before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}html body.bootstrapiso:not(#random_id_string)>.bs-popover-auto[x-placement^=left]>.arrow:after,html body.bootstrapiso:not(#random_id_string)>.bs-popover-left>.arrow:after,html body.bootstrapiso>:not(#wpwrap) .bs-popover-auto[x-placement^=left]>.arrow:after,html body.bootstrapiso>:not(#wpwrap) .bs-popover-left>.arrow:after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}html body.bootstrapiso:not(#random_id_string)>.popover-header,html body.bootstrapiso>:not(#wpwrap) .popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}html body.bootstrapiso:not(#random_id_string)>.popover-header:empty,html body.bootstrapiso>:not(#wpwrap) .popover-header:empty{display:none}html body.bootstrapiso:not(#random_id_string)>.popover-body,html body.bootstrapiso>:not(#wpwrap) .popover-body{padding:.5rem .75rem;color:#212529}html body.bootstrapiso:not(#random_id_string)>.carousel,html body.bootstrapiso>:not(#wpwrap) .carousel{position:relative}html body.bootstrapiso:not(#random_id_string)>.carousel.pointer-event,html body.bootstrapiso>:not(#wpwrap) .carousel.pointer-event{touch-action:pan-y}html body.bootstrapiso:not(#random_id_string)>.carousel-inner,html body.bootstrapiso>:not(#wpwrap) .carousel-inner{position:relative;width:100%;overflow:hidden}html body.bootstrapiso:not(#random_id_string)>.carousel-inner:after,html body.bootstrapiso>:not(#wpwrap) .carousel-inner:after{display:block;clear:both;content:""}html body.bootstrapiso:not(#random_id_string)>.carousel-item,html body.bootstrapiso>:not(#wpwrap) .carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){html body.bootstrapiso:not(#random_id_string)>.carousel-item,html body.bootstrapiso>:not(#wpwrap) .carousel-item{transition:none}}html body.bootstrapiso:not(#random_id_string)>.carousel-item-next,html body.bootstrapiso:not(#random_id_string)>.carousel-item-prev,html body.bootstrapiso:not(#random_id_string)>.carousel-item.active,html body.bootstrapiso>:not(#wpwrap) .carousel-item-next,html body.bootstrapiso>:not(#wpwrap) .carousel-item-prev,html body.bootstrapiso>:not(#wpwrap) .carousel-item.active{display:block}html body.bootstrapiso:not(#random_id_string)>.active.carousel-item-right,html body.bootstrapiso:not(#random_id_string)>.carousel-item-next:not(.carousel-item-left),html body.bootstrapiso>:not(#wpwrap) .active.carousel-item-right,html body.bootstrapiso>:not(#wpwrap) .carousel-item-next:not(.carousel-item-left){transform:translateX(100%)}html body.bootstrapiso:not(#random_id_string)>.active.carousel-item-left,html body.bootstrapiso:not(#random_id_string)>.carousel-item-prev:not(.carousel-item-right),html body.bootstrapiso>:not(#wpwrap) .active.carousel-item-left,html body.bootstrapiso>:not(#wpwrap) .carousel-item-prev:not(.carousel-item-right){transform:translateX(-100%)}html body.bootstrapiso:not(#random_id_string)>.carousel-fade .carousel-item,html body.bootstrapiso>:not(#wpwrap) .carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}html body.bootstrapiso:not(#random_id_string)>.carousel-fade .carousel-item-next.carousel-item-left,html body.bootstrapiso:not(#random_id_string)>.carousel-fade .carousel-item-prev.carousel-item-right,html body.bootstrapiso:not(#random_id_string)>.carousel-fade .carousel-item.active,html body.bootstrapiso>:not(#wpwrap) .carousel-fade .carousel-item-next.carousel-item-left,html body.bootstrapiso>:not(#wpwrap) .carousel-fade .carousel-item-prev.carousel-item-right,html body.bootstrapiso>:not(#wpwrap) .carousel-fade .carousel-item.active{z-index:1;opacity:1}html body.bootstrapiso:not(#random_id_string)>.carousel-fade .active.carousel-item-left,html body.bootstrapiso:not(#random_id_string)>.carousel-fade .active.carousel-item-right,html body.bootstrapiso>:not(#wpwrap) .carousel-fade .active.carousel-item-left,html body.bootstrapiso>:not(#wpwrap) .carousel-fade .active.carousel-item-right{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion:reduce){html body.bootstrapiso:not(#random_id_string)>.carousel-fade .active.carousel-item-left,html body.bootstrapiso:not(#random_id_string)>.carousel-fade .active.carousel-item-right,html body.bootstrapiso>:not(#wpwrap) .carousel-fade .active.carousel-item-left,html body.bootstrapiso>:not(#wpwrap) .carousel-fade .active.carousel-item-right{transition:none}}html body.bootstrapiso:not(#random_id_string)>.carousel-control-next,html body.bootstrapiso:not(#random_id_string)>.carousel-control-prev,html body.bootstrapiso>:not(#wpwrap) .carousel-control-next,html body.bootstrapiso>:not(#wpwrap) .carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;color:#fff;text-align:center;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){html body.bootstrapiso:not(#random_id_string)>.carousel-control-next,html body.bootstrapiso:not(#random_id_string)>.carousel-control-prev,html body.bootstrapiso>:not(#wpwrap) .carousel-control-next,html body.bootstrapiso>:not(#wpwrap) .carousel-control-prev{transition:none}}html body.bootstrapiso:not(#random_id_string)>.carousel-control-next:focus,html body.bootstrapiso:not(#random_id_string)>.carousel-control-next:hover,html body.bootstrapiso:not(#random_id_string)>.carousel-control-prev:focus,html body.bootstrapiso:not(#random_id_string)>.carousel-control-prev:hover,html body.bootstrapiso>:not(#wpwrap) .carousel-control-next:focus,html body.bootstrapiso>:not(#wpwrap) .carousel-control-next:hover,html body.bootstrapiso>:not(#wpwrap) .carousel-control-prev:focus,html body.bootstrapiso>:not(#wpwrap) .carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}html body.bootstrapiso:not(#random_id_string)>.carousel-control-prev,html body.bootstrapiso>:not(#wpwrap) .carousel-control-prev{left:0}html body.bootstrapiso:not(#random_id_string)>.carousel-control-next,html body.bootstrapiso>:not(#wpwrap) .carousel-control-next{right:0}html body.bootstrapiso:not(#random_id_string)>.carousel-control-next-icon,html body.bootstrapiso:not(#random_id_string)>.carousel-control-prev-icon,html body.bootstrapiso>:not(#wpwrap) .carousel-control-next-icon,html body.bootstrapiso>:not(#wpwrap) .carousel-control-prev-icon{display:inline-block;width:20px;height:20px;background:no-repeat 50%/100% 100%}html body.bootstrapiso:not(#random_id_string)>.carousel-control-prev-icon,html body.bootstrapiso>:not(#wpwrap) .carousel-control-prev-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3E%3C/svg%3E")}html body.bootstrapiso:not(#random_id_string)>.carousel-control-next-icon,html body.bootstrapiso>:not(#wpwrap) .carousel-control-next-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8'%3E%3Cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3E%3C/svg%3E")}html body.bootstrapiso:not(#random_id_string)>.carousel-indicators,html body.bootstrapiso>:not(#wpwrap) .carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:15;display:flex;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}html body.bootstrapiso:not(#random_id_string)>.carousel-indicators li,html body.bootstrapiso>:not(#wpwrap) .carousel-indicators li{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){html body.bootstrapiso:not(#random_id_string)>.carousel-indicators li,html body.bootstrapiso>:not(#wpwrap) .carousel-indicators li{transition:none}}html body.bootstrapiso:not(#random_id_string)>.carousel-indicators .active,html body.bootstrapiso>:not(#wpwrap) .carousel-indicators .active{opacity:1}html body.bootstrapiso:not(#random_id_string)>.carousel-caption,html body.bootstrapiso>:not(#wpwrap) .carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}@-webkit-keyframes spinner-border{to{transform:rotate(1turn)}}@keyframes spinner-border{to{transform:rotate(1turn)}}html body.bootstrapiso:not(#random_id_string)>.spinner-border,html body.bootstrapiso>:not(#wpwrap) .spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;border:.25em solid;border-right:.25em solid transparent;border-radius:50%;-webkit-animation:spinner-border .75s linear infinite;animation:spinner-border .75s linear infinite}html body.bootstrapiso:not(#random_id_string)>.spinner-border-sm,html body.bootstrapiso>:not(#wpwrap) .spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@-webkit-keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}html body.bootstrapiso:not(#random_id_string)>.spinner-grow,html body.bootstrapiso>:not(#wpwrap) .spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:spinner-grow .75s linear infinite;animation:spinner-grow .75s linear infinite}html body.bootstrapiso:not(#random_id_string)>.spinner-grow-sm,html body.bootstrapiso>:not(#wpwrap) .spinner-grow-sm{width:1rem;height:1rem}html body.bootstrapiso:not(#random_id_string)>.align-baseline,html body.bootstrapiso>:not(#wpwrap) .align-baseline{vertical-align:baseline!important}html body.bootstrapiso:not(#random_id_string)>.align-top,html body.bootstrapiso>:not(#wpwrap) .align-top{vertical-align:top!important}html body.bootstrapiso:not(#random_id_string)>.align-middle,html body.bootstrapiso>:not(#wpwrap) .align-middle{vertical-align:middle!important}html body.bootstrapiso:not(#random_id_string)>.align-bottom,html body.bootstrapiso>:not(#wpwrap) .align-bottom{vertical-align:bottom!important}html body.bootstrapiso:not(#random_id_string)>.align-text-bottom,html body.bootstrapiso>:not(#wpwrap) .align-text-bottom{vertical-align:text-bottom!important}html body.bootstrapiso:not(#random_id_string)>.align-text-top,html body.bootstrapiso>:not(#wpwrap) .align-text-top{vertical-align:text-top!important}html body.bootstrapiso:not(#random_id_string)>.bg-primary,html body.bootstrapiso>:not(#wpwrap) .bg-primary{background-color:#007bff!important}html body.bootstrapiso:not(#random_id_string)>a.bg-primary:focus,html body.bootstrapiso:not(#random_id_string)>a.bg-primary:hover,html body.bootstrapiso:not(#random_id_string)>button.bg-primary:focus,html body.bootstrapiso:not(#random_id_string)>button.bg-primary:hover,html body.bootstrapiso>:not(#wpwrap) a.bg-primary:focus,html body.bootstrapiso>:not(#wpwrap) a.bg-primary:hover,html body.bootstrapiso>:not(#wpwrap) button.bg-primary:focus,html body.bootstrapiso>:not(#wpwrap) button.bg-primary:hover{background-color:#0062cc!important}html body.bootstrapiso:not(#random_id_string)>.bg-secondary,html body.bootstrapiso>:not(#wpwrap) .bg-secondary{background-color:#6c757d!important}html body.bootstrapiso:not(#random_id_string)>a.bg-secondary:focus,html body.bootstrapiso:not(#random_id_string)>a.bg-secondary:hover,html body.bootstrapiso:not(#random_id_string)>button.bg-secondary:focus,html body.bootstrapiso:not(#random_id_string)>button.bg-secondary:hover,html body.bootstrapiso>:not(#wpwrap) a.bg-secondary:focus,html body.bootstrapiso>:not(#wpwrap) a.bg-secondary:hover,html body.bootstrapiso>:not(#wpwrap) button.bg-secondary:focus,html body.bootstrapiso>:not(#wpwrap) button.bg-secondary:hover{background-color:#545b62!important}html body.bootstrapiso:not(#random_id_string)>.bg-success,html body.bootstrapiso>:not(#wpwrap) .bg-success{background-color:#28a745!important}html body.bootstrapiso:not(#random_id_string)>a.bg-success:focus,html body.bootstrapiso:not(#random_id_string)>a.bg-success:hover,html body.bootstrapiso:not(#random_id_string)>button.bg-success:focus,html body.bootstrapiso:not(#random_id_string)>button.bg-success:hover,html body.bootstrapiso>:not(#wpwrap) a.bg-success:focus,html body.bootstrapiso>:not(#wpwrap) a.bg-success:hover,html body.bootstrapiso>:not(#wpwrap) button.bg-success:focus,html body.bootstrapiso>:not(#wpwrap) button.bg-success:hover{background-color:#1e7e34!important}html body.bootstrapiso:not(#random_id_string)>.bg-info,html body.bootstrapiso>:not(#wpwrap) .bg-info{background-color:#17a2b8!important}html body.bootstrapiso:not(#random_id_string)>a.bg-info:focus,html body.bootstrapiso:not(#random_id_string)>a.bg-info:hover,html body.bootstrapiso:not(#random_id_string)>button.bg-info:focus,html body.bootstrapiso:not(#random_id_string)>button.bg-info:hover,html body.bootstrapiso>:not(#wpwrap) a.bg-info:focus,html body.bootstrapiso>:not(#wpwrap) a.bg-info:hover,html body.bootstrapiso>:not(#wpwrap) button.bg-info:focus,html body.bootstrapiso>:not(#wpwrap) button.bg-info:hover{background-color:#117a8b!important}html body.bootstrapiso:not(#random_id_string)>.bg-warning,html body.bootstrapiso>:not(#wpwrap) .bg-warning{background-color:#ffc107!important}html body.bootstrapiso:not(#random_id_string)>a.bg-warning:focus,html body.bootstrapiso:not(#random_id_string)>a.bg-warning:hover,html body.bootstrapiso:not(#random_id_string)>button.bg-warning:focus,html body.bootstrapiso:not(#random_id_string)>button.bg-warning:hover,html body.bootstrapiso>:not(#wpwrap) a.bg-warning:focus,html body.bootstrapiso>:not(#wpwrap) a.bg-warning:hover,html body.bootstrapiso>:not(#wpwrap) button.bg-warning:focus,html body.bootstrapiso>:not(#wpwrap) button.bg-warning:hover{background-color:#d39e00!important}html body.bootstrapiso:not(#random_id_string)>.bg-danger,html body.bootstrapiso>:not(#wpwrap) .bg-danger{background-color:#dc3545!important}html body.bootstrapiso:not(#random_id_string)>a.bg-danger:focus,html body.bootstrapiso:not(#random_id_string)>a.bg-danger:hover,html body.bootstrapiso:not(#random_id_string)>button.bg-danger:focus,html body.bootstrapiso:not(#random_id_string)>button.bg-danger:hover,html body.bootstrapiso>:not(#wpwrap) a.bg-danger:focus,html body.bootstrapiso>:not(#wpwrap) a.bg-danger:hover,html body.bootstrapiso>:not(#wpwrap) button.bg-danger:focus,html body.bootstrapiso>:not(#wpwrap) button.bg-danger:hover{background-color:#bd2130!important}html body.bootstrapiso:not(#random_id_string)>.bg-light,html body.bootstrapiso>:not(#wpwrap) .bg-light{background-color:#f8f9fa!important}html body.bootstrapiso:not(#random_id_string)>a.bg-light:focus,html body.bootstrapiso:not(#random_id_string)>a.bg-light:hover,html body.bootstrapiso:not(#random_id_string)>button.bg-light:focus,html body.bootstrapiso:not(#random_id_string)>button.bg-light:hover,html body.bootstrapiso>:not(#wpwrap) a.bg-light:focus,html body.bootstrapiso>:not(#wpwrap) a.bg-light:hover,html body.bootstrapiso>:not(#wpwrap) button.bg-light:focus,html body.bootstrapiso>:not(#wpwrap) button.bg-light:hover{background-color:#dae0e5!important}html body.bootstrapiso:not(#random_id_string)>.bg-dark,html body.bootstrapiso>:not(#wpwrap) .bg-dark{background-color:#343a40!important}html body.bootstrapiso:not(#random_id_string)>a.bg-dark:focus,html body.bootstrapiso:not(#random_id_string)>a.bg-dark:hover,html body.bootstrapiso:not(#random_id_string)>button.bg-dark:focus,html body.bootstrapiso:not(#random_id_string)>button.bg-dark:hover,html body.bootstrapiso>:not(#wpwrap) a.bg-dark:focus,html body.bootstrapiso>:not(#wpwrap) a.bg-dark:hover,html body.bootstrapiso>:not(#wpwrap) button.bg-dark:focus,html body.bootstrapiso>:not(#wpwrap) button.bg-dark:hover{background-color:#1d2124!important}html body.bootstrapiso:not(#random_id_string)>.bg-white,html body.bootstrapiso>:not(#wpwrap) .bg-white{background-color:#fff!important}html body.bootstrapiso:not(#random_id_string)>.bg-transparent,html body.bootstrapiso>:not(#wpwrap) .bg-transparent{background-color:transparent!important}html body.bootstrapiso:not(#random_id_string)>.border,html body.bootstrapiso>:not(#wpwrap) .border{border:1px solid #dee2e6!important}html body.bootstrapiso:not(#random_id_string)>.border-top,html body.bootstrapiso>:not(#wpwrap) .border-top{border-top:1px solid #dee2e6!important}html body.bootstrapiso:not(#random_id_string)>.border-right,html body.bootstrapiso>:not(#wpwrap) .border-right{border-right:1px solid #dee2e6!important}html body.bootstrapiso:not(#random_id_string)>.border-bottom,html body.bootstrapiso>:not(#wpwrap) .border-bottom{border-bottom:1px solid #dee2e6!important}html body.bootstrapiso:not(#random_id_string)>.border-left,html body.bootstrapiso>:not(#wpwrap) .border-left{border-left:1px solid #dee2e6!important}html body.bootstrapiso:not(#random_id_string)>.border-0,html body.bootstrapiso>:not(#wpwrap) .border-0{border:0!important}html body.bootstrapiso:not(#random_id_string)>.border-top-0,html body.bootstrapiso>:not(#wpwrap) .border-top-0{border-top:0!important}html body.bootstrapiso:not(#random_id_string)>.border-right-0,html body.bootstrapiso>:not(#wpwrap) .border-right-0{border-right:0!important}html body.bootstrapiso:not(#random_id_string)>.border-bottom-0,html body.bootstrapiso>:not(#wpwrap) .border-bottom-0{border-bottom:0!important}html body.bootstrapiso:not(#random_id_string)>.border-left-0,html body.bootstrapiso>:not(#wpwrap) .border-left-0{border-left:0!important}html body.bootstrapiso:not(#random_id_string)>.border-primary,html body.bootstrapiso>:not(#wpwrap) .border-primary{border-color:#007bff!important}html body.bootstrapiso:not(#random_id_string)>.border-secondary,html body.bootstrapiso>:not(#wpwrap) .border-secondary{border-color:#6c757d!important}html body.bootstrapiso:not(#random_id_string)>.border-success,html body.bootstrapiso>:not(#wpwrap) .border-success{border-color:#28a745!important}html body.bootstrapiso:not(#random_id_string)>.border-info,html body.bootstrapiso>:not(#wpwrap) .border-info{border-color:#17a2b8!important}html body.bootstrapiso:not(#random_id_string)>.border-warning,html body.bootstrapiso>:not(#wpwrap) .border-warning{border-color:#ffc107!important}html body.bootstrapiso:not(#random_id_string)>.border-danger,html body.bootstrapiso>:not(#wpwrap) .border-danger{border-color:#dc3545!important}html body.bootstrapiso:not(#random_id_string)>.border-light,html body.bootstrapiso>:not(#wpwrap) .border-light{border-color:#f8f9fa!important}html body.bootstrapiso:not(#random_id_string)>.border-dark,html body.bootstrapiso>:not(#wpwrap) .border-dark{border-color:#343a40!important}html body.bootstrapiso:not(#random_id_string)>.border-white,html body.bootstrapiso>:not(#wpwrap) .border-white{border-color:#fff!important}html body.bootstrapiso:not(#random_id_string)>.rounded-sm,html body.bootstrapiso>:not(#wpwrap) .rounded-sm{border-radius:.2rem!important}html body.bootstrapiso:not(#random_id_string)>.rounded,html body.bootstrapiso>:not(#wpwrap) .rounded{border-radius:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.rounded-top,html body.bootstrapiso>:not(#wpwrap) .rounded-top{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.rounded-right,html body.bootstrapiso>:not(#wpwrap) .rounded-right{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.rounded-bottom,html body.bootstrapiso>:not(#wpwrap) .rounded-bottom{border-bottom-right-radius:.25rem!important;border-bottom-left-radius:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.rounded-left,html body.bootstrapiso>:not(#wpwrap) .rounded-left{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.rounded-lg,html body.bootstrapiso>:not(#wpwrap) .rounded-lg{border-radius:.3rem!important}html body.bootstrapiso:not(#random_id_string)>.rounded-circle,html body.bootstrapiso>:not(#wpwrap) .rounded-circle{border-radius:50%!important}html body.bootstrapiso:not(#random_id_string)>.rounded-pill,html body.bootstrapiso>:not(#wpwrap) .rounded-pill{border-radius:50rem!important}html body.bootstrapiso:not(#random_id_string)>.rounded-0,html body.bootstrapiso>:not(#wpwrap) .rounded-0{border-radius:0!important}html body.bootstrapiso:not(#random_id_string)>.clearfix:after,html body.bootstrapiso>:not(#wpwrap) .clearfix:after{display:block;clear:both;content:""}html body.bootstrapiso:not(#random_id_string)>.d-none,html body.bootstrapiso>:not(#wpwrap) .d-none{display:none!important}html body.bootstrapiso:not(#random_id_string)>.d-inline,html body.bootstrapiso>:not(#wpwrap) .d-inline{display:inline!important}html body.bootstrapiso:not(#random_id_string)>.d-inline-block,html body.bootstrapiso>:not(#wpwrap) .d-inline-block{display:inline-block!important}html body.bootstrapiso:not(#random_id_string)>.d-block,html body.bootstrapiso>:not(#wpwrap) .d-block{display:block!important}html body.bootstrapiso:not(#random_id_string)>.d-table,html body.bootstrapiso>:not(#wpwrap) .d-table{display:table!important}html body.bootstrapiso:not(#random_id_string)>.d-table-row,html body.bootstrapiso>:not(#wpwrap) .d-table-row{display:table-row!important}html body.bootstrapiso:not(#random_id_string)>.d-table-cell,html body.bootstrapiso>:not(#wpwrap) .d-table-cell{display:table-cell!important}html body.bootstrapiso:not(#random_id_string)>.d-flex,html body.bootstrapiso>:not(#wpwrap) .d-flex{display:flex!important}html body.bootstrapiso:not(#random_id_string)>.d-inline-flex,html body.bootstrapiso>:not(#wpwrap) .d-inline-flex{display:inline-flex!important}@media (min-width:576px){html body.bootstrapiso:not(#random_id_string)>.d-sm-none,html body.bootstrapiso>:not(#wpwrap) .d-sm-none{display:none!important}html body.bootstrapiso:not(#random_id_string)>.d-sm-inline,html body.bootstrapiso>:not(#wpwrap) .d-sm-inline{display:inline!important}html body.bootstrapiso:not(#random_id_string)>.d-sm-inline-block,html body.bootstrapiso>:not(#wpwrap) .d-sm-inline-block{display:inline-block!important}html body.bootstrapiso:not(#random_id_string)>.d-sm-block,html body.bootstrapiso>:not(#wpwrap) .d-sm-block{display:block!important}html body.bootstrapiso:not(#random_id_string)>.d-sm-table,html body.bootstrapiso>:not(#wpwrap) .d-sm-table{display:table!important}html body.bootstrapiso:not(#random_id_string)>.d-sm-table-row,html body.bootstrapiso>:not(#wpwrap) .d-sm-table-row{display:table-row!important}html body.bootstrapiso:not(#random_id_string)>.d-sm-table-cell,html body.bootstrapiso>:not(#wpwrap) .d-sm-table-cell{display:table-cell!important}html body.bootstrapiso:not(#random_id_string)>.d-sm-flex,html body.bootstrapiso>:not(#wpwrap) .d-sm-flex{display:flex!important}html body.bootstrapiso:not(#random_id_string)>.d-sm-inline-flex,html body.bootstrapiso>:not(#wpwrap) .d-sm-inline-flex{display:inline-flex!important}}@media (min-width:768px){html body.bootstrapiso:not(#random_id_string)>.d-md-none,html body.bootstrapiso>:not(#wpwrap) .d-md-none{display:none!important}html body.bootstrapiso:not(#random_id_string)>.d-md-inline,html body.bootstrapiso>:not(#wpwrap) .d-md-inline{display:inline!important}html body.bootstrapiso:not(#random_id_string)>.d-md-inline-block,html body.bootstrapiso>:not(#wpwrap) .d-md-inline-block{display:inline-block!important}html body.bootstrapiso:not(#random_id_string)>.d-md-block,html body.bootstrapiso>:not(#wpwrap) .d-md-block{display:block!important}html body.bootstrapiso:not(#random_id_string)>.d-md-table,html body.bootstrapiso>:not(#wpwrap) .d-md-table{display:table!important}html body.bootstrapiso:not(#random_id_string)>.d-md-table-row,html body.bootstrapiso>:not(#wpwrap) .d-md-table-row{display:table-row!important}html body.bootstrapiso:not(#random_id_string)>.d-md-table-cell,html body.bootstrapiso>:not(#wpwrap) .d-md-table-cell{display:table-cell!important}html body.bootstrapiso:not(#random_id_string)>.d-md-flex,html body.bootstrapiso>:not(#wpwrap) .d-md-flex{display:flex!important}html body.bootstrapiso:not(#random_id_string)>.d-md-inline-flex,html body.bootstrapiso>:not(#wpwrap) .d-md-inline-flex{display:inline-flex!important}}@media (min-width:992px){html body.bootstrapiso:not(#random_id_string)>.d-lg-none,html body.bootstrapiso>:not(#wpwrap) .d-lg-none{display:none!important}html body.bootstrapiso:not(#random_id_string)>.d-lg-inline,html body.bootstrapiso>:not(#wpwrap) .d-lg-inline{display:inline!important}html body.bootstrapiso:not(#random_id_string)>.d-lg-inline-block,html body.bootstrapiso>:not(#wpwrap) .d-lg-inline-block{display:inline-block!important}html body.bootstrapiso:not(#random_id_string)>.d-lg-block,html body.bootstrapiso>:not(#wpwrap) .d-lg-block{display:block!important}html body.bootstrapiso:not(#random_id_string)>.d-lg-table,html body.bootstrapiso>:not(#wpwrap) .d-lg-table{display:table!important}html body.bootstrapiso:not(#random_id_string)>.d-lg-table-row,html body.bootstrapiso>:not(#wpwrap) .d-lg-table-row{display:table-row!important}html body.bootstrapiso:not(#random_id_string)>.d-lg-table-cell,html body.bootstrapiso>:not(#wpwrap) .d-lg-table-cell{display:table-cell!important}html body.bootstrapiso:not(#random_id_string)>.d-lg-flex,html body.bootstrapiso>:not(#wpwrap) .d-lg-flex{display:flex!important}html body.bootstrapiso:not(#random_id_string)>.d-lg-inline-flex,html body.bootstrapiso>:not(#wpwrap) .d-lg-inline-flex{display:inline-flex!important}}@media (min-width:1200px){html body.bootstrapiso:not(#random_id_string)>.d-xl-none,html body.bootstrapiso>:not(#wpwrap) .d-xl-none{display:none!important}html body.bootstrapiso:not(#random_id_string)>.d-xl-inline,html body.bootstrapiso>:not(#wpwrap) .d-xl-inline{display:inline!important}html body.bootstrapiso:not(#random_id_string)>.d-xl-inline-block,html body.bootstrapiso>:not(#wpwrap) .d-xl-inline-block{display:inline-block!important}html body.bootstrapiso:not(#random_id_string)>.d-xl-block,html body.bootstrapiso>:not(#wpwrap) .d-xl-block{display:block!important}html body.bootstrapiso:not(#random_id_string)>.d-xl-table,html body.bootstrapiso>:not(#wpwrap) .d-xl-table{display:table!important}html body.bootstrapiso:not(#random_id_string)>.d-xl-table-row,html body.bootstrapiso>:not(#wpwrap) .d-xl-table-row{display:table-row!important}html body.bootstrapiso:not(#random_id_string)>.d-xl-table-cell,html body.bootstrapiso>:not(#wpwrap) .d-xl-table-cell{display:table-cell!important}html body.bootstrapiso:not(#random_id_string)>.d-xl-flex,html body.bootstrapiso>:not(#wpwrap) .d-xl-flex{display:flex!important}html body.bootstrapiso:not(#random_id_string)>.d-xl-inline-flex,html body.bootstrapiso>:not(#wpwrap) .d-xl-inline-flex{display:inline-flex!important}}@media print{html body.bootstrapiso:not(#random_id_string)>.d-print-none,html body.bootstrapiso>:not(#wpwrap) .d-print-none{display:none!important}html body.bootstrapiso:not(#random_id_string)>.d-print-inline,html body.bootstrapiso>:not(#wpwrap) .d-print-inline{display:inline!important}html body.bootstrapiso:not(#random_id_string)>.d-print-inline-block,html body.bootstrapiso>:not(#wpwrap) .d-print-inline-block{display:inline-block!important}html body.bootstrapiso:not(#random_id_string)>.d-print-block,html body.bootstrapiso>:not(#wpwrap) .d-print-block{display:block!important}html body.bootstrapiso:not(#random_id_string)>.d-print-table,html body.bootstrapiso>:not(#wpwrap) .d-print-table{display:table!important}html body.bootstrapiso:not(#random_id_string)>.d-print-table-row,html body.bootstrapiso>:not(#wpwrap) .d-print-table-row{display:table-row!important}html body.bootstrapiso:not(#random_id_string)>.d-print-table-cell,html body.bootstrapiso>:not(#wpwrap) .d-print-table-cell{display:table-cell!important}html body.bootstrapiso:not(#random_id_string)>.d-print-flex,html body.bootstrapiso>:not(#wpwrap) .d-print-flex{display:flex!important}html body.bootstrapiso:not(#random_id_string)>.d-print-inline-flex,html body.bootstrapiso>:not(#wpwrap) .d-print-inline-flex{display:inline-flex!important}}html body.bootstrapiso:not(#random_id_string)>.embed-responsive,html body.bootstrapiso>:not(#wpwrap) .embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}html body.bootstrapiso:not(#random_id_string)>.embed-responsive:before,html body.bootstrapiso>:not(#wpwrap) .embed-responsive:before{display:block;content:""}html body.bootstrapiso:not(#random_id_string)>.embed-responsive .embed-responsive-item,html body.bootstrapiso:not(#random_id_string)>.embed-responsive embed,html body.bootstrapiso:not(#random_id_string)>.embed-responsive iframe,html body.bootstrapiso:not(#random_id_string)>.embed-responsive object,html body.bootstrapiso:not(#random_id_string)>.embed-responsive video,html body.bootstrapiso>:not(#wpwrap) .embed-responsive .embed-responsive-item,html body.bootstrapiso>:not(#wpwrap) .embed-responsive embed,html body.bootstrapiso>:not(#wpwrap) .embed-responsive iframe,html body.bootstrapiso>:not(#wpwrap) .embed-responsive object,html body.bootstrapiso>:not(#wpwrap) .embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}html body.bootstrapiso:not(#random_id_string)>.embed-responsive-21by9:before,html body.bootstrapiso>:not(#wpwrap) .embed-responsive-21by9:before{padding-top:42.857143%}html body.bootstrapiso:not(#random_id_string)>.embed-responsive-16by9:before,html body.bootstrapiso>:not(#wpwrap) .embed-responsive-16by9:before{padding-top:56.25%}html body.bootstrapiso:not(#random_id_string)>.embed-responsive-4by3:before,html body.bootstrapiso>:not(#wpwrap) .embed-responsive-4by3:before{padding-top:75%}html body.bootstrapiso:not(#random_id_string)>.embed-responsive-1by1:before,html body.bootstrapiso>:not(#wpwrap) .embed-responsive-1by1:before{padding-top:100%}html body.bootstrapiso:not(#random_id_string)>.flex-row,html body.bootstrapiso>:not(#wpwrap) .flex-row{flex-direction:row!important}html body.bootstrapiso:not(#random_id_string)>.flex-column,html body.bootstrapiso>:not(#wpwrap) .flex-column{flex-direction:column!important}html body.bootstrapiso:not(#random_id_string)>.flex-row-reverse,html body.bootstrapiso>:not(#wpwrap) .flex-row-reverse{flex-direction:row-reverse!important}html body.bootstrapiso:not(#random_id_string)>.flex-column-reverse,html body.bootstrapiso>:not(#wpwrap) .flex-column-reverse{flex-direction:column-reverse!important}html body.bootstrapiso:not(#random_id_string)>.flex-wrap,html body.bootstrapiso>:not(#wpwrap) .flex-wrap{flex-wrap:wrap!important}html body.bootstrapiso:not(#random_id_string)>.flex-nowrap,html body.bootstrapiso>:not(#wpwrap) .flex-nowrap{flex-wrap:nowrap!important}html body.bootstrapiso:not(#random_id_string)>.flex-wrap-reverse,html body.bootstrapiso>:not(#wpwrap) .flex-wrap-reverse{flex-wrap:wrap-reverse!important}html body.bootstrapiso:not(#random_id_string)>.flex-fill,html body.bootstrapiso>:not(#wpwrap) .flex-fill{flex:1 1 auto!important}html body.bootstrapiso:not(#random_id_string)>.flex-grow-0,html body.bootstrapiso>:not(#wpwrap) .flex-grow-0{flex-grow:0!important}html body.bootstrapiso:not(#random_id_string)>.flex-grow-1,html body.bootstrapiso>:not(#wpwrap) .flex-grow-1{flex-grow:1!important}html body.bootstrapiso:not(#random_id_string)>.flex-shrink-0,html body.bootstrapiso>:not(#wpwrap) .flex-shrink-0{flex-shrink:0!important}html body.bootstrapiso:not(#random_id_string)>.flex-shrink-1,html body.bootstrapiso>:not(#wpwrap) .flex-shrink-1{flex-shrink:1!important}html body.bootstrapiso:not(#random_id_string)>.justify-content-start,html body.bootstrapiso>:not(#wpwrap) .justify-content-start{justify-content:flex-start!important}html body.bootstrapiso:not(#random_id_string)>.justify-content-end,html body.bootstrapiso>:not(#wpwrap) .justify-content-end{justify-content:flex-end!important}html body.bootstrapiso:not(#random_id_string)>.justify-content-center,html body.bootstrapiso>:not(#wpwrap) .justify-content-center{justify-content:center!important}html body.bootstrapiso:not(#random_id_string)>.justify-content-between,html body.bootstrapiso>:not(#wpwrap) .justify-content-between{justify-content:space-between!important}html body.bootstrapiso:not(#random_id_string)>.justify-content-around,html body.bootstrapiso>:not(#wpwrap) .justify-content-around{justify-content:space-around!important}html body.bootstrapiso:not(#random_id_string)>.align-items-start,html body.bootstrapiso>:not(#wpwrap) .align-items-start{align-items:flex-start!important}html body.bootstrapiso:not(#random_id_string)>.align-items-end,html body.bootstrapiso>:not(#wpwrap) .align-items-end{align-items:flex-end!important}html body.bootstrapiso:not(#random_id_string)>.align-items-center,html body.bootstrapiso>:not(#wpwrap) .align-items-center{align-items:center!important}html body.bootstrapiso:not(#random_id_string)>.align-items-baseline,html body.bootstrapiso>:not(#wpwrap) .align-items-baseline{align-items:baseline!important}html body.bootstrapiso:not(#random_id_string)>.align-items-stretch,html body.bootstrapiso>:not(#wpwrap) .align-items-stretch{align-items:stretch!important}html body.bootstrapiso:not(#random_id_string)>.align-content-start,html body.bootstrapiso>:not(#wpwrap) .align-content-start{align-content:flex-start!important}html body.bootstrapiso:not(#random_id_string)>.align-content-end,html body.bootstrapiso>:not(#wpwrap) .align-content-end{align-content:flex-end!important}html body.bootstrapiso:not(#random_id_string)>.align-content-center,html body.bootstrapiso>:not(#wpwrap) .align-content-center{align-content:center!important}html body.bootstrapiso:not(#random_id_string)>.align-content-between,html body.bootstrapiso>:not(#wpwrap) .align-content-between{align-content:space-between!important}html body.bootstrapiso:not(#random_id_string)>.align-content-around,html body.bootstrapiso>:not(#wpwrap) .align-content-around{align-content:space-around!important}html body.bootstrapiso:not(#random_id_string)>.align-content-stretch,html body.bootstrapiso>:not(#wpwrap) .align-content-stretch{align-content:stretch!important}html body.bootstrapiso:not(#random_id_string)>.align-self-auto,html body.bootstrapiso>:not(#wpwrap) .align-self-auto{align-self:auto!important}html body.bootstrapiso:not(#random_id_string)>.align-self-start,html body.bootstrapiso>:not(#wpwrap) .align-self-start{align-self:flex-start!important}html body.bootstrapiso:not(#random_id_string)>.align-self-end,html body.bootstrapiso>:not(#wpwrap) .align-self-end{align-self:flex-end!important}html body.bootstrapiso:not(#random_id_string)>.align-self-center,html body.bootstrapiso>:not(#wpwrap) .align-self-center{align-self:center!important}html body.bootstrapiso:not(#random_id_string)>.align-self-baseline,html body.bootstrapiso>:not(#wpwrap) .align-self-baseline{align-self:baseline!important}html body.bootstrapiso:not(#random_id_string)>.align-self-stretch,html body.bootstrapiso>:not(#wpwrap) .align-self-stretch{align-self:stretch!important}@media (min-width:576px){html body.bootstrapiso:not(#random_id_string)>.flex-sm-row,html body.bootstrapiso>:not(#wpwrap) .flex-sm-row{flex-direction:row!important}html body.bootstrapiso:not(#random_id_string)>.flex-sm-column,html body.bootstrapiso>:not(#wpwrap) .flex-sm-column{flex-direction:column!important}html body.bootstrapiso:not(#random_id_string)>.flex-sm-row-reverse,html body.bootstrapiso>:not(#wpwrap) .flex-sm-row-reverse{flex-direction:row-reverse!important}html body.bootstrapiso:not(#random_id_string)>.flex-sm-column-reverse,html body.bootstrapiso>:not(#wpwrap) .flex-sm-column-reverse{flex-direction:column-reverse!important}html body.bootstrapiso:not(#random_id_string)>.flex-sm-wrap,html body.bootstrapiso>:not(#wpwrap) .flex-sm-wrap{flex-wrap:wrap!important}html body.bootstrapiso:not(#random_id_string)>.flex-sm-nowrap,html body.bootstrapiso>:not(#wpwrap) .flex-sm-nowrap{flex-wrap:nowrap!important}html body.bootstrapiso:not(#random_id_string)>.flex-sm-wrap-reverse,html body.bootstrapiso>:not(#wpwrap) .flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}html body.bootstrapiso:not(#random_id_string)>.flex-sm-fill,html body.bootstrapiso>:not(#wpwrap) .flex-sm-fill{flex:1 1 auto!important}html body.bootstrapiso:not(#random_id_string)>.flex-sm-grow-0,html body.bootstrapiso>:not(#wpwrap) .flex-sm-grow-0{flex-grow:0!important}html body.bootstrapiso:not(#random_id_string)>.flex-sm-grow-1,html body.bootstrapiso>:not(#wpwrap) .flex-sm-grow-1{flex-grow:1!important}html body.bootstrapiso:not(#random_id_string)>.flex-sm-shrink-0,html body.bootstrapiso>:not(#wpwrap) .flex-sm-shrink-0{flex-shrink:0!important}html body.bootstrapiso:not(#random_id_string)>.flex-sm-shrink-1,html body.bootstrapiso>:not(#wpwrap) .flex-sm-shrink-1{flex-shrink:1!important}html body.bootstrapiso:not(#random_id_string)>.justify-content-sm-start,html body.bootstrapiso>:not(#wpwrap) .justify-content-sm-start{justify-content:flex-start!important}html body.bootstrapiso:not(#random_id_string)>.justify-content-sm-end,html body.bootstrapiso>:not(#wpwrap) .justify-content-sm-end{justify-content:flex-end!important}html body.bootstrapiso:not(#random_id_string)>.justify-content-sm-center,html body.bootstrapiso>:not(#wpwrap) .justify-content-sm-center{justify-content:center!important}html body.bootstrapiso:not(#random_id_string)>.justify-content-sm-between,html body.bootstrapiso>:not(#wpwrap) .justify-content-sm-between{justify-content:space-between!important}html body.bootstrapiso:not(#random_id_string)>.justify-content-sm-around,html body.bootstrapiso>:not(#wpwrap) .justify-content-sm-around{justify-content:space-around!important}html body.bootstrapiso:not(#random_id_string)>.align-items-sm-start,html body.bootstrapiso>:not(#wpwrap) .align-items-sm-start{align-items:flex-start!important}html body.bootstrapiso:not(#random_id_string)>.align-items-sm-end,html body.bootstrapiso>:not(#wpwrap) .align-items-sm-end{align-items:flex-end!important}html body.bootstrapiso:not(#random_id_string)>.align-items-sm-center,html body.bootstrapiso>:not(#wpwrap) .align-items-sm-center{align-items:center!important}html body.bootstrapiso:not(#random_id_string)>.align-items-sm-baseline,html body.bootstrapiso>:not(#wpwrap) .align-items-sm-baseline{align-items:baseline!important}html body.bootstrapiso:not(#random_id_string)>.align-items-sm-stretch,html body.bootstrapiso>:not(#wpwrap) .align-items-sm-stretch{align-items:stretch!important}html body.bootstrapiso:not(#random_id_string)>.align-content-sm-start,html body.bootstrapiso>:not(#wpwrap) .align-content-sm-start{align-content:flex-start!important}html body.bootstrapiso:not(#random_id_string)>.align-content-sm-end,html body.bootstrapiso>:not(#wpwrap) .align-content-sm-end{align-content:flex-end!important}html body.bootstrapiso:not(#random_id_string)>.align-content-sm-center,html body.bootstrapiso>:not(#wpwrap) .align-content-sm-center{align-content:center!important}html body.bootstrapiso:not(#random_id_string)>.align-content-sm-between,html body.bootstrapiso>:not(#wpwrap) .align-content-sm-between{align-content:space-between!important}html body.bootstrapiso:not(#random_id_string)>.align-content-sm-around,html body.bootstrapiso>:not(#wpwrap) .align-content-sm-around{align-content:space-around!important}html body.bootstrapiso:not(#random_id_string)>.align-content-sm-stretch,html body.bootstrapiso>:not(#wpwrap) .align-content-sm-stretch{align-content:stretch!important}html body.bootstrapiso:not(#random_id_string)>.align-self-sm-auto,html body.bootstrapiso>:not(#wpwrap) .align-self-sm-auto{align-self:auto!important}html body.bootstrapiso:not(#random_id_string)>.align-self-sm-start,html body.bootstrapiso>:not(#wpwrap) .align-self-sm-start{align-self:flex-start!important}html body.bootstrapiso:not(#random_id_string)>.align-self-sm-end,html body.bootstrapiso>:not(#wpwrap) .align-self-sm-end{align-self:flex-end!important}html body.bootstrapiso:not(#random_id_string)>.align-self-sm-center,html body.bootstrapiso>:not(#wpwrap) .align-self-sm-center{align-self:center!important}html body.bootstrapiso:not(#random_id_string)>.align-self-sm-baseline,html body.bootstrapiso>:not(#wpwrap) .align-self-sm-baseline{align-self:baseline!important}html body.bootstrapiso:not(#random_id_string)>.align-self-sm-stretch,html body.bootstrapiso>:not(#wpwrap) .align-self-sm-stretch{align-self:stretch!important}}@media (min-width:768px){html body.bootstrapiso:not(#random_id_string)>.flex-md-row,html body.bootstrapiso>:not(#wpwrap) .flex-md-row{flex-direction:row!important}html body.bootstrapiso:not(#random_id_string)>.flex-md-column,html body.bootstrapiso>:not(#wpwrap) .flex-md-column{flex-direction:column!important}html body.bootstrapiso:not(#random_id_string)>.flex-md-row-reverse,html body.bootstrapiso>:not(#wpwrap) .flex-md-row-reverse{flex-direction:row-reverse!important}html body.bootstrapiso:not(#random_id_string)>.flex-md-column-reverse,html body.bootstrapiso>:not(#wpwrap) .flex-md-column-reverse{flex-direction:column-reverse!important}html body.bootstrapiso:not(#random_id_string)>.flex-md-wrap,html body.bootstrapiso>:not(#wpwrap) .flex-md-wrap{flex-wrap:wrap!important}html body.bootstrapiso:not(#random_id_string)>.flex-md-nowrap,html body.bootstrapiso>:not(#wpwrap) .flex-md-nowrap{flex-wrap:nowrap!important}html body.bootstrapiso:not(#random_id_string)>.flex-md-wrap-reverse,html body.bootstrapiso>:not(#wpwrap) .flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}html body.bootstrapiso:not(#random_id_string)>.flex-md-fill,html body.bootstrapiso>:not(#wpwrap) .flex-md-fill{flex:1 1 auto!important}html body.bootstrapiso:not(#random_id_string)>.flex-md-grow-0,html body.bootstrapiso>:not(#wpwrap) .flex-md-grow-0{flex-grow:0!important}html body.bootstrapiso:not(#random_id_string)>.flex-md-grow-1,html body.bootstrapiso>:not(#wpwrap) .flex-md-grow-1{flex-grow:1!important}html body.bootstrapiso:not(#random_id_string)>.flex-md-shrink-0,html body.bootstrapiso>:not(#wpwrap) .flex-md-shrink-0{flex-shrink:0!important}html body.bootstrapiso:not(#random_id_string)>.flex-md-shrink-1,html body.bootstrapiso>:not(#wpwrap) .flex-md-shrink-1{flex-shrink:1!important}html body.bootstrapiso:not(#random_id_string)>.justify-content-md-start,html body.bootstrapiso>:not(#wpwrap) .justify-content-md-start{justify-content:flex-start!important}html body.bootstrapiso:not(#random_id_string)>.justify-content-md-end,html body.bootstrapiso>:not(#wpwrap) .justify-content-md-end{justify-content:flex-end!important}html body.bootstrapiso:not(#random_id_string)>.justify-content-md-center,html body.bootstrapiso>:not(#wpwrap) .justify-content-md-center{justify-content:center!important}html body.bootstrapiso:not(#random_id_string)>.justify-content-md-between,html body.bootstrapiso>:not(#wpwrap) .justify-content-md-between{justify-content:space-between!important}html body.bootstrapiso:not(#random_id_string)>.justify-content-md-around,html body.bootstrapiso>:not(#wpwrap) .justify-content-md-around{justify-content:space-around!important}html body.bootstrapiso:not(#random_id_string)>.align-items-md-start,html body.bootstrapiso>:not(#wpwrap) .align-items-md-start{align-items:flex-start!important}html body.bootstrapiso:not(#random_id_string)>.align-items-md-end,html body.bootstrapiso>:not(#wpwrap) .align-items-md-end{align-items:flex-end!important}html body.bootstrapiso:not(#random_id_string)>.align-items-md-center,html body.bootstrapiso>:not(#wpwrap) .align-items-md-center{align-items:center!important}html body.bootstrapiso:not(#random_id_string)>.align-items-md-baseline,html body.bootstrapiso>:not(#wpwrap) .align-items-md-baseline{align-items:baseline!important}html body.bootstrapiso:not(#random_id_string)>.align-items-md-stretch,html body.bootstrapiso>:not(#wpwrap) .align-items-md-stretch{align-items:stretch!important}html body.bootstrapiso:not(#random_id_string)>.align-content-md-start,html body.bootstrapiso>:not(#wpwrap) .align-content-md-start{align-content:flex-start!important}html body.bootstrapiso:not(#random_id_string)>.align-content-md-end,html body.bootstrapiso>:not(#wpwrap) .align-content-md-end{align-content:flex-end!important}html body.bootstrapiso:not(#random_id_string)>.align-content-md-center,html body.bootstrapiso>:not(#wpwrap) .align-content-md-center{align-content:center!important}html body.bootstrapiso:not(#random_id_string)>.align-content-md-between,html body.bootstrapiso>:not(#wpwrap) .align-content-md-between{align-content:space-between!important}html body.bootstrapiso:not(#random_id_string)>.align-content-md-around,html body.bootstrapiso>:not(#wpwrap) .align-content-md-around{align-content:space-around!important}html body.bootstrapiso:not(#random_id_string)>.align-content-md-stretch,html body.bootstrapiso>:not(#wpwrap) .align-content-md-stretch{align-content:stretch!important}html body.bootstrapiso:not(#random_id_string)>.align-self-md-auto,html body.bootstrapiso>:not(#wpwrap) .align-self-md-auto{align-self:auto!important}html body.bootstrapiso:not(#random_id_string)>.align-self-md-start,html body.bootstrapiso>:not(#wpwrap) .align-self-md-start{align-self:flex-start!important}html body.bootstrapiso:not(#random_id_string)>.align-self-md-end,html body.bootstrapiso>:not(#wpwrap) .align-self-md-end{align-self:flex-end!important}html body.bootstrapiso:not(#random_id_string)>.align-self-md-center,html body.bootstrapiso>:not(#wpwrap) .align-self-md-center{align-self:center!important}html body.bootstrapiso:not(#random_id_string)>.align-self-md-baseline,html body.bootstrapiso>:not(#wpwrap) .align-self-md-baseline{align-self:baseline!important}html body.bootstrapiso:not(#random_id_string)>.align-self-md-stretch,html body.bootstrapiso>:not(#wpwrap) .align-self-md-stretch{align-self:stretch!important}}@media (min-width:992px){html body.bootstrapiso:not(#random_id_string)>.flex-lg-row,html body.bootstrapiso>:not(#wpwrap) .flex-lg-row{flex-direction:row!important}html body.bootstrapiso:not(#random_id_string)>.flex-lg-column,html body.bootstrapiso>:not(#wpwrap) .flex-lg-column{flex-direction:column!important}html body.bootstrapiso:not(#random_id_string)>.flex-lg-row-reverse,html body.bootstrapiso>:not(#wpwrap) .flex-lg-row-reverse{flex-direction:row-reverse!important}html body.bootstrapiso:not(#random_id_string)>.flex-lg-column-reverse,html body.bootstrapiso>:not(#wpwrap) .flex-lg-column-reverse{flex-direction:column-reverse!important}html body.bootstrapiso:not(#random_id_string)>.flex-lg-wrap,html body.bootstrapiso>:not(#wpwrap) .flex-lg-wrap{flex-wrap:wrap!important}html body.bootstrapiso:not(#random_id_string)>.flex-lg-nowrap,html body.bootstrapiso>:not(#wpwrap) .flex-lg-nowrap{flex-wrap:nowrap!important}html body.bootstrapiso:not(#random_id_string)>.flex-lg-wrap-reverse,html body.bootstrapiso>:not(#wpwrap) .flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}html body.bootstrapiso:not(#random_id_string)>.flex-lg-fill,html body.bootstrapiso>:not(#wpwrap) .flex-lg-fill{flex:1 1 auto!important}html body.bootstrapiso:not(#random_id_string)>.flex-lg-grow-0,html body.bootstrapiso>:not(#wpwrap) .flex-lg-grow-0{flex-grow:0!important}html body.bootstrapiso:not(#random_id_string)>.flex-lg-grow-1,html body.bootstrapiso>:not(#wpwrap) .flex-lg-grow-1{flex-grow:1!important}html body.bootstrapiso:not(#random_id_string)>.flex-lg-shrink-0,html body.bootstrapiso>:not(#wpwrap) .flex-lg-shrink-0{flex-shrink:0!important}html body.bootstrapiso:not(#random_id_string)>.flex-lg-shrink-1,html body.bootstrapiso>:not(#wpwrap) .flex-lg-shrink-1{flex-shrink:1!important}html body.bootstrapiso:not(#random_id_string)>.justify-content-lg-start,html body.bootstrapiso>:not(#wpwrap) .justify-content-lg-start{justify-content:flex-start!important}html body.bootstrapiso:not(#random_id_string)>.justify-content-lg-end,html body.bootstrapiso>:not(#wpwrap) .justify-content-lg-end{justify-content:flex-end!important}html body.bootstrapiso:not(#random_id_string)>.justify-content-lg-center,html body.bootstrapiso>:not(#wpwrap) .justify-content-lg-center{justify-content:center!important}html body.bootstrapiso:not(#random_id_string)>.justify-content-lg-between,html body.bootstrapiso>:not(#wpwrap) .justify-content-lg-between{justify-content:space-between!important}html body.bootstrapiso:not(#random_id_string)>.justify-content-lg-around,html body.bootstrapiso>:not(#wpwrap) .justify-content-lg-around{justify-content:space-around!important}html body.bootstrapiso:not(#random_id_string)>.align-items-lg-start,html body.bootstrapiso>:not(#wpwrap) .align-items-lg-start{align-items:flex-start!important}html body.bootstrapiso:not(#random_id_string)>.align-items-lg-end,html body.bootstrapiso>:not(#wpwrap) .align-items-lg-end{align-items:flex-end!important}html body.bootstrapiso:not(#random_id_string)>.align-items-lg-center,html body.bootstrapiso>:not(#wpwrap) .align-items-lg-center{align-items:center!important}html body.bootstrapiso:not(#random_id_string)>.align-items-lg-baseline,html body.bootstrapiso>:not(#wpwrap) .align-items-lg-baseline{align-items:baseline!important}html body.bootstrapiso:not(#random_id_string)>.align-items-lg-stretch,html body.bootstrapiso>:not(#wpwrap) .align-items-lg-stretch{align-items:stretch!important}html body.bootstrapiso:not(#random_id_string)>.align-content-lg-start,html body.bootstrapiso>:not(#wpwrap) .align-content-lg-start{align-content:flex-start!important}html body.bootstrapiso:not(#random_id_string)>.align-content-lg-end,html body.bootstrapiso>:not(#wpwrap) .align-content-lg-end{align-content:flex-end!important}html body.bootstrapiso:not(#random_id_string)>.align-content-lg-center,html body.bootstrapiso>:not(#wpwrap) .align-content-lg-center{align-content:center!important}html body.bootstrapiso:not(#random_id_string)>.align-content-lg-between,html body.bootstrapiso>:not(#wpwrap) .align-content-lg-between{align-content:space-between!important}html body.bootstrapiso:not(#random_id_string)>.align-content-lg-around,html body.bootstrapiso>:not(#wpwrap) .align-content-lg-around{align-content:space-around!important}html body.bootstrapiso:not(#random_id_string)>.align-content-lg-stretch,html body.bootstrapiso>:not(#wpwrap) .align-content-lg-stretch{align-content:stretch!important}html body.bootstrapiso:not(#random_id_string)>.align-self-lg-auto,html body.bootstrapiso>:not(#wpwrap) .align-self-lg-auto{align-self:auto!important}html body.bootstrapiso:not(#random_id_string)>.align-self-lg-start,html body.bootstrapiso>:not(#wpwrap) .align-self-lg-start{align-self:flex-start!important}html body.bootstrapiso:not(#random_id_string)>.align-self-lg-end,html body.bootstrapiso>:not(#wpwrap) .align-self-lg-end{align-self:flex-end!important}html body.bootstrapiso:not(#random_id_string)>.align-self-lg-center,html body.bootstrapiso>:not(#wpwrap) .align-self-lg-center{align-self:center!important}html body.bootstrapiso:not(#random_id_string)>.align-self-lg-baseline,html body.bootstrapiso>:not(#wpwrap) .align-self-lg-baseline{align-self:baseline!important}html body.bootstrapiso:not(#random_id_string)>.align-self-lg-stretch,html body.bootstrapiso>:not(#wpwrap) .align-self-lg-stretch{align-self:stretch!important}}@media (min-width:1200px){html body.bootstrapiso:not(#random_id_string)>.flex-xl-row,html body.bootstrapiso>:not(#wpwrap) .flex-xl-row{flex-direction:row!important}html body.bootstrapiso:not(#random_id_string)>.flex-xl-column,html body.bootstrapiso>:not(#wpwrap) .flex-xl-column{flex-direction:column!important}html body.bootstrapiso:not(#random_id_string)>.flex-xl-row-reverse,html body.bootstrapiso>:not(#wpwrap) .flex-xl-row-reverse{flex-direction:row-reverse!important}html body.bootstrapiso:not(#random_id_string)>.flex-xl-column-reverse,html body.bootstrapiso>:not(#wpwrap) .flex-xl-column-reverse{flex-direction:column-reverse!important}html body.bootstrapiso:not(#random_id_string)>.flex-xl-wrap,html body.bootstrapiso>:not(#wpwrap) .flex-xl-wrap{flex-wrap:wrap!important}html body.bootstrapiso:not(#random_id_string)>.flex-xl-nowrap,html body.bootstrapiso>:not(#wpwrap) .flex-xl-nowrap{flex-wrap:nowrap!important}html body.bootstrapiso:not(#random_id_string)>.flex-xl-wrap-reverse,html body.bootstrapiso>:not(#wpwrap) .flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}html body.bootstrapiso:not(#random_id_string)>.flex-xl-fill,html body.bootstrapiso>:not(#wpwrap) .flex-xl-fill{flex:1 1 auto!important}html body.bootstrapiso:not(#random_id_string)>.flex-xl-grow-0,html body.bootstrapiso>:not(#wpwrap) .flex-xl-grow-0{flex-grow:0!important}html body.bootstrapiso:not(#random_id_string)>.flex-xl-grow-1,html body.bootstrapiso>:not(#wpwrap) .flex-xl-grow-1{flex-grow:1!important}html body.bootstrapiso:not(#random_id_string)>.flex-xl-shrink-0,html body.bootstrapiso>:not(#wpwrap) .flex-xl-shrink-0{flex-shrink:0!important}html body.bootstrapiso:not(#random_id_string)>.flex-xl-shrink-1,html body.bootstrapiso>:not(#wpwrap) .flex-xl-shrink-1{flex-shrink:1!important}html body.bootstrapiso:not(#random_id_string)>.justify-content-xl-start,html body.bootstrapiso>:not(#wpwrap) .justify-content-xl-start{justify-content:flex-start!important}html body.bootstrapiso:not(#random_id_string)>.justify-content-xl-end,html body.bootstrapiso>:not(#wpwrap) .justify-content-xl-end{justify-content:flex-end!important}html body.bootstrapiso:not(#random_id_string)>.justify-content-xl-center,html body.bootstrapiso>:not(#wpwrap) .justify-content-xl-center{justify-content:center!important}html body.bootstrapiso:not(#random_id_string)>.justify-content-xl-between,html body.bootstrapiso>:not(#wpwrap) .justify-content-xl-between{justify-content:space-between!important}html body.bootstrapiso:not(#random_id_string)>.justify-content-xl-around,html body.bootstrapiso>:not(#wpwrap) .justify-content-xl-around{justify-content:space-around!important}html body.bootstrapiso:not(#random_id_string)>.align-items-xl-start,html body.bootstrapiso>:not(#wpwrap) .align-items-xl-start{align-items:flex-start!important}html body.bootstrapiso:not(#random_id_string)>.align-items-xl-end,html body.bootstrapiso>:not(#wpwrap) .align-items-xl-end{align-items:flex-end!important}html body.bootstrapiso:not(#random_id_string)>.align-items-xl-center,html body.bootstrapiso>:not(#wpwrap) .align-items-xl-center{align-items:center!important}html body.bootstrapiso:not(#random_id_string)>.align-items-xl-baseline,html body.bootstrapiso>:not(#wpwrap) .align-items-xl-baseline{align-items:baseline!important}html body.bootstrapiso:not(#random_id_string)>.align-items-xl-stretch,html body.bootstrapiso>:not(#wpwrap) .align-items-xl-stretch{align-items:stretch!important}html body.bootstrapiso:not(#random_id_string)>.align-content-xl-start,html body.bootstrapiso>:not(#wpwrap) .align-content-xl-start{align-content:flex-start!important}html body.bootstrapiso:not(#random_id_string)>.align-content-xl-end,html body.bootstrapiso>:not(#wpwrap) .align-content-xl-end{align-content:flex-end!important}html body.bootstrapiso:not(#random_id_string)>.align-content-xl-center,html body.bootstrapiso>:not(#wpwrap) .align-content-xl-center{align-content:center!important}html body.bootstrapiso:not(#random_id_string)>.align-content-xl-between,html body.bootstrapiso>:not(#wpwrap) .align-content-xl-between{align-content:space-between!important}html body.bootstrapiso:not(#random_id_string)>.align-content-xl-around,html body.bootstrapiso>:not(#wpwrap) .align-content-xl-around{align-content:space-around!important}html body.bootstrapiso:not(#random_id_string)>.align-content-xl-stretch,html body.bootstrapiso>:not(#wpwrap) .align-content-xl-stretch{align-content:stretch!important}html body.bootstrapiso:not(#random_id_string)>.align-self-xl-auto,html body.bootstrapiso>:not(#wpwrap) .align-self-xl-auto{align-self:auto!important}html body.bootstrapiso:not(#random_id_string)>.align-self-xl-start,html body.bootstrapiso>:not(#wpwrap) .align-self-xl-start{align-self:flex-start!important}html body.bootstrapiso:not(#random_id_string)>.align-self-xl-end,html body.bootstrapiso>:not(#wpwrap) .align-self-xl-end{align-self:flex-end!important}html body.bootstrapiso:not(#random_id_string)>.align-self-xl-center,html body.bootstrapiso>:not(#wpwrap) .align-self-xl-center{align-self:center!important}html body.bootstrapiso:not(#random_id_string)>.align-self-xl-baseline,html body.bootstrapiso>:not(#wpwrap) .align-self-xl-baseline{align-self:baseline!important}html body.bootstrapiso:not(#random_id_string)>.align-self-xl-stretch,html body.bootstrapiso>:not(#wpwrap) .align-self-xl-stretch{align-self:stretch!important}}html body.bootstrapiso:not(#random_id_string)>.float-left,html body.bootstrapiso>:not(#wpwrap) .float-left{float:left!important}html body.bootstrapiso:not(#random_id_string)>.float-right,html body.bootstrapiso>:not(#wpwrap) .float-right{float:right!important}html body.bootstrapiso:not(#random_id_string)>.float-none,html body.bootstrapiso>:not(#wpwrap) .float-none{float:none!important}@media (min-width:576px){html body.bootstrapiso:not(#random_id_string)>.float-sm-left,html body.bootstrapiso>:not(#wpwrap) .float-sm-left{float:left!important}html body.bootstrapiso:not(#random_id_string)>.float-sm-right,html body.bootstrapiso>:not(#wpwrap) .float-sm-right{float:right!important}html body.bootstrapiso:not(#random_id_string)>.float-sm-none,html body.bootstrapiso>:not(#wpwrap) .float-sm-none{float:none!important}}@media (min-width:768px){html body.bootstrapiso:not(#random_id_string)>.float-md-left,html body.bootstrapiso>:not(#wpwrap) .float-md-left{float:left!important}html body.bootstrapiso:not(#random_id_string)>.float-md-right,html body.bootstrapiso>:not(#wpwrap) .float-md-right{float:right!important}html body.bootstrapiso:not(#random_id_string)>.float-md-none,html body.bootstrapiso>:not(#wpwrap) .float-md-none{float:none!important}}@media (min-width:992px){html body.bootstrapiso:not(#random_id_string)>.float-lg-left,html body.bootstrapiso>:not(#wpwrap) .float-lg-left{float:left!important}html body.bootstrapiso:not(#random_id_string)>.float-lg-right,html body.bootstrapiso>:not(#wpwrap) .float-lg-right{float:right!important}html body.bootstrapiso:not(#random_id_string)>.float-lg-none,html body.bootstrapiso>:not(#wpwrap) .float-lg-none{float:none!important}}@media (min-width:1200px){html body.bootstrapiso:not(#random_id_string)>.float-xl-left,html body.bootstrapiso>:not(#wpwrap) .float-xl-left{float:left!important}html body.bootstrapiso:not(#random_id_string)>.float-xl-right,html body.bootstrapiso>:not(#wpwrap) .float-xl-right{float:right!important}html body.bootstrapiso:not(#random_id_string)>.float-xl-none,html body.bootstrapiso>:not(#wpwrap) .float-xl-none{float:none!important}}html body.bootstrapiso:not(#random_id_string)>.user-select-all,html body.bootstrapiso>:not(#wpwrap) .user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;-ms-user-select:all!important;user-select:all!important}html body.bootstrapiso:not(#random_id_string)>.user-select-auto,html body.bootstrapiso>:not(#wpwrap) .user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;-ms-user-select:auto!important;user-select:auto!important}html body.bootstrapiso:not(#random_id_string)>.user-select-none,html body.bootstrapiso>:not(#wpwrap) .user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;-ms-user-select:none!important;user-select:none!important}html body.bootstrapiso:not(#random_id_string)>.overflow-auto,html body.bootstrapiso>:not(#wpwrap) .overflow-auto{overflow:auto!important}html body.bootstrapiso:not(#random_id_string)>.overflow-hidden,html body.bootstrapiso>:not(#wpwrap) .overflow-hidden{overflow:hidden!important}html body.bootstrapiso:not(#random_id_string)>.position-static,html body.bootstrapiso>:not(#wpwrap) .position-static{position:static!important}html body.bootstrapiso:not(#random_id_string)>.position-relative,html body.bootstrapiso>:not(#wpwrap) .position-relative{position:relative!important}html body.bootstrapiso:not(#random_id_string)>.position-absolute,html body.bootstrapiso>:not(#wpwrap) .position-absolute{position:absolute!important}html body.bootstrapiso:not(#random_id_string)>.position-fixed,html body.bootstrapiso>:not(#wpwrap) .position-fixed{position:fixed!important}html body.bootstrapiso:not(#random_id_string)>.position-sticky,html body.bootstrapiso>:not(#wpwrap) .position-sticky{position:-webkit-sticky!important;position:sticky!important}html body.bootstrapiso:not(#random_id_string)>.fixed-top,html body.bootstrapiso>:not(#wpwrap) .fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}html body.bootstrapiso:not(#random_id_string)>.fixed-bottom,html body.bootstrapiso>:not(#wpwrap) .fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports ((position:-webkit-sticky) or (position:sticky)){html body.bootstrapiso:not(#random_id_string)>.sticky-top,html body.bootstrapiso>:not(#wpwrap) .sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}html body.bootstrapiso:not(#random_id_string)>.sr-only,html body.bootstrapiso>:not(#wpwrap) .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}html body.bootstrapiso:not(#random_id_string)>.sr-only-focusable:active,html body.bootstrapiso:not(#random_id_string)>.sr-only-focusable:focus,html body.bootstrapiso>:not(#wpwrap) .sr-only-focusable:active,html body.bootstrapiso>:not(#wpwrap) .sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}html body.bootstrapiso:not(#random_id_string)>.shadow-sm,html body.bootstrapiso>:not(#wpwrap) .shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}html body.bootstrapiso:not(#random_id_string)>.shadow,html body.bootstrapiso>:not(#wpwrap) .shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}html body.bootstrapiso:not(#random_id_string)>.shadow-lg,html body.bootstrapiso>:not(#wpwrap) .shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}html body.bootstrapiso:not(#random_id_string)>.shadow-none,html body.bootstrapiso>:not(#wpwrap) .shadow-none{box-shadow:none!important}html body.bootstrapiso:not(#random_id_string)>.w-25,html body.bootstrapiso>:not(#wpwrap) .w-25{width:25%!important}html body.bootstrapiso:not(#random_id_string)>.w-50,html body.bootstrapiso>:not(#wpwrap) .w-50{width:50%!important}html body.bootstrapiso:not(#random_id_string)>.w-75,html body.bootstrapiso>:not(#wpwrap) .w-75{width:75%!important}html body.bootstrapiso:not(#random_id_string)>.w-100,html body.bootstrapiso>:not(#wpwrap) .w-100{width:100%!important}html body.bootstrapiso:not(#random_id_string)>.w-auto,html body.bootstrapiso>:not(#wpwrap) .w-auto{width:auto!important}html body.bootstrapiso:not(#random_id_string)>.h-25,html body.bootstrapiso>:not(#wpwrap) .h-25{height:25%!important}html body.bootstrapiso:not(#random_id_string)>.h-50,html body.bootstrapiso>:not(#wpwrap) .h-50{height:50%!important}html body.bootstrapiso:not(#random_id_string)>.h-75,html body.bootstrapiso>:not(#wpwrap) .h-75{height:75%!important}html body.bootstrapiso:not(#random_id_string)>.h-100,html body.bootstrapiso>:not(#wpwrap) .h-100{height:100%!important}html body.bootstrapiso:not(#random_id_string)>.h-auto,html body.bootstrapiso>:not(#wpwrap) .h-auto{height:auto!important}html body.bootstrapiso:not(#random_id_string)>.mw-100,html body.bootstrapiso>:not(#wpwrap) .mw-100{max-width:100%!important}html body.bootstrapiso:not(#random_id_string)>.mh-100,html body.bootstrapiso>:not(#wpwrap) .mh-100{max-height:100%!important}html body.bootstrapiso:not(#random_id_string)>.min-vw-100,html body.bootstrapiso>:not(#wpwrap) .min-vw-100{min-width:100vw!important}html body.bootstrapiso:not(#random_id_string)>.min-vh-100,html body.bootstrapiso>:not(#wpwrap) .min-vh-100{min-height:100vh!important}html body.bootstrapiso:not(#random_id_string)>.vw-100,html body.bootstrapiso>:not(#wpwrap) .vw-100{width:100vw!important}html body.bootstrapiso:not(#random_id_string)>.vh-100,html body.bootstrapiso>:not(#wpwrap) .vh-100{height:100vh!important}html body.bootstrapiso:not(#random_id_string)>.m-0,html body.bootstrapiso>:not(#wpwrap) .m-0{margin:0!important}html body.bootstrapiso:not(#random_id_string)>.mt-0,html body.bootstrapiso:not(#random_id_string)>.my-0,html body.bootstrapiso>:not(#wpwrap) .mt-0,html body.bootstrapiso>:not(#wpwrap) .my-0{margin-top:0!important}html body.bootstrapiso:not(#random_id_string)>.mr-0,html body.bootstrapiso:not(#random_id_string)>.mx-0,html body.bootstrapiso>:not(#wpwrap) .mr-0,html body.bootstrapiso>:not(#wpwrap) .mx-0{margin-right:0!important}html body.bootstrapiso:not(#random_id_string)>.mb-0,html body.bootstrapiso:not(#random_id_string)>.my-0,html body.bootstrapiso>:not(#wpwrap) .mb-0,html body.bootstrapiso>:not(#wpwrap) .my-0{margin-bottom:0!important}html body.bootstrapiso:not(#random_id_string)>.ml-0,html body.bootstrapiso:not(#random_id_string)>.mx-0,html body.bootstrapiso>:not(#wpwrap) .ml-0,html body.bootstrapiso>:not(#wpwrap) .mx-0{margin-left:0!important}html body.bootstrapiso:not(#random_id_string)>.m-1,html body.bootstrapiso>:not(#wpwrap) .m-1{margin:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-1,html body.bootstrapiso:not(#random_id_string)>.my-1,html body.bootstrapiso>:not(#wpwrap) .mt-1,html body.bootstrapiso>:not(#wpwrap) .my-1{margin-top:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-1,html body.bootstrapiso:not(#random_id_string)>.mx-1,html body.bootstrapiso>:not(#wpwrap) .mr-1,html body.bootstrapiso>:not(#wpwrap) .mx-1{margin-right:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-1,html body.bootstrapiso:not(#random_id_string)>.my-1,html body.bootstrapiso>:not(#wpwrap) .mb-1,html body.bootstrapiso>:not(#wpwrap) .my-1{margin-bottom:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-1,html body.bootstrapiso:not(#random_id_string)>.mx-1,html body.bootstrapiso>:not(#wpwrap) .ml-1,html body.bootstrapiso>:not(#wpwrap) .mx-1{margin-left:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.m-2,html body.bootstrapiso>:not(#wpwrap) .m-2{margin:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-2,html body.bootstrapiso:not(#random_id_string)>.my-2,html body.bootstrapiso>:not(#wpwrap) .mt-2,html body.bootstrapiso>:not(#wpwrap) .my-2{margin-top:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-2,html body.bootstrapiso:not(#random_id_string)>.mx-2,html body.bootstrapiso>:not(#wpwrap) .mr-2,html body.bootstrapiso>:not(#wpwrap) .mx-2{margin-right:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-2,html body.bootstrapiso:not(#random_id_string)>.my-2,html body.bootstrapiso>:not(#wpwrap) .mb-2,html body.bootstrapiso>:not(#wpwrap) .my-2{margin-bottom:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-2,html body.bootstrapiso:not(#random_id_string)>.mx-2,html body.bootstrapiso>:not(#wpwrap) .ml-2,html body.bootstrapiso>:not(#wpwrap) .mx-2{margin-left:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.m-3,html body.bootstrapiso>:not(#wpwrap) .m-3{margin:1rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-3,html body.bootstrapiso:not(#random_id_string)>.my-3,html body.bootstrapiso>:not(#wpwrap) .mt-3,html body.bootstrapiso>:not(#wpwrap) .my-3{margin-top:1rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-3,html body.bootstrapiso:not(#random_id_string)>.mx-3,html body.bootstrapiso>:not(#wpwrap) .mr-3,html body.bootstrapiso>:not(#wpwrap) .mx-3{margin-right:1rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-3,html body.bootstrapiso:not(#random_id_string)>.my-3,html body.bootstrapiso>:not(#wpwrap) .mb-3,html body.bootstrapiso>:not(#wpwrap) .my-3{margin-bottom:1rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-3,html body.bootstrapiso:not(#random_id_string)>.mx-3,html body.bootstrapiso>:not(#wpwrap) .ml-3,html body.bootstrapiso>:not(#wpwrap) .mx-3{margin-left:1rem!important}html body.bootstrapiso:not(#random_id_string)>.m-4,html body.bootstrapiso>:not(#wpwrap) .m-4{margin:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-4,html body.bootstrapiso:not(#random_id_string)>.my-4,html body.bootstrapiso>:not(#wpwrap) .mt-4,html body.bootstrapiso>:not(#wpwrap) .my-4{margin-top:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-4,html body.bootstrapiso:not(#random_id_string)>.mx-4,html body.bootstrapiso>:not(#wpwrap) .mr-4,html body.bootstrapiso>:not(#wpwrap) .mx-4{margin-right:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-4,html body.bootstrapiso:not(#random_id_string)>.my-4,html body.bootstrapiso>:not(#wpwrap) .mb-4,html body.bootstrapiso>:not(#wpwrap) .my-4{margin-bottom:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-4,html body.bootstrapiso:not(#random_id_string)>.mx-4,html body.bootstrapiso>:not(#wpwrap) .ml-4,html body.bootstrapiso>:not(#wpwrap) .mx-4{margin-left:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.m-5,html body.bootstrapiso>:not(#wpwrap) .m-5{margin:3rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-5,html body.bootstrapiso:not(#random_id_string)>.my-5,html body.bootstrapiso>:not(#wpwrap) .mt-5,html body.bootstrapiso>:not(#wpwrap) .my-5{margin-top:3rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-5,html body.bootstrapiso:not(#random_id_string)>.mx-5,html body.bootstrapiso>:not(#wpwrap) .mr-5,html body.bootstrapiso>:not(#wpwrap) .mx-5{margin-right:3rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-5,html body.bootstrapiso:not(#random_id_string)>.my-5,html body.bootstrapiso>:not(#wpwrap) .mb-5,html body.bootstrapiso>:not(#wpwrap) .my-5{margin-bottom:3rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-5,html body.bootstrapiso:not(#random_id_string)>.mx-5,html body.bootstrapiso>:not(#wpwrap) .ml-5,html body.bootstrapiso>:not(#wpwrap) .mx-5{margin-left:3rem!important}html body.bootstrapiso:not(#random_id_string)>.p-0,html body.bootstrapiso>:not(#wpwrap) .p-0{padding:0!important}html body.bootstrapiso:not(#random_id_string)>.pt-0,html body.bootstrapiso:not(#random_id_string)>.py-0,html body.bootstrapiso>:not(#wpwrap) .pt-0,html body.bootstrapiso>:not(#wpwrap) .py-0{padding-top:0!important}html body.bootstrapiso:not(#random_id_string)>.pr-0,html body.bootstrapiso:not(#random_id_string)>.px-0,html body.bootstrapiso>:not(#wpwrap) .pr-0,html body.bootstrapiso>:not(#wpwrap) .px-0{padding-right:0!important}html body.bootstrapiso:not(#random_id_string)>.pb-0,html body.bootstrapiso:not(#random_id_string)>.py-0,html body.bootstrapiso>:not(#wpwrap) .pb-0,html body.bootstrapiso>:not(#wpwrap) .py-0{padding-bottom:0!important}html body.bootstrapiso:not(#random_id_string)>.pl-0,html body.bootstrapiso:not(#random_id_string)>.px-0,html body.bootstrapiso>:not(#wpwrap) .pl-0,html body.bootstrapiso>:not(#wpwrap) .px-0{padding-left:0!important}html body.bootstrapiso:not(#random_id_string)>.p-1,html body.bootstrapiso>:not(#wpwrap) .p-1{padding:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.pt-1,html body.bootstrapiso:not(#random_id_string)>.py-1,html body.bootstrapiso>:not(#wpwrap) .pt-1,html body.bootstrapiso>:not(#wpwrap) .py-1{padding-top:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.pr-1,html body.bootstrapiso:not(#random_id_string)>.px-1,html body.bootstrapiso>:not(#wpwrap) .pr-1,html body.bootstrapiso>:not(#wpwrap) .px-1{padding-right:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.pb-1,html body.bootstrapiso:not(#random_id_string)>.py-1,html body.bootstrapiso>:not(#wpwrap) .pb-1,html body.bootstrapiso>:not(#wpwrap) .py-1{padding-bottom:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.pl-1,html body.bootstrapiso:not(#random_id_string)>.px-1,html body.bootstrapiso>:not(#wpwrap) .pl-1,html body.bootstrapiso>:not(#wpwrap) .px-1{padding-left:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.p-2,html body.bootstrapiso>:not(#wpwrap) .p-2{padding:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pt-2,html body.bootstrapiso:not(#random_id_string)>.py-2,html body.bootstrapiso>:not(#wpwrap) .pt-2,html body.bootstrapiso>:not(#wpwrap) .py-2{padding-top:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pr-2,html body.bootstrapiso:not(#random_id_string)>.px-2,html body.bootstrapiso>:not(#wpwrap) .pr-2,html body.bootstrapiso>:not(#wpwrap) .px-2{padding-right:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pb-2,html body.bootstrapiso:not(#random_id_string)>.py-2,html body.bootstrapiso>:not(#wpwrap) .pb-2,html body.bootstrapiso>:not(#wpwrap) .py-2{padding-bottom:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pl-2,html body.bootstrapiso:not(#random_id_string)>.px-2,html body.bootstrapiso>:not(#wpwrap) .pl-2,html body.bootstrapiso>:not(#wpwrap) .px-2{padding-left:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.p-3,html body.bootstrapiso>:not(#wpwrap) .p-3{padding:1rem!important}html body.bootstrapiso:not(#random_id_string)>.pt-3,html body.bootstrapiso:not(#random_id_string)>.py-3,html body.bootstrapiso>:not(#wpwrap) .pt-3,html body.bootstrapiso>:not(#wpwrap) .py-3{padding-top:1rem!important}html body.bootstrapiso:not(#random_id_string)>.pr-3,html body.bootstrapiso:not(#random_id_string)>.px-3,html body.bootstrapiso>:not(#wpwrap) .pr-3,html body.bootstrapiso>:not(#wpwrap) .px-3{padding-right:1rem!important}html body.bootstrapiso:not(#random_id_string)>.pb-3,html body.bootstrapiso:not(#random_id_string)>.py-3,html body.bootstrapiso>:not(#wpwrap) .pb-3,html body.bootstrapiso>:not(#wpwrap) .py-3{padding-bottom:1rem!important}html body.bootstrapiso:not(#random_id_string)>.pl-3,html body.bootstrapiso:not(#random_id_string)>.px-3,html body.bootstrapiso>:not(#wpwrap) .pl-3,html body.bootstrapiso>:not(#wpwrap) .px-3{padding-left:1rem!important}html body.bootstrapiso:not(#random_id_string)>.p-4,html body.bootstrapiso>:not(#wpwrap) .p-4{padding:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pt-4,html body.bootstrapiso:not(#random_id_string)>.py-4,html body.bootstrapiso>:not(#wpwrap) .pt-4,html body.bootstrapiso>:not(#wpwrap) .py-4{padding-top:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pr-4,html body.bootstrapiso:not(#random_id_string)>.px-4,html body.bootstrapiso>:not(#wpwrap) .pr-4,html body.bootstrapiso>:not(#wpwrap) .px-4{padding-right:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pb-4,html body.bootstrapiso:not(#random_id_string)>.py-4,html body.bootstrapiso>:not(#wpwrap) .pb-4,html body.bootstrapiso>:not(#wpwrap) .py-4{padding-bottom:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pl-4,html body.bootstrapiso:not(#random_id_string)>.px-4,html body.bootstrapiso>:not(#wpwrap) .pl-4,html body.bootstrapiso>:not(#wpwrap) .px-4{padding-left:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.p-5,html body.bootstrapiso>:not(#wpwrap) .p-5{padding:3rem!important}html body.bootstrapiso:not(#random_id_string)>.pt-5,html body.bootstrapiso:not(#random_id_string)>.py-5,html body.bootstrapiso>:not(#wpwrap) .pt-5,html body.bootstrapiso>:not(#wpwrap) .py-5{padding-top:3rem!important}html body.bootstrapiso:not(#random_id_string)>.pr-5,html body.bootstrapiso:not(#random_id_string)>.px-5,html body.bootstrapiso>:not(#wpwrap) .pr-5,html body.bootstrapiso>:not(#wpwrap) .px-5{padding-right:3rem!important}html body.bootstrapiso:not(#random_id_string)>.pb-5,html body.bootstrapiso:not(#random_id_string)>.py-5,html body.bootstrapiso>:not(#wpwrap) .pb-5,html body.bootstrapiso>:not(#wpwrap) .py-5{padding-bottom:3rem!important}html body.bootstrapiso:not(#random_id_string)>.pl-5,html body.bootstrapiso:not(#random_id_string)>.px-5,html body.bootstrapiso>:not(#wpwrap) .pl-5,html body.bootstrapiso>:not(#wpwrap) .px-5{padding-left:3rem!important}html body.bootstrapiso:not(#random_id_string)>.m-n1,html body.bootstrapiso>:not(#wpwrap) .m-n1{margin:-.25rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-n1,html body.bootstrapiso:not(#random_id_string)>.my-n1,html body.bootstrapiso>:not(#wpwrap) .mt-n1,html body.bootstrapiso>:not(#wpwrap) .my-n1{margin-top:-.25rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-n1,html body.bootstrapiso:not(#random_id_string)>.mx-n1,html body.bootstrapiso>:not(#wpwrap) .mr-n1,html body.bootstrapiso>:not(#wpwrap) .mx-n1{margin-right:-.25rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-n1,html body.bootstrapiso:not(#random_id_string)>.my-n1,html body.bootstrapiso>:not(#wpwrap) .mb-n1,html body.bootstrapiso>:not(#wpwrap) .my-n1{margin-bottom:-.25rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-n1,html body.bootstrapiso:not(#random_id_string)>.mx-n1,html body.bootstrapiso>:not(#wpwrap) .ml-n1,html body.bootstrapiso>:not(#wpwrap) .mx-n1{margin-left:-.25rem!important}html body.bootstrapiso:not(#random_id_string)>.m-n2,html body.bootstrapiso>:not(#wpwrap) .m-n2{margin:-.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-n2,html body.bootstrapiso:not(#random_id_string)>.my-n2,html body.bootstrapiso>:not(#wpwrap) .mt-n2,html body.bootstrapiso>:not(#wpwrap) .my-n2{margin-top:-.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-n2,html body.bootstrapiso:not(#random_id_string)>.mx-n2,html body.bootstrapiso>:not(#wpwrap) .mr-n2,html body.bootstrapiso>:not(#wpwrap) .mx-n2{margin-right:-.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-n2,html body.bootstrapiso:not(#random_id_string)>.my-n2,html body.bootstrapiso>:not(#wpwrap) .mb-n2,html body.bootstrapiso>:not(#wpwrap) .my-n2{margin-bottom:-.5rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-n2,html body.bootstrapiso:not(#random_id_string)>.mx-n2,html body.bootstrapiso>:not(#wpwrap) .ml-n2,html body.bootstrapiso>:not(#wpwrap) .mx-n2{margin-left:-.5rem!important}html body.bootstrapiso:not(#random_id_string)>.m-n3,html body.bootstrapiso>:not(#wpwrap) .m-n3{margin:-1rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-n3,html body.bootstrapiso:not(#random_id_string)>.my-n3,html body.bootstrapiso>:not(#wpwrap) .mt-n3,html body.bootstrapiso>:not(#wpwrap) .my-n3{margin-top:-1rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-n3,html body.bootstrapiso:not(#random_id_string)>.mx-n3,html body.bootstrapiso>:not(#wpwrap) .mr-n3,html body.bootstrapiso>:not(#wpwrap) .mx-n3{margin-right:-1rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-n3,html body.bootstrapiso:not(#random_id_string)>.my-n3,html body.bootstrapiso>:not(#wpwrap) .mb-n3,html body.bootstrapiso>:not(#wpwrap) .my-n3{margin-bottom:-1rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-n3,html body.bootstrapiso:not(#random_id_string)>.mx-n3,html body.bootstrapiso>:not(#wpwrap) .ml-n3,html body.bootstrapiso>:not(#wpwrap) .mx-n3{margin-left:-1rem!important}html body.bootstrapiso:not(#random_id_string)>.m-n4,html body.bootstrapiso>:not(#wpwrap) .m-n4{margin:-1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-n4,html body.bootstrapiso:not(#random_id_string)>.my-n4,html body.bootstrapiso>:not(#wpwrap) .mt-n4,html body.bootstrapiso>:not(#wpwrap) .my-n4{margin-top:-1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-n4,html body.bootstrapiso:not(#random_id_string)>.mx-n4,html body.bootstrapiso>:not(#wpwrap) .mr-n4,html body.bootstrapiso>:not(#wpwrap) .mx-n4{margin-right:-1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-n4,html body.bootstrapiso:not(#random_id_string)>.my-n4,html body.bootstrapiso>:not(#wpwrap) .mb-n4,html body.bootstrapiso>:not(#wpwrap) .my-n4{margin-bottom:-1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-n4,html body.bootstrapiso:not(#random_id_string)>.mx-n4,html body.bootstrapiso>:not(#wpwrap) .ml-n4,html body.bootstrapiso>:not(#wpwrap) .mx-n4{margin-left:-1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.m-n5,html body.bootstrapiso>:not(#wpwrap) .m-n5{margin:-3rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-n5,html body.bootstrapiso:not(#random_id_string)>.my-n5,html body.bootstrapiso>:not(#wpwrap) .mt-n5,html body.bootstrapiso>:not(#wpwrap) .my-n5{margin-top:-3rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-n5,html body.bootstrapiso:not(#random_id_string)>.mx-n5,html body.bootstrapiso>:not(#wpwrap) .mr-n5,html body.bootstrapiso>:not(#wpwrap) .mx-n5{margin-right:-3rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-n5,html body.bootstrapiso:not(#random_id_string)>.my-n5,html body.bootstrapiso>:not(#wpwrap) .mb-n5,html body.bootstrapiso>:not(#wpwrap) .my-n5{margin-bottom:-3rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-n5,html body.bootstrapiso:not(#random_id_string)>.mx-n5,html body.bootstrapiso>:not(#wpwrap) .ml-n5,html body.bootstrapiso>:not(#wpwrap) .mx-n5{margin-left:-3rem!important}html body.bootstrapiso:not(#random_id_string)>.m-auto,html body.bootstrapiso>:not(#wpwrap) .m-auto{margin:auto!important}html body.bootstrapiso:not(#random_id_string)>.mt-auto,html body.bootstrapiso:not(#random_id_string)>.my-auto,html body.bootstrapiso>:not(#wpwrap) .mt-auto,html body.bootstrapiso>:not(#wpwrap) .my-auto{margin-top:auto!important}html body.bootstrapiso:not(#random_id_string)>.mr-auto,html body.bootstrapiso:not(#random_id_string)>.mx-auto,html body.bootstrapiso>:not(#wpwrap) .mr-auto,html body.bootstrapiso>:not(#wpwrap) .mx-auto{margin-right:auto!important}html body.bootstrapiso:not(#random_id_string)>.mb-auto,html body.bootstrapiso:not(#random_id_string)>.my-auto,html body.bootstrapiso>:not(#wpwrap) .mb-auto,html body.bootstrapiso>:not(#wpwrap) .my-auto{margin-bottom:auto!important}html body.bootstrapiso:not(#random_id_string)>.ml-auto,html body.bootstrapiso:not(#random_id_string)>.mx-auto,html body.bootstrapiso>:not(#wpwrap) .ml-auto,html body.bootstrapiso>:not(#wpwrap) .mx-auto{margin-left:auto!important}@media (min-width:576px){html body.bootstrapiso:not(#random_id_string)>.m-sm-0,html body.bootstrapiso>:not(#wpwrap) .m-sm-0{margin:0!important}html body.bootstrapiso:not(#random_id_string)>.mt-sm-0,html body.bootstrapiso:not(#random_id_string)>.my-sm-0,html body.bootstrapiso>:not(#wpwrap) .mt-sm-0,html body.bootstrapiso>:not(#wpwrap) .my-sm-0{margin-top:0!important}html body.bootstrapiso:not(#random_id_string)>.mr-sm-0,html body.bootstrapiso:not(#random_id_string)>.mx-sm-0,html body.bootstrapiso>:not(#wpwrap) .mr-sm-0,html body.bootstrapiso>:not(#wpwrap) .mx-sm-0{margin-right:0!important}html body.bootstrapiso:not(#random_id_string)>.mb-sm-0,html body.bootstrapiso:not(#random_id_string)>.my-sm-0,html body.bootstrapiso>:not(#wpwrap) .mb-sm-0,html body.bootstrapiso>:not(#wpwrap) .my-sm-0{margin-bottom:0!important}html body.bootstrapiso:not(#random_id_string)>.ml-sm-0,html body.bootstrapiso:not(#random_id_string)>.mx-sm-0,html body.bootstrapiso>:not(#wpwrap) .ml-sm-0,html body.bootstrapiso>:not(#wpwrap) .mx-sm-0{margin-left:0!important}html body.bootstrapiso:not(#random_id_string)>.m-sm-1,html body.bootstrapiso>:not(#wpwrap) .m-sm-1{margin:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-sm-1,html body.bootstrapiso:not(#random_id_string)>.my-sm-1,html body.bootstrapiso>:not(#wpwrap) .mt-sm-1,html body.bootstrapiso>:not(#wpwrap) .my-sm-1{margin-top:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-sm-1,html body.bootstrapiso:not(#random_id_string)>.mx-sm-1,html body.bootstrapiso>:not(#wpwrap) .mr-sm-1,html body.bootstrapiso>:not(#wpwrap) .mx-sm-1{margin-right:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-sm-1,html body.bootstrapiso:not(#random_id_string)>.my-sm-1,html body.bootstrapiso>:not(#wpwrap) .mb-sm-1,html body.bootstrapiso>:not(#wpwrap) .my-sm-1{margin-bottom:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-sm-1,html body.bootstrapiso:not(#random_id_string)>.mx-sm-1,html body.bootstrapiso>:not(#wpwrap) .ml-sm-1,html body.bootstrapiso>:not(#wpwrap) .mx-sm-1{margin-left:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.m-sm-2,html body.bootstrapiso>:not(#wpwrap) .m-sm-2{margin:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-sm-2,html body.bootstrapiso:not(#random_id_string)>.my-sm-2,html body.bootstrapiso>:not(#wpwrap) .mt-sm-2,html body.bootstrapiso>:not(#wpwrap) .my-sm-2{margin-top:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-sm-2,html body.bootstrapiso:not(#random_id_string)>.mx-sm-2,html body.bootstrapiso>:not(#wpwrap) .mr-sm-2,html body.bootstrapiso>:not(#wpwrap) .mx-sm-2{margin-right:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-sm-2,html body.bootstrapiso:not(#random_id_string)>.my-sm-2,html body.bootstrapiso>:not(#wpwrap) .mb-sm-2,html body.bootstrapiso>:not(#wpwrap) .my-sm-2{margin-bottom:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-sm-2,html body.bootstrapiso:not(#random_id_string)>.mx-sm-2,html body.bootstrapiso>:not(#wpwrap) .ml-sm-2,html body.bootstrapiso>:not(#wpwrap) .mx-sm-2{margin-left:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.m-sm-3,html body.bootstrapiso>:not(#wpwrap) .m-sm-3{margin:1rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-sm-3,html body.bootstrapiso:not(#random_id_string)>.my-sm-3,html body.bootstrapiso>:not(#wpwrap) .mt-sm-3,html body.bootstrapiso>:not(#wpwrap) .my-sm-3{margin-top:1rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-sm-3,html body.bootstrapiso:not(#random_id_string)>.mx-sm-3,html body.bootstrapiso>:not(#wpwrap) .mr-sm-3,html body.bootstrapiso>:not(#wpwrap) .mx-sm-3{margin-right:1rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-sm-3,html body.bootstrapiso:not(#random_id_string)>.my-sm-3,html body.bootstrapiso>:not(#wpwrap) .mb-sm-3,html body.bootstrapiso>:not(#wpwrap) .my-sm-3{margin-bottom:1rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-sm-3,html body.bootstrapiso:not(#random_id_string)>.mx-sm-3,html body.bootstrapiso>:not(#wpwrap) .ml-sm-3,html body.bootstrapiso>:not(#wpwrap) .mx-sm-3{margin-left:1rem!important}html body.bootstrapiso:not(#random_id_string)>.m-sm-4,html body.bootstrapiso>:not(#wpwrap) .m-sm-4{margin:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-sm-4,html body.bootstrapiso:not(#random_id_string)>.my-sm-4,html body.bootstrapiso>:not(#wpwrap) .mt-sm-4,html body.bootstrapiso>:not(#wpwrap) .my-sm-4{margin-top:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-sm-4,html body.bootstrapiso:not(#random_id_string)>.mx-sm-4,html body.bootstrapiso>:not(#wpwrap) .mr-sm-4,html body.bootstrapiso>:not(#wpwrap) .mx-sm-4{margin-right:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-sm-4,html body.bootstrapiso:not(#random_id_string)>.my-sm-4,html body.bootstrapiso>:not(#wpwrap) .mb-sm-4,html body.bootstrapiso>:not(#wpwrap) .my-sm-4{margin-bottom:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-sm-4,html body.bootstrapiso:not(#random_id_string)>.mx-sm-4,html body.bootstrapiso>:not(#wpwrap) .ml-sm-4,html body.bootstrapiso>:not(#wpwrap) .mx-sm-4{margin-left:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.m-sm-5,html body.bootstrapiso>:not(#wpwrap) .m-sm-5{margin:3rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-sm-5,html body.bootstrapiso:not(#random_id_string)>.my-sm-5,html body.bootstrapiso>:not(#wpwrap) .mt-sm-5,html body.bootstrapiso>:not(#wpwrap) .my-sm-5{margin-top:3rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-sm-5,html body.bootstrapiso:not(#random_id_string)>.mx-sm-5,html body.bootstrapiso>:not(#wpwrap) .mr-sm-5,html body.bootstrapiso>:not(#wpwrap) .mx-sm-5{margin-right:3rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-sm-5,html body.bootstrapiso:not(#random_id_string)>.my-sm-5,html body.bootstrapiso>:not(#wpwrap) .mb-sm-5,html body.bootstrapiso>:not(#wpwrap) .my-sm-5{margin-bottom:3rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-sm-5,html body.bootstrapiso:not(#random_id_string)>.mx-sm-5,html body.bootstrapiso>:not(#wpwrap) .ml-sm-5,html body.bootstrapiso>:not(#wpwrap) .mx-sm-5{margin-left:3rem!important}html body.bootstrapiso:not(#random_id_string)>.p-sm-0,html body.bootstrapiso>:not(#wpwrap) .p-sm-0{padding:0!important}html body.bootstrapiso:not(#random_id_string)>.pt-sm-0,html body.bootstrapiso:not(#random_id_string)>.py-sm-0,html body.bootstrapiso>:not(#wpwrap) .pt-sm-0,html body.bootstrapiso>:not(#wpwrap) .py-sm-0{padding-top:0!important}html body.bootstrapiso:not(#random_id_string)>.pr-sm-0,html body.bootstrapiso:not(#random_id_string)>.px-sm-0,html body.bootstrapiso>:not(#wpwrap) .pr-sm-0,html body.bootstrapiso>:not(#wpwrap) .px-sm-0{padding-right:0!important}html body.bootstrapiso:not(#random_id_string)>.pb-sm-0,html body.bootstrapiso:not(#random_id_string)>.py-sm-0,html body.bootstrapiso>:not(#wpwrap) .pb-sm-0,html body.bootstrapiso>:not(#wpwrap) .py-sm-0{padding-bottom:0!important}html body.bootstrapiso:not(#random_id_string)>.pl-sm-0,html body.bootstrapiso:not(#random_id_string)>.px-sm-0,html body.bootstrapiso>:not(#wpwrap) .pl-sm-0,html body.bootstrapiso>:not(#wpwrap) .px-sm-0{padding-left:0!important}html body.bootstrapiso:not(#random_id_string)>.p-sm-1,html body.bootstrapiso>:not(#wpwrap) .p-sm-1{padding:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.pt-sm-1,html body.bootstrapiso:not(#random_id_string)>.py-sm-1,html body.bootstrapiso>:not(#wpwrap) .pt-sm-1,html body.bootstrapiso>:not(#wpwrap) .py-sm-1{padding-top:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.pr-sm-1,html body.bootstrapiso:not(#random_id_string)>.px-sm-1,html body.bootstrapiso>:not(#wpwrap) .pr-sm-1,html body.bootstrapiso>:not(#wpwrap) .px-sm-1{padding-right:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.pb-sm-1,html body.bootstrapiso:not(#random_id_string)>.py-sm-1,html body.bootstrapiso>:not(#wpwrap) .pb-sm-1,html body.bootstrapiso>:not(#wpwrap) .py-sm-1{padding-bottom:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.pl-sm-1,html body.bootstrapiso:not(#random_id_string)>.px-sm-1,html body.bootstrapiso>:not(#wpwrap) .pl-sm-1,html body.bootstrapiso>:not(#wpwrap) .px-sm-1{padding-left:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.p-sm-2,html body.bootstrapiso>:not(#wpwrap) .p-sm-2{padding:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pt-sm-2,html body.bootstrapiso:not(#random_id_string)>.py-sm-2,html body.bootstrapiso>:not(#wpwrap) .pt-sm-2,html body.bootstrapiso>:not(#wpwrap) .py-sm-2{padding-top:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pr-sm-2,html body.bootstrapiso:not(#random_id_string)>.px-sm-2,html body.bootstrapiso>:not(#wpwrap) .pr-sm-2,html body.bootstrapiso>:not(#wpwrap) .px-sm-2{padding-right:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pb-sm-2,html body.bootstrapiso:not(#random_id_string)>.py-sm-2,html body.bootstrapiso>:not(#wpwrap) .pb-sm-2,html body.bootstrapiso>:not(#wpwrap) .py-sm-2{padding-bottom:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pl-sm-2,html body.bootstrapiso:not(#random_id_string)>.px-sm-2,html body.bootstrapiso>:not(#wpwrap) .pl-sm-2,html body.bootstrapiso>:not(#wpwrap) .px-sm-2{padding-left:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.p-sm-3,html body.bootstrapiso>:not(#wpwrap) .p-sm-3{padding:1rem!important}html body.bootstrapiso:not(#random_id_string)>.pt-sm-3,html body.bootstrapiso:not(#random_id_string)>.py-sm-3,html body.bootstrapiso>:not(#wpwrap) .pt-sm-3,html body.bootstrapiso>:not(#wpwrap) .py-sm-3{padding-top:1rem!important}html body.bootstrapiso:not(#random_id_string)>.pr-sm-3,html body.bootstrapiso:not(#random_id_string)>.px-sm-3,html body.bootstrapiso>:not(#wpwrap) .pr-sm-3,html body.bootstrapiso>:not(#wpwrap) .px-sm-3{padding-right:1rem!important}html body.bootstrapiso:not(#random_id_string)>.pb-sm-3,html body.bootstrapiso:not(#random_id_string)>.py-sm-3,html body.bootstrapiso>:not(#wpwrap) .pb-sm-3,html body.bootstrapiso>:not(#wpwrap) .py-sm-3{padding-bottom:1rem!important}html body.bootstrapiso:not(#random_id_string)>.pl-sm-3,html body.bootstrapiso:not(#random_id_string)>.px-sm-3,html body.bootstrapiso>:not(#wpwrap) .pl-sm-3,html body.bootstrapiso>:not(#wpwrap) .px-sm-3{padding-left:1rem!important}html body.bootstrapiso:not(#random_id_string)>.p-sm-4,html body.bootstrapiso>:not(#wpwrap) .p-sm-4{padding:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pt-sm-4,html body.bootstrapiso:not(#random_id_string)>.py-sm-4,html body.bootstrapiso>:not(#wpwrap) .pt-sm-4,html body.bootstrapiso>:not(#wpwrap) .py-sm-4{padding-top:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pr-sm-4,html body.bootstrapiso:not(#random_id_string)>.px-sm-4,html body.bootstrapiso>:not(#wpwrap) .pr-sm-4,html body.bootstrapiso>:not(#wpwrap) .px-sm-4{padding-right:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pb-sm-4,html body.bootstrapiso:not(#random_id_string)>.py-sm-4,html body.bootstrapiso>:not(#wpwrap) .pb-sm-4,html body.bootstrapiso>:not(#wpwrap) .py-sm-4{padding-bottom:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pl-sm-4,html body.bootstrapiso:not(#random_id_string)>.px-sm-4,html body.bootstrapiso>:not(#wpwrap) .pl-sm-4,html body.bootstrapiso>:not(#wpwrap) .px-sm-4{padding-left:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.p-sm-5,html body.bootstrapiso>:not(#wpwrap) .p-sm-5{padding:3rem!important}html body.bootstrapiso:not(#random_id_string)>.pt-sm-5,html body.bootstrapiso:not(#random_id_string)>.py-sm-5,html body.bootstrapiso>:not(#wpwrap) .pt-sm-5,html body.bootstrapiso>:not(#wpwrap) .py-sm-5{padding-top:3rem!important}html body.bootstrapiso:not(#random_id_string)>.pr-sm-5,html body.bootstrapiso:not(#random_id_string)>.px-sm-5,html body.bootstrapiso>:not(#wpwrap) .pr-sm-5,html body.bootstrapiso>:not(#wpwrap) .px-sm-5{padding-right:3rem!important}html body.bootstrapiso:not(#random_id_string)>.pb-sm-5,html body.bootstrapiso:not(#random_id_string)>.py-sm-5,html body.bootstrapiso>:not(#wpwrap) .pb-sm-5,html body.bootstrapiso>:not(#wpwrap) .py-sm-5{padding-bottom:3rem!important}html body.bootstrapiso:not(#random_id_string)>.pl-sm-5,html body.bootstrapiso:not(#random_id_string)>.px-sm-5,html body.bootstrapiso>:not(#wpwrap) .pl-sm-5,html body.bootstrapiso>:not(#wpwrap) .px-sm-5{padding-left:3rem!important}html body.bootstrapiso:not(#random_id_string)>.m-sm-n1,html body.bootstrapiso>:not(#wpwrap) .m-sm-n1{margin:-.25rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-sm-n1,html body.bootstrapiso:not(#random_id_string)>.my-sm-n1,html body.bootstrapiso>:not(#wpwrap) .mt-sm-n1,html body.bootstrapiso>:not(#wpwrap) .my-sm-n1{margin-top:-.25rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-sm-n1,html body.bootstrapiso:not(#random_id_string)>.mx-sm-n1,html body.bootstrapiso>:not(#wpwrap) .mr-sm-n1,html body.bootstrapiso>:not(#wpwrap) .mx-sm-n1{margin-right:-.25rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-sm-n1,html body.bootstrapiso:not(#random_id_string)>.my-sm-n1,html body.bootstrapiso>:not(#wpwrap) .mb-sm-n1,html body.bootstrapiso>:not(#wpwrap) .my-sm-n1{margin-bottom:-.25rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-sm-n1,html body.bootstrapiso:not(#random_id_string)>.mx-sm-n1,html body.bootstrapiso>:not(#wpwrap) .ml-sm-n1,html body.bootstrapiso>:not(#wpwrap) .mx-sm-n1{margin-left:-.25rem!important}html body.bootstrapiso:not(#random_id_string)>.m-sm-n2,html body.bootstrapiso>:not(#wpwrap) .m-sm-n2{margin:-.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-sm-n2,html body.bootstrapiso:not(#random_id_string)>.my-sm-n2,html body.bootstrapiso>:not(#wpwrap) .mt-sm-n2,html body.bootstrapiso>:not(#wpwrap) .my-sm-n2{margin-top:-.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-sm-n2,html body.bootstrapiso:not(#random_id_string)>.mx-sm-n2,html body.bootstrapiso>:not(#wpwrap) .mr-sm-n2,html body.bootstrapiso>:not(#wpwrap) .mx-sm-n2{margin-right:-.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-sm-n2,html body.bootstrapiso:not(#random_id_string)>.my-sm-n2,html body.bootstrapiso>:not(#wpwrap) .mb-sm-n2,html body.bootstrapiso>:not(#wpwrap) .my-sm-n2{margin-bottom:-.5rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-sm-n2,html body.bootstrapiso:not(#random_id_string)>.mx-sm-n2,html body.bootstrapiso>:not(#wpwrap) .ml-sm-n2,html body.bootstrapiso>:not(#wpwrap) .mx-sm-n2{margin-left:-.5rem!important}html body.bootstrapiso:not(#random_id_string)>.m-sm-n3,html body.bootstrapiso>:not(#wpwrap) .m-sm-n3{margin:-1rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-sm-n3,html body.bootstrapiso:not(#random_id_string)>.my-sm-n3,html body.bootstrapiso>:not(#wpwrap) .mt-sm-n3,html body.bootstrapiso>:not(#wpwrap) .my-sm-n3{margin-top:-1rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-sm-n3,html body.bootstrapiso:not(#random_id_string)>.mx-sm-n3,html body.bootstrapiso>:not(#wpwrap) .mr-sm-n3,html body.bootstrapiso>:not(#wpwrap) .mx-sm-n3{margin-right:-1rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-sm-n3,html body.bootstrapiso:not(#random_id_string)>.my-sm-n3,html body.bootstrapiso>:not(#wpwrap) .mb-sm-n3,html body.bootstrapiso>:not(#wpwrap) .my-sm-n3{margin-bottom:-1rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-sm-n3,html body.bootstrapiso:not(#random_id_string)>.mx-sm-n3,html body.bootstrapiso>:not(#wpwrap) .ml-sm-n3,html body.bootstrapiso>:not(#wpwrap) .mx-sm-n3{margin-left:-1rem!important}html body.bootstrapiso:not(#random_id_string)>.m-sm-n4,html body.bootstrapiso>:not(#wpwrap) .m-sm-n4{margin:-1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-sm-n4,html body.bootstrapiso:not(#random_id_string)>.my-sm-n4,html body.bootstrapiso>:not(#wpwrap) .mt-sm-n4,html body.bootstrapiso>:not(#wpwrap) .my-sm-n4{margin-top:-1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-sm-n4,html body.bootstrapiso:not(#random_id_string)>.mx-sm-n4,html body.bootstrapiso>:not(#wpwrap) .mr-sm-n4,html body.bootstrapiso>:not(#wpwrap) .mx-sm-n4{margin-right:-1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-sm-n4,html body.bootstrapiso:not(#random_id_string)>.my-sm-n4,html body.bootstrapiso>:not(#wpwrap) .mb-sm-n4,html body.bootstrapiso>:not(#wpwrap) .my-sm-n4{margin-bottom:-1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-sm-n4,html body.bootstrapiso:not(#random_id_string)>.mx-sm-n4,html body.bootstrapiso>:not(#wpwrap) .ml-sm-n4,html body.bootstrapiso>:not(#wpwrap) .mx-sm-n4{margin-left:-1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.m-sm-n5,html body.bootstrapiso>:not(#wpwrap) .m-sm-n5{margin:-3rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-sm-n5,html body.bootstrapiso:not(#random_id_string)>.my-sm-n5,html body.bootstrapiso>:not(#wpwrap) .mt-sm-n5,html body.bootstrapiso>:not(#wpwrap) .my-sm-n5{margin-top:-3rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-sm-n5,html body.bootstrapiso:not(#random_id_string)>.mx-sm-n5,html body.bootstrapiso>:not(#wpwrap) .mr-sm-n5,html body.bootstrapiso>:not(#wpwrap) .mx-sm-n5{margin-right:-3rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-sm-n5,html body.bootstrapiso:not(#random_id_string)>.my-sm-n5,html body.bootstrapiso>:not(#wpwrap) .mb-sm-n5,html body.bootstrapiso>:not(#wpwrap) .my-sm-n5{margin-bottom:-3rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-sm-n5,html body.bootstrapiso:not(#random_id_string)>.mx-sm-n5,html body.bootstrapiso>:not(#wpwrap) .ml-sm-n5,html body.bootstrapiso>:not(#wpwrap) .mx-sm-n5{margin-left:-3rem!important}html body.bootstrapiso:not(#random_id_string)>.m-sm-auto,html body.bootstrapiso>:not(#wpwrap) .m-sm-auto{margin:auto!important}html body.bootstrapiso:not(#random_id_string)>.mt-sm-auto,html body.bootstrapiso:not(#random_id_string)>.my-sm-auto,html body.bootstrapiso>:not(#wpwrap) .mt-sm-auto,html body.bootstrapiso>:not(#wpwrap) .my-sm-auto{margin-top:auto!important}html body.bootstrapiso:not(#random_id_string)>.mr-sm-auto,html body.bootstrapiso:not(#random_id_string)>.mx-sm-auto,html body.bootstrapiso>:not(#wpwrap) .mr-sm-auto,html body.bootstrapiso>:not(#wpwrap) .mx-sm-auto{margin-right:auto!important}html body.bootstrapiso:not(#random_id_string)>.mb-sm-auto,html body.bootstrapiso:not(#random_id_string)>.my-sm-auto,html body.bootstrapiso>:not(#wpwrap) .mb-sm-auto,html body.bootstrapiso>:not(#wpwrap) .my-sm-auto{margin-bottom:auto!important}html body.bootstrapiso:not(#random_id_string)>.ml-sm-auto,html body.bootstrapiso:not(#random_id_string)>.mx-sm-auto,html body.bootstrapiso>:not(#wpwrap) .ml-sm-auto,html body.bootstrapiso>:not(#wpwrap) .mx-sm-auto{margin-left:auto!important}}@media (min-width:768px){html body.bootstrapiso:not(#random_id_string)>.m-md-0,html body.bootstrapiso>:not(#wpwrap) .m-md-0{margin:0!important}html body.bootstrapiso:not(#random_id_string)>.mt-md-0,html body.bootstrapiso:not(#random_id_string)>.my-md-0,html body.bootstrapiso>:not(#wpwrap) .mt-md-0,html body.bootstrapiso>:not(#wpwrap) .my-md-0{margin-top:0!important}html body.bootstrapiso:not(#random_id_string)>.mr-md-0,html body.bootstrapiso:not(#random_id_string)>.mx-md-0,html body.bootstrapiso>:not(#wpwrap) .mr-md-0,html body.bootstrapiso>:not(#wpwrap) .mx-md-0{margin-right:0!important}html body.bootstrapiso:not(#random_id_string)>.mb-md-0,html body.bootstrapiso:not(#random_id_string)>.my-md-0,html body.bootstrapiso>:not(#wpwrap) .mb-md-0,html body.bootstrapiso>:not(#wpwrap) .my-md-0{margin-bottom:0!important}html body.bootstrapiso:not(#random_id_string)>.ml-md-0,html body.bootstrapiso:not(#random_id_string)>.mx-md-0,html body.bootstrapiso>:not(#wpwrap) .ml-md-0,html body.bootstrapiso>:not(#wpwrap) .mx-md-0{margin-left:0!important}html body.bootstrapiso:not(#random_id_string)>.m-md-1,html body.bootstrapiso>:not(#wpwrap) .m-md-1{margin:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-md-1,html body.bootstrapiso:not(#random_id_string)>.my-md-1,html body.bootstrapiso>:not(#wpwrap) .mt-md-1,html body.bootstrapiso>:not(#wpwrap) .my-md-1{margin-top:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-md-1,html body.bootstrapiso:not(#random_id_string)>.mx-md-1,html body.bootstrapiso>:not(#wpwrap) .mr-md-1,html body.bootstrapiso>:not(#wpwrap) .mx-md-1{margin-right:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-md-1,html body.bootstrapiso:not(#random_id_string)>.my-md-1,html body.bootstrapiso>:not(#wpwrap) .mb-md-1,html body.bootstrapiso>:not(#wpwrap) .my-md-1{margin-bottom:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-md-1,html body.bootstrapiso:not(#random_id_string)>.mx-md-1,html body.bootstrapiso>:not(#wpwrap) .ml-md-1,html body.bootstrapiso>:not(#wpwrap) .mx-md-1{margin-left:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.m-md-2,html body.bootstrapiso>:not(#wpwrap) .m-md-2{margin:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-md-2,html body.bootstrapiso:not(#random_id_string)>.my-md-2,html body.bootstrapiso>:not(#wpwrap) .mt-md-2,html body.bootstrapiso>:not(#wpwrap) .my-md-2{margin-top:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-md-2,html body.bootstrapiso:not(#random_id_string)>.mx-md-2,html body.bootstrapiso>:not(#wpwrap) .mr-md-2,html body.bootstrapiso>:not(#wpwrap) .mx-md-2{margin-right:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-md-2,html body.bootstrapiso:not(#random_id_string)>.my-md-2,html body.bootstrapiso>:not(#wpwrap) .mb-md-2,html body.bootstrapiso>:not(#wpwrap) .my-md-2{margin-bottom:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-md-2,html body.bootstrapiso:not(#random_id_string)>.mx-md-2,html body.bootstrapiso>:not(#wpwrap) .ml-md-2,html body.bootstrapiso>:not(#wpwrap) .mx-md-2{margin-left:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.m-md-3,html body.bootstrapiso>:not(#wpwrap) .m-md-3{margin:1rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-md-3,html body.bootstrapiso:not(#random_id_string)>.my-md-3,html body.bootstrapiso>:not(#wpwrap) .mt-md-3,html body.bootstrapiso>:not(#wpwrap) .my-md-3{margin-top:1rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-md-3,html body.bootstrapiso:not(#random_id_string)>.mx-md-3,html body.bootstrapiso>:not(#wpwrap) .mr-md-3,html body.bootstrapiso>:not(#wpwrap) .mx-md-3{margin-right:1rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-md-3,html body.bootstrapiso:not(#random_id_string)>.my-md-3,html body.bootstrapiso>:not(#wpwrap) .mb-md-3,html body.bootstrapiso>:not(#wpwrap) .my-md-3{margin-bottom:1rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-md-3,html body.bootstrapiso:not(#random_id_string)>.mx-md-3,html body.bootstrapiso>:not(#wpwrap) .ml-md-3,html body.bootstrapiso>:not(#wpwrap) .mx-md-3{margin-left:1rem!important}html body.bootstrapiso:not(#random_id_string)>.m-md-4,html body.bootstrapiso>:not(#wpwrap) .m-md-4{margin:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-md-4,html body.bootstrapiso:not(#random_id_string)>.my-md-4,html body.bootstrapiso>:not(#wpwrap) .mt-md-4,html body.bootstrapiso>:not(#wpwrap) .my-md-4{margin-top:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-md-4,html body.bootstrapiso:not(#random_id_string)>.mx-md-4,html body.bootstrapiso>:not(#wpwrap) .mr-md-4,html body.bootstrapiso>:not(#wpwrap) .mx-md-4{margin-right:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-md-4,html body.bootstrapiso:not(#random_id_string)>.my-md-4,html body.bootstrapiso>:not(#wpwrap) .mb-md-4,html body.bootstrapiso>:not(#wpwrap) .my-md-4{margin-bottom:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-md-4,html body.bootstrapiso:not(#random_id_string)>.mx-md-4,html body.bootstrapiso>:not(#wpwrap) .ml-md-4,html body.bootstrapiso>:not(#wpwrap) .mx-md-4{margin-left:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.m-md-5,html body.bootstrapiso>:not(#wpwrap) .m-md-5{margin:3rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-md-5,html body.bootstrapiso:not(#random_id_string)>.my-md-5,html body.bootstrapiso>:not(#wpwrap) .mt-md-5,html body.bootstrapiso>:not(#wpwrap) .my-md-5{margin-top:3rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-md-5,html body.bootstrapiso:not(#random_id_string)>.mx-md-5,html body.bootstrapiso>:not(#wpwrap) .mr-md-5,html body.bootstrapiso>:not(#wpwrap) .mx-md-5{margin-right:3rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-md-5,html body.bootstrapiso:not(#random_id_string)>.my-md-5,html body.bootstrapiso>:not(#wpwrap) .mb-md-5,html body.bootstrapiso>:not(#wpwrap) .my-md-5{margin-bottom:3rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-md-5,html body.bootstrapiso:not(#random_id_string)>.mx-md-5,html body.bootstrapiso>:not(#wpwrap) .ml-md-5,html body.bootstrapiso>:not(#wpwrap) .mx-md-5{margin-left:3rem!important}html body.bootstrapiso:not(#random_id_string)>.p-md-0,html body.bootstrapiso>:not(#wpwrap) .p-md-0{padding:0!important}html body.bootstrapiso:not(#random_id_string)>.pt-md-0,html body.bootstrapiso:not(#random_id_string)>.py-md-0,html body.bootstrapiso>:not(#wpwrap) .pt-md-0,html body.bootstrapiso>:not(#wpwrap) .py-md-0{padding-top:0!important}html body.bootstrapiso:not(#random_id_string)>.pr-md-0,html body.bootstrapiso:not(#random_id_string)>.px-md-0,html body.bootstrapiso>:not(#wpwrap) .pr-md-0,html body.bootstrapiso>:not(#wpwrap) .px-md-0{padding-right:0!important}html body.bootstrapiso:not(#random_id_string)>.pb-md-0,html body.bootstrapiso:not(#random_id_string)>.py-md-0,html body.bootstrapiso>:not(#wpwrap) .pb-md-0,html body.bootstrapiso>:not(#wpwrap) .py-md-0{padding-bottom:0!important}html body.bootstrapiso:not(#random_id_string)>.pl-md-0,html body.bootstrapiso:not(#random_id_string)>.px-md-0,html body.bootstrapiso>:not(#wpwrap) .pl-md-0,html body.bootstrapiso>:not(#wpwrap) .px-md-0{padding-left:0!important}html body.bootstrapiso:not(#random_id_string)>.p-md-1,html body.bootstrapiso>:not(#wpwrap) .p-md-1{padding:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.pt-md-1,html body.bootstrapiso:not(#random_id_string)>.py-md-1,html body.bootstrapiso>:not(#wpwrap) .pt-md-1,html body.bootstrapiso>:not(#wpwrap) .py-md-1{padding-top:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.pr-md-1,html body.bootstrapiso:not(#random_id_string)>.px-md-1,html body.bootstrapiso>:not(#wpwrap) .pr-md-1,html body.bootstrapiso>:not(#wpwrap) .px-md-1{padding-right:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.pb-md-1,html body.bootstrapiso:not(#random_id_string)>.py-md-1,html body.bootstrapiso>:not(#wpwrap) .pb-md-1,html body.bootstrapiso>:not(#wpwrap) .py-md-1{padding-bottom:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.pl-md-1,html body.bootstrapiso:not(#random_id_string)>.px-md-1,html body.bootstrapiso>:not(#wpwrap) .pl-md-1,html body.bootstrapiso>:not(#wpwrap) .px-md-1{padding-left:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.p-md-2,html body.bootstrapiso>:not(#wpwrap) .p-md-2{padding:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pt-md-2,html body.bootstrapiso:not(#random_id_string)>.py-md-2,html body.bootstrapiso>:not(#wpwrap) .pt-md-2,html body.bootstrapiso>:not(#wpwrap) .py-md-2{padding-top:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pr-md-2,html body.bootstrapiso:not(#random_id_string)>.px-md-2,html body.bootstrapiso>:not(#wpwrap) .pr-md-2,html body.bootstrapiso>:not(#wpwrap) .px-md-2{padding-right:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pb-md-2,html body.bootstrapiso:not(#random_id_string)>.py-md-2,html body.bootstrapiso>:not(#wpwrap) .pb-md-2,html body.bootstrapiso>:not(#wpwrap) .py-md-2{padding-bottom:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pl-md-2,html body.bootstrapiso:not(#random_id_string)>.px-md-2,html body.bootstrapiso>:not(#wpwrap) .pl-md-2,html body.bootstrapiso>:not(#wpwrap) .px-md-2{padding-left:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.p-md-3,html body.bootstrapiso>:not(#wpwrap) .p-md-3{padding:1rem!important}html body.bootstrapiso:not(#random_id_string)>.pt-md-3,html body.bootstrapiso:not(#random_id_string)>.py-md-3,html body.bootstrapiso>:not(#wpwrap) .pt-md-3,html body.bootstrapiso>:not(#wpwrap) .py-md-3{padding-top:1rem!important}html body.bootstrapiso:not(#random_id_string)>.pr-md-3,html body.bootstrapiso:not(#random_id_string)>.px-md-3,html body.bootstrapiso>:not(#wpwrap) .pr-md-3,html body.bootstrapiso>:not(#wpwrap) .px-md-3{padding-right:1rem!important}html body.bootstrapiso:not(#random_id_string)>.pb-md-3,html body.bootstrapiso:not(#random_id_string)>.py-md-3,html body.bootstrapiso>:not(#wpwrap) .pb-md-3,html body.bootstrapiso>:not(#wpwrap) .py-md-3{padding-bottom:1rem!important}html body.bootstrapiso:not(#random_id_string)>.pl-md-3,html body.bootstrapiso:not(#random_id_string)>.px-md-3,html body.bootstrapiso>:not(#wpwrap) .pl-md-3,html body.bootstrapiso>:not(#wpwrap) .px-md-3{padding-left:1rem!important}html body.bootstrapiso:not(#random_id_string)>.p-md-4,html body.bootstrapiso>:not(#wpwrap) .p-md-4{padding:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pt-md-4,html body.bootstrapiso:not(#random_id_string)>.py-md-4,html body.bootstrapiso>:not(#wpwrap) .pt-md-4,html body.bootstrapiso>:not(#wpwrap) .py-md-4{padding-top:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pr-md-4,html body.bootstrapiso:not(#random_id_string)>.px-md-4,html body.bootstrapiso>:not(#wpwrap) .pr-md-4,html body.bootstrapiso>:not(#wpwrap) .px-md-4{padding-right:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pb-md-4,html body.bootstrapiso:not(#random_id_string)>.py-md-4,html body.bootstrapiso>:not(#wpwrap) .pb-md-4,html body.bootstrapiso>:not(#wpwrap) .py-md-4{padding-bottom:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pl-md-4,html body.bootstrapiso:not(#random_id_string)>.px-md-4,html body.bootstrapiso>:not(#wpwrap) .pl-md-4,html body.bootstrapiso>:not(#wpwrap) .px-md-4{padding-left:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.p-md-5,html body.bootstrapiso>:not(#wpwrap) .p-md-5{padding:3rem!important}html body.bootstrapiso:not(#random_id_string)>.pt-md-5,html body.bootstrapiso:not(#random_id_string)>.py-md-5,html body.bootstrapiso>:not(#wpwrap) .pt-md-5,html body.bootstrapiso>:not(#wpwrap) .py-md-5{padding-top:3rem!important}html body.bootstrapiso:not(#random_id_string)>.pr-md-5,html body.bootstrapiso:not(#random_id_string)>.px-md-5,html body.bootstrapiso>:not(#wpwrap) .pr-md-5,html body.bootstrapiso>:not(#wpwrap) .px-md-5{padding-right:3rem!important}html body.bootstrapiso:not(#random_id_string)>.pb-md-5,html body.bootstrapiso:not(#random_id_string)>.py-md-5,html body.bootstrapiso>:not(#wpwrap) .pb-md-5,html body.bootstrapiso>:not(#wpwrap) .py-md-5{padding-bottom:3rem!important}html body.bootstrapiso:not(#random_id_string)>.pl-md-5,html body.bootstrapiso:not(#random_id_string)>.px-md-5,html body.bootstrapiso>:not(#wpwrap) .pl-md-5,html body.bootstrapiso>:not(#wpwrap) .px-md-5{padding-left:3rem!important}html body.bootstrapiso:not(#random_id_string)>.m-md-n1,html body.bootstrapiso>:not(#wpwrap) .m-md-n1{margin:-.25rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-md-n1,html body.bootstrapiso:not(#random_id_string)>.my-md-n1,html body.bootstrapiso>:not(#wpwrap) .mt-md-n1,html body.bootstrapiso>:not(#wpwrap) .my-md-n1{margin-top:-.25rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-md-n1,html body.bootstrapiso:not(#random_id_string)>.mx-md-n1,html body.bootstrapiso>:not(#wpwrap) .mr-md-n1,html body.bootstrapiso>:not(#wpwrap) .mx-md-n1{margin-right:-.25rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-md-n1,html body.bootstrapiso:not(#random_id_string)>.my-md-n1,html body.bootstrapiso>:not(#wpwrap) .mb-md-n1,html body.bootstrapiso>:not(#wpwrap) .my-md-n1{margin-bottom:-.25rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-md-n1,html body.bootstrapiso:not(#random_id_string)>.mx-md-n1,html body.bootstrapiso>:not(#wpwrap) .ml-md-n1,html body.bootstrapiso>:not(#wpwrap) .mx-md-n1{margin-left:-.25rem!important}html body.bootstrapiso:not(#random_id_string)>.m-md-n2,html body.bootstrapiso>:not(#wpwrap) .m-md-n2{margin:-.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-md-n2,html body.bootstrapiso:not(#random_id_string)>.my-md-n2,html body.bootstrapiso>:not(#wpwrap) .mt-md-n2,html body.bootstrapiso>:not(#wpwrap) .my-md-n2{margin-top:-.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-md-n2,html body.bootstrapiso:not(#random_id_string)>.mx-md-n2,html body.bootstrapiso>:not(#wpwrap) .mr-md-n2,html body.bootstrapiso>:not(#wpwrap) .mx-md-n2{margin-right:-.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-md-n2,html body.bootstrapiso:not(#random_id_string)>.my-md-n2,html body.bootstrapiso>:not(#wpwrap) .mb-md-n2,html body.bootstrapiso>:not(#wpwrap) .my-md-n2{margin-bottom:-.5rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-md-n2,html body.bootstrapiso:not(#random_id_string)>.mx-md-n2,html body.bootstrapiso>:not(#wpwrap) .ml-md-n2,html body.bootstrapiso>:not(#wpwrap) .mx-md-n2{margin-left:-.5rem!important}html body.bootstrapiso:not(#random_id_string)>.m-md-n3,html body.bootstrapiso>:not(#wpwrap) .m-md-n3{margin:-1rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-md-n3,html body.bootstrapiso:not(#random_id_string)>.my-md-n3,html body.bootstrapiso>:not(#wpwrap) .mt-md-n3,html body.bootstrapiso>:not(#wpwrap) .my-md-n3{margin-top:-1rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-md-n3,html body.bootstrapiso:not(#random_id_string)>.mx-md-n3,html body.bootstrapiso>:not(#wpwrap) .mr-md-n3,html body.bootstrapiso>:not(#wpwrap) .mx-md-n3{margin-right:-1rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-md-n3,html body.bootstrapiso:not(#random_id_string)>.my-md-n3,html body.bootstrapiso>:not(#wpwrap) .mb-md-n3,html body.bootstrapiso>:not(#wpwrap) .my-md-n3{margin-bottom:-1rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-md-n3,html body.bootstrapiso:not(#random_id_string)>.mx-md-n3,html body.bootstrapiso>:not(#wpwrap) .ml-md-n3,html body.bootstrapiso>:not(#wpwrap) .mx-md-n3{margin-left:-1rem!important}html body.bootstrapiso:not(#random_id_string)>.m-md-n4,html body.bootstrapiso>:not(#wpwrap) .m-md-n4{margin:-1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-md-n4,html body.bootstrapiso:not(#random_id_string)>.my-md-n4,html body.bootstrapiso>:not(#wpwrap) .mt-md-n4,html body.bootstrapiso>:not(#wpwrap) .my-md-n4{margin-top:-1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-md-n4,html body.bootstrapiso:not(#random_id_string)>.mx-md-n4,html body.bootstrapiso>:not(#wpwrap) .mr-md-n4,html body.bootstrapiso>:not(#wpwrap) .mx-md-n4{margin-right:-1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-md-n4,html body.bootstrapiso:not(#random_id_string)>.my-md-n4,html body.bootstrapiso>:not(#wpwrap) .mb-md-n4,html body.bootstrapiso>:not(#wpwrap) .my-md-n4{margin-bottom:-1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-md-n4,html body.bootstrapiso:not(#random_id_string)>.mx-md-n4,html body.bootstrapiso>:not(#wpwrap) .ml-md-n4,html body.bootstrapiso>:not(#wpwrap) .mx-md-n4{margin-left:-1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.m-md-n5,html body.bootstrapiso>:not(#wpwrap) .m-md-n5{margin:-3rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-md-n5,html body.bootstrapiso:not(#random_id_string)>.my-md-n5,html body.bootstrapiso>:not(#wpwrap) .mt-md-n5,html body.bootstrapiso>:not(#wpwrap) .my-md-n5{margin-top:-3rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-md-n5,html body.bootstrapiso:not(#random_id_string)>.mx-md-n5,html body.bootstrapiso>:not(#wpwrap) .mr-md-n5,html body.bootstrapiso>:not(#wpwrap) .mx-md-n5{margin-right:-3rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-md-n5,html body.bootstrapiso:not(#random_id_string)>.my-md-n5,html body.bootstrapiso>:not(#wpwrap) .mb-md-n5,html body.bootstrapiso>:not(#wpwrap) .my-md-n5{margin-bottom:-3rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-md-n5,html body.bootstrapiso:not(#random_id_string)>.mx-md-n5,html body.bootstrapiso>:not(#wpwrap) .ml-md-n5,html body.bootstrapiso>:not(#wpwrap) .mx-md-n5{margin-left:-3rem!important}html body.bootstrapiso:not(#random_id_string)>.m-md-auto,html body.bootstrapiso>:not(#wpwrap) .m-md-auto{margin:auto!important}html body.bootstrapiso:not(#random_id_string)>.mt-md-auto,html body.bootstrapiso:not(#random_id_string)>.my-md-auto,html body.bootstrapiso>:not(#wpwrap) .mt-md-auto,html body.bootstrapiso>:not(#wpwrap) .my-md-auto{margin-top:auto!important}html body.bootstrapiso:not(#random_id_string)>.mr-md-auto,html body.bootstrapiso:not(#random_id_string)>.mx-md-auto,html body.bootstrapiso>:not(#wpwrap) .mr-md-auto,html body.bootstrapiso>:not(#wpwrap) .mx-md-auto{margin-right:auto!important}html body.bootstrapiso:not(#random_id_string)>.mb-md-auto,html body.bootstrapiso:not(#random_id_string)>.my-md-auto,html body.bootstrapiso>:not(#wpwrap) .mb-md-auto,html body.bootstrapiso>:not(#wpwrap) .my-md-auto{margin-bottom:auto!important}html body.bootstrapiso:not(#random_id_string)>.ml-md-auto,html body.bootstrapiso:not(#random_id_string)>.mx-md-auto,html body.bootstrapiso>:not(#wpwrap) .ml-md-auto,html body.bootstrapiso>:not(#wpwrap) .mx-md-auto{margin-left:auto!important}}@media (min-width:992px){html body.bootstrapiso:not(#random_id_string)>.m-lg-0,html body.bootstrapiso>:not(#wpwrap) .m-lg-0{margin:0!important}html body.bootstrapiso:not(#random_id_string)>.mt-lg-0,html body.bootstrapiso:not(#random_id_string)>.my-lg-0,html body.bootstrapiso>:not(#wpwrap) .mt-lg-0,html body.bootstrapiso>:not(#wpwrap) .my-lg-0{margin-top:0!important}html body.bootstrapiso:not(#random_id_string)>.mr-lg-0,html body.bootstrapiso:not(#random_id_string)>.mx-lg-0,html body.bootstrapiso>:not(#wpwrap) .mr-lg-0,html body.bootstrapiso>:not(#wpwrap) .mx-lg-0{margin-right:0!important}html body.bootstrapiso:not(#random_id_string)>.mb-lg-0,html body.bootstrapiso:not(#random_id_string)>.my-lg-0,html body.bootstrapiso>:not(#wpwrap) .mb-lg-0,html body.bootstrapiso>:not(#wpwrap) .my-lg-0{margin-bottom:0!important}html body.bootstrapiso:not(#random_id_string)>.ml-lg-0,html body.bootstrapiso:not(#random_id_string)>.mx-lg-0,html body.bootstrapiso>:not(#wpwrap) .ml-lg-0,html body.bootstrapiso>:not(#wpwrap) .mx-lg-0{margin-left:0!important}html body.bootstrapiso:not(#random_id_string)>.m-lg-1,html body.bootstrapiso>:not(#wpwrap) .m-lg-1{margin:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-lg-1,html body.bootstrapiso:not(#random_id_string)>.my-lg-1,html body.bootstrapiso>:not(#wpwrap) .mt-lg-1,html body.bootstrapiso>:not(#wpwrap) .my-lg-1{margin-top:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-lg-1,html body.bootstrapiso:not(#random_id_string)>.mx-lg-1,html body.bootstrapiso>:not(#wpwrap) .mr-lg-1,html body.bootstrapiso>:not(#wpwrap) .mx-lg-1{margin-right:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-lg-1,html body.bootstrapiso:not(#random_id_string)>.my-lg-1,html body.bootstrapiso>:not(#wpwrap) .mb-lg-1,html body.bootstrapiso>:not(#wpwrap) .my-lg-1{margin-bottom:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-lg-1,html body.bootstrapiso:not(#random_id_string)>.mx-lg-1,html body.bootstrapiso>:not(#wpwrap) .ml-lg-1,html body.bootstrapiso>:not(#wpwrap) .mx-lg-1{margin-left:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.m-lg-2,html body.bootstrapiso>:not(#wpwrap) .m-lg-2{margin:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-lg-2,html body.bootstrapiso:not(#random_id_string)>.my-lg-2,html body.bootstrapiso>:not(#wpwrap) .mt-lg-2,html body.bootstrapiso>:not(#wpwrap) .my-lg-2{margin-top:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-lg-2,html body.bootstrapiso:not(#random_id_string)>.mx-lg-2,html body.bootstrapiso>:not(#wpwrap) .mr-lg-2,html body.bootstrapiso>:not(#wpwrap) .mx-lg-2{margin-right:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-lg-2,html body.bootstrapiso:not(#random_id_string)>.my-lg-2,html body.bootstrapiso>:not(#wpwrap) .mb-lg-2,html body.bootstrapiso>:not(#wpwrap) .my-lg-2{margin-bottom:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-lg-2,html body.bootstrapiso:not(#random_id_string)>.mx-lg-2,html body.bootstrapiso>:not(#wpwrap) .ml-lg-2,html body.bootstrapiso>:not(#wpwrap) .mx-lg-2{margin-left:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.m-lg-3,html body.bootstrapiso>:not(#wpwrap) .m-lg-3{margin:1rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-lg-3,html body.bootstrapiso:not(#random_id_string)>.my-lg-3,html body.bootstrapiso>:not(#wpwrap) .mt-lg-3,html body.bootstrapiso>:not(#wpwrap) .my-lg-3{margin-top:1rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-lg-3,html body.bootstrapiso:not(#random_id_string)>.mx-lg-3,html body.bootstrapiso>:not(#wpwrap) .mr-lg-3,html body.bootstrapiso>:not(#wpwrap) .mx-lg-3{margin-right:1rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-lg-3,html body.bootstrapiso:not(#random_id_string)>.my-lg-3,html body.bootstrapiso>:not(#wpwrap) .mb-lg-3,html body.bootstrapiso>:not(#wpwrap) .my-lg-3{margin-bottom:1rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-lg-3,html body.bootstrapiso:not(#random_id_string)>.mx-lg-3,html body.bootstrapiso>:not(#wpwrap) .ml-lg-3,html body.bootstrapiso>:not(#wpwrap) .mx-lg-3{margin-left:1rem!important}html body.bootstrapiso:not(#random_id_string)>.m-lg-4,html body.bootstrapiso>:not(#wpwrap) .m-lg-4{margin:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-lg-4,html body.bootstrapiso:not(#random_id_string)>.my-lg-4,html body.bootstrapiso>:not(#wpwrap) .mt-lg-4,html body.bootstrapiso>:not(#wpwrap) .my-lg-4{margin-top:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-lg-4,html body.bootstrapiso:not(#random_id_string)>.mx-lg-4,html body.bootstrapiso>:not(#wpwrap) .mr-lg-4,html body.bootstrapiso>:not(#wpwrap) .mx-lg-4{margin-right:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-lg-4,html body.bootstrapiso:not(#random_id_string)>.my-lg-4,html body.bootstrapiso>:not(#wpwrap) .mb-lg-4,html body.bootstrapiso>:not(#wpwrap) .my-lg-4{margin-bottom:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-lg-4,html body.bootstrapiso:not(#random_id_string)>.mx-lg-4,html body.bootstrapiso>:not(#wpwrap) .ml-lg-4,html body.bootstrapiso>:not(#wpwrap) .mx-lg-4{margin-left:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.m-lg-5,html body.bootstrapiso>:not(#wpwrap) .m-lg-5{margin:3rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-lg-5,html body.bootstrapiso:not(#random_id_string)>.my-lg-5,html body.bootstrapiso>:not(#wpwrap) .mt-lg-5,html body.bootstrapiso>:not(#wpwrap) .my-lg-5{margin-top:3rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-lg-5,html body.bootstrapiso:not(#random_id_string)>.mx-lg-5,html body.bootstrapiso>:not(#wpwrap) .mr-lg-5,html body.bootstrapiso>:not(#wpwrap) .mx-lg-5{margin-right:3rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-lg-5,html body.bootstrapiso:not(#random_id_string)>.my-lg-5,html body.bootstrapiso>:not(#wpwrap) .mb-lg-5,html body.bootstrapiso>:not(#wpwrap) .my-lg-5{margin-bottom:3rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-lg-5,html body.bootstrapiso:not(#random_id_string)>.mx-lg-5,html body.bootstrapiso>:not(#wpwrap) .ml-lg-5,html body.bootstrapiso>:not(#wpwrap) .mx-lg-5{margin-left:3rem!important}html body.bootstrapiso:not(#random_id_string)>.p-lg-0,html body.bootstrapiso>:not(#wpwrap) .p-lg-0{padding:0!important}html body.bootstrapiso:not(#random_id_string)>.pt-lg-0,html body.bootstrapiso:not(#random_id_string)>.py-lg-0,html body.bootstrapiso>:not(#wpwrap) .pt-lg-0,html body.bootstrapiso>:not(#wpwrap) .py-lg-0{padding-top:0!important}html body.bootstrapiso:not(#random_id_string)>.pr-lg-0,html body.bootstrapiso:not(#random_id_string)>.px-lg-0,html body.bootstrapiso>:not(#wpwrap) .pr-lg-0,html body.bootstrapiso>:not(#wpwrap) .px-lg-0{padding-right:0!important}html body.bootstrapiso:not(#random_id_string)>.pb-lg-0,html body.bootstrapiso:not(#random_id_string)>.py-lg-0,html body.bootstrapiso>:not(#wpwrap) .pb-lg-0,html body.bootstrapiso>:not(#wpwrap) .py-lg-0{padding-bottom:0!important}html body.bootstrapiso:not(#random_id_string)>.pl-lg-0,html body.bootstrapiso:not(#random_id_string)>.px-lg-0,html body.bootstrapiso>:not(#wpwrap) .pl-lg-0,html body.bootstrapiso>:not(#wpwrap) .px-lg-0{padding-left:0!important}html body.bootstrapiso:not(#random_id_string)>.p-lg-1,html body.bootstrapiso>:not(#wpwrap) .p-lg-1{padding:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.pt-lg-1,html body.bootstrapiso:not(#random_id_string)>.py-lg-1,html body.bootstrapiso>:not(#wpwrap) .pt-lg-1,html body.bootstrapiso>:not(#wpwrap) .py-lg-1{padding-top:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.pr-lg-1,html body.bootstrapiso:not(#random_id_string)>.px-lg-1,html body.bootstrapiso>:not(#wpwrap) .pr-lg-1,html body.bootstrapiso>:not(#wpwrap) .px-lg-1{padding-right:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.pb-lg-1,html body.bootstrapiso:not(#random_id_string)>.py-lg-1,html body.bootstrapiso>:not(#wpwrap) .pb-lg-1,html body.bootstrapiso>:not(#wpwrap) .py-lg-1{padding-bottom:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.pl-lg-1,html body.bootstrapiso:not(#random_id_string)>.px-lg-1,html body.bootstrapiso>:not(#wpwrap) .pl-lg-1,html body.bootstrapiso>:not(#wpwrap) .px-lg-1{padding-left:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.p-lg-2,html body.bootstrapiso>:not(#wpwrap) .p-lg-2{padding:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pt-lg-2,html body.bootstrapiso:not(#random_id_string)>.py-lg-2,html body.bootstrapiso>:not(#wpwrap) .pt-lg-2,html body.bootstrapiso>:not(#wpwrap) .py-lg-2{padding-top:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pr-lg-2,html body.bootstrapiso:not(#random_id_string)>.px-lg-2,html body.bootstrapiso>:not(#wpwrap) .pr-lg-2,html body.bootstrapiso>:not(#wpwrap) .px-lg-2{padding-right:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pb-lg-2,html body.bootstrapiso:not(#random_id_string)>.py-lg-2,html body.bootstrapiso>:not(#wpwrap) .pb-lg-2,html body.bootstrapiso>:not(#wpwrap) .py-lg-2{padding-bottom:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pl-lg-2,html body.bootstrapiso:not(#random_id_string)>.px-lg-2,html body.bootstrapiso>:not(#wpwrap) .pl-lg-2,html body.bootstrapiso>:not(#wpwrap) .px-lg-2{padding-left:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.p-lg-3,html body.bootstrapiso>:not(#wpwrap) .p-lg-3{padding:1rem!important}html body.bootstrapiso:not(#random_id_string)>.pt-lg-3,html body.bootstrapiso:not(#random_id_string)>.py-lg-3,html body.bootstrapiso>:not(#wpwrap) .pt-lg-3,html body.bootstrapiso>:not(#wpwrap) .py-lg-3{padding-top:1rem!important}html body.bootstrapiso:not(#random_id_string)>.pr-lg-3,html body.bootstrapiso:not(#random_id_string)>.px-lg-3,html body.bootstrapiso>:not(#wpwrap) .pr-lg-3,html body.bootstrapiso>:not(#wpwrap) .px-lg-3{padding-right:1rem!important}html body.bootstrapiso:not(#random_id_string)>.pb-lg-3,html body.bootstrapiso:not(#random_id_string)>.py-lg-3,html body.bootstrapiso>:not(#wpwrap) .pb-lg-3,html body.bootstrapiso>:not(#wpwrap) .py-lg-3{padding-bottom:1rem!important}html body.bootstrapiso:not(#random_id_string)>.pl-lg-3,html body.bootstrapiso:not(#random_id_string)>.px-lg-3,html body.bootstrapiso>:not(#wpwrap) .pl-lg-3,html body.bootstrapiso>:not(#wpwrap) .px-lg-3{padding-left:1rem!important}html body.bootstrapiso:not(#random_id_string)>.p-lg-4,html body.bootstrapiso>:not(#wpwrap) .p-lg-4{padding:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pt-lg-4,html body.bootstrapiso:not(#random_id_string)>.py-lg-4,html body.bootstrapiso>:not(#wpwrap) .pt-lg-4,html body.bootstrapiso>:not(#wpwrap) .py-lg-4{padding-top:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pr-lg-4,html body.bootstrapiso:not(#random_id_string)>.px-lg-4,html body.bootstrapiso>:not(#wpwrap) .pr-lg-4,html body.bootstrapiso>:not(#wpwrap) .px-lg-4{padding-right:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pb-lg-4,html body.bootstrapiso:not(#random_id_string)>.py-lg-4,html body.bootstrapiso>:not(#wpwrap) .pb-lg-4,html body.bootstrapiso>:not(#wpwrap) .py-lg-4{padding-bottom:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pl-lg-4,html body.bootstrapiso:not(#random_id_string)>.px-lg-4,html body.bootstrapiso>:not(#wpwrap) .pl-lg-4,html body.bootstrapiso>:not(#wpwrap) .px-lg-4{padding-left:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.p-lg-5,html body.bootstrapiso>:not(#wpwrap) .p-lg-5{padding:3rem!important}html body.bootstrapiso:not(#random_id_string)>.pt-lg-5,html body.bootstrapiso:not(#random_id_string)>.py-lg-5,html body.bootstrapiso>:not(#wpwrap) .pt-lg-5,html body.bootstrapiso>:not(#wpwrap) .py-lg-5{padding-top:3rem!important}html body.bootstrapiso:not(#random_id_string)>.pr-lg-5,html body.bootstrapiso:not(#random_id_string)>.px-lg-5,html body.bootstrapiso>:not(#wpwrap) .pr-lg-5,html body.bootstrapiso>:not(#wpwrap) .px-lg-5{padding-right:3rem!important}html body.bootstrapiso:not(#random_id_string)>.pb-lg-5,html body.bootstrapiso:not(#random_id_string)>.py-lg-5,html body.bootstrapiso>:not(#wpwrap) .pb-lg-5,html body.bootstrapiso>:not(#wpwrap) .py-lg-5{padding-bottom:3rem!important}html body.bootstrapiso:not(#random_id_string)>.pl-lg-5,html body.bootstrapiso:not(#random_id_string)>.px-lg-5,html body.bootstrapiso>:not(#wpwrap) .pl-lg-5,html body.bootstrapiso>:not(#wpwrap) .px-lg-5{padding-left:3rem!important}html body.bootstrapiso:not(#random_id_string)>.m-lg-n1,html body.bootstrapiso>:not(#wpwrap) .m-lg-n1{margin:-.25rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-lg-n1,html body.bootstrapiso:not(#random_id_string)>.my-lg-n1,html body.bootstrapiso>:not(#wpwrap) .mt-lg-n1,html body.bootstrapiso>:not(#wpwrap) .my-lg-n1{margin-top:-.25rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-lg-n1,html body.bootstrapiso:not(#random_id_string)>.mx-lg-n1,html body.bootstrapiso>:not(#wpwrap) .mr-lg-n1,html body.bootstrapiso>:not(#wpwrap) .mx-lg-n1{margin-right:-.25rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-lg-n1,html body.bootstrapiso:not(#random_id_string)>.my-lg-n1,html body.bootstrapiso>:not(#wpwrap) .mb-lg-n1,html body.bootstrapiso>:not(#wpwrap) .my-lg-n1{margin-bottom:-.25rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-lg-n1,html body.bootstrapiso:not(#random_id_string)>.mx-lg-n1,html body.bootstrapiso>:not(#wpwrap) .ml-lg-n1,html body.bootstrapiso>:not(#wpwrap) .mx-lg-n1{margin-left:-.25rem!important}html body.bootstrapiso:not(#random_id_string)>.m-lg-n2,html body.bootstrapiso>:not(#wpwrap) .m-lg-n2{margin:-.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-lg-n2,html body.bootstrapiso:not(#random_id_string)>.my-lg-n2,html body.bootstrapiso>:not(#wpwrap) .mt-lg-n2,html body.bootstrapiso>:not(#wpwrap) .my-lg-n2{margin-top:-.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-lg-n2,html body.bootstrapiso:not(#random_id_string)>.mx-lg-n2,html body.bootstrapiso>:not(#wpwrap) .mr-lg-n2,html body.bootstrapiso>:not(#wpwrap) .mx-lg-n2{margin-right:-.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-lg-n2,html body.bootstrapiso:not(#random_id_string)>.my-lg-n2,html body.bootstrapiso>:not(#wpwrap) .mb-lg-n2,html body.bootstrapiso>:not(#wpwrap) .my-lg-n2{margin-bottom:-.5rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-lg-n2,html body.bootstrapiso:not(#random_id_string)>.mx-lg-n2,html body.bootstrapiso>:not(#wpwrap) .ml-lg-n2,html body.bootstrapiso>:not(#wpwrap) .mx-lg-n2{margin-left:-.5rem!important}html body.bootstrapiso:not(#random_id_string)>.m-lg-n3,html body.bootstrapiso>:not(#wpwrap) .m-lg-n3{margin:-1rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-lg-n3,html body.bootstrapiso:not(#random_id_string)>.my-lg-n3,html body.bootstrapiso>:not(#wpwrap) .mt-lg-n3,html body.bootstrapiso>:not(#wpwrap) .my-lg-n3{margin-top:-1rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-lg-n3,html body.bootstrapiso:not(#random_id_string)>.mx-lg-n3,html body.bootstrapiso>:not(#wpwrap) .mr-lg-n3,html body.bootstrapiso>:not(#wpwrap) .mx-lg-n3{margin-right:-1rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-lg-n3,html body.bootstrapiso:not(#random_id_string)>.my-lg-n3,html body.bootstrapiso>:not(#wpwrap) .mb-lg-n3,html body.bootstrapiso>:not(#wpwrap) .my-lg-n3{margin-bottom:-1rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-lg-n3,html body.bootstrapiso:not(#random_id_string)>.mx-lg-n3,html body.bootstrapiso>:not(#wpwrap) .ml-lg-n3,html body.bootstrapiso>:not(#wpwrap) .mx-lg-n3{margin-left:-1rem!important}html body.bootstrapiso:not(#random_id_string)>.m-lg-n4,html body.bootstrapiso>:not(#wpwrap) .m-lg-n4{margin:-1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-lg-n4,html body.bootstrapiso:not(#random_id_string)>.my-lg-n4,html body.bootstrapiso>:not(#wpwrap) .mt-lg-n4,html body.bootstrapiso>:not(#wpwrap) .my-lg-n4{margin-top:-1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-lg-n4,html body.bootstrapiso:not(#random_id_string)>.mx-lg-n4,html body.bootstrapiso>:not(#wpwrap) .mr-lg-n4,html body.bootstrapiso>:not(#wpwrap) .mx-lg-n4{margin-right:-1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-lg-n4,html body.bootstrapiso:not(#random_id_string)>.my-lg-n4,html body.bootstrapiso>:not(#wpwrap) .mb-lg-n4,html body.bootstrapiso>:not(#wpwrap) .my-lg-n4{margin-bottom:-1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-lg-n4,html body.bootstrapiso:not(#random_id_string)>.mx-lg-n4,html body.bootstrapiso>:not(#wpwrap) .ml-lg-n4,html body.bootstrapiso>:not(#wpwrap) .mx-lg-n4{margin-left:-1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.m-lg-n5,html body.bootstrapiso>:not(#wpwrap) .m-lg-n5{margin:-3rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-lg-n5,html body.bootstrapiso:not(#random_id_string)>.my-lg-n5,html body.bootstrapiso>:not(#wpwrap) .mt-lg-n5,html body.bootstrapiso>:not(#wpwrap) .my-lg-n5{margin-top:-3rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-lg-n5,html body.bootstrapiso:not(#random_id_string)>.mx-lg-n5,html body.bootstrapiso>:not(#wpwrap) .mr-lg-n5,html body.bootstrapiso>:not(#wpwrap) .mx-lg-n5{margin-right:-3rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-lg-n5,html body.bootstrapiso:not(#random_id_string)>.my-lg-n5,html body.bootstrapiso>:not(#wpwrap) .mb-lg-n5,html body.bootstrapiso>:not(#wpwrap) .my-lg-n5{margin-bottom:-3rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-lg-n5,html body.bootstrapiso:not(#random_id_string)>.mx-lg-n5,html body.bootstrapiso>:not(#wpwrap) .ml-lg-n5,html body.bootstrapiso>:not(#wpwrap) .mx-lg-n5{margin-left:-3rem!important}html body.bootstrapiso:not(#random_id_string)>.m-lg-auto,html body.bootstrapiso>:not(#wpwrap) .m-lg-auto{margin:auto!important}html body.bootstrapiso:not(#random_id_string)>.mt-lg-auto,html body.bootstrapiso:not(#random_id_string)>.my-lg-auto,html body.bootstrapiso>:not(#wpwrap) .mt-lg-auto,html body.bootstrapiso>:not(#wpwrap) .my-lg-auto{margin-top:auto!important}html body.bootstrapiso:not(#random_id_string)>.mr-lg-auto,html body.bootstrapiso:not(#random_id_string)>.mx-lg-auto,html body.bootstrapiso>:not(#wpwrap) .mr-lg-auto,html body.bootstrapiso>:not(#wpwrap) .mx-lg-auto{margin-right:auto!important}html body.bootstrapiso:not(#random_id_string)>.mb-lg-auto,html body.bootstrapiso:not(#random_id_string)>.my-lg-auto,html body.bootstrapiso>:not(#wpwrap) .mb-lg-auto,html body.bootstrapiso>:not(#wpwrap) .my-lg-auto{margin-bottom:auto!important}html body.bootstrapiso:not(#random_id_string)>.ml-lg-auto,html body.bootstrapiso:not(#random_id_string)>.mx-lg-auto,html body.bootstrapiso>:not(#wpwrap) .ml-lg-auto,html body.bootstrapiso>:not(#wpwrap) .mx-lg-auto{margin-left:auto!important}}@media (min-width:1200px){html body.bootstrapiso:not(#random_id_string)>.m-xl-0,html body.bootstrapiso>:not(#wpwrap) .m-xl-0{margin:0!important}html body.bootstrapiso:not(#random_id_string)>.mt-xl-0,html body.bootstrapiso:not(#random_id_string)>.my-xl-0,html body.bootstrapiso>:not(#wpwrap) .mt-xl-0,html body.bootstrapiso>:not(#wpwrap) .my-xl-0{margin-top:0!important}html body.bootstrapiso:not(#random_id_string)>.mr-xl-0,html body.bootstrapiso:not(#random_id_string)>.mx-xl-0,html body.bootstrapiso>:not(#wpwrap) .mr-xl-0,html body.bootstrapiso>:not(#wpwrap) .mx-xl-0{margin-right:0!important}html body.bootstrapiso:not(#random_id_string)>.mb-xl-0,html body.bootstrapiso:not(#random_id_string)>.my-xl-0,html body.bootstrapiso>:not(#wpwrap) .mb-xl-0,html body.bootstrapiso>:not(#wpwrap) .my-xl-0{margin-bottom:0!important}html body.bootstrapiso:not(#random_id_string)>.ml-xl-0,html body.bootstrapiso:not(#random_id_string)>.mx-xl-0,html body.bootstrapiso>:not(#wpwrap) .ml-xl-0,html body.bootstrapiso>:not(#wpwrap) .mx-xl-0{margin-left:0!important}html body.bootstrapiso:not(#random_id_string)>.m-xl-1,html body.bootstrapiso>:not(#wpwrap) .m-xl-1{margin:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-xl-1,html body.bootstrapiso:not(#random_id_string)>.my-xl-1,html body.bootstrapiso>:not(#wpwrap) .mt-xl-1,html body.bootstrapiso>:not(#wpwrap) .my-xl-1{margin-top:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-xl-1,html body.bootstrapiso:not(#random_id_string)>.mx-xl-1,html body.bootstrapiso>:not(#wpwrap) .mr-xl-1,html body.bootstrapiso>:not(#wpwrap) .mx-xl-1{margin-right:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-xl-1,html body.bootstrapiso:not(#random_id_string)>.my-xl-1,html body.bootstrapiso>:not(#wpwrap) .mb-xl-1,html body.bootstrapiso>:not(#wpwrap) .my-xl-1{margin-bottom:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-xl-1,html body.bootstrapiso:not(#random_id_string)>.mx-xl-1,html body.bootstrapiso>:not(#wpwrap) .ml-xl-1,html body.bootstrapiso>:not(#wpwrap) .mx-xl-1{margin-left:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.m-xl-2,html body.bootstrapiso>:not(#wpwrap) .m-xl-2{margin:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-xl-2,html body.bootstrapiso:not(#random_id_string)>.my-xl-2,html body.bootstrapiso>:not(#wpwrap) .mt-xl-2,html body.bootstrapiso>:not(#wpwrap) .my-xl-2{margin-top:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-xl-2,html body.bootstrapiso:not(#random_id_string)>.mx-xl-2,html body.bootstrapiso>:not(#wpwrap) .mr-xl-2,html body.bootstrapiso>:not(#wpwrap) .mx-xl-2{margin-right:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-xl-2,html body.bootstrapiso:not(#random_id_string)>.my-xl-2,html body.bootstrapiso>:not(#wpwrap) .mb-xl-2,html body.bootstrapiso>:not(#wpwrap) .my-xl-2{margin-bottom:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-xl-2,html body.bootstrapiso:not(#random_id_string)>.mx-xl-2,html body.bootstrapiso>:not(#wpwrap) .ml-xl-2,html body.bootstrapiso>:not(#wpwrap) .mx-xl-2{margin-left:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.m-xl-3,html body.bootstrapiso>:not(#wpwrap) .m-xl-3{margin:1rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-xl-3,html body.bootstrapiso:not(#random_id_string)>.my-xl-3,html body.bootstrapiso>:not(#wpwrap) .mt-xl-3,html body.bootstrapiso>:not(#wpwrap) .my-xl-3{margin-top:1rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-xl-3,html body.bootstrapiso:not(#random_id_string)>.mx-xl-3,html body.bootstrapiso>:not(#wpwrap) .mr-xl-3,html body.bootstrapiso>:not(#wpwrap) .mx-xl-3{margin-right:1rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-xl-3,html body.bootstrapiso:not(#random_id_string)>.my-xl-3,html body.bootstrapiso>:not(#wpwrap) .mb-xl-3,html body.bootstrapiso>:not(#wpwrap) .my-xl-3{margin-bottom:1rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-xl-3,html body.bootstrapiso:not(#random_id_string)>.mx-xl-3,html body.bootstrapiso>:not(#wpwrap) .ml-xl-3,html body.bootstrapiso>:not(#wpwrap) .mx-xl-3{margin-left:1rem!important}html body.bootstrapiso:not(#random_id_string)>.m-xl-4,html body.bootstrapiso>:not(#wpwrap) .m-xl-4{margin:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-xl-4,html body.bootstrapiso:not(#random_id_string)>.my-xl-4,html body.bootstrapiso>:not(#wpwrap) .mt-xl-4,html body.bootstrapiso>:not(#wpwrap) .my-xl-4{margin-top:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-xl-4,html body.bootstrapiso:not(#random_id_string)>.mx-xl-4,html body.bootstrapiso>:not(#wpwrap) .mr-xl-4,html body.bootstrapiso>:not(#wpwrap) .mx-xl-4{margin-right:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-xl-4,html body.bootstrapiso:not(#random_id_string)>.my-xl-4,html body.bootstrapiso>:not(#wpwrap) .mb-xl-4,html body.bootstrapiso>:not(#wpwrap) .my-xl-4{margin-bottom:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-xl-4,html body.bootstrapiso:not(#random_id_string)>.mx-xl-4,html body.bootstrapiso>:not(#wpwrap) .ml-xl-4,html body.bootstrapiso>:not(#wpwrap) .mx-xl-4{margin-left:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.m-xl-5,html body.bootstrapiso>:not(#wpwrap) .m-xl-5{margin:3rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-xl-5,html body.bootstrapiso:not(#random_id_string)>.my-xl-5,html body.bootstrapiso>:not(#wpwrap) .mt-xl-5,html body.bootstrapiso>:not(#wpwrap) .my-xl-5{margin-top:3rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-xl-5,html body.bootstrapiso:not(#random_id_string)>.mx-xl-5,html body.bootstrapiso>:not(#wpwrap) .mr-xl-5,html body.bootstrapiso>:not(#wpwrap) .mx-xl-5{margin-right:3rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-xl-5,html body.bootstrapiso:not(#random_id_string)>.my-xl-5,html body.bootstrapiso>:not(#wpwrap) .mb-xl-5,html body.bootstrapiso>:not(#wpwrap) .my-xl-5{margin-bottom:3rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-xl-5,html body.bootstrapiso:not(#random_id_string)>.mx-xl-5,html body.bootstrapiso>:not(#wpwrap) .ml-xl-5,html body.bootstrapiso>:not(#wpwrap) .mx-xl-5{margin-left:3rem!important}html body.bootstrapiso:not(#random_id_string)>.p-xl-0,html body.bootstrapiso>:not(#wpwrap) .p-xl-0{padding:0!important}html body.bootstrapiso:not(#random_id_string)>.pt-xl-0,html body.bootstrapiso:not(#random_id_string)>.py-xl-0,html body.bootstrapiso>:not(#wpwrap) .pt-xl-0,html body.bootstrapiso>:not(#wpwrap) .py-xl-0{padding-top:0!important}html body.bootstrapiso:not(#random_id_string)>.pr-xl-0,html body.bootstrapiso:not(#random_id_string)>.px-xl-0,html body.bootstrapiso>:not(#wpwrap) .pr-xl-0,html body.bootstrapiso>:not(#wpwrap) .px-xl-0{padding-right:0!important}html body.bootstrapiso:not(#random_id_string)>.pb-xl-0,html body.bootstrapiso:not(#random_id_string)>.py-xl-0,html body.bootstrapiso>:not(#wpwrap) .pb-xl-0,html body.bootstrapiso>:not(#wpwrap) .py-xl-0{padding-bottom:0!important}html body.bootstrapiso:not(#random_id_string)>.pl-xl-0,html body.bootstrapiso:not(#random_id_string)>.px-xl-0,html body.bootstrapiso>:not(#wpwrap) .pl-xl-0,html body.bootstrapiso>:not(#wpwrap) .px-xl-0{padding-left:0!important}html body.bootstrapiso:not(#random_id_string)>.p-xl-1,html body.bootstrapiso>:not(#wpwrap) .p-xl-1{padding:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.pt-xl-1,html body.bootstrapiso:not(#random_id_string)>.py-xl-1,html body.bootstrapiso>:not(#wpwrap) .pt-xl-1,html body.bootstrapiso>:not(#wpwrap) .py-xl-1{padding-top:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.pr-xl-1,html body.bootstrapiso:not(#random_id_string)>.px-xl-1,html body.bootstrapiso>:not(#wpwrap) .pr-xl-1,html body.bootstrapiso>:not(#wpwrap) .px-xl-1{padding-right:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.pb-xl-1,html body.bootstrapiso:not(#random_id_string)>.py-xl-1,html body.bootstrapiso>:not(#wpwrap) .pb-xl-1,html body.bootstrapiso>:not(#wpwrap) .py-xl-1{padding-bottom:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.pl-xl-1,html body.bootstrapiso:not(#random_id_string)>.px-xl-1,html body.bootstrapiso>:not(#wpwrap) .pl-xl-1,html body.bootstrapiso>:not(#wpwrap) .px-xl-1{padding-left:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.p-xl-2,html body.bootstrapiso>:not(#wpwrap) .p-xl-2{padding:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pt-xl-2,html body.bootstrapiso:not(#random_id_string)>.py-xl-2,html body.bootstrapiso>:not(#wpwrap) .pt-xl-2,html body.bootstrapiso>:not(#wpwrap) .py-xl-2{padding-top:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pr-xl-2,html body.bootstrapiso:not(#random_id_string)>.px-xl-2,html body.bootstrapiso>:not(#wpwrap) .pr-xl-2,html body.bootstrapiso>:not(#wpwrap) .px-xl-2{padding-right:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pb-xl-2,html body.bootstrapiso:not(#random_id_string)>.py-xl-2,html body.bootstrapiso>:not(#wpwrap) .pb-xl-2,html body.bootstrapiso>:not(#wpwrap) .py-xl-2{padding-bottom:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pl-xl-2,html body.bootstrapiso:not(#random_id_string)>.px-xl-2,html body.bootstrapiso>:not(#wpwrap) .pl-xl-2,html body.bootstrapiso>:not(#wpwrap) .px-xl-2{padding-left:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.p-xl-3,html body.bootstrapiso>:not(#wpwrap) .p-xl-3{padding:1rem!important}html body.bootstrapiso:not(#random_id_string)>.pt-xl-3,html body.bootstrapiso:not(#random_id_string)>.py-xl-3,html body.bootstrapiso>:not(#wpwrap) .pt-xl-3,html body.bootstrapiso>:not(#wpwrap) .py-xl-3{padding-top:1rem!important}html body.bootstrapiso:not(#random_id_string)>.pr-xl-3,html body.bootstrapiso:not(#random_id_string)>.px-xl-3,html body.bootstrapiso>:not(#wpwrap) .pr-xl-3,html body.bootstrapiso>:not(#wpwrap) .px-xl-3{padding-right:1rem!important}html body.bootstrapiso:not(#random_id_string)>.pb-xl-3,html body.bootstrapiso:not(#random_id_string)>.py-xl-3,html body.bootstrapiso>:not(#wpwrap) .pb-xl-3,html body.bootstrapiso>:not(#wpwrap) .py-xl-3{padding-bottom:1rem!important}html body.bootstrapiso:not(#random_id_string)>.pl-xl-3,html body.bootstrapiso:not(#random_id_string)>.px-xl-3,html body.bootstrapiso>:not(#wpwrap) .pl-xl-3,html body.bootstrapiso>:not(#wpwrap) .px-xl-3{padding-left:1rem!important}html body.bootstrapiso:not(#random_id_string)>.p-xl-4,html body.bootstrapiso>:not(#wpwrap) .p-xl-4{padding:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pt-xl-4,html body.bootstrapiso:not(#random_id_string)>.py-xl-4,html body.bootstrapiso>:not(#wpwrap) .pt-xl-4,html body.bootstrapiso>:not(#wpwrap) .py-xl-4{padding-top:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pr-xl-4,html body.bootstrapiso:not(#random_id_string)>.px-xl-4,html body.bootstrapiso>:not(#wpwrap) .pr-xl-4,html body.bootstrapiso>:not(#wpwrap) .px-xl-4{padding-right:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pb-xl-4,html body.bootstrapiso:not(#random_id_string)>.py-xl-4,html body.bootstrapiso>:not(#wpwrap) .pb-xl-4,html body.bootstrapiso>:not(#wpwrap) .py-xl-4{padding-bottom:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pl-xl-4,html body.bootstrapiso:not(#random_id_string)>.px-xl-4,html body.bootstrapiso>:not(#wpwrap) .pl-xl-4,html body.bootstrapiso>:not(#wpwrap) .px-xl-4{padding-left:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.p-xl-5,html body.bootstrapiso>:not(#wpwrap) .p-xl-5{padding:3rem!important}html body.bootstrapiso:not(#random_id_string)>.pt-xl-5,html body.bootstrapiso:not(#random_id_string)>.py-xl-5,html body.bootstrapiso>:not(#wpwrap) .pt-xl-5,html body.bootstrapiso>:not(#wpwrap) .py-xl-5{padding-top:3rem!important}html body.bootstrapiso:not(#random_id_string)>.pr-xl-5,html body.bootstrapiso:not(#random_id_string)>.px-xl-5,html body.bootstrapiso>:not(#wpwrap) .pr-xl-5,html body.bootstrapiso>:not(#wpwrap) .px-xl-5{padding-right:3rem!important}html body.bootstrapiso:not(#random_id_string)>.pb-xl-5,html body.bootstrapiso:not(#random_id_string)>.py-xl-5,html body.bootstrapiso>:not(#wpwrap) .pb-xl-5,html body.bootstrapiso>:not(#wpwrap) .py-xl-5{padding-bottom:3rem!important}html body.bootstrapiso:not(#random_id_string)>.pl-xl-5,html body.bootstrapiso:not(#random_id_string)>.px-xl-5,html body.bootstrapiso>:not(#wpwrap) .pl-xl-5,html body.bootstrapiso>:not(#wpwrap) .px-xl-5{padding-left:3rem!important}html body.bootstrapiso:not(#random_id_string)>.m-xl-n1,html body.bootstrapiso>:not(#wpwrap) .m-xl-n1{margin:-.25rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-xl-n1,html body.bootstrapiso:not(#random_id_string)>.my-xl-n1,html body.bootstrapiso>:not(#wpwrap) .mt-xl-n1,html body.bootstrapiso>:not(#wpwrap) .my-xl-n1{margin-top:-.25rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-xl-n1,html body.bootstrapiso:not(#random_id_string)>.mx-xl-n1,html body.bootstrapiso>:not(#wpwrap) .mr-xl-n1,html body.bootstrapiso>:not(#wpwrap) .mx-xl-n1{margin-right:-.25rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-xl-n1,html body.bootstrapiso:not(#random_id_string)>.my-xl-n1,html body.bootstrapiso>:not(#wpwrap) .mb-xl-n1,html body.bootstrapiso>:not(#wpwrap) .my-xl-n1{margin-bottom:-.25rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-xl-n1,html body.bootstrapiso:not(#random_id_string)>.mx-xl-n1,html body.bootstrapiso>:not(#wpwrap) .ml-xl-n1,html body.bootstrapiso>:not(#wpwrap) .mx-xl-n1{margin-left:-.25rem!important}html body.bootstrapiso:not(#random_id_string)>.m-xl-n2,html body.bootstrapiso>:not(#wpwrap) .m-xl-n2{margin:-.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-xl-n2,html body.bootstrapiso:not(#random_id_string)>.my-xl-n2,html body.bootstrapiso>:not(#wpwrap) .mt-xl-n2,html body.bootstrapiso>:not(#wpwrap) .my-xl-n2{margin-top:-.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-xl-n2,html body.bootstrapiso:not(#random_id_string)>.mx-xl-n2,html body.bootstrapiso>:not(#wpwrap) .mr-xl-n2,html body.bootstrapiso>:not(#wpwrap) .mx-xl-n2{margin-right:-.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-xl-n2,html body.bootstrapiso:not(#random_id_string)>.my-xl-n2,html body.bootstrapiso>:not(#wpwrap) .mb-xl-n2,html body.bootstrapiso>:not(#wpwrap) .my-xl-n2{margin-bottom:-.5rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-xl-n2,html body.bootstrapiso:not(#random_id_string)>.mx-xl-n2,html body.bootstrapiso>:not(#wpwrap) .ml-xl-n2,html body.bootstrapiso>:not(#wpwrap) .mx-xl-n2{margin-left:-.5rem!important}html body.bootstrapiso:not(#random_id_string)>.m-xl-n3,html body.bootstrapiso>:not(#wpwrap) .m-xl-n3{margin:-1rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-xl-n3,html body.bootstrapiso:not(#random_id_string)>.my-xl-n3,html body.bootstrapiso>:not(#wpwrap) .mt-xl-n3,html body.bootstrapiso>:not(#wpwrap) .my-xl-n3{margin-top:-1rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-xl-n3,html body.bootstrapiso:not(#random_id_string)>.mx-xl-n3,html body.bootstrapiso>:not(#wpwrap) .mr-xl-n3,html body.bootstrapiso>:not(#wpwrap) .mx-xl-n3{margin-right:-1rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-xl-n3,html body.bootstrapiso:not(#random_id_string)>.my-xl-n3,html body.bootstrapiso>:not(#wpwrap) .mb-xl-n3,html body.bootstrapiso>:not(#wpwrap) .my-xl-n3{margin-bottom:-1rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-xl-n3,html body.bootstrapiso:not(#random_id_string)>.mx-xl-n3,html body.bootstrapiso>:not(#wpwrap) .ml-xl-n3,html body.bootstrapiso>:not(#wpwrap) .mx-xl-n3{margin-left:-1rem!important}html body.bootstrapiso:not(#random_id_string)>.m-xl-n4,html body.bootstrapiso>:not(#wpwrap) .m-xl-n4{margin:-1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-xl-n4,html body.bootstrapiso:not(#random_id_string)>.my-xl-n4,html body.bootstrapiso>:not(#wpwrap) .mt-xl-n4,html body.bootstrapiso>:not(#wpwrap) .my-xl-n4{margin-top:-1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-xl-n4,html body.bootstrapiso:not(#random_id_string)>.mx-xl-n4,html body.bootstrapiso>:not(#wpwrap) .mr-xl-n4,html body.bootstrapiso>:not(#wpwrap) .mx-xl-n4{margin-right:-1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-xl-n4,html body.bootstrapiso:not(#random_id_string)>.my-xl-n4,html body.bootstrapiso>:not(#wpwrap) .mb-xl-n4,html body.bootstrapiso>:not(#wpwrap) .my-xl-n4{margin-bottom:-1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-xl-n4,html body.bootstrapiso:not(#random_id_string)>.mx-xl-n4,html body.bootstrapiso>:not(#wpwrap) .ml-xl-n4,html body.bootstrapiso>:not(#wpwrap) .mx-xl-n4{margin-left:-1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.m-xl-n5,html body.bootstrapiso>:not(#wpwrap) .m-xl-n5{margin:-3rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-xl-n5,html body.bootstrapiso:not(#random_id_string)>.my-xl-n5,html body.bootstrapiso>:not(#wpwrap) .mt-xl-n5,html body.bootstrapiso>:not(#wpwrap) .my-xl-n5{margin-top:-3rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-xl-n5,html body.bootstrapiso:not(#random_id_string)>.mx-xl-n5,html body.bootstrapiso>:not(#wpwrap) .mr-xl-n5,html body.bootstrapiso>:not(#wpwrap) .mx-xl-n5{margin-right:-3rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-xl-n5,html body.bootstrapiso:not(#random_id_string)>.my-xl-n5,html body.bootstrapiso>:not(#wpwrap) .mb-xl-n5,html body.bootstrapiso>:not(#wpwrap) .my-xl-n5{margin-bottom:-3rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-xl-n5,html body.bootstrapiso:not(#random_id_string)>.mx-xl-n5,html body.bootstrapiso>:not(#wpwrap) .ml-xl-n5,html body.bootstrapiso>:not(#wpwrap) .mx-xl-n5{margin-left:-3rem!important}html body.bootstrapiso:not(#random_id_string)>.m-xl-auto,html body.bootstrapiso>:not(#wpwrap) .m-xl-auto{margin:auto!important}html body.bootstrapiso:not(#random_id_string)>.mt-xl-auto,html body.bootstrapiso:not(#random_id_string)>.my-xl-auto,html body.bootstrapiso>:not(#wpwrap) .mt-xl-auto,html body.bootstrapiso>:not(#wpwrap) .my-xl-auto{margin-top:auto!important}html body.bootstrapiso:not(#random_id_string)>.mr-xl-auto,html body.bootstrapiso:not(#random_id_string)>.mx-xl-auto,html body.bootstrapiso>:not(#wpwrap) .mr-xl-auto,html body.bootstrapiso>:not(#wpwrap) .mx-xl-auto{margin-right:auto!important}html body.bootstrapiso:not(#random_id_string)>.mb-xl-auto,html body.bootstrapiso:not(#random_id_string)>.my-xl-auto,html body.bootstrapiso>:not(#wpwrap) .mb-xl-auto,html body.bootstrapiso>:not(#wpwrap) .my-xl-auto{margin-bottom:auto!important}html body.bootstrapiso:not(#random_id_string)>.ml-xl-auto,html body.bootstrapiso:not(#random_id_string)>.mx-xl-auto,html body.bootstrapiso>:not(#wpwrap) .ml-xl-auto,html body.bootstrapiso>:not(#wpwrap) .mx-xl-auto{margin-left:auto!important}}html body.bootstrapiso:not(#random_id_string)>.stretched-link:after,html body.bootstrapiso>:not(#wpwrap) .stretched-link:after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:transparent}html body.bootstrapiso:not(#random_id_string)>.text-monospace,html body.bootstrapiso>:not(#wpwrap) .text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace!important}html body.bootstrapiso:not(#random_id_string)>.text-justify,html body.bootstrapiso>:not(#wpwrap) .text-justify{text-align:justify!important}html body.bootstrapiso:not(#random_id_string)>.text-wrap,html body.bootstrapiso>:not(#wpwrap) .text-wrap{white-space:normal!important}html body.bootstrapiso:not(#random_id_string)>.text-nowrap,html body.bootstrapiso>:not(#wpwrap) .text-nowrap{white-space:nowrap!important}html body.bootstrapiso:not(#random_id_string)>.text-truncate,html body.bootstrapiso>:not(#wpwrap) .text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}html body.bootstrapiso:not(#random_id_string)>.text-left,html body.bootstrapiso>:not(#wpwrap) .text-left{text-align:left!important}html body.bootstrapiso:not(#random_id_string)>.text-right,html body.bootstrapiso>:not(#wpwrap) .text-right{text-align:right!important}html body.bootstrapiso:not(#random_id_string)>.text-center,html body.bootstrapiso>:not(#wpwrap) .text-center{text-align:center!important}@media (min-width:576px){html body.bootstrapiso:not(#random_id_string)>.text-sm-left,html body.bootstrapiso>:not(#wpwrap) .text-sm-left{text-align:left!important}html body.bootstrapiso:not(#random_id_string)>.text-sm-right,html body.bootstrapiso>:not(#wpwrap) .text-sm-right{text-align:right!important}html body.bootstrapiso:not(#random_id_string)>.text-sm-center,html body.bootstrapiso>:not(#wpwrap) .text-sm-center{text-align:center!important}}@media (min-width:768px){html body.bootstrapiso:not(#random_id_string)>.text-md-left,html body.bootstrapiso>:not(#wpwrap) .text-md-left{text-align:left!important}html body.bootstrapiso:not(#random_id_string)>.text-md-right,html body.bootstrapiso>:not(#wpwrap) .text-md-right{text-align:right!important}html body.bootstrapiso:not(#random_id_string)>.text-md-center,html body.bootstrapiso>:not(#wpwrap) .text-md-center{text-align:center!important}}@media (min-width:992px){html body.bootstrapiso:not(#random_id_string)>.text-lg-left,html body.bootstrapiso>:not(#wpwrap) .text-lg-left{text-align:left!important}html body.bootstrapiso:not(#random_id_string)>.text-lg-right,html body.bootstrapiso>:not(#wpwrap) .text-lg-right{text-align:right!important}html body.bootstrapiso:not(#random_id_string)>.text-lg-center,html body.bootstrapiso>:not(#wpwrap) .text-lg-center{text-align:center!important}}@media (min-width:1200px){html body.bootstrapiso:not(#random_id_string)>.text-xl-left,html body.bootstrapiso>:not(#wpwrap) .text-xl-left{text-align:left!important}html body.bootstrapiso:not(#random_id_string)>.text-xl-right,html body.bootstrapiso>:not(#wpwrap) .text-xl-right{text-align:right!important}html body.bootstrapiso:not(#random_id_string)>.text-xl-center,html body.bootstrapiso>:not(#wpwrap) .text-xl-center{text-align:center!important}}html body.bootstrapiso:not(#random_id_string)>.text-lowercase,html body.bootstrapiso>:not(#wpwrap) .text-lowercase{text-transform:lowercase!important}html body.bootstrapiso:not(#random_id_string)>.text-uppercase,html body.bootstrapiso>:not(#wpwrap) .text-uppercase{text-transform:uppercase!important}html body.bootstrapiso:not(#random_id_string)>.text-capitalize,html body.bootstrapiso>:not(#wpwrap) .text-capitalize{text-transform:capitalize!important}html body.bootstrapiso:not(#random_id_string)>.font-weight-light,html body.bootstrapiso>:not(#wpwrap) .font-weight-light{font-weight:300!important}html body.bootstrapiso:not(#random_id_string)>.font-weight-lighter,html body.bootstrapiso>:not(#wpwrap) .font-weight-lighter{font-weight:lighter!important}html body.bootstrapiso:not(#random_id_string)>.font-weight-normal,html body.bootstrapiso>:not(#wpwrap) .font-weight-normal{font-weight:400!important}html body.bootstrapiso:not(#random_id_string)>.font-weight-bold,html body.bootstrapiso>:not(#wpwrap) .font-weight-bold{font-weight:700!important}html body.bootstrapiso:not(#random_id_string)>.font-weight-bolder,html body.bootstrapiso>:not(#wpwrap) .font-weight-bolder{font-weight:bolder!important}html body.bootstrapiso:not(#random_id_string)>.font-italic,html body.bootstrapiso>:not(#wpwrap) .font-italic{font-style:italic!important}html body.bootstrapiso:not(#random_id_string)>.text-white,html body.bootstrapiso>:not(#wpwrap) .text-white{color:#fff!important}html body.bootstrapiso:not(#random_id_string)>.text-primary,html body.bootstrapiso>:not(#wpwrap) .text-primary{color:#007bff!important}html body.bootstrapiso:not(#random_id_string)>a.text-primary:focus,html body.bootstrapiso:not(#random_id_string)>a.text-primary:hover,html body.bootstrapiso>:not(#wpwrap) a.text-primary:focus,html body.bootstrapiso>:not(#wpwrap) a.text-primary:hover{color:#0056b3!important}html body.bootstrapiso:not(#random_id_string)>.text-secondary,html body.bootstrapiso>:not(#wpwrap) .text-secondary{color:#6c757d!important}html body.bootstrapiso:not(#random_id_string)>a.text-secondary:focus,html body.bootstrapiso:not(#random_id_string)>a.text-secondary:hover,html body.bootstrapiso>:not(#wpwrap) a.text-secondary:focus,html body.bootstrapiso>:not(#wpwrap) a.text-secondary:hover{color:#494f54!important}html body.bootstrapiso:not(#random_id_string)>.text-success,html body.bootstrapiso>:not(#wpwrap) .text-success{color:#28a745!important}html body.bootstrapiso:not(#random_id_string)>a.text-success:focus,html body.bootstrapiso:not(#random_id_string)>a.text-success:hover,html body.bootstrapiso>:not(#wpwrap) a.text-success:focus,html body.bootstrapiso>:not(#wpwrap) a.text-success:hover{color:#19692c!important}html body.bootstrapiso:not(#random_id_string)>.text-info,html body.bootstrapiso>:not(#wpwrap) .text-info{color:#17a2b8!important}html body.bootstrapiso:not(#random_id_string)>a.text-info:focus,html body.bootstrapiso:not(#random_id_string)>a.text-info:hover,html body.bootstrapiso>:not(#wpwrap) a.text-info:focus,html body.bootstrapiso>:not(#wpwrap) a.text-info:hover{color:#0f6674!important}html body.bootstrapiso:not(#random_id_string)>.text-warning,html body.bootstrapiso>:not(#wpwrap) .text-warning{color:#ffc107!important}html body.bootstrapiso:not(#random_id_string)>a.text-warning:focus,html body.bootstrapiso:not(#random_id_string)>a.text-warning:hover,html body.bootstrapiso>:not(#wpwrap) a.text-warning:focus,html body.bootstrapiso>:not(#wpwrap) a.text-warning:hover{color:#ba8b00!important}html body.bootstrapiso:not(#random_id_string)>.text-danger,html body.bootstrapiso>:not(#wpwrap) .text-danger{color:#dc3545!important}html body.bootstrapiso:not(#random_id_string)>a.text-danger:focus,html body.bootstrapiso:not(#random_id_string)>a.text-danger:hover,html body.bootstrapiso>:not(#wpwrap) a.text-danger:focus,html body.bootstrapiso>:not(#wpwrap) a.text-danger:hover{color:#a71d2a!important}html body.bootstrapiso:not(#random_id_string)>.text-light,html body.bootstrapiso>:not(#wpwrap) .text-light{color:#f8f9fa!important}html body.bootstrapiso:not(#random_id_string)>a.text-light:focus,html body.bootstrapiso:not(#random_id_string)>a.text-light:hover,html body.bootstrapiso>:not(#wpwrap) a.text-light:focus,html body.bootstrapiso>:not(#wpwrap) a.text-light:hover{color:#cbd3da!important}html body.bootstrapiso:not(#random_id_string)>.text-dark,html body.bootstrapiso>:not(#wpwrap) .text-dark{color:#343a40!important}html body.bootstrapiso:not(#random_id_string)>a.text-dark:focus,html body.bootstrapiso:not(#random_id_string)>a.text-dark:hover,html body.bootstrapiso>:not(#wpwrap) a.text-dark:focus,html body.bootstrapiso>:not(#wpwrap) a.text-dark:hover{color:#121416!important}html body.bootstrapiso:not(#random_id_string)>.text-body,html body.bootstrapiso>:not(#wpwrap) .text-body{color:#212529!important}html body.bootstrapiso:not(#random_id_string)>.text-muted,html body.bootstrapiso>:not(#wpwrap) .text-muted{color:#6c757d!important}html body.bootstrapiso:not(#random_id_string)>.text-black-50,html body.bootstrapiso>:not(#wpwrap) .text-black-50{color:rgba(0,0,0,.5)!important}html body.bootstrapiso:not(#random_id_string)>.text-white-50,html body.bootstrapiso>:not(#wpwrap) .text-white-50{color:hsla(0,0%,100%,.5)!important}html body.bootstrapiso:not(#random_id_string)>.text-hide,html body.bootstrapiso>:not(#wpwrap) .text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}html body.bootstrapiso:not(#random_id_string)>.text-decoration-none,html body.bootstrapiso>:not(#wpwrap) .text-decoration-none{text-decoration:none!important}html body.bootstrapiso:not(#random_id_string)>.text-break,html body.bootstrapiso>:not(#wpwrap) .text-break{word-wrap:break-word!important}html body.bootstrapiso:not(#random_id_string)>.text-reset,html body.bootstrapiso>:not(#wpwrap) .text-reset{color:inherit!important}html body.bootstrapiso:not(#random_id_string)>.visible,html body.bootstrapiso>:not(#wpwrap) .visible{visibility:visible!important}html body.bootstrapiso:not(#random_id_string)>.invisible,html body.bootstrapiso>:not(#wpwrap) .invisible{visibility:hidden!important}@media print{html body.bootstrapiso:not(#random_id_string)>*,html body.bootstrapiso:not(#random_id_string)>:after,html body.bootstrapiso:not(#random_id_string)>:before,html body.bootstrapiso>:not(#wpwrap) *,html body.bootstrapiso>:not(#wpwrap) :after,html body.bootstrapiso>:not(#wpwrap) :before{text-shadow:none!important;box-shadow:none!important}html body.bootstrapiso:not(#random_id_string)>a:not(.btn),html body.bootstrapiso>:not(#wpwrap) a:not(.btn){text-decoration:underline}html body.bootstrapiso:not(#random_id_string)>abbr[title]:after,html body.bootstrapiso>:not(#wpwrap) abbr[title]:after{content:" (" attr(title) ")"}html body.bootstrapiso:not(#random_id_string)>pre,html body.bootstrapiso>:not(#wpwrap) pre{white-space:pre-wrap!important}html body.bootstrapiso:not(#random_id_string)>blockquote,html body.bootstrapiso:not(#random_id_string)>pre,html body.bootstrapiso>:not(#wpwrap) blockquote,html body.bootstrapiso>:not(#wpwrap) pre{border:1px solid #adb5bd;page-break-inside:avoid}html body.bootstrapiso:not(#random_id_string)>thead,html body.bootstrapiso>:not(#wpwrap) thead{display:table-header-group}html body.bootstrapiso:not(#random_id_string)>img,html body.bootstrapiso:not(#random_id_string)>tr,html body.bootstrapiso>:not(#wpwrap) img,html body.bootstrapiso>:not(#wpwrap) tr{page-break-inside:avoid}html body.bootstrapiso:not(#random_id_string)>h2,html body.bootstrapiso:not(#random_id_string)>h3,html body.bootstrapiso:not(#random_id_string)>p,html body.bootstrapiso>:not(#wpwrap) h2,html body.bootstrapiso>:not(#wpwrap) h3,html body.bootstrapiso>:not(#wpwrap) p{orphans:3;widows:3}html body.bootstrapiso:not(#random_id_string)>h2,html body.bootstrapiso:not(#random_id_string)>h3,html body.bootstrapiso>:not(#wpwrap) h2,html body.bootstrapiso>:not(#wpwrap) h3{page-break-after:avoid}@page{html body.bootstrapiso:not(#random_id_string)>,html body.bootstrapiso>:not(#wpwrap){size:a3}}html body.bootstrapiso:not(#random_id_string)>.container,html body.bootstrapiso:not(#random_id_string)>body,html body.bootstrapiso>:not(#wpwrap) .container,html body.bootstrapiso>:not(#wpwrap) body{min-width:992px!important}html body.bootstrapiso:not(#random_id_string)>.navbar,html body.bootstrapiso>:not(#wpwrap) .navbar{display:none}html body.bootstrapiso:not(#random_id_string)>.badge,html body.bootstrapiso>:not(#wpwrap) .badge{border:1px solid #000}html body.bootstrapiso:not(#random_id_string)>.table,html body.bootstrapiso>:not(#wpwrap) .table{border-collapse:collapse!important}html body.bootstrapiso:not(#random_id_string)>.table td,html body.bootstrapiso:not(#random_id_string)>.table th,html body.bootstrapiso>:not(#wpwrap) .table td,html body.bootstrapiso>:not(#wpwrap) .table th{background-color:#fff!important}html body.bootstrapiso:not(#random_id_string)>.table-bordered td,html body.bootstrapiso:not(#random_id_string)>.table-bordered th,html body.bootstrapiso>:not(#wpwrap) .table-bordered td,html body.bootstrapiso>:not(#wpwrap) .table-bordered th{border:1px solid #dee2e6!important}html body.bootstrapiso:not(#random_id_string)>.table-dark,html body.bootstrapiso>:not(#wpwrap) .table-dark{color:inherit}html body.bootstrapiso:not(#random_id_string)>.table-dark tbody+tbody,html body.bootstrapiso:not(#random_id_string)>.table-dark td,html body.bootstrapiso:not(#random_id_string)>.table-dark th,html body.bootstrapiso:not(#random_id_string)>.table-dark thead th,html body.bootstrapiso>:not(#wpwrap) .table-dark tbody+tbody,html body.bootstrapiso>:not(#wpwrap) .table-dark td,html body.bootstrapiso>:not(#wpwrap) .table-dark th,html body.bootstrapiso>:not(#wpwrap) .table-dark thead th{border-color:#dee2e6}html body.bootstrapiso:not(#random_id_string)>.table .thead-dark th,html body.bootstrapiso>:not(#wpwrap) .table .thead-dark th{color:inherit;border-color:#dee2e6}}html body.bootstrapiso:not(#random_id_string)>.modal,html body.bootstrapiso>:not(#wpwrap) .modal{overflow-y:auto!important;z-index:100001!important}html body.bootstrapiso:not(#random_id_string)>.modal-backdrop.show,html body.bootstrapiso>:not(#wpwrap) .modal-backdrop.show{z-index:100000!important}
1
  .bootstrapiso>:not(#wpwrap){font-family:sans-serif;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0);margin:0;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left}html body.bootstrapiso:not(#random_id_string)>,html body.bootstrapiso>:not(#wpwrap){/*!
2
+ * Bootstrap v4.6.0 (https://getbootstrap.com/)
3
+ * Copyright 2011-2021 The Bootstrap Authors
4
+ * Copyright 2011-2021 Twitter, Inc.
5
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
6
+ */}html body.bootstrapiso:not(#random_id_string)>:root,html body.bootstrapiso>:not(#wpwrap) :root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#6c757d;--gray-dark:#343a40;--primary:#007bff;--secondary:#6c757d;--success:#28a745;--info:#17a2b8;--warning:#ffc107;--danger:#dc3545;--light:#f8f9fa;--dark:#343a40;--breakpoint-xs:0;--breakpoint-sm:576px;--breakpoint-md:768px;--breakpoint-lg:992px;--breakpoint-xl:1200px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}html body.bootstrapiso:not(#random_id_string)>*,html body.bootstrapiso:not(#random_id_string)>:after,html body.bootstrapiso:not(#random_id_string)>:before,html body.bootstrapiso>:not(#wpwrap) *,html body.bootstrapiso>:not(#wpwrap) :after,html body.bootstrapiso>:not(#wpwrap) :before{box-sizing:border-box}html body.bootstrapiso:not(#random_id_string)>html,html body.bootstrapiso>:not(#wpwrap) html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}html body.bootstrapiso:not(#random_id_string)>article,html body.bootstrapiso:not(#random_id_string)>aside,html body.bootstrapiso:not(#random_id_string)>figcaption,html body.bootstrapiso:not(#random_id_string)>figure,html body.bootstrapiso:not(#random_id_string)>footer,html body.bootstrapiso:not(#random_id_string)>header,html body.bootstrapiso:not(#random_id_string)>hgroup,html body.bootstrapiso:not(#random_id_string)>main,html body.bootstrapiso:not(#random_id_string)>nav,html body.bootstrapiso:not(#random_id_string)>section,html body.bootstrapiso>:not(#wpwrap) article,html body.bootstrapiso>:not(#wpwrap) aside,html body.bootstrapiso>:not(#wpwrap) figcaption,html body.bootstrapiso>:not(#wpwrap) figure,html body.bootstrapiso>:not(#wpwrap) footer,html body.bootstrapiso>:not(#wpwrap) header,html body.bootstrapiso>:not(#wpwrap) hgroup,html body.bootstrapiso>:not(#wpwrap) main,html body.bootstrapiso>:not(#wpwrap) nav,html body.bootstrapiso>:not(#wpwrap) section{display:block}html body.bootstrapiso:not(#random_id_string)>body,html body.bootstrapiso>:not(#wpwrap) body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}html body.bootstrapiso:not(#random_id_string)>[tabindex="-1"]:focus:not(:focus-visible),html body.bootstrapiso>:not(#wpwrap) [tabindex="-1"]:focus:not(:focus-visible){outline:0!important}html body.bootstrapiso:not(#random_id_string)>hr,html body.bootstrapiso>:not(#wpwrap) hr{box-sizing:content-box;height:0;overflow:visible}html body.bootstrapiso:not(#random_id_string)>h1,html body.bootstrapiso:not(#random_id_string)>h2,html body.bootstrapiso:not(#random_id_string)>h3,html body.bootstrapiso:not(#random_id_string)>h4,html body.bootstrapiso:not(#random_id_string)>h5,html body.bootstrapiso:not(#random_id_string)>h6,html body.bootstrapiso>:not(#wpwrap) h1,html body.bootstrapiso>:not(#wpwrap) h2,html body.bootstrapiso>:not(#wpwrap) h3,html body.bootstrapiso>:not(#wpwrap) h4,html body.bootstrapiso>:not(#wpwrap) h5,html body.bootstrapiso>:not(#wpwrap) h6{margin-top:0;margin-bottom:.5rem}html body.bootstrapiso:not(#random_id_string)>p,html body.bootstrapiso>:not(#wpwrap) p{margin-top:0;margin-bottom:1rem}html body.bootstrapiso:not(#random_id_string)>abbr[data-original-title],html body.bootstrapiso:not(#random_id_string)>abbr[title],html body.bootstrapiso>:not(#wpwrap) abbr[data-original-title],html body.bootstrapiso>:not(#wpwrap) abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}html body.bootstrapiso:not(#random_id_string)>address,html body.bootstrapiso>:not(#wpwrap) address{margin-bottom:1rem;font-style:normal;line-height:inherit}html body.bootstrapiso:not(#random_id_string)>dl,html body.bootstrapiso:not(#random_id_string)>ol,html body.bootstrapiso:not(#random_id_string)>ul,html body.bootstrapiso>:not(#wpwrap) dl,html body.bootstrapiso>:not(#wpwrap) ol,html body.bootstrapiso>:not(#wpwrap) ul{margin-top:0;margin-bottom:1rem}html body.bootstrapiso:not(#random_id_string)>ol ol,html body.bootstrapiso:not(#random_id_string)>ol ul,html body.bootstrapiso:not(#random_id_string)>ul ol,html body.bootstrapiso:not(#random_id_string)>ul ul,html body.bootstrapiso>:not(#wpwrap) ol ol,html body.bootstrapiso>:not(#wpwrap) ol ul,html body.bootstrapiso>:not(#wpwrap) ul ol,html body.bootstrapiso>:not(#wpwrap) ul ul{margin-bottom:0}html body.bootstrapiso:not(#random_id_string)>dt,html body.bootstrapiso>:not(#wpwrap) dt{font-weight:700}html body.bootstrapiso:not(#random_id_string)>dd,html body.bootstrapiso>:not(#wpwrap) dd{margin-bottom:.5rem;margin-left:0}html body.bootstrapiso:not(#random_id_string)>blockquote,html body.bootstrapiso>:not(#wpwrap) blockquote{margin:0 0 1rem}html body.bootstrapiso:not(#random_id_string)>b,html body.bootstrapiso:not(#random_id_string)>strong,html body.bootstrapiso>:not(#wpwrap) b,html body.bootstrapiso>:not(#wpwrap) strong{font-weight:bolder}html body.bootstrapiso:not(#random_id_string)>small,html body.bootstrapiso>:not(#wpwrap) small{font-size:80%}html body.bootstrapiso:not(#random_id_string)>sub,html body.bootstrapiso:not(#random_id_string)>sup,html body.bootstrapiso>:not(#wpwrap) sub,html body.bootstrapiso>:not(#wpwrap) sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}html body.bootstrapiso:not(#random_id_string)>sub,html body.bootstrapiso>:not(#wpwrap) sub{bottom:-.25em}html body.bootstrapiso:not(#random_id_string)>sup,html body.bootstrapiso>:not(#wpwrap) sup{top:-.5em}html body.bootstrapiso:not(#random_id_string)>a,html body.bootstrapiso>:not(#wpwrap) a{color:#007bff;text-decoration:none;background-color:transparent}html body.bootstrapiso:not(#random_id_string)>a:hover,html body.bootstrapiso>:not(#wpwrap) a:hover{color:#0056b3;text-decoration:underline}html body.bootstrapiso:not(#random_id_string)>a:not([href]):not([class]),html body.bootstrapiso:not(#random_id_string)>a:not([href]):not([class]):hover,html body.bootstrapiso>:not(#wpwrap) a:not([href]):not([class]),html body.bootstrapiso>:not(#wpwrap) a:not([href]):not([class]):hover{color:inherit;text-decoration:none}html body.bootstrapiso:not(#random_id_string)>code,html body.bootstrapiso:not(#random_id_string)>kbd,html body.bootstrapiso:not(#random_id_string)>pre,html body.bootstrapiso:not(#random_id_string)>samp,html body.bootstrapiso>:not(#wpwrap) code,html body.bootstrapiso>:not(#wpwrap) kbd,html body.bootstrapiso>:not(#wpwrap) pre,html body.bootstrapiso>:not(#wpwrap) samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}html body.bootstrapiso:not(#random_id_string)>pre,html body.bootstrapiso>:not(#wpwrap) pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}html body.bootstrapiso:not(#random_id_string)>figure,html body.bootstrapiso>:not(#wpwrap) figure{margin:0 0 1rem}html body.bootstrapiso:not(#random_id_string)>img,html body.bootstrapiso>:not(#wpwrap) img{vertical-align:middle;border-style:none}html body.bootstrapiso:not(#random_id_string)>svg,html body.bootstrapiso>:not(#wpwrap) svg{overflow:hidden;vertical-align:middle}html body.bootstrapiso:not(#random_id_string)>table,html body.bootstrapiso>:not(#wpwrap) table{border-collapse:collapse}html body.bootstrapiso:not(#random_id_string)>caption,html body.bootstrapiso>:not(#wpwrap) caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}html body.bootstrapiso:not(#random_id_string)>th,html body.bootstrapiso>:not(#wpwrap) th{text-align:inherit;text-align:-webkit-match-parent}html body.bootstrapiso:not(#random_id_string)>label,html body.bootstrapiso>:not(#wpwrap) label{display:inline-block;margin-bottom:.5rem}html body.bootstrapiso:not(#random_id_string)>button,html body.bootstrapiso>:not(#wpwrap) button{border-radius:0}html body.bootstrapiso:not(#random_id_string)>button:focus:not(:focus-visible),html body.bootstrapiso>:not(#wpwrap) button:focus:not(:focus-visible){outline:0}html body.bootstrapiso:not(#random_id_string)>button,html body.bootstrapiso:not(#random_id_string)>input,html body.bootstrapiso:not(#random_id_string)>optgroup,html body.bootstrapiso:not(#random_id_string)>select,html body.bootstrapiso:not(#random_id_string)>textarea,html body.bootstrapiso>:not(#wpwrap) button,html body.bootstrapiso>:not(#wpwrap) input,html body.bootstrapiso>:not(#wpwrap) optgroup,html body.bootstrapiso>:not(#wpwrap) select,html body.bootstrapiso>:not(#wpwrap) textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}html body.bootstrapiso:not(#random_id_string)>button,html body.bootstrapiso:not(#random_id_string)>input,html body.bootstrapiso>:not(#wpwrap) button,html body.bootstrapiso>:not(#wpwrap) input{overflow:visible}html body.bootstrapiso:not(#random_id_string)>button,html body.bootstrapiso:not(#random_id_string)>select,html body.bootstrapiso>:not(#wpwrap) button,html body.bootstrapiso>:not(#wpwrap) select{text-transform:none}html body.bootstrapiso:not(#random_id_string)>[role=button],html body.bootstrapiso>:not(#wpwrap) [role=button]{cursor:pointer}html body.bootstrapiso:not(#random_id_string)>select,html body.bootstrapiso>:not(#wpwrap) select{word-wrap:normal}html body.bootstrapiso:not(#random_id_string)>[type=button],html body.bootstrapiso:not(#random_id_string)>[type=reset],html body.bootstrapiso:not(#random_id_string)>[type=submit],html body.bootstrapiso:not(#random_id_string)>button,html body.bootstrapiso>:not(#wpwrap) [type=button],html body.bootstrapiso>:not(#wpwrap) [type=reset],html body.bootstrapiso>:not(#wpwrap) [type=submit],html body.bootstrapiso>:not(#wpwrap) button{-webkit-appearance:button}html body.bootstrapiso:not(#random_id_string)>[type=button]:not(:disabled),html body.bootstrapiso:not(#random_id_string)>[type=reset]:not(:disabled),html body.bootstrapiso:not(#random_id_string)>[type=submit]:not(:disabled),html body.bootstrapiso:not(#random_id_string)>button:not(:disabled),html body.bootstrapiso>:not(#wpwrap) [type=button]:not(:disabled),html body.bootstrapiso>:not(#wpwrap) [type=reset]:not(:disabled),html body.bootstrapiso>:not(#wpwrap) [type=submit]:not(:disabled),html body.bootstrapiso>:not(#wpwrap) button:not(:disabled){cursor:pointer}html body.bootstrapiso:not(#random_id_string)>[type=button]::-moz-focus-inner,html body.bootstrapiso:not(#random_id_string)>[type=reset]::-moz-focus-inner,html body.bootstrapiso:not(#random_id_string)>[type=submit]::-moz-focus-inner,html body.bootstrapiso:not(#random_id_string)>button::-moz-focus-inner,html body.bootstrapiso>:not(#wpwrap) [type=button]::-moz-focus-inner,html body.bootstrapiso>:not(#wpwrap) [type=reset]::-moz-focus-inner,html body.bootstrapiso>:not(#wpwrap) [type=submit]::-moz-focus-inner,html body.bootstrapiso>:not(#wpwrap) button::-moz-focus-inner{padding:0;border-style:none}html body.bootstrapiso:not(#random_id_string)>input[type=checkbox],html body.bootstrapiso:not(#random_id_string)>input[type=radio],html body.bootstrapiso>:not(#wpwrap) input[type=checkbox],html body.bootstrapiso>:not(#wpwrap) input[type=radio]{box-sizing:border-box;padding:0}html body.bootstrapiso:not(#random_id_string)>textarea,html body.bootstrapiso>:not(#wpwrap) textarea{overflow:auto;resize:vertical}html body.bootstrapiso:not(#random_id_string)>fieldset,html body.bootstrapiso>:not(#wpwrap) fieldset{min-width:0;padding:0;margin:0;border:0}html body.bootstrapiso:not(#random_id_string)>legend,html body.bootstrapiso>:not(#wpwrap) legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}html body.bootstrapiso:not(#random_id_string)>progress,html body.bootstrapiso>:not(#wpwrap) progress{vertical-align:baseline}html body.bootstrapiso:not(#random_id_string)>[type=number]::-webkit-inner-spin-button,html body.bootstrapiso:not(#random_id_string)>[type=number]::-webkit-outer-spin-button,html body.bootstrapiso>:not(#wpwrap) [type=number]::-webkit-inner-spin-button,html body.bootstrapiso>:not(#wpwrap) [type=number]::-webkit-outer-spin-button{height:auto}html body.bootstrapiso:not(#random_id_string)>[type=search],html body.bootstrapiso>:not(#wpwrap) [type=search]{outline-offset:-2px;-webkit-appearance:none}html body.bootstrapiso:not(#random_id_string)>[type=search]::-webkit-search-decoration,html body.bootstrapiso>:not(#wpwrap) [type=search]::-webkit-search-decoration{-webkit-appearance:none}html body.bootstrapiso:not(#random_id_string)>::-webkit-file-upload-button,html body.bootstrapiso>:not(#wpwrap) ::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}html body.bootstrapiso:not(#random_id_string)>output,html body.bootstrapiso>:not(#wpwrap) output{display:inline-block}html body.bootstrapiso:not(#random_id_string)>summary,html body.bootstrapiso>:not(#wpwrap) summary{display:list-item;cursor:pointer}html body.bootstrapiso:not(#random_id_string)>template,html body.bootstrapiso>:not(#wpwrap) template{display:none}html body.bootstrapiso:not(#random_id_string)>[hidden],html body.bootstrapiso>:not(#wpwrap) [hidden]{display:none!important}html body.bootstrapiso:not(#random_id_string)>.h1,html body.bootstrapiso:not(#random_id_string)>.h2,html body.bootstrapiso:not(#random_id_string)>.h3,html body.bootstrapiso:not(#random_id_string)>.h4,html body.bootstrapiso:not(#random_id_string)>.h5,html body.bootstrapiso:not(#random_id_string)>.h6,html body.bootstrapiso:not(#random_id_string)>h1,html body.bootstrapiso:not(#random_id_string)>h2,html body.bootstrapiso:not(#random_id_string)>h3,html body.bootstrapiso:not(#random_id_string)>h4,html body.bootstrapiso:not(#random_id_string)>h5,html body.bootstrapiso:not(#random_id_string)>h6,html body.bootstrapiso>:not(#wpwrap) .h1,html body.bootstrapiso>:not(#wpwrap) .h2,html body.bootstrapiso>:not(#wpwrap) .h3,html body.bootstrapiso>:not(#wpwrap) .h4,html body.bootstrapiso>:not(#wpwrap) .h5,html body.bootstrapiso>:not(#wpwrap) .h6,html body.bootstrapiso>:not(#wpwrap) h1,html body.bootstrapiso>:not(#wpwrap) h2,html body.bootstrapiso>:not(#wpwrap) h3,html body.bootstrapiso>:not(#wpwrap) h4,html body.bootstrapiso>:not(#wpwrap) h5,html body.bootstrapiso>:not(#wpwrap) h6{margin-bottom:.5rem;font-weight:500;line-height:1.2}html body.bootstrapiso:not(#random_id_string)>.h1,html body.bootstrapiso:not(#random_id_string)>h1,html body.bootstrapiso>:not(#wpwrap) .h1,html body.bootstrapiso>:not(#wpwrap) h1{font-size:2.5rem}html body.bootstrapiso:not(#random_id_string)>.h2,html body.bootstrapiso:not(#random_id_string)>h2,html body.bootstrapiso>:not(#wpwrap) .h2,html body.bootstrapiso>:not(#wpwrap) h2{font-size:2rem}html body.bootstrapiso:not(#random_id_string)>.h3,html body.bootstrapiso:not(#random_id_string)>h3,html body.bootstrapiso>:not(#wpwrap) .h3,html body.bootstrapiso>:not(#wpwrap) h3{font-size:1.75rem}html body.bootstrapiso:not(#random_id_string)>.h4,html body.bootstrapiso:not(#random_id_string)>h4,html body.bootstrapiso>:not(#wpwrap) .h4,html body.bootstrapiso>:not(#wpwrap) h4{font-size:1.5rem}html body.bootstrapiso:not(#random_id_string)>.h5,html body.bootstrapiso:not(#random_id_string)>h5,html body.bootstrapiso>:not(#wpwrap) .h5,html body.bootstrapiso>:not(#wpwrap) h5{font-size:1.25rem}html body.bootstrapiso:not(#random_id_string)>.h6,html body.bootstrapiso:not(#random_id_string)>h6,html body.bootstrapiso>:not(#wpwrap) .h6,html body.bootstrapiso>:not(#wpwrap) h6{font-size:1rem}html body.bootstrapiso:not(#random_id_string)>.lead,html body.bootstrapiso>:not(#wpwrap) .lead{font-size:1.25rem;font-weight:300}html body.bootstrapiso:not(#random_id_string)>.display-1,html body.bootstrapiso>:not(#wpwrap) .display-1{font-size:6rem;font-weight:300;line-height:1.2}html body.bootstrapiso:not(#random_id_string)>.display-2,html body.bootstrapiso>:not(#wpwrap) .display-2{font-size:5.5rem;font-weight:300;line-height:1.2}html body.bootstrapiso:not(#random_id_string)>.display-3,html body.bootstrapiso>:not(#wpwrap) .display-3{font-size:4.5rem;font-weight:300;line-height:1.2}html body.bootstrapiso:not(#random_id_string)>.display-4,html body.bootstrapiso>:not(#wpwrap) .display-4{font-size:3.5rem;font-weight:300;line-height:1.2}html body.bootstrapiso:not(#random_id_string)>hr,html body.bootstrapiso>:not(#wpwrap) hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,.1)}html body.bootstrapiso:not(#random_id_string)>.small,html body.bootstrapiso:not(#random_id_string)>small,html body.bootstrapiso>:not(#wpwrap) .small,html body.bootstrapiso>:not(#wpwrap) small{font-size:80%;font-weight:400}html body.bootstrapiso:not(#random_id_string)>.mark,html body.bootstrapiso:not(#random_id_string)>mark,html body.bootstrapiso>:not(#wpwrap) .mark,html body.bootstrapiso>:not(#wpwrap) mark{padding:.2em;background-color:#fcf8e3}html body.bootstrapiso:not(#random_id_string)>.list-inline,html body.bootstrapiso:not(#random_id_string)>.list-unstyled,html body.bootstrapiso>:not(#wpwrap) .list-inline,html body.bootstrapiso>:not(#wpwrap) .list-unstyled{padding-left:0;list-style:none}html body.bootstrapiso:not(#random_id_string)>.list-inline-item,html body.bootstrapiso>:not(#wpwrap) .list-inline-item{display:inline-block}html body.bootstrapiso:not(#random_id_string)>.list-inline-item:not(:last-child),html body.bootstrapiso>:not(#wpwrap) .list-inline-item:not(:last-child){margin-right:.5rem}html body.bootstrapiso:not(#random_id_string)>.initialism,html body.bootstrapiso>:not(#wpwrap) .initialism{font-size:90%;text-transform:uppercase}html body.bootstrapiso:not(#random_id_string)>.blockquote,html body.bootstrapiso>:not(#wpwrap) .blockquote{margin-bottom:1rem;font-size:1.25rem}html body.bootstrapiso:not(#random_id_string)>.blockquote-footer,html body.bootstrapiso>:not(#wpwrap) .blockquote-footer{display:block;font-size:80%;color:#6c757d}html body.bootstrapiso:not(#random_id_string)>.blockquote-footer:before,html body.bootstrapiso>:not(#wpwrap) .blockquote-footer:before{content:"\2014\00A0"}html body.bootstrapiso:not(#random_id_string)>.img-fluid,html body.bootstrapiso>:not(#wpwrap) .img-fluid{max-width:100%;height:auto}html body.bootstrapiso:not(#random_id_string)>.img-thumbnail,html body.bootstrapiso>:not(#wpwrap) .img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}html body.bootstrapiso:not(#random_id_string)>.figure,html body.bootstrapiso>:not(#wpwrap) .figure{display:inline-block}html body.bootstrapiso:not(#random_id_string)>.figure-img,html body.bootstrapiso>:not(#wpwrap) .figure-img{margin-bottom:.5rem;line-height:1}html body.bootstrapiso:not(#random_id_string)>.figure-caption,html body.bootstrapiso>:not(#wpwrap) .figure-caption{font-size:90%;color:#6c757d}html body.bootstrapiso:not(#random_id_string)>code,html body.bootstrapiso>:not(#wpwrap) code{font-size:87.5%;color:#e83e8c;word-wrap:break-word}html body.bootstrapiso:not(#random_id_string)>a>code,html body.bootstrapiso>:not(#wpwrap) a>code{color:inherit}html body.bootstrapiso:not(#random_id_string)>kbd,html body.bootstrapiso>:not(#wpwrap) kbd{padding:.2rem .4rem;font-size:87.5%;color:#fff;background-color:#212529;border-radius:.2rem}html body.bootstrapiso:not(#random_id_string)>kbd kbd,html body.bootstrapiso>:not(#wpwrap) kbd kbd{padding:0;font-size:100%;font-weight:700}html body.bootstrapiso:not(#random_id_string)>pre,html body.bootstrapiso>:not(#wpwrap) pre{display:block;font-size:87.5%;color:#212529}html body.bootstrapiso:not(#random_id_string)>pre code,html body.bootstrapiso>:not(#wpwrap) pre code{font-size:inherit;color:inherit;word-break:normal}html body.bootstrapiso:not(#random_id_string)>.pre-scrollable,html body.bootstrapiso>:not(#wpwrap) .pre-scrollable{max-height:340px;overflow-y:scroll}html body.bootstrapiso:not(#random_id_string)>.container,html body.bootstrapiso:not(#random_id_string)>.container-fluid,html body.bootstrapiso:not(#random_id_string)>.container-lg,html body.bootstrapiso:not(#random_id_string)>.container-md,html body.bootstrapiso:not(#random_id_string)>.container-sm,html body.bootstrapiso:not(#random_id_string)>.container-xl,html body.bootstrapiso>:not(#wpwrap) .container,html body.bootstrapiso>:not(#wpwrap) .container-fluid,html body.bootstrapiso>:not(#wpwrap) .container-lg,html body.bootstrapiso>:not(#wpwrap) .container-md,html body.bootstrapiso>:not(#wpwrap) .container-sm,html body.bootstrapiso>:not(#wpwrap) .container-xl{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){html body.bootstrapiso:not(#random_id_string)>.container,html body.bootstrapiso:not(#random_id_string)>.container-sm,html body.bootstrapiso>:not(#wpwrap) .container,html body.bootstrapiso>:not(#wpwrap) .container-sm{max-width:540px}}@media (min-width:768px){html body.bootstrapiso:not(#random_id_string)>.container,html body.bootstrapiso:not(#random_id_string)>.container-md,html body.bootstrapiso:not(#random_id_string)>.container-sm,html body.bootstrapiso>:not(#wpwrap) .container,html body.bootstrapiso>:not(#wpwrap) .container-md,html body.bootstrapiso>:not(#wpwrap) .container-sm{max-width:720px}}@media (min-width:992px){html body.bootstrapiso:not(#random_id_string)>.container,html body.bootstrapiso:not(#random_id_string)>.container-lg,html body.bootstrapiso:not(#random_id_string)>.container-md,html body.bootstrapiso:not(#random_id_string)>.container-sm,html body.bootstrapiso>:not(#wpwrap) .container,html body.bootstrapiso>:not(#wpwrap) .container-lg,html body.bootstrapiso>:not(#wpwrap) .container-md,html body.bootstrapiso>:not(#wpwrap) .container-sm{max-width:960px}}@media (min-width:1200px){html body.bootstrapiso:not(#random_id_string)>.container,html body.bootstrapiso:not(#random_id_string)>.container-lg,html body.bootstrapiso:not(#random_id_string)>.container-md,html body.bootstrapiso:not(#random_id_string)>.container-sm,html body.bootstrapiso:not(#random_id_string)>.container-xl,html body.bootstrapiso>:not(#wpwrap) .container,html body.bootstrapiso>:not(#wpwrap) .container-lg,html body.bootstrapiso>:not(#wpwrap) .container-md,html body.bootstrapiso>:not(#wpwrap) .container-sm,html body.bootstrapiso>:not(#wpwrap) .container-xl{max-width:1140px}}html body.bootstrapiso:not(#random_id_string)>.row,html body.bootstrapiso>:not(#wpwrap) .row{display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}html body.bootstrapiso:not(#random_id_string)>.no-gutters,html body.bootstrapiso>:not(#wpwrap) .no-gutters{margin-right:0;margin-left:0}html body.bootstrapiso:not(#random_id_string)>.no-gutters>.col,html body.bootstrapiso:not(#random_id_string)>.no-gutters>[class*=col-],html body.bootstrapiso>:not(#wpwrap) .no-gutters>.col,html body.bootstrapiso>:not(#wpwrap) .no-gutters>[class*=col-]{padding-right:0;padding-left:0}html body.bootstrapiso:not(#random_id_string)>.col,html body.bootstrapiso:not(#random_id_string)>.col-1,html body.bootstrapiso:not(#random_id_string)>.col-2,html body.bootstrapiso:not(#random_id_string)>.col-3,html body.bootstrapiso:not(#random_id_string)>.col-4,html body.bootstrapiso:not(#random_id_string)>.col-5,html body.bootstrapiso:not(#random_id_string)>.col-6,html body.bootstrapiso:not(#random_id_string)>.col-7,html body.bootstrapiso:not(#random_id_string)>.col-8,html body.bootstrapiso:not(#random_id_string)>.col-9,html body.bootstrapiso:not(#random_id_string)>.col-10,html body.bootstrapiso:not(#random_id_string)>.col-11,html body.bootstrapiso:not(#random_id_string)>.col-12,html body.bootstrapiso:not(#random_id_string)>.col-auto,html body.bootstrapiso:not(#random_id_string)>.col-lg,html body.bootstrapiso:not(#random_id_string)>.col-lg-1,html body.bootstrapiso:not(#random_id_string)>.col-lg-2,html body.bootstrapiso:not(#random_id_string)>.col-lg-3,html body.bootstrapiso:not(#random_id_string)>.col-lg-4,html body.bootstrapiso:not(#random_id_string)>.col-lg-5,html body.bootstrapiso:not(#random_id_string)>.col-lg-6,html body.bootstrapiso:not(#random_id_string)>.col-lg-7,html body.bootstrapiso:not(#random_id_string)>.col-lg-8,html body.bootstrapiso:not(#random_id_string)>.col-lg-9,html body.bootstrapiso:not(#random_id_string)>.col-lg-10,html body.bootstrapiso:not(#random_id_string)>.col-lg-11,html body.bootstrapiso:not(#random_id_string)>.col-lg-12,html body.bootstrapiso:not(#random_id_string)>.col-lg-auto,html body.bootstrapiso:not(#random_id_string)>.col-md,html body.bootstrapiso:not(#random_id_string)>.col-md-1,html body.bootstrapiso:not(#random_id_string)>.col-md-2,html body.bootstrapiso:not(#random_id_string)>.col-md-3,html body.bootstrapiso:not(#random_id_string)>.col-md-4,html body.bootstrapiso:not(#random_id_string)>.col-md-5,html body.bootstrapiso:not(#random_id_string)>.col-md-6,html body.bootstrapiso:not(#random_id_string)>.col-md-7,html body.bootstrapiso:not(#random_id_string)>.col-md-8,html body.bootstrapiso:not(#random_id_string)>.col-md-9,html body.bootstrapiso:not(#random_id_string)>.col-md-10,html body.bootstrapiso:not(#random_id_string)>.col-md-11,html body.bootstrapiso:not(#random_id_string)>.col-md-12,html body.bootstrapiso:not(#random_id_string)>.col-md-auto,html body.bootstrapiso:not(#random_id_string)>.col-sm,html body.bootstrapiso:not(#random_id_string)>.col-sm-1,html body.bootstrapiso:not(#random_id_string)>.col-sm-2,html body.bootstrapiso:not(#random_id_string)>.col-sm-3,html body.bootstrapiso:not(#random_id_string)>.col-sm-4,html body.bootstrapiso:not(#random_id_string)>.col-sm-5,html body.bootstrapiso:not(#random_id_string)>.col-sm-6,html body.bootstrapiso:not(#random_id_string)>.col-sm-7,html body.bootstrapiso:not(#random_id_string)>.col-sm-8,html body.bootstrapiso:not(#random_id_string)>.col-sm-9,html body.bootstrapiso:not(#random_id_string)>.col-sm-10,html body.bootstrapiso:not(#random_id_string)>.col-sm-11,html body.bootstrapiso:not(#random_id_string)>.col-sm-12,html body.bootstrapiso:not(#random_id_string)>.col-sm-auto,html body.bootstrapiso:not(#random_id_string)>.col-xl,html body.bootstrapiso:not(#random_id_string)>.col-xl-1,html body.bootstrapiso:not(#random_id_string)>.col-xl-2,html body.bootstrapiso:not(#random_id_string)>.col-xl-3,html body.bootstrapiso:not(#random_id_string)>.col-xl-4,html body.bootstrapiso:not(#random_id_string)>.col-xl-5,html body.bootstrapiso:not(#random_id_string)>.col-xl-6,html body.bootstrapiso:not(#random_id_string)>.col-xl-7,html body.bootstrapiso:not(#random_id_string)>.col-xl-8,html body.bootstrapiso:not(#random_id_string)>.col-xl-9,html body.bootstrapiso:not(#random_id_string)>.col-xl-10,html body.bootstrapiso:not(#random_id_string)>.col-xl-11,html body.bootstrapiso:not(#random_id_string)>.col-xl-12,html body.bootstrapiso:not(#random_id_string)>.col-xl-auto,html body.bootstrapiso>:not(#wpwrap) .col,html body.bootstrapiso>:not(#wpwrap) .col-1,html body.bootstrapiso>:not(#wpwrap) .col-2,html body.bootstrapiso>:not(#wpwrap) .col-3,html body.bootstrapiso>:not(#wpwrap) .col-4,html body.bootstrapiso>:not(#wpwrap) .col-5,html body.bootstrapiso>:not(#wpwrap) .col-6,html body.bootstrapiso>:not(#wpwrap) .col-7,html body.bootstrapiso>:not(#wpwrap) .col-8,html body.bootstrapiso>:not(#wpwrap) .col-9,html body.bootstrapiso>:not(#wpwrap) .col-10,html body.bootstrapiso>:not(#wpwrap) .col-11,html body.bootstrapiso>:not(#wpwrap) .col-12,html body.bootstrapiso>:not(#wpwrap) .col-auto,html body.bootstrapiso>:not(#wpwrap) .col-lg,html body.bootstrapiso>:not(#wpwrap) .col-lg-1,html body.bootstrapiso>:not(#wpwrap) .col-lg-2,html body.bootstrapiso>:not(#wpwrap) .col-lg-3,html body.bootstrapiso>:not(#wpwrap) .col-lg-4,html body.bootstrapiso>:not(#wpwrap) .col-lg-5,html body.bootstrapiso>:not(#wpwrap) .col-lg-6,html body.bootstrapiso>:not(#wpwrap) .col-lg-7,html body.bootstrapiso>:not(#wpwrap) .col-lg-8,html body.bootstrapiso>:not(#wpwrap) .col-lg-9,html body.bootstrapiso>:not(#wpwrap) .col-lg-10,html body.bootstrapiso>:not(#wpwrap) .col-lg-11,html body.bootstrapiso>:not(#wpwrap) .col-lg-12,html body.bootstrapiso>:not(#wpwrap) .col-lg-auto,html body.bootstrapiso>:not(#wpwrap) .col-md,html body.bootstrapiso>:not(#wpwrap) .col-md-1,html body.bootstrapiso>:not(#wpwrap) .col-md-2,html body.bootstrapiso>:not(#wpwrap) .col-md-3,html body.bootstrapiso>:not(#wpwrap) .col-md-4,html body.bootstrapiso>:not(#wpwrap) .col-md-5,html body.bootstrapiso>:not(#wpwrap) .col-md-6,html body.bootstrapiso>:not(#wpwrap) .col-md-7,html body.bootstrapiso>:not(#wpwrap) .col-md-8,html body.bootstrapiso>:not(#wpwrap) .col-md-9,html body.bootstrapiso>:not(#wpwrap) .col-md-10,html body.bootstrapiso>:not(#wpwrap) .col-md-11,html body.bootstrapiso>:not(#wpwrap) .col-md-12,html body.bootstrapiso>:not(#wpwrap) .col-md-auto,html body.bootstrapiso>:not(#wpwrap) .col-sm,html body.bootstrapiso>:not(#wpwrap) .col-sm-1,html body.bootstrapiso>:not(#wpwrap) .col-sm-2,html body.bootstrapiso>:not(#wpwrap) .col-sm-3,html body.bootstrapiso>:not(#wpwrap) .col-sm-4,html body.bootstrapiso>:not(#wpwrap) .col-sm-5,html body.bootstrapiso>:not(#wpwrap) .col-sm-6,html body.bootstrapiso>:not(#wpwrap) .col-sm-7,html body.bootstrapiso>:not(#wpwrap) .col-sm-8,html body.bootstrapiso>:not(#wpwrap) .col-sm-9,html body.bootstrapiso>:not(#wpwrap) .col-sm-10,html body.bootstrapiso>:not(#wpwrap) .col-sm-11,html body.bootstrapiso>:not(#wpwrap) .col-sm-12,html body.bootstrapiso>:not(#wpwrap) .col-sm-auto,html body.bootstrapiso>:not(#wpwrap) .col-xl,html body.bootstrapiso>:not(#wpwrap) .col-xl-1,html body.bootstrapiso>:not(#wpwrap) .col-xl-2,html body.bootstrapiso>:not(#wpwrap) .col-xl-3,html body.bootstrapiso>:not(#wpwrap) .col-xl-4,html body.bootstrapiso>:not(#wpwrap) .col-xl-5,html body.bootstrapiso>:not(#wpwrap) .col-xl-6,html body.bootstrapiso>:not(#wpwrap) .col-xl-7,html body.bootstrapiso>:not(#wpwrap) .col-xl-8,html body.bootstrapiso>:not(#wpwrap) .col-xl-9,html body.bootstrapiso>:not(#wpwrap) .col-xl-10,html body.bootstrapiso>:not(#wpwrap) .col-xl-11,html body.bootstrapiso>:not(#wpwrap) .col-xl-12,html body.bootstrapiso>:not(#wpwrap) .col-xl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}html body.bootstrapiso:not(#random_id_string)>.col,html body.bootstrapiso>:not(#wpwrap) .col{-webkit-flex-basis:0;flex-basis:0;-webkit-flex-grow:1;flex-grow:1;max-width:100%}html body.bootstrapiso:not(#random_id_string)>.row-cols-1>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-1>*{-webkit-flex:0 0 100%;flex:0 0 100%;max-width:100%}html body.bootstrapiso:not(#random_id_string)>.row-cols-2>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-2>*{-webkit-flex:0 0 50%;flex:0 0 50%;max-width:50%}html body.bootstrapiso:not(#random_id_string)>.row-cols-3>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-3>*{-webkit-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}html body.bootstrapiso:not(#random_id_string)>.row-cols-4>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-4>*{-webkit-flex:0 0 25%;flex:0 0 25%;max-width:25%}html body.bootstrapiso:not(#random_id_string)>.row-cols-5>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-5>*{-webkit-flex:0 0 20%;flex:0 0 20%;max-width:20%}html body.bootstrapiso:not(#random_id_string)>.row-cols-6>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-6>*{-webkit-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}html body.bootstrapiso:not(#random_id_string)>.col-auto,html body.bootstrapiso>:not(#wpwrap) .col-auto{-webkit-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}html body.bootstrapiso:not(#random_id_string)>.col-1,html body.bootstrapiso>:not(#wpwrap) .col-1{-webkit-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}html body.bootstrapiso:not(#random_id_string)>.col-2,html body.bootstrapiso>:not(#wpwrap) .col-2{-webkit-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}html body.bootstrapiso:not(#random_id_string)>.col-3,html body.bootstrapiso>:not(#wpwrap) .col-3{-webkit-flex:0 0 25%;flex:0 0 25%;max-width:25%}html body.bootstrapiso:not(#random_id_string)>.col-4,html body.bootstrapiso>:not(#wpwrap) .col-4{-webkit-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}html body.bootstrapiso:not(#random_id_string)>.col-5,html body.bootstrapiso>:not(#wpwrap) .col-5{-webkit-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}html body.bootstrapiso:not(#random_id_string)>.col-6,html body.bootstrapiso>:not(#wpwrap) .col-6{-webkit-flex:0 0 50%;flex:0 0 50%;max-width:50%}html body.bootstrapiso:not(#random_id_string)>.col-7,html body.bootstrapiso>:not(#wpwrap) .col-7{-webkit-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}html body.bootstrapiso:not(#random_id_string)>.col-8,html body.bootstrapiso>:not(#wpwrap) .col-8{-webkit-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}html body.bootstrapiso:not(#random_id_string)>.col-9,html body.bootstrapiso>:not(#wpwrap) .col-9{-webkit-flex:0 0 75%;flex:0 0 75%;max-width:75%}html body.bootstrapiso:not(#random_id_string)>.col-10,html body.bootstrapiso>:not(#wpwrap) .col-10{-webkit-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}html body.bootstrapiso:not(#random_id_string)>.col-11,html body.bootstrapiso>:not(#wpwrap) .col-11{-webkit-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}html body.bootstrapiso:not(#random_id_string)>.col-12,html body.bootstrapiso>:not(#wpwrap) .col-12{-webkit-flex:0 0 100%;flex:0 0 100%;max-width:100%}html body.bootstrapiso:not(#random_id_string)>.order-first,html body.bootstrapiso>:not(#wpwrap) .order-first{-webkit-order:-1;order:-1}html body.bootstrapiso:not(#random_id_string)>.order-last,html body.bootstrapiso>:not(#wpwrap) .order-last{-webkit-order:13;order:13}html body.bootstrapiso:not(#random_id_string)>.order-0,html body.bootstrapiso>:not(#wpwrap) .order-0{-webkit-order:0;order:0}html body.bootstrapiso:not(#random_id_string)>.order-1,html body.bootstrapiso>:not(#wpwrap) .order-1{-webkit-order:1;order:1}html body.bootstrapiso:not(#random_id_string)>.order-2,html body.bootstrapiso>:not(#wpwrap) .order-2{-webkit-order:2;order:2}html body.bootstrapiso:not(#random_id_string)>.order-3,html body.bootstrapiso>:not(#wpwrap) .order-3{-webkit-order:3;order:3}html body.bootstrapiso:not(#random_id_string)>.order-4,html body.bootstrapiso>:not(#wpwrap) .order-4{-webkit-order:4;order:4}html body.bootstrapiso:not(#random_id_string)>.order-5,html body.bootstrapiso>:not(#wpwrap) .order-5{-webkit-order:5;order:5}html body.bootstrapiso:not(#random_id_string)>.order-6,html body.bootstrapiso>:not(#wpwrap) .order-6{-webkit-order:6;order:6}html body.bootstrapiso:not(#random_id_string)>.order-7,html body.bootstrapiso>:not(#wpwrap) .order-7{-webkit-order:7;order:7}html body.bootstrapiso:not(#random_id_string)>.order-8,html body.bootstrapiso>:not(#wpwrap) .order-8{-webkit-order:8;order:8}html body.bootstrapiso:not(#random_id_string)>.order-9,html body.bootstrapiso>:not(#wpwrap) .order-9{-webkit-order:9;order:9}html body.bootstrapiso:not(#random_id_string)>.order-10,html body.bootstrapiso>:not(#wpwrap) .order-10{-webkit-order:10;order:10}html body.bootstrapiso:not(#random_id_string)>.order-11,html body.bootstrapiso>:not(#wpwrap) .order-11{-webkit-order:11;order:11}html body.bootstrapiso:not(#random_id_string)>.order-12,html body.bootstrapiso>:not(#wpwrap) .order-12{-webkit-order:12;order:12}html body.bootstrapiso:not(#random_id_string)>.offset-1,html body.bootstrapiso>:not(#wpwrap) .offset-1{margin-left:8.333333%}html body.bootstrapiso:not(#random_id_string)>.offset-2,html body.bootstrapiso>:not(#wpwrap) .offset-2{margin-left:16.666667%}html body.bootstrapiso:not(#random_id_string)>.offset-3,html body.bootstrapiso>:not(#wpwrap) .offset-3{margin-left:25%}html body.bootstrapiso:not(#random_id_string)>.offset-4,html body.bootstrapiso>:not(#wpwrap) .offset-4{margin-left:33.333333%}html body.bootstrapiso:not(#random_id_string)>.offset-5,html body.bootstrapiso>:not(#wpwrap) .offset-5{margin-left:41.666667%}html body.bootstrapiso:not(#random_id_string)>.offset-6,html body.bootstrapiso>:not(#wpwrap) .offset-6{margin-left:50%}html body.bootstrapiso:not(#random_id_string)>.offset-7,html body.bootstrapiso>:not(#wpwrap) .offset-7{margin-left:58.333333%}html body.bootstrapiso:not(#random_id_string)>.offset-8,html body.bootstrapiso>:not(#wpwrap) .offset-8{margin-left:66.666667%}html body.bootstrapiso:not(#random_id_string)>.offset-9,html body.bootstrapiso>:not(#wpwrap) .offset-9{margin-left:75%}html body.bootstrapiso:not(#random_id_string)>.offset-10,html body.bootstrapiso>:not(#wpwrap) .offset-10{margin-left:83.333333%}html body.bootstrapiso:not(#random_id_string)>.offset-11,html body.bootstrapiso>:not(#wpwrap) .offset-11{margin-left:91.666667%}@media (min-width:576px){html body.bootstrapiso:not(#random_id_string)>.col-sm,html body.bootstrapiso>:not(#wpwrap) .col-sm{-webkit-flex-basis:0;flex-basis:0;-webkit-flex-grow:1;flex-grow:1;max-width:100%}html body.bootstrapiso:not(#random_id_string)>.row-cols-sm-1>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-sm-1>*{-webkit-flex:0 0 100%;flex:0 0 100%;max-width:100%}html body.bootstrapiso:not(#random_id_string)>.row-cols-sm-2>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-sm-2>*{-webkit-flex:0 0 50%;flex:0 0 50%;max-width:50%}html body.bootstrapiso:not(#random_id_string)>.row-cols-sm-3>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-sm-3>*{-webkit-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}html body.bootstrapiso:not(#random_id_string)>.row-cols-sm-4>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-sm-4>*{-webkit-flex:0 0 25%;flex:0 0 25%;max-width:25%}html body.bootstrapiso:not(#random_id_string)>.row-cols-sm-5>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-sm-5>*{-webkit-flex:0 0 20%;flex:0 0 20%;max-width:20%}html body.bootstrapiso:not(#random_id_string)>.row-cols-sm-6>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-sm-6>*{-webkit-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}html body.bootstrapiso:not(#random_id_string)>.col-sm-auto,html body.bootstrapiso>:not(#wpwrap) .col-sm-auto{-webkit-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}html body.bootstrapiso:not(#random_id_string)>.col-sm-1,html body.bootstrapiso>:not(#wpwrap) .col-sm-1{-webkit-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}html body.bootstrapiso:not(#random_id_string)>.col-sm-2,html body.bootstrapiso>:not(#wpwrap) .col-sm-2{-webkit-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}html body.bootstrapiso:not(#random_id_string)>.col-sm-3,html body.bootstrapiso>:not(#wpwrap) .col-sm-3{-webkit-flex:0 0 25%;flex:0 0 25%;max-width:25%}html body.bootstrapiso:not(#random_id_string)>.col-sm-4,html body.bootstrapiso>:not(#wpwrap) .col-sm-4{-webkit-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}html body.bootstrapiso:not(#random_id_string)>.col-sm-5,html body.bootstrapiso>:not(#wpwrap) .col-sm-5{-webkit-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}html body.bootstrapiso:not(#random_id_string)>.col-sm-6,html body.bootstrapiso>:not(#wpwrap) .col-sm-6{-webkit-flex:0 0 50%;flex:0 0 50%;max-width:50%}html body.bootstrapiso:not(#random_id_string)>.col-sm-7,html body.bootstrapiso>:not(#wpwrap) .col-sm-7{-webkit-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}html body.bootstrapiso:not(#random_id_string)>.col-sm-8,html body.bootstrapiso>:not(#wpwrap) .col-sm-8{-webkit-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}html body.bootstrapiso:not(#random_id_string)>.col-sm-9,html body.bootstrapiso>:not(#wpwrap) .col-sm-9{-webkit-flex:0 0 75%;flex:0 0 75%;max-width:75%}html body.bootstrapiso:not(#random_id_string)>.col-sm-10,html body.bootstrapiso>:not(#wpwrap) .col-sm-10{-webkit-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}html body.bootstrapiso:not(#random_id_string)>.col-sm-11,html body.bootstrapiso>:not(#wpwrap) .col-sm-11{-webkit-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}html body.bootstrapiso:not(#random_id_string)>.col-sm-12,html body.bootstrapiso>:not(#wpwrap) .col-sm-12{-webkit-flex:0 0 100%;flex:0 0 100%;max-width:100%}html body.bootstrapiso:not(#random_id_string)>.order-sm-first,html body.bootstrapiso>:not(#wpwrap) .order-sm-first{-webkit-order:-1;order:-1}html body.bootstrapiso:not(#random_id_string)>.order-sm-last,html body.bootstrapiso>:not(#wpwrap) .order-sm-last{-webkit-order:13;order:13}html body.bootstrapiso:not(#random_id_string)>.order-sm-0,html body.bootstrapiso>:not(#wpwrap) .order-sm-0{-webkit-order:0;order:0}html body.bootstrapiso:not(#random_id_string)>.order-sm-1,html body.bootstrapiso>:not(#wpwrap) .order-sm-1{-webkit-order:1;order:1}html body.bootstrapiso:not(#random_id_string)>.order-sm-2,html body.bootstrapiso>:not(#wpwrap) .order-sm-2{-webkit-order:2;order:2}html body.bootstrapiso:not(#random_id_string)>.order-sm-3,html body.bootstrapiso>:not(#wpwrap) .order-sm-3{-webkit-order:3;order:3}html body.bootstrapiso:not(#random_id_string)>.order-sm-4,html body.bootstrapiso>:not(#wpwrap) .order-sm-4{-webkit-order:4;order:4}html body.bootstrapiso:not(#random_id_string)>.order-sm-5,html body.bootstrapiso>:not(#wpwrap) .order-sm-5{-webkit-order:5;order:5}html body.bootstrapiso:not(#random_id_string)>.order-sm-6,html body.bootstrapiso>:not(#wpwrap) .order-sm-6{-webkit-order:6;order:6}html body.bootstrapiso:not(#random_id_string)>.order-sm-7,html body.bootstrapiso>:not(#wpwrap) .order-sm-7{-webkit-order:7;order:7}html body.bootstrapiso:not(#random_id_string)>.order-sm-8,html body.bootstrapiso>:not(#wpwrap) .order-sm-8{-webkit-order:8;order:8}html body.bootstrapiso:not(#random_id_string)>.order-sm-9,html body.bootstrapiso>:not(#wpwrap) .order-sm-9{-webkit-order:9;order:9}html body.bootstrapiso:not(#random_id_string)>.order-sm-10,html body.bootstrapiso>:not(#wpwrap) .order-sm-10{-webkit-order:10;order:10}html body.bootstrapiso:not(#random_id_string)>.order-sm-11,html body.bootstrapiso>:not(#wpwrap) .order-sm-11{-webkit-order:11;order:11}html body.bootstrapiso:not(#random_id_string)>.order-sm-12,html body.bootstrapiso>:not(#wpwrap) .order-sm-12{-webkit-order:12;order:12}html body.bootstrapiso:not(#random_id_string)>.offset-sm-0,html body.bootstrapiso>:not(#wpwrap) .offset-sm-0{margin-left:0}html body.bootstrapiso:not(#random_id_string)>.offset-sm-1,html body.bootstrapiso>:not(#wpwrap) .offset-sm-1{margin-left:8.333333%}html body.bootstrapiso:not(#random_id_string)>.offset-sm-2,html body.bootstrapiso>:not(#wpwrap) .offset-sm-2{margin-left:16.666667%}html body.bootstrapiso:not(#random_id_string)>.offset-sm-3,html body.bootstrapiso>:not(#wpwrap) .offset-sm-3{margin-left:25%}html body.bootstrapiso:not(#random_id_string)>.offset-sm-4,html body.bootstrapiso>:not(#wpwrap) .offset-sm-4{margin-left:33.333333%}html body.bootstrapiso:not(#random_id_string)>.offset-sm-5,html body.bootstrapiso>:not(#wpwrap) .offset-sm-5{margin-left:41.666667%}html body.bootstrapiso:not(#random_id_string)>.offset-sm-6,html body.bootstrapiso>:not(#wpwrap) .offset-sm-6{margin-left:50%}html body.bootstrapiso:not(#random_id_string)>.offset-sm-7,html body.bootstrapiso>:not(#wpwrap) .offset-sm-7{margin-left:58.333333%}html body.bootstrapiso:not(#random_id_string)>.offset-sm-8,html body.bootstrapiso>:not(#wpwrap) .offset-sm-8{margin-left:66.666667%}html body.bootstrapiso:not(#random_id_string)>.offset-sm-9,html body.bootstrapiso>:not(#wpwrap) .offset-sm-9{margin-left:75%}html body.bootstrapiso:not(#random_id_string)>.offset-sm-10,html body.bootstrapiso>:not(#wpwrap) .offset-sm-10{margin-left:83.333333%}html body.bootstrapiso:not(#random_id_string)>.offset-sm-11,html body.bootstrapiso>:not(#wpwrap) .offset-sm-11{margin-left:91.666667%}}@media (min-width:768px){html body.bootstrapiso:not(#random_id_string)>.col-md,html body.bootstrapiso>:not(#wpwrap) .col-md{-webkit-flex-basis:0;flex-basis:0;-webkit-flex-grow:1;flex-grow:1;max-width:100%}html body.bootstrapiso:not(#random_id_string)>.row-cols-md-1>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-md-1>*{-webkit-flex:0 0 100%;flex:0 0 100%;max-width:100%}html body.bootstrapiso:not(#random_id_string)>.row-cols-md-2>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-md-2>*{-webkit-flex:0 0 50%;flex:0 0 50%;max-width:50%}html body.bootstrapiso:not(#random_id_string)>.row-cols-md-3>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-md-3>*{-webkit-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}html body.bootstrapiso:not(#random_id_string)>.row-cols-md-4>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-md-4>*{-webkit-flex:0 0 25%;flex:0 0 25%;max-width:25%}html body.bootstrapiso:not(#random_id_string)>.row-cols-md-5>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-md-5>*{-webkit-flex:0 0 20%;flex:0 0 20%;max-width:20%}html body.bootstrapiso:not(#random_id_string)>.row-cols-md-6>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-md-6>*{-webkit-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}html body.bootstrapiso:not(#random_id_string)>.col-md-auto,html body.bootstrapiso>:not(#wpwrap) .col-md-auto{-webkit-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}html body.bootstrapiso:not(#random_id_string)>.col-md-1,html body.bootstrapiso>:not(#wpwrap) .col-md-1{-webkit-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}html body.bootstrapiso:not(#random_id_string)>.col-md-2,html body.bootstrapiso>:not(#wpwrap) .col-md-2{-webkit-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}html body.bootstrapiso:not(#random_id_string)>.col-md-3,html body.bootstrapiso>:not(#wpwrap) .col-md-3{-webkit-flex:0 0 25%;flex:0 0 25%;max-width:25%}html body.bootstrapiso:not(#random_id_string)>.col-md-4,html body.bootstrapiso>:not(#wpwrap) .col-md-4{-webkit-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}html body.bootstrapiso:not(#random_id_string)>.col-md-5,html body.bootstrapiso>:not(#wpwrap) .col-md-5{-webkit-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}html body.bootstrapiso:not(#random_id_string)>.col-md-6,html body.bootstrapiso>:not(#wpwrap) .col-md-6{-webkit-flex:0 0 50%;flex:0 0 50%;max-width:50%}html body.bootstrapiso:not(#random_id_string)>.col-md-7,html body.bootstrapiso>:not(#wpwrap) .col-md-7{-webkit-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}html body.bootstrapiso:not(#random_id_string)>.col-md-8,html body.bootstrapiso>:not(#wpwrap) .col-md-8{-webkit-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}html body.bootstrapiso:not(#random_id_string)>.col-md-9,html body.bootstrapiso>:not(#wpwrap) .col-md-9{-webkit-flex:0 0 75%;flex:0 0 75%;max-width:75%}html body.bootstrapiso:not(#random_id_string)>.col-md-10,html body.bootstrapiso>:not(#wpwrap) .col-md-10{-webkit-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}html body.bootstrapiso:not(#random_id_string)>.col-md-11,html body.bootstrapiso>:not(#wpwrap) .col-md-11{-webkit-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}html body.bootstrapiso:not(#random_id_string)>.col-md-12,html body.bootstrapiso>:not(#wpwrap) .col-md-12{-webkit-flex:0 0 100%;flex:0 0 100%;max-width:100%}html body.bootstrapiso:not(#random_id_string)>.order-md-first,html body.bootstrapiso>:not(#wpwrap) .order-md-first{-webkit-order:-1;order:-1}html body.bootstrapiso:not(#random_id_string)>.order-md-last,html body.bootstrapiso>:not(#wpwrap) .order-md-last{-webkit-order:13;order:13}html body.bootstrapiso:not(#random_id_string)>.order-md-0,html body.bootstrapiso>:not(#wpwrap) .order-md-0{-webkit-order:0;order:0}html body.bootstrapiso:not(#random_id_string)>.order-md-1,html body.bootstrapiso>:not(#wpwrap) .order-md-1{-webkit-order:1;order:1}html body.bootstrapiso:not(#random_id_string)>.order-md-2,html body.bootstrapiso>:not(#wpwrap) .order-md-2{-webkit-order:2;order:2}html body.bootstrapiso:not(#random_id_string)>.order-md-3,html body.bootstrapiso>:not(#wpwrap) .order-md-3{-webkit-order:3;order:3}html body.bootstrapiso:not(#random_id_string)>.order-md-4,html body.bootstrapiso>:not(#wpwrap) .order-md-4{-webkit-order:4;order:4}html body.bootstrapiso:not(#random_id_string)>.order-md-5,html body.bootstrapiso>:not(#wpwrap) .order-md-5{-webkit-order:5;order:5}html body.bootstrapiso:not(#random_id_string)>.order-md-6,html body.bootstrapiso>:not(#wpwrap) .order-md-6{-webkit-order:6;order:6}html body.bootstrapiso:not(#random_id_string)>.order-md-7,html body.bootstrapiso>:not(#wpwrap) .order-md-7{-webkit-order:7;order:7}html body.bootstrapiso:not(#random_id_string)>.order-md-8,html body.bootstrapiso>:not(#wpwrap) .order-md-8{-webkit-order:8;order:8}html body.bootstrapiso:not(#random_id_string)>.order-md-9,html body.bootstrapiso>:not(#wpwrap) .order-md-9{-webkit-order:9;order:9}html body.bootstrapiso:not(#random_id_string)>.order-md-10,html body.bootstrapiso>:not(#wpwrap) .order-md-10{-webkit-order:10;order:10}html body.bootstrapiso:not(#random_id_string)>.order-md-11,html body.bootstrapiso>:not(#wpwrap) .order-md-11{-webkit-order:11;order:11}html body.bootstrapiso:not(#random_id_string)>.order-md-12,html body.bootstrapiso>:not(#wpwrap) .order-md-12{-webkit-order:12;order:12}html body.bootstrapiso:not(#random_id_string)>.offset-md-0,html body.bootstrapiso>:not(#wpwrap) .offset-md-0{margin-left:0}html body.bootstrapiso:not(#random_id_string)>.offset-md-1,html body.bootstrapiso>:not(#wpwrap) .offset-md-1{margin-left:8.333333%}html body.bootstrapiso:not(#random_id_string)>.offset-md-2,html body.bootstrapiso>:not(#wpwrap) .offset-md-2{margin-left:16.666667%}html body.bootstrapiso:not(#random_id_string)>.offset-md-3,html body.bootstrapiso>:not(#wpwrap) .offset-md-3{margin-left:25%}html body.bootstrapiso:not(#random_id_string)>.offset-md-4,html body.bootstrapiso>:not(#wpwrap) .offset-md-4{margin-left:33.333333%}html body.bootstrapiso:not(#random_id_string)>.offset-md-5,html body.bootstrapiso>:not(#wpwrap) .offset-md-5{margin-left:41.666667%}html body.bootstrapiso:not(#random_id_string)>.offset-md-6,html body.bootstrapiso>:not(#wpwrap) .offset-md-6{margin-left:50%}html body.bootstrapiso:not(#random_id_string)>.offset-md-7,html body.bootstrapiso>:not(#wpwrap) .offset-md-7{margin-left:58.333333%}html body.bootstrapiso:not(#random_id_string)>.offset-md-8,html body.bootstrapiso>:not(#wpwrap) .offset-md-8{margin-left:66.666667%}html body.bootstrapiso:not(#random_id_string)>.offset-md-9,html body.bootstrapiso>:not(#wpwrap) .offset-md-9{margin-left:75%}html body.bootstrapiso:not(#random_id_string)>.offset-md-10,html body.bootstrapiso>:not(#wpwrap) .offset-md-10{margin-left:83.333333%}html body.bootstrapiso:not(#random_id_string)>.offset-md-11,html body.bootstrapiso>:not(#wpwrap) .offset-md-11{margin-left:91.666667%}}@media (min-width:992px){html body.bootstrapiso:not(#random_id_string)>.col-lg,html body.bootstrapiso>:not(#wpwrap) .col-lg{-webkit-flex-basis:0;flex-basis:0;-webkit-flex-grow:1;flex-grow:1;max-width:100%}html body.bootstrapiso:not(#random_id_string)>.row-cols-lg-1>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-lg-1>*{-webkit-flex:0 0 100%;flex:0 0 100%;max-width:100%}html body.bootstrapiso:not(#random_id_string)>.row-cols-lg-2>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-lg-2>*{-webkit-flex:0 0 50%;flex:0 0 50%;max-width:50%}html body.bootstrapiso:not(#random_id_string)>.row-cols-lg-3>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-lg-3>*{-webkit-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}html body.bootstrapiso:not(#random_id_string)>.row-cols-lg-4>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-lg-4>*{-webkit-flex:0 0 25%;flex:0 0 25%;max-width:25%}html body.bootstrapiso:not(#random_id_string)>.row-cols-lg-5>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-lg-5>*{-webkit-flex:0 0 20%;flex:0 0 20%;max-width:20%}html body.bootstrapiso:not(#random_id_string)>.row-cols-lg-6>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-lg-6>*{-webkit-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}html body.bootstrapiso:not(#random_id_string)>.col-lg-auto,html body.bootstrapiso>:not(#wpwrap) .col-lg-auto{-webkit-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}html body.bootstrapiso:not(#random_id_string)>.col-lg-1,html body.bootstrapiso>:not(#wpwrap) .col-lg-1{-webkit-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}html body.bootstrapiso:not(#random_id_string)>.col-lg-2,html body.bootstrapiso>:not(#wpwrap) .col-lg-2{-webkit-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}html body.bootstrapiso:not(#random_id_string)>.col-lg-3,html body.bootstrapiso>:not(#wpwrap) .col-lg-3{-webkit-flex:0 0 25%;flex:0 0 25%;max-width:25%}html body.bootstrapiso:not(#random_id_string)>.col-lg-4,html body.bootstrapiso>:not(#wpwrap) .col-lg-4{-webkit-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}html body.bootstrapiso:not(#random_id_string)>.col-lg-5,html body.bootstrapiso>:not(#wpwrap) .col-lg-5{-webkit-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}html body.bootstrapiso:not(#random_id_string)>.col-lg-6,html body.bootstrapiso>:not(#wpwrap) .col-lg-6{-webkit-flex:0 0 50%;flex:0 0 50%;max-width:50%}html body.bootstrapiso:not(#random_id_string)>.col-lg-7,html body.bootstrapiso>:not(#wpwrap) .col-lg-7{-webkit-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}html body.bootstrapiso:not(#random_id_string)>.col-lg-8,html body.bootstrapiso>:not(#wpwrap) .col-lg-8{-webkit-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}html body.bootstrapiso:not(#random_id_string)>.col-lg-9,html body.bootstrapiso>:not(#wpwrap) .col-lg-9{-webkit-flex:0 0 75%;flex:0 0 75%;max-width:75%}html body.bootstrapiso:not(#random_id_string)>.col-lg-10,html body.bootstrapiso>:not(#wpwrap) .col-lg-10{-webkit-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}html body.bootstrapiso:not(#random_id_string)>.col-lg-11,html body.bootstrapiso>:not(#wpwrap) .col-lg-11{-webkit-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}html body.bootstrapiso:not(#random_id_string)>.col-lg-12,html body.bootstrapiso>:not(#wpwrap) .col-lg-12{-webkit-flex:0 0 100%;flex:0 0 100%;max-width:100%}html body.bootstrapiso:not(#random_id_string)>.order-lg-first,html body.bootstrapiso>:not(#wpwrap) .order-lg-first{-webkit-order:-1;order:-1}html body.bootstrapiso:not(#random_id_string)>.order-lg-last,html body.bootstrapiso>:not(#wpwrap) .order-lg-last{-webkit-order:13;order:13}html body.bootstrapiso:not(#random_id_string)>.order-lg-0,html body.bootstrapiso>:not(#wpwrap) .order-lg-0{-webkit-order:0;order:0}html body.bootstrapiso:not(#random_id_string)>.order-lg-1,html body.bootstrapiso>:not(#wpwrap) .order-lg-1{-webkit-order:1;order:1}html body.bootstrapiso:not(#random_id_string)>.order-lg-2,html body.bootstrapiso>:not(#wpwrap) .order-lg-2{-webkit-order:2;order:2}html body.bootstrapiso:not(#random_id_string)>.order-lg-3,html body.bootstrapiso>:not(#wpwrap) .order-lg-3{-webkit-order:3;order:3}html body.bootstrapiso:not(#random_id_string)>.order-lg-4,html body.bootstrapiso>:not(#wpwrap) .order-lg-4{-webkit-order:4;order:4}html body.bootstrapiso:not(#random_id_string)>.order-lg-5,html body.bootstrapiso>:not(#wpwrap) .order-lg-5{-webkit-order:5;order:5}html body.bootstrapiso:not(#random_id_string)>.order-lg-6,html body.bootstrapiso>:not(#wpwrap) .order-lg-6{-webkit-order:6;order:6}html body.bootstrapiso:not(#random_id_string)>.order-lg-7,html body.bootstrapiso>:not(#wpwrap) .order-lg-7{-webkit-order:7;order:7}html body.bootstrapiso:not(#random_id_string)>.order-lg-8,html body.bootstrapiso>:not(#wpwrap) .order-lg-8{-webkit-order:8;order:8}html body.bootstrapiso:not(#random_id_string)>.order-lg-9,html body.bootstrapiso>:not(#wpwrap) .order-lg-9{-webkit-order:9;order:9}html body.bootstrapiso:not(#random_id_string)>.order-lg-10,html body.bootstrapiso>:not(#wpwrap) .order-lg-10{-webkit-order:10;order:10}html body.bootstrapiso:not(#random_id_string)>.order-lg-11,html body.bootstrapiso>:not(#wpwrap) .order-lg-11{-webkit-order:11;order:11}html body.bootstrapiso:not(#random_id_string)>.order-lg-12,html body.bootstrapiso>:not(#wpwrap) .order-lg-12{-webkit-order:12;order:12}html body.bootstrapiso:not(#random_id_string)>.offset-lg-0,html body.bootstrapiso>:not(#wpwrap) .offset-lg-0{margin-left:0}html body.bootstrapiso:not(#random_id_string)>.offset-lg-1,html body.bootstrapiso>:not(#wpwrap) .offset-lg-1{margin-left:8.333333%}html body.bootstrapiso:not(#random_id_string)>.offset-lg-2,html body.bootstrapiso>:not(#wpwrap) .offset-lg-2{margin-left:16.666667%}html body.bootstrapiso:not(#random_id_string)>.offset-lg-3,html body.bootstrapiso>:not(#wpwrap) .offset-lg-3{margin-left:25%}html body.bootstrapiso:not(#random_id_string)>.offset-lg-4,html body.bootstrapiso>:not(#wpwrap) .offset-lg-4{margin-left:33.333333%}html body.bootstrapiso:not(#random_id_string)>.offset-lg-5,html body.bootstrapiso>:not(#wpwrap) .offset-lg-5{margin-left:41.666667%}html body.bootstrapiso:not(#random_id_string)>.offset-lg-6,html body.bootstrapiso>:not(#wpwrap) .offset-lg-6{margin-left:50%}html body.bootstrapiso:not(#random_id_string)>.offset-lg-7,html body.bootstrapiso>:not(#wpwrap) .offset-lg-7{margin-left:58.333333%}html body.bootstrapiso:not(#random_id_string)>.offset-lg-8,html body.bootstrapiso>:not(#wpwrap) .offset-lg-8{margin-left:66.666667%}html body.bootstrapiso:not(#random_id_string)>.offset-lg-9,html body.bootstrapiso>:not(#wpwrap) .offset-lg-9{margin-left:75%}html body.bootstrapiso:not(#random_id_string)>.offset-lg-10,html body.bootstrapiso>:not(#wpwrap) .offset-lg-10{margin-left:83.333333%}html body.bootstrapiso:not(#random_id_string)>.offset-lg-11,html body.bootstrapiso>:not(#wpwrap) .offset-lg-11{margin-left:91.666667%}}@media (min-width:1200px){html body.bootstrapiso:not(#random_id_string)>.col-xl,html body.bootstrapiso>:not(#wpwrap) .col-xl{-webkit-flex-basis:0;flex-basis:0;-webkit-flex-grow:1;flex-grow:1;max-width:100%}html body.bootstrapiso:not(#random_id_string)>.row-cols-xl-1>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-xl-1>*{-webkit-flex:0 0 100%;flex:0 0 100%;max-width:100%}html body.bootstrapiso:not(#random_id_string)>.row-cols-xl-2>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-xl-2>*{-webkit-flex:0 0 50%;flex:0 0 50%;max-width:50%}html body.bootstrapiso:not(#random_id_string)>.row-cols-xl-3>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-xl-3>*{-webkit-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}html body.bootstrapiso:not(#random_id_string)>.row-cols-xl-4>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-xl-4>*{-webkit-flex:0 0 25%;flex:0 0 25%;max-width:25%}html body.bootstrapiso:not(#random_id_string)>.row-cols-xl-5>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-xl-5>*{-webkit-flex:0 0 20%;flex:0 0 20%;max-width:20%}html body.bootstrapiso:not(#random_id_string)>.row-cols-xl-6>*,html body.bootstrapiso>:not(#wpwrap) .row-cols-xl-6>*{-webkit-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}html body.bootstrapiso:not(#random_id_string)>.col-xl-auto,html body.bootstrapiso>:not(#wpwrap) .col-xl-auto{-webkit-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}html body.bootstrapiso:not(#random_id_string)>.col-xl-1,html body.bootstrapiso>:not(#wpwrap) .col-xl-1{-webkit-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}html body.bootstrapiso:not(#random_id_string)>.col-xl-2,html body.bootstrapiso>:not(#wpwrap) .col-xl-2{-webkit-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}html body.bootstrapiso:not(#random_id_string)>.col-xl-3,html body.bootstrapiso>:not(#wpwrap) .col-xl-3{-webkit-flex:0 0 25%;flex:0 0 25%;max-width:25%}html body.bootstrapiso:not(#random_id_string)>.col-xl-4,html body.bootstrapiso>:not(#wpwrap) .col-xl-4{-webkit-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}html body.bootstrapiso:not(#random_id_string)>.col-xl-5,html body.bootstrapiso>:not(#wpwrap) .col-xl-5{-webkit-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}html body.bootstrapiso:not(#random_id_string)>.col-xl-6,html body.bootstrapiso>:not(#wpwrap) .col-xl-6{-webkit-flex:0 0 50%;flex:0 0 50%;max-width:50%}html body.bootstrapiso:not(#random_id_string)>.col-xl-7,html body.bootstrapiso>:not(#wpwrap) .col-xl-7{-webkit-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}html body.bootstrapiso:not(#random_id_string)>.col-xl-8,html body.bootstrapiso>:not(#wpwrap) .col-xl-8{-webkit-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}html body.bootstrapiso:not(#random_id_string)>.col-xl-9,html body.bootstrapiso>:not(#wpwrap) .col-xl-9{-webkit-flex:0 0 75%;flex:0 0 75%;max-width:75%}html body.bootstrapiso:not(#random_id_string)>.col-xl-10,html body.bootstrapiso>:not(#wpwrap) .col-xl-10{-webkit-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}html body.bootstrapiso:not(#random_id_string)>.col-xl-11,html body.bootstrapiso>:not(#wpwrap) .col-xl-11{-webkit-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}html body.bootstrapiso:not(#random_id_string)>.col-xl-12,html body.bootstrapiso>:not(#wpwrap) .col-xl-12{-webkit-flex:0 0 100%;flex:0 0 100%;max-width:100%}html body.bootstrapiso:not(#random_id_string)>.order-xl-first,html body.bootstrapiso>:not(#wpwrap) .order-xl-first{-webkit-order:-1;order:-1}html body.bootstrapiso:not(#random_id_string)>.order-xl-last,html body.bootstrapiso>:not(#wpwrap) .order-xl-last{-webkit-order:13;order:13}html body.bootstrapiso:not(#random_id_string)>.order-xl-0,html body.bootstrapiso>:not(#wpwrap) .order-xl-0{-webkit-order:0;order:0}html body.bootstrapiso:not(#random_id_string)>.order-xl-1,html body.bootstrapiso>:not(#wpwrap) .order-xl-1{-webkit-order:1;order:1}html body.bootstrapiso:not(#random_id_string)>.order-xl-2,html body.bootstrapiso>:not(#wpwrap) .order-xl-2{-webkit-order:2;order:2}html body.bootstrapiso:not(#random_id_string)>.order-xl-3,html body.bootstrapiso>:not(#wpwrap) .order-xl-3{-webkit-order:3;order:3}html body.bootstrapiso:not(#random_id_string)>.order-xl-4,html body.bootstrapiso>:not(#wpwrap) .order-xl-4{-webkit-order:4;order:4}html body.bootstrapiso:not(#random_id_string)>.order-xl-5,html body.bootstrapiso>:not(#wpwrap) .order-xl-5{-webkit-order:5;order:5}html body.bootstrapiso:not(#random_id_string)>.order-xl-6,html body.bootstrapiso>:not(#wpwrap) .order-xl-6{-webkit-order:6;order:6}html body.bootstrapiso:not(#random_id_string)>.order-xl-7,html body.bootstrapiso>:not(#wpwrap) .order-xl-7{-webkit-order:7;order:7}html body.bootstrapiso:not(#random_id_string)>.order-xl-8,html body.bootstrapiso>:not(#wpwrap) .order-xl-8{-webkit-order:8;order:8}html body.bootstrapiso:not(#random_id_string)>.order-xl-9,html body.bootstrapiso>:not(#wpwrap) .order-xl-9{-webkit-order:9;order:9}html body.bootstrapiso:not(#random_id_string)>.order-xl-10,html body.bootstrapiso>:not(#wpwrap) .order-xl-10{-webkit-order:10;order:10}html body.bootstrapiso:not(#random_id_string)>.order-xl-11,html body.bootstrapiso>:not(#wpwrap) .order-xl-11{-webkit-order:11;order:11}html body.bootstrapiso:not(#random_id_string)>.order-xl-12,html body.bootstrapiso>:not(#wpwrap) .order-xl-12{-webkit-order:12;order:12}html body.bootstrapiso:not(#random_id_string)>.offset-xl-0,html body.bootstrapiso>:not(#wpwrap) .offset-xl-0{margin-left:0}html body.bootstrapiso:not(#random_id_string)>.offset-xl-1,html body.bootstrapiso>:not(#wpwrap) .offset-xl-1{margin-left:8.333333%}html body.bootstrapiso:not(#random_id_string)>.offset-xl-2,html body.bootstrapiso>:not(#wpwrap) .offset-xl-2{margin-left:16.666667%}html body.bootstrapiso:not(#random_id_string)>.offset-xl-3,html body.bootstrapiso>:not(#wpwrap) .offset-xl-3{margin-left:25%}html body.bootstrapiso:not(#random_id_string)>.offset-xl-4,html body.bootstrapiso>:not(#wpwrap) .offset-xl-4{margin-left:33.333333%}html body.bootstrapiso:not(#random_id_string)>.offset-xl-5,html body.bootstrapiso>:not(#wpwrap) .offset-xl-5{margin-left:41.666667%}html body.bootstrapiso:not(#random_id_string)>.offset-xl-6,html body.bootstrapiso>:not(#wpwrap) .offset-xl-6{margin-left:50%}html body.bootstrapiso:not(#random_id_string)>.offset-xl-7,html body.bootstrapiso>:not(#wpwrap) .offset-xl-7{margin-left:58.333333%}html body.bootstrapiso:not(#random_id_string)>.offset-xl-8,html body.bootstrapiso>:not(#wpwrap) .offset-xl-8{margin-left:66.666667%}html body.bootstrapiso:not(#random_id_string)>.offset-xl-9,html body.bootstrapiso>:not(#wpwrap) .offset-xl-9{margin-left:75%}html body.bootstrapiso:not(#random_id_string)>.offset-xl-10,html body.bootstrapiso>:not(#wpwrap) .offset-xl-10{margin-left:83.333333%}html body.bootstrapiso:not(#random_id_string)>.offset-xl-11,html body.bootstrapiso>:not(#wpwrap) .offset-xl-11{margin-left:91.666667%}}html body.bootstrapiso:not(#random_id_string)>.table,html body.bootstrapiso>:not(#wpwrap) .table{width:100%;margin-bottom:1rem;color:#212529}html body.bootstrapiso:not(#random_id_string)>.table td,html body.bootstrapiso:not(#random_id_string)>.table th,html body.bootstrapiso>:not(#wpwrap) .table td,html body.bootstrapiso>:not(#wpwrap) .table th{padding:.75rem;vertical-align:top;border-top:1px solid #dee2e6}html body.bootstrapiso:not(#random_id_string)>.table thead th,html body.bootstrapiso>:not(#wpwrap) .table thead th{vertical-align:bottom;border-bottom:2px solid #dee2e6}html body.bootstrapiso:not(#random_id_string)>.table tbody+tbody,html body.bootstrapiso>:not(#wpwrap) .table tbody+tbody{border-top:2px solid #dee2e6}html body.bootstrapiso:not(#random_id_string)>.table-sm td,html body.bootstrapiso:not(#random_id_string)>.table-sm th,html body.bootstrapiso>:not(#wpwrap) .table-sm td,html body.bootstrapiso>:not(#wpwrap) .table-sm th{padding:.3rem}html body.bootstrapiso:not(#random_id_string)>.table-bordered,html body.bootstrapiso:not(#random_id_string)>.table-bordered td,html body.bootstrapiso:not(#random_id_string)>.table-bordered th,html body.bootstrapiso>:not(#wpwrap) .table-bordered,html body.bootstrapiso>:not(#wpwrap) .table-bordered td,html body.bootstrapiso>:not(#wpwrap) .table-bordered th{border:1px solid #dee2e6}html body.bootstrapiso:not(#random_id_string)>.table-bordered thead td,html body.bootstrapiso:not(#random_id_string)>.table-bordered thead th,html body.bootstrapiso>:not(#wpwrap) .table-bordered thead td,html body.bootstrapiso>:not(#wpwrap) .table-bordered thead th{border-bottom-width:2px}html body.bootstrapiso:not(#random_id_string)>.table-borderless tbody+tbody,html body.bootstrapiso:not(#random_id_string)>.table-borderless td,html body.bootstrapiso:not(#random_id_string)>.table-borderless th,html body.bootstrapiso:not(#random_id_string)>.table-borderless thead th,html body.bootstrapiso>:not(#wpwrap) .table-borderless tbody+tbody,html body.bootstrapiso>:not(#wpwrap) .table-borderless td,html body.bootstrapiso>:not(#wpwrap) .table-borderless th,html body.bootstrapiso>:not(#wpwrap) .table-borderless thead th{border:0}html body.bootstrapiso:not(#random_id_string)>.table-striped tbody tr:nth-of-type(odd),html body.bootstrapiso>:not(#wpwrap) .table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}html body.bootstrapiso:not(#random_id_string)>.table-hover tbody tr:hover,html body.bootstrapiso>:not(#wpwrap) .table-hover tbody tr:hover{color:#212529;background-color:rgba(0,0,0,.075)}html body.bootstrapiso:not(#random_id_string)>.table-primary,html body.bootstrapiso:not(#random_id_string)>.table-primary>td,html body.bootstrapiso:not(#random_id_string)>.table-primary>th,html body.bootstrapiso>:not(#wpwrap) .table-primary,html body.bootstrapiso>:not(#wpwrap) .table-primary>td,html body.bootstrapiso>:not(#wpwrap) .table-primary>th{background-color:#b8daff}html body.bootstrapiso:not(#random_id_string)>.table-primary tbody+tbody,html body.bootstrapiso:not(#random_id_string)>.table-primary td,html body.bootstrapiso:not(#random_id_string)>.table-primary th,html body.bootstrapiso:not(#random_id_string)>.table-primary thead th,html body.bootstrapiso>:not(#wpwrap) .table-primary tbody+tbody,html body.bootstrapiso>:not(#wpwrap) .table-primary td,html body.bootstrapiso>:not(#wpwrap) .table-primary th,html body.bootstrapiso>:not(#wpwrap) .table-primary thead th{border-color:#7abaff}html body.bootstrapiso:not(#random_id_string)>.table-hover .table-primary:hover,html body.bootstrapiso:not(#random_id_string)>.table-hover .table-primary:hover>td,html body.bootstrapiso:not(#random_id_string)>.table-hover .table-primary:hover>th,html body.bootstrapiso>:not(#wpwrap) .table-hover .table-primary:hover,html body.bootstrapiso>:not(#wpwrap) .table-hover .table-primary:hover>td,html body.bootstrapiso>:not(#wpwrap) .table-hover .table-primary:hover>th{background-color:#9fcdff}html body.bootstrapiso:not(#random_id_string)>.table-secondary,html body.bootstrapiso:not(#random_id_string)>.table-secondary>td,html body.bootstrapiso:not(#random_id_string)>.table-secondary>th,html body.bootstrapiso>:not(#wpwrap) .table-secondary,html body.bootstrapiso>:not(#wpwrap) .table-secondary>td,html body.bootstrapiso>:not(#wpwrap) .table-secondary>th{background-color:#d6d8db}html body.bootstrapiso:not(#random_id_string)>.table-secondary tbody+tbody,html body.bootstrapiso:not(#random_id_string)>.table-secondary td,html body.bootstrapiso:not(#random_id_string)>.table-secondary th,html body.bootstrapiso:not(#random_id_string)>.table-secondary thead th,html body.bootstrapiso>:not(#wpwrap) .table-secondary tbody+tbody,html body.bootstrapiso>:not(#wpwrap) .table-secondary td,html body.bootstrapiso>:not(#wpwrap) .table-secondary th,html body.bootstrapiso>:not(#wpwrap) .table-secondary thead th{border-color:#b3b7bb}html body.bootstrapiso:not(#random_id_string)>.table-hover .table-secondary:hover,html body.bootstrapiso:not(#random_id_string)>.table-hover .table-secondary:hover>td,html body.bootstrapiso:not(#random_id_string)>.table-hover .table-secondary:hover>th,html body.bootstrapiso>:not(#wpwrap) .table-hover .table-secondary:hover,html body.bootstrapiso>:not(#wpwrap) .table-hover .table-secondary:hover>td,html body.bootstrapiso>:not(#wpwrap) .table-hover .table-secondary:hover>th{background-color:#c8cbcf}html body.bootstrapiso:not(#random_id_string)>.table-success,html body.bootstrapiso:not(#random_id_string)>.table-success>td,html body.bootstrapiso:not(#random_id_string)>.table-success>th,html body.bootstrapiso>:not(#wpwrap) .table-success,html body.bootstrapiso>:not(#wpwrap) .table-success>td,html body.bootstrapiso>:not(#wpwrap) .table-success>th{background-color:#c3e6cb}html body.bootstrapiso:not(#random_id_string)>.table-success tbody+tbody,html body.bootstrapiso:not(#random_id_string)>.table-success td,html body.bootstrapiso:not(#random_id_string)>.table-success th,html body.bootstrapiso:not(#random_id_string)>.table-success thead th,html body.bootstrapiso>:not(#wpwrap) .table-success tbody+tbody,html body.bootstrapiso>:not(#wpwrap) .table-success td,html body.bootstrapiso>:not(#wpwrap) .table-success th,html body.bootstrapiso>:not(#wpwrap) .table-success thead th{border-color:#8fd19e}html body.bootstrapiso:not(#random_id_string)>.table-hover .table-success:hover,html body.bootstrapiso:not(#random_id_string)>.table-hover .table-success:hover>td,html body.bootstrapiso:not(#random_id_string)>.table-hover .table-success:hover>th,html body.bootstrapiso>:not(#wpwrap) .table-hover .table-success:hover,html body.bootstrapiso>:not(#wpwrap) .table-hover .table-success:hover>td,html body.bootstrapiso>:not(#wpwrap) .table-hover .table-success:hover>th{background-color:#b1dfbb}html body.bootstrapiso:not(#random_id_string)>.table-info,html body.bootstrapiso:not(#random_id_string)>.table-info>td,html body.bootstrapiso:not(#random_id_string)>.table-info>th,html body.bootstrapiso>:not(#wpwrap) .table-info,html body.bootstrapiso>:not(#wpwrap) .table-info>td,html body.bootstrapiso>:not(#wpwrap) .table-info>th{background-color:#bee5eb}html body.bootstrapiso:not(#random_id_string)>.table-info tbody+tbody,html body.bootstrapiso:not(#random_id_string)>.table-info td,html body.bootstrapiso:not(#random_id_string)>.table-info th,html body.bootstrapiso:not(#random_id_string)>.table-info thead th,html body.bootstrapiso>:not(#wpwrap) .table-info tbody+tbody,html body.bootstrapiso>:not(#wpwrap) .table-info td,html body.bootstrapiso>:not(#wpwrap) .table-info th,html body.bootstrapiso>:not(#wpwrap) .table-info thead th{border-color:#86cfda}html body.bootstrapiso:not(#random_id_string)>.table-hover .table-info:hover,html body.bootstrapiso:not(#random_id_string)>.table-hover .table-info:hover>td,html body.bootstrapiso:not(#random_id_string)>.table-hover .table-info:hover>th,html body.bootstrapiso>:not(#wpwrap) .table-hover .table-info:hover,html body.bootstrapiso>:not(#wpwrap) .table-hover .table-info:hover>td,html body.bootstrapiso>:not(#wpwrap) .table-hover .table-info:hover>th{background-color:#abdde5}html body.bootstrapiso:not(#random_id_string)>.table-warning,html body.bootstrapiso:not(#random_id_string)>.table-warning>td,html body.bootstrapiso:not(#random_id_string)>.table-warning>th,html body.bootstrapiso>:not(#wpwrap) .table-warning,html body.bootstrapiso>:not(#wpwrap) .table-warning>td,html body.bootstrapiso>:not(#wpwrap) .table-warning>th{background-color:#ffeeba}html body.bootstrapiso:not(#random_id_string)>.table-warning tbody+tbody,html body.bootstrapiso:not(#random_id_string)>.table-warning td,html body.bootstrapiso:not(#random_id_string)>.table-warning th,html body.bootstrapiso:not(#random_id_string)>.table-warning thead th,html body.bootstrapiso>:not(#wpwrap) .table-warning tbody+tbody,html body.bootstrapiso>:not(#wpwrap) .table-warning td,html body.bootstrapiso>:not(#wpwrap) .table-warning th,html body.bootstrapiso>:not(#wpwrap) .table-warning thead th{border-color:#ffdf7e}html body.bootstrapiso:not(#random_id_string)>.table-hover .table-warning:hover,html body.bootstrapiso:not(#random_id_string)>.table-hover .table-warning:hover>td,html body.bootstrapiso:not(#random_id_string)>.table-hover .table-warning:hover>th,html body.bootstrapiso>:not(#wpwrap) .table-hover .table-warning:hover,html body.bootstrapiso>:not(#wpwrap) .table-hover .table-warning:hover>td,html body.bootstrapiso>:not(#wpwrap) .table-hover .table-warning:hover>th{background-color:#ffe8a1}html body.bootstrapiso:not(#random_id_string)>.table-danger,html body.bootstrapiso:not(#random_id_string)>.table-danger>td,html body.bootstrapiso:not(#random_id_string)>.table-danger>th,html body.bootstrapiso>:not(#wpwrap) .table-danger,html body.bootstrapiso>:not(#wpwrap) .table-danger>td,html body.bootstrapiso>:not(#wpwrap) .table-danger>th{background-color:#f5c6cb}html body.bootstrapiso:not(#random_id_string)>.table-danger tbody+tbody,html body.bootstrapiso:not(#random_id_string)>.table-danger td,html body.bootstrapiso:not(#random_id_string)>.table-danger th,html body.bootstrapiso:not(#random_id_string)>.table-danger thead th,html body.bootstrapiso>:not(#wpwrap) .table-danger tbody+tbody,html body.bootstrapiso>:not(#wpwrap) .table-danger td,html body.bootstrapiso>:not(#wpwrap) .table-danger th,html body.bootstrapiso>:not(#wpwrap) .table-danger thead th{border-color:#ed969e}html body.bootstrapiso:not(#random_id_string)>.table-hover .table-danger:hover,html body.bootstrapiso:not(#random_id_string)>.table-hover .table-danger:hover>td,html body.bootstrapiso:not(#random_id_string)>.table-hover .table-danger:hover>th,html body.bootstrapiso>:not(#wpwrap) .table-hover .table-danger:hover,html body.bootstrapiso>:not(#wpwrap) .table-hover .table-danger:hover>td,html body.bootstrapiso>:not(#wpwrap) .table-hover .table-danger:hover>th{background-color:#f1b0b7}html body.bootstrapiso:not(#random_id_string)>.table-light,html body.bootstrapiso:not(#random_id_string)>.table-light>td,html body.bootstrapiso:not(#random_id_string)>.table-light>th,html body.bootstrapiso>:not(#wpwrap) .table-light,html body.bootstrapiso>:not(#wpwrap) .table-light>td,html body.bootstrapiso>:not(#wpwrap) .table-light>th{background-color:#fdfdfe}html body.bootstrapiso:not(#random_id_string)>.table-light tbody+tbody,html body.bootstrapiso:not(#random_id_string)>.table-light td,html body.bootstrapiso:not(#random_id_string)>.table-light th,html body.bootstrapiso:not(#random_id_string)>.table-light thead th,html body.bootstrapiso>:not(#wpwrap) .table-light tbody+tbody,html body.bootstrapiso>:not(#wpwrap) .table-light td,html body.bootstrapiso>:not(#wpwrap) .table-light th,html body.bootstrapiso>:not(#wpwrap) .table-light thead th{border-color:#fbfcfc}html body.bootstrapiso:not(#random_id_string)>.table-hover .table-light:hover,html body.bootstrapiso:not(#random_id_string)>.table-hover .table-light:hover>td,html body.bootstrapiso:not(#random_id_string)>.table-hover .table-light:hover>th,html body.bootstrapiso>:not(#wpwrap) .table-hover .table-light:hover,html body.bootstrapiso>:not(#wpwrap) .table-hover .table-light:hover>td,html body.bootstrapiso>:not(#wpwrap) .table-hover .table-light:hover>th{background-color:#ececf6}html body.bootstrapiso:not(#random_id_string)>.table-dark,html body.bootstrapiso:not(#random_id_string)>.table-dark>td,html body.bootstrapiso:not(#random_id_string)>.table-dark>th,html body.bootstrapiso>:not(#wpwrap) .table-dark,html body.bootstrapiso>:not(#wpwrap) .table-dark>td,html body.bootstrapiso>:not(#wpwrap) .table-dark>th{background-color:#c6c8ca}html body.bootstrapiso:not(#random_id_string)>.table-dark tbody+tbody,html body.bootstrapiso:not(#random_id_string)>.table-dark td,html body.bootstrapiso:not(#random_id_string)>.table-dark th,html body.bootstrapiso:not(#random_id_string)>.table-dark thead th,html body.bootstrapiso>:not(#wpwrap) .table-dark tbody+tbody,html body.bootstrapiso>:not(#wpwrap) .table-dark td,html body.bootstrapiso>:not(#wpwrap) .table-dark th,html body.bootstrapiso>:not(#wpwrap) .table-dark thead th{border-color:#95999c}html body.bootstrapiso:not(#random_id_string)>.table-hover .table-dark:hover,html body.bootstrapiso:not(#random_id_string)>.table-hover .table-dark:hover>td,html body.bootstrapiso:not(#random_id_string)>.table-hover .table-dark:hover>th,html body.bootstrapiso>:not(#wpwrap) .table-hover .table-dark:hover,html body.bootstrapiso>:not(#wpwrap) .table-hover .table-dark:hover>td,html body.bootstrapiso>:not(#wpwrap) .table-hover .table-dark:hover>th{background-color:#b9bbbe}html body.bootstrapiso:not(#random_id_string)>.table-active,html body.bootstrapiso:not(#random_id_string)>.table-active>td,html body.bootstrapiso:not(#random_id_string)>.table-active>th,html body.bootstrapiso:not(#random_id_string)>.table-hover .table-active:hover,html body.bootstrapiso:not(#random_id_string)>.table-hover .table-active:hover>td,html body.bootstrapiso:not(#random_id_string)>.table-hover .table-active:hover>th,html body.bootstrapiso>:not(#wpwrap) .table-active,html body.bootstrapiso>:not(#wpwrap) .table-active>td,html body.bootstrapiso>:not(#wpwrap) .table-active>th,html body.bootstrapiso>:not(#wpwrap) .table-hover .table-active:hover,html body.bootstrapiso>:not(#wpwrap) .table-hover .table-active:hover>td,html body.bootstrapiso>:not(#wpwrap) .table-hover .table-active:hover>th{background-color:rgba(0,0,0,.075)}html body.bootstrapiso:not(#random_id_string)>.table .thead-dark th,html body.bootstrapiso>:not(#wpwrap) .table .thead-dark th{color:#fff;background-color:#343a40;border-color:#454d55}html body.bootstrapiso:not(#random_id_string)>.table .thead-light th,html body.bootstrapiso>:not(#wpwrap) .table .thead-light th{color:#495057;background-color:#e9ecef;border-color:#dee2e6}html body.bootstrapiso:not(#random_id_string)>.table-dark,html body.bootstrapiso>:not(#wpwrap) .table-dark{color:#fff;background-color:#343a40}html body.bootstrapiso:not(#random_id_string)>.table-dark td,html body.bootstrapiso:not(#random_id_string)>.table-dark th,html body.bootstrapiso:not(#random_id_string)>.table-dark thead th,html body.bootstrapiso>:not(#wpwrap) .table-dark td,html body.bootstrapiso>:not(#wpwrap) .table-dark th,html body.bootstrapiso>:not(#wpwrap) .table-dark thead th{border-color:#454d55}html body.bootstrapiso:not(#random_id_string)>.table-dark.table-bordered,html body.bootstrapiso>:not(#wpwrap) .table-dark.table-bordered{border:0}html body.bootstrapiso:not(#random_id_string)>.table-dark.table-striped tbody tr:nth-of-type(odd),html body.bootstrapiso>:not(#wpwrap) .table-dark.table-striped tbody tr:nth-of-type(odd){background-color:hsla(0,0%,100%,.05)}html body.bootstrapiso:not(#random_id_string)>.table-dark.table-hover tbody tr:hover,html body.bootstrapiso>:not(#wpwrap) .table-dark.table-hover tbody tr:hover{color:#fff;background-color:hsla(0,0%,100%,.075)}@media (max-width:575.98px){html body.bootstrapiso:not(#random_id_string)>.table-responsive-sm,html body.bootstrapiso>:not(#wpwrap) .table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}html body.bootstrapiso:not(#random_id_string)>.table-responsive-sm>.table-bordered,html body.bootstrapiso>:not(#wpwrap) .table-responsive-sm>.table-bordered{border:0}}@media (max-width:767.98px){html body.bootstrapiso:not(#random_id_string)>.table-responsive-md,html body.bootstrapiso>:not(#wpwrap) .table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}html body.bootstrapiso:not(#random_id_string)>.table-responsive-md>.table-bordered,html body.bootstrapiso>:not(#wpwrap) .table-responsive-md>.table-bordered{border:0}}@media (max-width:991.98px){html body.bootstrapiso:not(#random_id_string)>.table-responsive-lg,html body.bootstrapiso>:not(#wpwrap) .table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}html body.bootstrapiso:not(#random_id_string)>.table-responsive-lg>.table-bordered,html body.bootstrapiso>:not(#wpwrap) .table-responsive-lg>.table-bordered{border:0}}@media (max-width:1199.98px){html body.bootstrapiso:not(#random_id_string)>.table-responsive-xl,html body.bootstrapiso>:not(#wpwrap) .table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}html body.bootstrapiso:not(#random_id_string)>.table-responsive-xl>.table-bordered,html body.bootstrapiso>:not(#wpwrap) .table-responsive-xl>.table-bordered{border:0}}html body.bootstrapiso:not(#random_id_string)>.table-responsive,html body.bootstrapiso>:not(#wpwrap) .table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}html body.bootstrapiso:not(#random_id_string)>.table-responsive>.table-bordered,html body.bootstrapiso>:not(#wpwrap) .table-responsive>.table-bordered{border:0}html body.bootstrapiso:not(#random_id_string)>.form-control,html body.bootstrapiso>:not(#wpwrap) .form-control{display:block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){html body.bootstrapiso:not(#random_id_string)>.form-control,html body.bootstrapiso>:not(#wpwrap) .form-control{transition:none}}html body.bootstrapiso:not(#random_id_string)>.form-control::-ms-expand,html body.bootstrapiso>:not(#wpwrap) .form-control::-ms-expand{background-color:transparent;border:0}html body.bootstrapiso:not(#random_id_string)>.form-control:-moz-focusring,html body.bootstrapiso>:not(#wpwrap) .form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}html body.bootstrapiso:not(#random_id_string)>.form-control:focus,html body.bootstrapiso>:not(#wpwrap) .form-control:focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}html body.bootstrapiso:not(#random_id_string)>.form-control::-webkit-input-placeholder,html body.bootstrapiso>:not(#wpwrap) .form-control::-webkit-input-placeholder{color:#6c757d;opacity:1}html body.bootstrapiso:not(#random_id_string)>.form-control:-ms-input-placeholder,html body.bootstrapiso>:not(#wpwrap) .form-control:-ms-input-placeholder{color:#6c757d;opacity:1}html body.bootstrapiso:not(#random_id_string)>.form-control::placeholder,html body.bootstrapiso>:not(#wpwrap) .form-control::placeholder{color:#6c757d;opacity:1}html body.bootstrapiso:not(#random_id_string)>.form-control:disabled,html body.bootstrapiso:not(#random_id_string)>.form-control[readonly],html body.bootstrapiso>:not(#wpwrap) .form-control:disabled,html body.bootstrapiso>:not(#wpwrap) .form-control[readonly]{background-color:#e9ecef;opacity:1}html body.bootstrapiso:not(#random_id_string)>input[type=date].form-control,html body.bootstrapiso:not(#random_id_string)>input[type=datetime-local].form-control,html body.bootstrapiso:not(#random_id_string)>input[type=month].form-control,html body.bootstrapiso:not(#random_id_string)>input[type=time].form-control,html body.bootstrapiso>:not(#wpwrap) input[type=date].form-control,html body.bootstrapiso>:not(#wpwrap) input[type=datetime-local].form-control,html body.bootstrapiso>:not(#wpwrap) input[type=month].form-control,html body.bootstrapiso>:not(#wpwrap) input[type=time].form-control{-webkit-appearance:none;appearance:none}html body.bootstrapiso:not(#random_id_string)>select.form-control:focus::-ms-value,html body.bootstrapiso>:not(#wpwrap) select.form-control:focus::-ms-value{color:#495057;background-color:#fff}html body.bootstrapiso:not(#random_id_string)>.form-control-file,html body.bootstrapiso:not(#random_id_string)>.form-control-range,html body.bootstrapiso>:not(#wpwrap) .form-control-file,html body.bootstrapiso>:not(#wpwrap) .form-control-range{display:block;width:100%}html body.bootstrapiso:not(#random_id_string)>.col-form-label,html body.bootstrapiso>:not(#wpwrap) .col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}html body.bootstrapiso:not(#random_id_string)>.col-form-label-lg,html body.bootstrapiso>:not(#wpwrap) .col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem;line-height:1.5}html body.bootstrapiso:not(#random_id_string)>.col-form-label-sm,html body.bootstrapiso>:not(#wpwrap) .col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem;line-height:1.5}html body.bootstrapiso:not(#random_id_string)>.form-control-plaintext,html body.bootstrapiso>:not(#wpwrap) .form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;font-size:1rem;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}html body.bootstrapiso:not(#random_id_string)>.form-control-plaintext.form-control-lg,html body.bootstrapiso:not(#random_id_string)>.form-control-plaintext.form-control-sm,html body.bootstrapiso>:not(#wpwrap) .form-control-plaintext.form-control-lg,html body.bootstrapiso>:not(#wpwrap) .form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}html body.bootstrapiso:not(#random_id_string)>.form-control-sm,html body.bootstrapiso>:not(#wpwrap) .form-control-sm{height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}html body.bootstrapiso:not(#random_id_string)>.form-control-lg,html body.bootstrapiso>:not(#wpwrap) .form-control-lg{height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}html body.bootstrapiso:not(#random_id_string)>select.form-control[multiple],html body.bootstrapiso:not(#random_id_string)>select.form-control[size],html body.bootstrapiso:not(#random_id_string)>textarea.form-control,html body.bootstrapiso>:not(#wpwrap) select.form-control[multiple],html body.bootstrapiso>:not(#wpwrap) select.form-control[size],html body.bootstrapiso>:not(#wpwrap) textarea.form-control{height:auto}html body.bootstrapiso:not(#random_id_string)>.form-group,html body.bootstrapiso>:not(#wpwrap) .form-group{margin-bottom:1rem}html body.bootstrapiso:not(#random_id_string)>.form-text,html body.bootstrapiso>:not(#wpwrap) .form-text{display:block;margin-top:.25rem}html body.bootstrapiso:not(#random_id_string)>.form-row,html body.bootstrapiso>:not(#wpwrap) .form-row{display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}html body.bootstrapiso:not(#random_id_string)>.form-row>.col,html body.bootstrapiso:not(#random_id_string)>.form-row>[class*=col-],html body.bootstrapiso>:not(#wpwrap) .form-row>.col,html body.bootstrapiso>:not(#wpwrap) .form-row>[class*=col-]{padding-right:5px;padding-left:5px}html body.bootstrapiso:not(#random_id_string)>.form-check,html body.bootstrapiso>:not(#wpwrap) .form-check{position:relative;display:block;padding-left:1.25rem}html body.bootstrapiso:not(#random_id_string)>.form-check-input,html body.bootstrapiso>:not(#wpwrap) .form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}html body.bootstrapiso:not(#random_id_string)>.form-check-input:disabled~.form-check-label,html body.bootstrapiso:not(#random_id_string)>.form-check-input[disabled]~.form-check-label,html body.bootstrapiso>:not(#wpwrap) .form-check-input:disabled~.form-check-label,html body.bootstrapiso>:not(#wpwrap) .form-check-input[disabled]~.form-check-label{color:#6c757d}html body.bootstrapiso:not(#random_id_string)>.form-check-label,html body.bootstrapiso>:not(#wpwrap) .form-check-label{margin-bottom:0}html body.bootstrapiso:not(#random_id_string)>.form-check-inline,html body.bootstrapiso>:not(#wpwrap) .form-check-inline{display:-webkit-inline-flex;display:inline-flex;-webkit-align-items:center;align-items:center;padding-left:0;margin-right:.75rem}html body.bootstrapiso:not(#random_id_string)>.form-check-inline .form-check-input,html body.bootstrapiso>:not(#wpwrap) .form-check-inline .form-check-input{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}html body.bootstrapiso:not(#random_id_string)>.valid-feedback,html body.bootstrapiso>:not(#wpwrap) .valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#28a745}html body.bootstrapiso:not(#random_id_string)>.valid-tooltip,html body.bootstrapiso>:not(#wpwrap) .valid-tooltip{position:absolute;top:100%;left:0;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(40,167,69,.9);border-radius:.25rem}html body.bootstrapiso:not(#random_id_string)>.form-row>.col>.valid-tooltip,html body.bootstrapiso:not(#random_id_string)>.form-row>[class*=col-]>.valid-tooltip,html body.bootstrapiso>:not(#wpwrap) .form-row>.col>.valid-tooltip,html body.bootstrapiso>:not(#wpwrap) .form-row>[class*=col-]>.valid-tooltip{left:5px}html body.bootstrapiso:not(#random_id_string)>.is-valid~.valid-feedback,html body.bootstrapiso:not(#random_id_string)>.is-valid~.valid-tooltip,html body.bootstrapiso:not(#random_id_string)>.was-validated :valid~.valid-feedback,html body.bootstrapiso:not(#random_id_string)>.was-validated :valid~.valid-tooltip,html body.bootstrapiso>:not(#wpwrap) .is-valid~.valid-feedback,html body.bootstrapiso>:not(#wpwrap) .is-valid~.valid-tooltip,html body.bootstrapiso>:not(#wpwrap) .was-validated :valid~.valid-feedback,html body.bootstrapiso>:not(#wpwrap) .was-validated :valid~.valid-tooltip{display:block}html body.bootstrapiso:not(#random_id_string)>.form-control.is-valid,html body.bootstrapiso:not(#random_id_string)>.was-validated .form-control:valid,html body.bootstrapiso>:not(#wpwrap) .form-control.is-valid,html body.bootstrapiso>:not(#wpwrap) .was-validated .form-control:valid{border-color:#28a745;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}html body.bootstrapiso:not(#random_id_string)>.form-control.is-valid:focus,html body.bootstrapiso:not(#random_id_string)>.was-validated .form-control:valid:focus,html body.bootstrapiso>:not(#wpwrap) .form-control.is-valid:focus,html body.bootstrapiso>:not(#wpwrap) .was-validated .form-control:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}html body.bootstrapiso:not(#random_id_string)>.was-validated textarea.form-control:valid,html body.bootstrapiso:not(#random_id_string)>textarea.form-control.is-valid,html body.bootstrapiso>:not(#wpwrap) .was-validated textarea.form-control:valid,html body.bootstrapiso>:not(#wpwrap) textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}html body.bootstrapiso:not(#random_id_string)>.custom-select.is-valid,html body.bootstrapiso:not(#random_id_string)>.was-validated .custom-select:valid,html body.bootstrapiso>:not(#wpwrap) .custom-select.is-valid,html body.bootstrapiso>:not(#wpwrap) .was-validated .custom-select:valid{border-color:#28a745;padding-right:calc(.75em + 2.3125rem);background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") right .75rem center/8px 10px no-repeat,#fff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E") center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem) no-repeat}html body.bootstrapiso:not(#random_id_string)>.custom-select.is-valid:focus,html body.bootstrapiso:not(#random_id_string)>.was-validated .custom-select:valid:focus,html body.bootstrapiso>:not(#wpwrap) .custom-select.is-valid:focus,html body.bootstrapiso>:not(#wpwrap) .was-validated .custom-select:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}html body.bootstrapiso:not(#random_id_string)>.form-check-input.is-valid~.form-check-label,html body.bootstrapiso:not(#random_id_string)>.was-validated .form-check-input:valid~.form-check-label,html body.bootstrapiso>:not(#wpwrap) .form-check-input.is-valid~.form-check-label,html body.bootstrapiso>:not(#wpwrap) .was-validated .form-check-input:valid~.form-check-label{color:#28a745}html body.bootstrapiso:not(#random_id_string)>.form-check-input.is-valid~.valid-feedback,html body.bootstrapiso:not(#random_id_string)>.form-check-input.is-valid~.valid-tooltip,html body.bootstrapiso:not(#random_id_string)>.was-validated .form-check-input:valid~.valid-feedback,html body.bootstrapiso:not(#random_id_string)>.was-validated .form-check-input:valid~.valid-tooltip,html body.bootstrapiso>:not(#wpwrap) .form-check-input.is-valid~.valid-feedback,html body.bootstrapiso>:not(#wpwrap) .form-check-input.is-valid~.valid-tooltip,html body.bootstrapiso>:not(#wpwrap) .was-validated .form-check-input:valid~.valid-feedback,html body.bootstrapiso>:not(#wpwrap) .was-validated .form-check-input:valid~.valid-tooltip{display:block}html body.bootstrapiso:not(#random_id_string)>.custom-control-input.is-valid~.custom-control-label,html body.bootstrapiso:not(#random_id_string)>.was-validated .custom-control-input:valid~.custom-control-label,html body.bootstrapiso>:not(#wpwrap) .custom-control-input.is-valid~.custom-control-label,html body.bootstrapiso>:not(#wpwrap) .was-validated .custom-control-input:valid~.custom-control-label{color:#28a745}html body.bootstrapiso:not(#random_id_string)>.custom-control-input.is-valid~.custom-control-label:before,html body.bootstrapiso:not(#random_id_string)>.was-validated .custom-control-input:valid~.custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .custom-control-input.is-valid~.custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .was-validated .custom-control-input:valid~.custom-control-label:before{border-color:#28a745}html body.bootstrapiso:not(#random_id_string)>.custom-control-input.is-valid:checked~.custom-control-label:before,html body.bootstrapiso:not(#random_id_string)>.was-validated .custom-control-input:valid:checked~.custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .custom-control-input.is-valid:checked~.custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .was-validated .custom-control-input:valid:checked~.custom-control-label:before{border-color:#34ce57;background-color:#34ce57}html body.bootstrapiso:not(#random_id_string)>.custom-control-input.is-valid:focus~.custom-control-label:before,html body.bootstrapiso:not(#random_id_string)>.was-validated .custom-control-input:valid:focus~.custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .custom-control-input.is-valid:focus~.custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .was-validated .custom-control-input:valid:focus~.custom-control-label:before{box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}html body.bootstrapiso:not(#random_id_string)>.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label:before,html body.bootstrapiso:not(#random_id_string)>.custom-file-input.is-valid~.custom-file-label,html body.bootstrapiso:not(#random_id_string)>.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label:before,html body.bootstrapiso:not(#random_id_string)>.was-validated .custom-file-input:valid~.custom-file-label,html body.bootstrapiso>:not(#wpwrap) .custom-control-input.is-valid:focus:not(:checked)~.custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .custom-file-input.is-valid~.custom-file-label,html body.bootstrapiso>:not(#wpwrap) .was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .was-validated .custom-file-input:valid~.custom-file-label{border-color:#28a745}html body.bootstrapiso:not(#random_id_string)>.custom-file-input.is-valid:focus~.custom-file-label,html body.bootstrapiso:not(#random_id_string)>.was-validated .custom-file-input:valid:focus~.custom-file-label,html body.bootstrapiso>:not(#wpwrap) .custom-file-input.is-valid:focus~.custom-file-label,html body.bootstrapiso>:not(#wpwrap) .was-validated .custom-file-input:valid:focus~.custom-file-label{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}html body.bootstrapiso:not(#random_id_string)>.invalid-feedback,html body.bootstrapiso>:not(#wpwrap) .invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#dc3545}html body.bootstrapiso:not(#random_id_string)>.invalid-tooltip,html body.bootstrapiso>:not(#wpwrap) .invalid-tooltip{position:absolute;top:100%;left:0;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(220,53,69,.9);border-radius:.25rem}html body.bootstrapiso:not(#random_id_string)>.form-row>.col>.invalid-tooltip,html body.bootstrapiso:not(#random_id_string)>.form-row>[class*=col-]>.invalid-tooltip,html body.bootstrapiso>:not(#wpwrap) .form-row>.col>.invalid-tooltip,html body.bootstrapiso>:not(#wpwrap) .form-row>[class*=col-]>.invalid-tooltip{left:5px}html body.bootstrapiso:not(#random_id_string)>.is-invalid~.invalid-feedback,html body.bootstrapiso:not(#random_id_string)>.is-invalid~.invalid-tooltip,html body.bootstrapiso:not(#random_id_string)>.was-validated :invalid~.invalid-feedback,html body.bootstrapiso:not(#random_id_string)>.was-validated :invalid~.invalid-tooltip,html body.bootstrapiso>:not(#wpwrap) .is-invalid~.invalid-feedback,html body.bootstrapiso>:not(#wpwrap) .is-invalid~.invalid-tooltip,html body.bootstrapiso>:not(#wpwrap) .was-validated :invalid~.invalid-feedback,html body.bootstrapiso>:not(#wpwrap) .was-validated :invalid~.invalid-tooltip{display:block}html body.bootstrapiso:not(#random_id_string)>.form-control.is-invalid,html body.bootstrapiso:not(#random_id_string)>.was-validated .form-control:invalid,html body.bootstrapiso>:not(#wpwrap) .form-control.is-invalid,html body.bootstrapiso>:not(#wpwrap) .was-validated .form-control:invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}html body.bootstrapiso:not(#random_id_string)>.form-control.is-invalid:focus,html body.bootstrapiso:not(#random_id_string)>.was-validated .form-control:invalid:focus,html body.bootstrapiso>:not(#wpwrap) .form-control.is-invalid:focus,html body.bootstrapiso>:not(#wpwrap) .was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}html body.bootstrapiso:not(#random_id_string)>.was-validated textarea.form-control:invalid,html body.bootstrapiso:not(#random_id_string)>textarea.form-control.is-invalid,html body.bootstrapiso>:not(#wpwrap) .was-validated textarea.form-control:invalid,html body.bootstrapiso>:not(#wpwrap) textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}html body.bootstrapiso:not(#random_id_string)>.custom-select.is-invalid,html body.bootstrapiso:not(#random_id_string)>.was-validated .custom-select:invalid,html body.bootstrapiso>:not(#wpwrap) .custom-select.is-invalid,html body.bootstrapiso>:not(#wpwrap) .was-validated .custom-select:invalid{border-color:#dc3545;padding-right:calc(.75em + 2.3125rem);background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") right .75rem center/8px 10px no-repeat,#fff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3E%3C/svg%3E") center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem) no-repeat}html body.bootstrapiso:not(#random_id_string)>.custom-select.is-invalid:focus,html body.bootstrapiso:not(#random_id_string)>.was-validated .custom-select:invalid:focus,html body.bootstrapiso>:not(#wpwrap) .custom-select.is-invalid:focus,html body.bootstrapiso>:not(#wpwrap) .was-validated .custom-select:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}html body.bootstrapiso:not(#random_id_string)>.form-check-input.is-invalid~.form-check-label,html body.bootstrapiso:not(#random_id_string)>.was-validated .form-check-input:invalid~.form-check-label,html body.bootstrapiso>:not(#wpwrap) .form-check-input.is-invalid~.form-check-label,html body.bootstrapiso>:not(#wpwrap) .was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}html body.bootstrapiso:not(#random_id_string)>.form-check-input.is-invalid~.invalid-feedback,html body.bootstrapiso:not(#random_id_string)>.form-check-input.is-invalid~.invalid-tooltip,html body.bootstrapiso:not(#random_id_string)>.was-validated .form-check-input:invalid~.invalid-feedback,html body.bootstrapiso:not(#random_id_string)>.was-validated .form-check-input:invalid~.invalid-tooltip,html body.bootstrapiso>:not(#wpwrap) .form-check-input.is-invalid~.invalid-feedback,html body.bootstrapiso>:not(#wpwrap) .form-check-input.is-invalid~.invalid-tooltip,html body.bootstrapiso>:not(#wpwrap) .was-validated .form-check-input:invalid~.invalid-feedback,html body.bootstrapiso>:not(#wpwrap) .was-validated .form-check-input:invalid~.invalid-tooltip{display:block}html body.bootstrapiso:not(#random_id_string)>.custom-control-input.is-invalid~.custom-control-label,html body.bootstrapiso:not(#random_id_string)>.was-validated .custom-control-input:invalid~.custom-control-label,html body.bootstrapiso>:not(#wpwrap) .custom-control-input.is-invalid~.custom-control-label,html body.bootstrapiso>:not(#wpwrap) .was-validated .custom-control-input:invalid~.custom-control-label{color:#dc3545}html body.bootstrapiso:not(#random_id_string)>.custom-control-input.is-invalid~.custom-control-label:before,html body.bootstrapiso:not(#random_id_string)>.was-validated .custom-control-input:invalid~.custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .custom-control-input.is-invalid~.custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .was-validated .custom-control-input:invalid~.custom-control-label:before{border-color:#dc3545}html body.bootstrapiso:not(#random_id_string)>.custom-control-input.is-invalid:checked~.custom-control-label:before,html body.bootstrapiso:not(#random_id_string)>.was-validated .custom-control-input:invalid:checked~.custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .custom-control-input.is-invalid:checked~.custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .was-validated .custom-control-input:invalid:checked~.custom-control-label:before{border-color:#e4606d;background-color:#e4606d}html body.bootstrapiso:not(#random_id_string)>.custom-control-input.is-invalid:focus~.custom-control-label:before,html body.bootstrapiso:not(#random_id_string)>.was-validated .custom-control-input:invalid:focus~.custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .custom-control-input.is-invalid:focus~.custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .was-validated .custom-control-input:invalid:focus~.custom-control-label:before{box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}html body.bootstrapiso:not(#random_id_string)>.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label:before,html body.bootstrapiso:not(#random_id_string)>.custom-file-input.is-invalid~.custom-file-label,html body.bootstrapiso:not(#random_id_string)>.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label:before,html body.bootstrapiso:not(#random_id_string)>.was-validated .custom-file-input:invalid~.custom-file-label,html body.bootstrapiso>:not(#wpwrap) .custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .custom-file-input.is-invalid~.custom-file-label,html body.bootstrapiso>:not(#wpwrap) .was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .was-validated .custom-file-input:invalid~.custom-file-label{border-color:#dc3545}html body.bootstrapiso:not(#random_id_string)>.custom-file-input.is-invalid:focus~.custom-file-label,html body.bootstrapiso:not(#random_id_string)>.was-validated .custom-file-input:invalid:focus~.custom-file-label,html body.bootstrapiso>:not(#wpwrap) .custom-file-input.is-invalid:focus~.custom-file-label,html body.bootstrapiso>:not(#wpwrap) .was-validated .custom-file-input:invalid:focus~.custom-file-label{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}html body.bootstrapiso:not(#random_id_string)>.form-inline,html body.bootstrapiso>:not(#wpwrap) .form-inline{display:-webkit-flex;display:flex;-webkit-flex-flow:row wrap;flex-flow:row wrap;-webkit-align-items:center;align-items:center}html body.bootstrapiso:not(#random_id_string)>.form-inline .form-check,html body.bootstrapiso>:not(#wpwrap) .form-inline .form-check{width:100%}@media (min-width:576px){html body.bootstrapiso:not(#random_id_string)>.form-inline label,html body.bootstrapiso>:not(#wpwrap) .form-inline label{display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center;margin-bottom:0}html body.bootstrapiso:not(#random_id_string)>.form-inline .form-group,html body.bootstrapiso>:not(#wpwrap) .form-inline .form-group{display:-webkit-flex;display:flex;-webkit-flex:0 0 auto;flex:0 0 auto;-webkit-flex-flow:row wrap;flex-flow:row wrap;-webkit-align-items:center;align-items:center;margin-bottom:0}html body.bootstrapiso:not(#random_id_string)>.form-inline .form-control,html body.bootstrapiso>:not(#wpwrap) .form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}html body.bootstrapiso:not(#random_id_string)>.form-inline .form-control-plaintext,html body.bootstrapiso>:not(#wpwrap) .form-inline .form-control-plaintext{display:inline-block}html body.bootstrapiso:not(#random_id_string)>.form-inline .custom-select,html body.bootstrapiso:not(#random_id_string)>.form-inline .input-group,html body.bootstrapiso>:not(#wpwrap) .form-inline .custom-select,html body.bootstrapiso>:not(#wpwrap) .form-inline .input-group{width:auto}html body.bootstrapiso:not(#random_id_string)>.form-inline .form-check,html body.bootstrapiso>:not(#wpwrap) .form-inline .form-check{display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center;width:auto;padding-left:0}html body.bootstrapiso:not(#random_id_string)>.form-inline .form-check-input,html body.bootstrapiso>:not(#wpwrap) .form-inline .form-check-input{position:relative;-webkit-flex-shrink:0;flex-shrink:0;margin-top:0;margin-right:.25rem;margin-left:0}html body.bootstrapiso:not(#random_id_string)>.form-inline .custom-control,html body.bootstrapiso>:not(#wpwrap) .form-inline .custom-control{-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center}html body.bootstrapiso:not(#random_id_string)>.form-inline .custom-control-label,html body.bootstrapiso>:not(#wpwrap) .form-inline .custom-control-label{margin-bottom:0}}html body.bootstrapiso:not(#random_id_string)>.btn,html body.bootstrapiso>:not(#wpwrap) .btn{display:inline-block;font-weight:400;color:#212529;text-align:center;vertical-align:middle;-webkit-user-select:none;-ms-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){html body.bootstrapiso:not(#random_id_string)>.btn,html body.bootstrapiso>:not(#wpwrap) .btn{transition:none}}html body.bootstrapiso:not(#random_id_string)>.btn:hover,html body.bootstrapiso>:not(#wpwrap) .btn:hover{color:#212529;text-decoration:none}html body.bootstrapiso:not(#random_id_string)>.btn.focus,html body.bootstrapiso:not(#random_id_string)>.btn:focus,html body.bootstrapiso>:not(#wpwrap) .btn.focus,html body.bootstrapiso>:not(#wpwrap) .btn:focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}html body.bootstrapiso:not(#random_id_string)>.btn.disabled,html body.bootstrapiso:not(#random_id_string)>.btn:disabled,html body.bootstrapiso>:not(#wpwrap) .btn.disabled,html body.bootstrapiso>:not(#wpwrap) .btn:disabled{opacity:.65}html body.bootstrapiso:not(#random_id_string)>.btn:not(:disabled):not(.disabled),html body.bootstrapiso>:not(#wpwrap) .btn:not(:disabled):not(.disabled){cursor:pointer}html body.bootstrapiso:not(#random_id_string)>a.btn.disabled,html body.bootstrapiso:not(#random_id_string)>fieldset:disabled a.btn,html body.bootstrapiso>:not(#wpwrap) a.btn.disabled,html body.bootstrapiso>:not(#wpwrap) fieldset:disabled a.btn{pointer-events:none}html body.bootstrapiso:not(#random_id_string)>.btn-primary,html body.bootstrapiso>:not(#wpwrap) .btn-primary{color:#fff;background-color:#007bff;border-color:#007bff}html body.bootstrapiso:not(#random_id_string)>.btn-primary:hover,html body.bootstrapiso>:not(#wpwrap) .btn-primary:hover{color:#fff;background-color:#0069d9;border-color:#0062cc}html body.bootstrapiso:not(#random_id_string)>.btn-primary.focus,html body.bootstrapiso:not(#random_id_string)>.btn-primary:focus,html body.bootstrapiso>:not(#wpwrap) .btn-primary.focus,html body.bootstrapiso>:not(#wpwrap) .btn-primary:focus{color:#fff;background-color:#0069d9;border-color:#0062cc;box-shadow:0 0 0 .2rem rgba(38,143,255,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-primary.disabled,html body.bootstrapiso:not(#random_id_string)>.btn-primary:disabled,html body.bootstrapiso>:not(#wpwrap) .btn-primary.disabled,html body.bootstrapiso>:not(#wpwrap) .btn-primary:disabled{color:#fff;background-color:#007bff;border-color:#007bff}html body.bootstrapiso:not(#random_id_string)>.btn-primary:not(:disabled):not(.disabled).active,html body.bootstrapiso:not(#random_id_string)>.btn-primary:not(:disabled):not(.disabled):active,html body.bootstrapiso:not(#random_id_string)>.show>.btn-primary.dropdown-toggle,html body.bootstrapiso>:not(#wpwrap) .btn-primary:not(:disabled):not(.disabled).active,html body.bootstrapiso>:not(#wpwrap) .btn-primary:not(:disabled):not(.disabled):active,html body.bootstrapiso>:not(#wpwrap) .show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0062cc;border-color:#005cbf}html body.bootstrapiso:not(#random_id_string)>.btn-primary:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso:not(#random_id_string)>.btn-primary:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso:not(#random_id_string)>.show>.btn-primary.dropdown-toggle:focus,html body.bootstrapiso>:not(#wpwrap) .btn-primary:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso>:not(#wpwrap) .btn-primary:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso>:not(#wpwrap) .show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(38,143,255,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-secondary,html body.bootstrapiso>:not(#wpwrap) .btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}html body.bootstrapiso:not(#random_id_string)>.btn-secondary:hover,html body.bootstrapiso>:not(#wpwrap) .btn-secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62}html body.bootstrapiso:not(#random_id_string)>.btn-secondary.focus,html body.bootstrapiso:not(#random_id_string)>.btn-secondary:focus,html body.bootstrapiso>:not(#wpwrap) .btn-secondary.focus,html body.bootstrapiso>:not(#wpwrap) .btn-secondary:focus{color:#fff;background-color:#5a6268;border-color:#545b62;box-shadow:0 0 0 .2rem rgba(130,138,145,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-secondary.disabled,html body.bootstrapiso:not(#random_id_string)>.btn-secondary:disabled,html body.bootstrapiso>:not(#wpwrap) .btn-secondary.disabled,html body.bootstrapiso>:not(#wpwrap) .btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}html body.bootstrapiso:not(#random_id_string)>.btn-secondary:not(:disabled):not(.disabled).active,html body.bootstrapiso:not(#random_id_string)>.btn-secondary:not(:disabled):not(.disabled):active,html body.bootstrapiso:not(#random_id_string)>.show>.btn-secondary.dropdown-toggle,html body.bootstrapiso>:not(#wpwrap) .btn-secondary:not(:disabled):not(.disabled).active,html body.bootstrapiso>:not(#wpwrap) .btn-secondary:not(:disabled):not(.disabled):active,html body.bootstrapiso>:not(#wpwrap) .show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}html body.bootstrapiso:not(#random_id_string)>.btn-secondary:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso:not(#random_id_string)>.btn-secondary:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso:not(#random_id_string)>.show>.btn-secondary.dropdown-toggle:focus,html body.bootstrapiso>:not(#wpwrap) .btn-secondary:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso>:not(#wpwrap) .btn-secondary:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso>:not(#wpwrap) .show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(130,138,145,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-success,html body.bootstrapiso>:not(#wpwrap) .btn-success{color:#fff;background-color:#28a745;border-color:#28a745}html body.bootstrapiso:not(#random_id_string)>.btn-success:hover,html body.bootstrapiso>:not(#wpwrap) .btn-success:hover{color:#fff;background-color:#218838;border-color:#1e7e34}html body.bootstrapiso:not(#random_id_string)>.btn-success.focus,html body.bootstrapiso:not(#random_id_string)>.btn-success:focus,html body.bootstrapiso>:not(#wpwrap) .btn-success.focus,html body.bootstrapiso>:not(#wpwrap) .btn-success:focus{color:#fff;background-color:#218838;border-color:#1e7e34;box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-success.disabled,html body.bootstrapiso:not(#random_id_string)>.btn-success:disabled,html body.bootstrapiso>:not(#wpwrap) .btn-success.disabled,html body.bootstrapiso>:not(#wpwrap) .btn-success:disabled{color:#fff;background-color:#28a745;border-color:#28a745}html body.bootstrapiso:not(#random_id_string)>.btn-success:not(:disabled):not(.disabled).active,html body.bootstrapiso:not(#random_id_string)>.btn-success:not(:disabled):not(.disabled):active,html body.bootstrapiso:not(#random_id_string)>.show>.btn-success.dropdown-toggle,html body.bootstrapiso>:not(#wpwrap) .btn-success:not(:disabled):not(.disabled).active,html body.bootstrapiso>:not(#wpwrap) .btn-success:not(:disabled):not(.disabled):active,html body.bootstrapiso>:not(#wpwrap) .show>.btn-success.dropdown-toggle{color:#fff;background-color:#1e7e34;border-color:#1c7430}html body.bootstrapiso:not(#random_id_string)>.btn-success:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso:not(#random_id_string)>.btn-success:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso:not(#random_id_string)>.show>.btn-success.dropdown-toggle:focus,html body.bootstrapiso>:not(#wpwrap) .btn-success:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso>:not(#wpwrap) .btn-success:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso>:not(#wpwrap) .show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-info,html body.bootstrapiso>:not(#wpwrap) .btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}html body.bootstrapiso:not(#random_id_string)>.btn-info:hover,html body.bootstrapiso>:not(#wpwrap) .btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}html body.bootstrapiso:not(#random_id_string)>.btn-info.focus,html body.bootstrapiso:not(#random_id_string)>.btn-info:focus,html body.bootstrapiso>:not(#wpwrap) .btn-info.focus,html body.bootstrapiso>:not(#wpwrap) .btn-info:focus{color:#fff;background-color:#138496;border-color:#117a8b;box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-info.disabled,html body.bootstrapiso:not(#random_id_string)>.btn-info:disabled,html body.bootstrapiso>:not(#wpwrap) .btn-info.disabled,html body.bootstrapiso>:not(#wpwrap) .btn-info:disabled{color:#fff;background-color:#17a2b8;border-color:#17a2b8}html body.bootstrapiso:not(#random_id_string)>.btn-info:not(:disabled):not(.disabled).active,html body.bootstrapiso:not(#random_id_string)>.btn-info:not(:disabled):not(.disabled):active,html body.bootstrapiso:not(#random_id_string)>.show>.btn-info.dropdown-toggle,html body.bootstrapiso>:not(#wpwrap) .btn-info:not(:disabled):not(.disabled).active,html body.bootstrapiso>:not(#wpwrap) .btn-info:not(:disabled):not(.disabled):active,html body.bootstrapiso>:not(#wpwrap) .show>.btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f}html body.bootstrapiso:not(#random_id_string)>.btn-info:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso:not(#random_id_string)>.btn-info:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso:not(#random_id_string)>.show>.btn-info.dropdown-toggle:focus,html body.bootstrapiso>:not(#wpwrap) .btn-info:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso>:not(#wpwrap) .btn-info:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso>:not(#wpwrap) .show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-warning,html body.bootstrapiso>:not(#wpwrap) .btn-warning{color:#212529;background-color:#ffc107;border-color:#ffc107}html body.bootstrapiso:not(#random_id_string)>.btn-warning:hover,html body.bootstrapiso>:not(#wpwrap) .btn-warning:hover{color:#212529;background-color:#e0a800;border-color:#d39e00}html body.bootstrapiso:not(#random_id_string)>.btn-warning.focus,html body.bootstrapiso:not(#random_id_string)>.btn-warning:focus,html body.bootstrapiso>:not(#wpwrap) .btn-warning.focus,html body.bootstrapiso>:not(#wpwrap) .btn-warning:focus{color:#212529;background-color:#e0a800;border-color:#d39e00;box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-warning.disabled,html body.bootstrapiso:not(#random_id_string)>.btn-warning:disabled,html body.bootstrapiso>:not(#wpwrap) .btn-warning.disabled,html body.bootstrapiso>:not(#wpwrap) .btn-warning:disabled{color:#212529;background-color:#ffc107;border-color:#ffc107}html body.bootstrapiso:not(#random_id_string)>.btn-warning:not(:disabled):not(.disabled).active,html body.bootstrapiso:not(#random_id_string)>.btn-warning:not(:disabled):not(.disabled):active,html body.bootstrapiso:not(#random_id_string)>.show>.btn-warning.dropdown-toggle,html body.bootstrapiso>:not(#wpwrap) .btn-warning:not(:disabled):not(.disabled).active,html body.bootstrapiso>:not(#wpwrap) .btn-warning:not(:disabled):not(.disabled):active,html body.bootstrapiso>:not(#wpwrap) .show>.btn-warning.dropdown-toggle{color:#212529;background-color:#d39e00;border-color:#c69500}html body.bootstrapiso:not(#random_id_string)>.btn-warning:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso:not(#random_id_string)>.btn-warning:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso:not(#random_id_string)>.show>.btn-warning.dropdown-toggle:focus,html body.bootstrapiso>:not(#wpwrap) .btn-warning:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso>:not(#wpwrap) .btn-warning:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso>:not(#wpwrap) .show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-danger,html body.bootstrapiso>:not(#wpwrap) .btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}html body.bootstrapiso:not(#random_id_string)>.btn-danger:hover,html body.bootstrapiso>:not(#wpwrap) .btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}html body.bootstrapiso:not(#random_id_string)>.btn-danger.focus,html body.bootstrapiso:not(#random_id_string)>.btn-danger:focus,html body.bootstrapiso>:not(#wpwrap) .btn-danger.focus,html body.bootstrapiso>:not(#wpwrap) .btn-danger:focus{color:#fff;background-color:#c82333;border-color:#bd2130;box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-danger.disabled,html body.bootstrapiso:not(#random_id_string)>.btn-danger:disabled,html body.bootstrapiso>:not(#wpwrap) .btn-danger.disabled,html body.bootstrapiso>:not(#wpwrap) .btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}html body.bootstrapiso:not(#random_id_string)>.btn-danger:not(:disabled):not(.disabled).active,html body.bootstrapiso:not(#random_id_string)>.btn-danger:not(:disabled):not(.disabled):active,html body.bootstrapiso:not(#random_id_string)>.show>.btn-danger.dropdown-toggle,html body.bootstrapiso>:not(#wpwrap) .btn-danger:not(:disabled):not(.disabled).active,html body.bootstrapiso>:not(#wpwrap) .btn-danger:not(:disabled):not(.disabled):active,html body.bootstrapiso>:not(#wpwrap) .show>.btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d}html body.bootstrapiso:not(#random_id_string)>.btn-danger:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso:not(#random_id_string)>.btn-danger:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso:not(#random_id_string)>.show>.btn-danger.dropdown-toggle:focus,html body.bootstrapiso>:not(#wpwrap) .btn-danger:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso>:not(#wpwrap) .btn-danger:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso>:not(#wpwrap) .show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-light,html body.bootstrapiso>:not(#wpwrap) .btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}html body.bootstrapiso:not(#random_id_string)>.btn-light:hover,html body.bootstrapiso>:not(#wpwrap) .btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}html body.bootstrapiso:not(#random_id_string)>.btn-light.focus,html body.bootstrapiso:not(#random_id_string)>.btn-light:focus,html body.bootstrapiso>:not(#wpwrap) .btn-light.focus,html body.bootstrapiso>:not(#wpwrap) .btn-light:focus{color:#212529;background-color:#e2e6ea;border-color:#dae0e5;box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-light.disabled,html body.bootstrapiso:not(#random_id_string)>.btn-light:disabled,html body.bootstrapiso>:not(#wpwrap) .btn-light.disabled,html body.bootstrapiso>:not(#wpwrap) .btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}html body.bootstrapiso:not(#random_id_string)>.btn-light:not(:disabled):not(.disabled).active,html body.bootstrapiso:not(#random_id_string)>.btn-light:not(:disabled):not(.disabled):active,html body.bootstrapiso:not(#random_id_string)>.show>.btn-light.dropdown-toggle,html body.bootstrapiso>:not(#wpwrap) .btn-light:not(:disabled):not(.disabled).active,html body.bootstrapiso>:not(#wpwrap) .btn-light:not(:disabled):not(.disabled):active,html body.bootstrapiso>:not(#wpwrap) .show>.btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}html body.bootstrapiso:not(#random_id_string)>.btn-light:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso:not(#random_id_string)>.btn-light:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso:not(#random_id_string)>.show>.btn-light.dropdown-toggle:focus,html body.bootstrapiso>:not(#wpwrap) .btn-light:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso>:not(#wpwrap) .btn-light:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso>:not(#wpwrap) .show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-dark,html body.bootstrapiso>:not(#wpwrap) .btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}html body.bootstrapiso:not(#random_id_string)>.btn-dark:hover,html body.bootstrapiso>:not(#wpwrap) .btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}html body.bootstrapiso:not(#random_id_string)>.btn-dark.focus,html body.bootstrapiso:not(#random_id_string)>.btn-dark:focus,html body.bootstrapiso>:not(#wpwrap) .btn-dark.focus,html body.bootstrapiso>:not(#wpwrap) .btn-dark:focus{color:#fff;background-color:#23272b;border-color:#1d2124;box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-dark.disabled,html body.bootstrapiso:not(#random_id_string)>.btn-dark:disabled,html body.bootstrapiso>:not(#wpwrap) .btn-dark.disabled,html body.bootstrapiso>:not(#wpwrap) .btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}html body.bootstrapiso:not(#random_id_string)>.btn-dark:not(:disabled):not(.disabled).active,html body.bootstrapiso:not(#random_id_string)>.btn-dark:not(:disabled):not(.disabled):active,html body.bootstrapiso:not(#random_id_string)>.show>.btn-dark.dropdown-toggle,html body.bootstrapiso>:not(#wpwrap) .btn-dark:not(:disabled):not(.disabled).active,html body.bootstrapiso>:not(#wpwrap) .btn-dark:not(:disabled):not(.disabled):active,html body.bootstrapiso>:not(#wpwrap) .show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}html body.bootstrapiso:not(#random_id_string)>.btn-dark:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso:not(#random_id_string)>.btn-dark:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso:not(#random_id_string)>.show>.btn-dark.dropdown-toggle:focus,html body.bootstrapiso>:not(#wpwrap) .btn-dark:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso>:not(#wpwrap) .btn-dark:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso>:not(#wpwrap) .show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-outline-primary,html body.bootstrapiso>:not(#wpwrap) .btn-outline-primary{color:#007bff;border-color:#007bff}html body.bootstrapiso:not(#random_id_string)>.btn-outline-primary:hover,html body.bootstrapiso>:not(#wpwrap) .btn-outline-primary:hover{color:#fff;background-color:#007bff;border-color:#007bff}html body.bootstrapiso:not(#random_id_string)>.btn-outline-primary.focus,html body.bootstrapiso:not(#random_id_string)>.btn-outline-primary:focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-primary.focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-primary:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-outline-primary.disabled,html body.bootstrapiso:not(#random_id_string)>.btn-outline-primary:disabled,html body.bootstrapiso>:not(#wpwrap) .btn-outline-primary.disabled,html body.bootstrapiso>:not(#wpwrap) .btn-outline-primary:disabled{color:#007bff;background-color:transparent}html body.bootstrapiso:not(#random_id_string)>.btn-outline-primary:not(:disabled):not(.disabled).active,html body.bootstrapiso:not(#random_id_string)>.btn-outline-primary:not(:disabled):not(.disabled):active,html body.bootstrapiso:not(#random_id_string)>.show>.btn-outline-primary.dropdown-toggle,html body.bootstrapiso>:not(#wpwrap) .btn-outline-primary:not(:disabled):not(.disabled).active,html body.bootstrapiso>:not(#wpwrap) .btn-outline-primary:not(:disabled):not(.disabled):active,html body.bootstrapiso>:not(#wpwrap) .show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#007bff;border-color:#007bff}html body.bootstrapiso:not(#random_id_string)>.btn-outline-primary:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso:not(#random_id_string)>.btn-outline-primary:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso:not(#random_id_string)>.show>.btn-outline-primary.dropdown-toggle:focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-primary:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-primary:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso>:not(#wpwrap) .show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-outline-secondary,html body.bootstrapiso>:not(#wpwrap) .btn-outline-secondary{color:#6c757d;border-color:#6c757d}html body.bootstrapiso:not(#random_id_string)>.btn-outline-secondary:hover,html body.bootstrapiso>:not(#wpwrap) .btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}html body.bootstrapiso:not(#random_id_string)>.btn-outline-secondary.focus,html body.bootstrapiso:not(#random_id_string)>.btn-outline-secondary:focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-secondary.focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-secondary:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-outline-secondary.disabled,html body.bootstrapiso:not(#random_id_string)>.btn-outline-secondary:disabled,html body.bootstrapiso>:not(#wpwrap) .btn-outline-secondary.disabled,html body.bootstrapiso>:not(#wpwrap) .btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}html body.bootstrapiso:not(#random_id_string)>.btn-outline-secondary:not(:disabled):not(.disabled).active,html body.bootstrapiso:not(#random_id_string)>.btn-outline-secondary:not(:disabled):not(.disabled):active,html body.bootstrapiso:not(#random_id_string)>.show>.btn-outline-secondary.dropdown-toggle,html body.bootstrapiso>:not(#wpwrap) .btn-outline-secondary:not(:disabled):not(.disabled).active,html body.bootstrapiso>:not(#wpwrap) .btn-outline-secondary:not(:disabled):not(.disabled):active,html body.bootstrapiso>:not(#wpwrap) .show>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#6c757d;border-color:#6c757d}html body.bootstrapiso:not(#random_id_string)>.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso:not(#random_id_string)>.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso:not(#random_id_string)>.show>.btn-outline-secondary.dropdown-toggle:focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-secondary:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso>:not(#wpwrap) .show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-outline-success,html body.bootstrapiso>:not(#wpwrap) .btn-outline-success{color:#28a745;border-color:#28a745}html body.bootstrapiso:not(#random_id_string)>.btn-outline-success:hover,html body.bootstrapiso>:not(#wpwrap) .btn-outline-success:hover{color:#fff;background-color:#28a745;border-color:#28a745}html body.bootstrapiso:not(#random_id_string)>.btn-outline-success.focus,html body.bootstrapiso:not(#random_id_string)>.btn-outline-success:focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-success.focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-success:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-outline-success.disabled,html body.bootstrapiso:not(#random_id_string)>.btn-outline-success:disabled,html body.bootstrapiso>:not(#wpwrap) .btn-outline-success.disabled,html body.bootstrapiso>:not(#wpwrap) .btn-outline-success:disabled{color:#28a745;background-color:transparent}html body.bootstrapiso:not(#random_id_string)>.btn-outline-success:not(:disabled):not(.disabled).active,html body.bootstrapiso:not(#random_id_string)>.btn-outline-success:not(:disabled):not(.disabled):active,html body.bootstrapiso:not(#random_id_string)>.show>.btn-outline-success.dropdown-toggle,html body.bootstrapiso>:not(#wpwrap) .btn-outline-success:not(:disabled):not(.disabled).active,html body.bootstrapiso>:not(#wpwrap) .btn-outline-success:not(:disabled):not(.disabled):active,html body.bootstrapiso>:not(#wpwrap) .show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#28a745;border-color:#28a745}html body.bootstrapiso:not(#random_id_string)>.btn-outline-success:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso:not(#random_id_string)>.btn-outline-success:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso:not(#random_id_string)>.show>.btn-outline-success.dropdown-toggle:focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-success:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-success:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso>:not(#wpwrap) .show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-outline-info,html body.bootstrapiso>:not(#wpwrap) .btn-outline-info{color:#17a2b8;border-color:#17a2b8}html body.bootstrapiso:not(#random_id_string)>.btn-outline-info:hover,html body.bootstrapiso>:not(#wpwrap) .btn-outline-info:hover{color:#fff;background-color:#17a2b8;border-color:#17a2b8}html body.bootstrapiso:not(#random_id_string)>.btn-outline-info.focus,html body.bootstrapiso:not(#random_id_string)>.btn-outline-info:focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-info.focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-info:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-outline-info.disabled,html body.bootstrapiso:not(#random_id_string)>.btn-outline-info:disabled,html body.bootstrapiso>:not(#wpwrap) .btn-outline-info.disabled,html body.bootstrapiso>:not(#wpwrap) .btn-outline-info:disabled{color:#17a2b8;background-color:transparent}html body.bootstrapiso:not(#random_id_string)>.btn-outline-info:not(:disabled):not(.disabled).active,html body.bootstrapiso:not(#random_id_string)>.btn-outline-info:not(:disabled):not(.disabled):active,html body.bootstrapiso:not(#random_id_string)>.show>.btn-outline-info.dropdown-toggle,html body.bootstrapiso>:not(#wpwrap) .btn-outline-info:not(:disabled):not(.disabled).active,html body.bootstrapiso>:not(#wpwrap) .btn-outline-info:not(:disabled):not(.disabled):active,html body.bootstrapiso>:not(#wpwrap) .show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#17a2b8;border-color:#17a2b8}html body.bootstrapiso:not(#random_id_string)>.btn-outline-info:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso:not(#random_id_string)>.btn-outline-info:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso:not(#random_id_string)>.show>.btn-outline-info.dropdown-toggle:focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-info:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-info:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso>:not(#wpwrap) .show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-outline-warning,html body.bootstrapiso>:not(#wpwrap) .btn-outline-warning{color:#ffc107;border-color:#ffc107}html body.bootstrapiso:not(#random_id_string)>.btn-outline-warning:hover,html body.bootstrapiso>:not(#wpwrap) .btn-outline-warning:hover{color:#212529;background-color:#ffc107;border-color:#ffc107}html body.bootstrapiso:not(#random_id_string)>.btn-outline-warning.focus,html body.bootstrapiso:not(#random_id_string)>.btn-outline-warning:focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-warning.focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-warning:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-outline-warning.disabled,html body.bootstrapiso:not(#random_id_string)>.btn-outline-warning:disabled,html body.bootstrapiso>:not(#wpwrap) .btn-outline-warning.disabled,html body.bootstrapiso>:not(#wpwrap) .btn-outline-warning:disabled{color:#ffc107;background-color:transparent}html body.bootstrapiso:not(#random_id_string)>.btn-outline-warning:not(:disabled):not(.disabled).active,html body.bootstrapiso:not(#random_id_string)>.btn-outline-warning:not(:disabled):not(.disabled):active,html body.bootstrapiso:not(#random_id_string)>.show>.btn-outline-warning.dropdown-toggle,html body.bootstrapiso>:not(#wpwrap) .btn-outline-warning:not(:disabled):not(.disabled).active,html body.bootstrapiso>:not(#wpwrap) .btn-outline-warning:not(:disabled):not(.disabled):active,html body.bootstrapiso>:not(#wpwrap) .show>.btn-outline-warning.dropdown-toggle{color:#212529;background-color:#ffc107;border-color:#ffc107}html body.bootstrapiso:not(#random_id_string)>.btn-outline-warning:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso:not(#random_id_string)>.btn-outline-warning:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso:not(#random_id_string)>.show>.btn-outline-warning.dropdown-toggle:focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-warning:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-warning:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso>:not(#wpwrap) .show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-outline-danger,html body.bootstrapiso>:not(#wpwrap) .btn-outline-danger{color:#dc3545;border-color:#dc3545}html body.bootstrapiso:not(#random_id_string)>.btn-outline-danger:hover,html body.bootstrapiso>:not(#wpwrap) .btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}html body.bootstrapiso:not(#random_id_string)>.btn-outline-danger.focus,html body.bootstrapiso:not(#random_id_string)>.btn-outline-danger:focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-danger.focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-danger:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-outline-danger.disabled,html body.bootstrapiso:not(#random_id_string)>.btn-outline-danger:disabled,html body.bootstrapiso>:not(#wpwrap) .btn-outline-danger.disabled,html body.bootstrapiso>:not(#wpwrap) .btn-outline-danger:disabled{color:#dc3545;background-color:transparent}html body.bootstrapiso:not(#random_id_string)>.btn-outline-danger:not(:disabled):not(.disabled).active,html body.bootstrapiso:not(#random_id_string)>.btn-outline-danger:not(:disabled):not(.disabled):active,html body.bootstrapiso:not(#random_id_string)>.show>.btn-outline-danger.dropdown-toggle,html body.bootstrapiso>:not(#wpwrap) .btn-outline-danger:not(:disabled):not(.disabled).active,html body.bootstrapiso>:not(#wpwrap) .btn-outline-danger:not(:disabled):not(.disabled):active,html body.bootstrapiso>:not(#wpwrap) .show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dc3545;border-color:#dc3545}html body.bootstrapiso:not(#random_id_string)>.btn-outline-danger:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso:not(#random_id_string)>.btn-outline-danger:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso:not(#random_id_string)>.show>.btn-outline-danger.dropdown-toggle:focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-danger:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-danger:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso>:not(#wpwrap) .show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-outline-light,html body.bootstrapiso>:not(#wpwrap) .btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}html body.bootstrapiso:not(#random_id_string)>.btn-outline-light:hover,html body.bootstrapiso>:not(#wpwrap) .btn-outline-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}html body.bootstrapiso:not(#random_id_string)>.btn-outline-light.focus,html body.bootstrapiso:not(#random_id_string)>.btn-outline-light:focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-light.focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-light:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-outline-light.disabled,html body.bootstrapiso:not(#random_id_string)>.btn-outline-light:disabled,html body.bootstrapiso>:not(#wpwrap) .btn-outline-light.disabled,html body.bootstrapiso>:not(#wpwrap) .btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}html body.bootstrapiso:not(#random_id_string)>.btn-outline-light:not(:disabled):not(.disabled).active,html body.bootstrapiso:not(#random_id_string)>.btn-outline-light:not(:disabled):not(.disabled):active,html body.bootstrapiso:not(#random_id_string)>.show>.btn-outline-light.dropdown-toggle,html body.bootstrapiso>:not(#wpwrap) .btn-outline-light:not(:disabled):not(.disabled).active,html body.bootstrapiso>:not(#wpwrap) .btn-outline-light:not(:disabled):not(.disabled):active,html body.bootstrapiso>:not(#wpwrap) .show>.btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}html body.bootstrapiso:not(#random_id_string)>.btn-outline-light:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso:not(#random_id_string)>.btn-outline-light:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso:not(#random_id_string)>.show>.btn-outline-light.dropdown-toggle:focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-light:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-light:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso>:not(#wpwrap) .show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-outline-dark,html body.bootstrapiso>:not(#wpwrap) .btn-outline-dark{color:#343a40;border-color:#343a40}html body.bootstrapiso:not(#random_id_string)>.btn-outline-dark:hover,html body.bootstrapiso>:not(#wpwrap) .btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}html body.bootstrapiso:not(#random_id_string)>.btn-outline-dark.focus,html body.bootstrapiso:not(#random_id_string)>.btn-outline-dark:focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-dark.focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-dark:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-outline-dark.disabled,html body.bootstrapiso:not(#random_id_string)>.btn-outline-dark:disabled,html body.bootstrapiso>:not(#wpwrap) .btn-outline-dark.disabled,html body.bootstrapiso>:not(#wpwrap) .btn-outline-dark:disabled{color:#343a40;background-color:transparent}html body.bootstrapiso:not(#random_id_string)>.btn-outline-dark:not(:disabled):not(.disabled).active,html body.bootstrapiso:not(#random_id_string)>.btn-outline-dark:not(:disabled):not(.disabled):active,html body.bootstrapiso:not(#random_id_string)>.show>.btn-outline-dark.dropdown-toggle,html body.bootstrapiso>:not(#wpwrap) .btn-outline-dark:not(:disabled):not(.disabled).active,html body.bootstrapiso>:not(#wpwrap) .btn-outline-dark:not(:disabled):not(.disabled):active,html body.bootstrapiso>:not(#wpwrap) .show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}html body.bootstrapiso:not(#random_id_string)>.btn-outline-dark:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso:not(#random_id_string)>.btn-outline-dark:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso:not(#random_id_string)>.show>.btn-outline-dark.dropdown-toggle:focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-dark:not(:disabled):not(.disabled).active:focus,html body.bootstrapiso>:not(#wpwrap) .btn-outline-dark:not(:disabled):not(.disabled):active:focus,html body.bootstrapiso>:not(#wpwrap) .show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}html body.bootstrapiso:not(#random_id_string)>.btn-link,html body.bootstrapiso>:not(#wpwrap) .btn-link{font-weight:400;color:#007bff;text-decoration:none}html body.bootstrapiso:not(#random_id_string)>.btn-link:hover,html body.bootstrapiso>:not(#wpwrap) .btn-link:hover{color:#0056b3;text-decoration:underline}html body.bootstrapiso:not(#random_id_string)>.btn-link.focus,html body.bootstrapiso:not(#random_id_string)>.btn-link:focus,html body.bootstrapiso>:not(#wpwrap) .btn-link.focus,html body.bootstrapiso>:not(#wpwrap) .btn-link:focus{text-decoration:underline}html body.bootstrapiso:not(#random_id_string)>.btn-link.disabled,html body.bootstrapiso:not(#random_id_string)>.btn-link:disabled,html body.bootstrapiso>:not(#wpwrap) .btn-link.disabled,html body.bootstrapiso>:not(#wpwrap) .btn-link:disabled{color:#6c757d;pointer-events:none}html body.bootstrapiso:not(#random_id_string)>.btn-group-lg>.btn,html body.bootstrapiso:not(#random_id_string)>.btn-lg,html body.bootstrapiso>:not(#wpwrap) .btn-group-lg>.btn,html body.bootstrapiso>:not(#wpwrap) .btn-lg{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}html body.bootstrapiso:not(#random_id_string)>.btn-group-sm>.btn,html body.bootstrapiso:not(#random_id_string)>.btn-sm,html body.bootstrapiso>:not(#wpwrap) .btn-group-sm>.btn,html body.bootstrapiso>:not(#wpwrap) .btn-sm{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}html body.bootstrapiso:not(#random_id_string)>.btn-block,html body.bootstrapiso>:not(#wpwrap) .btn-block{display:block;width:100%}html body.bootstrapiso:not(#random_id_string)>.btn-block+.btn-block,html body.bootstrapiso>:not(#wpwrap) .btn-block+.btn-block{margin-top:.5rem}html body.bootstrapiso:not(#random_id_string)>input[type=button].btn-block,html body.bootstrapiso:not(#random_id_string)>input[type=reset].btn-block,html body.bootstrapiso:not(#random_id_string)>input[type=submit].btn-block,html body.bootstrapiso>:not(#wpwrap) input[type=button].btn-block,html body.bootstrapiso>:not(#wpwrap) input[type=reset].btn-block,html body.bootstrapiso>:not(#wpwrap) input[type=submit].btn-block{width:100%}html body.bootstrapiso:not(#random_id_string)>.fade,html body.bootstrapiso>:not(#wpwrap) .fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){html body.bootstrapiso:not(#random_id_string)>.fade,html body.bootstrapiso>:not(#wpwrap) .fade{transition:none}}html body.bootstrapiso:not(#random_id_string)>.fade:not(.show),html body.bootstrapiso>:not(#wpwrap) .fade:not(.show){opacity:0}html body.bootstrapiso:not(#random_id_string)>.collapse:not(.show),html body.bootstrapiso>:not(#wpwrap) .collapse:not(.show){display:none}html body.bootstrapiso:not(#random_id_string)>.collapsing,html body.bootstrapiso>:not(#wpwrap) .collapsing{position:relative;height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){html body.bootstrapiso:not(#random_id_string)>.collapsing,html body.bootstrapiso>:not(#wpwrap) .collapsing{transition:none}}html body.bootstrapiso:not(#random_id_string)>.dropdown,html body.bootstrapiso:not(#random_id_string)>.dropleft,html body.bootstrapiso:not(#random_id_string)>.dropright,html body.bootstrapiso:not(#random_id_string)>.dropup,html body.bootstrapiso>:not(#wpwrap) .dropdown,html body.bootstrapiso>:not(#wpwrap) .dropleft,html body.bootstrapiso>:not(#wpwrap) .dropright,html body.bootstrapiso>:not(#wpwrap) .dropup{position:relative}html body.bootstrapiso:not(#random_id_string)>.dropdown-toggle,html body.bootstrapiso>:not(#wpwrap) .dropdown-toggle{white-space:nowrap}html body.bootstrapiso:not(#random_id_string)>.dropdown-toggle:after,html body.bootstrapiso>:not(#wpwrap) .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}html body.bootstrapiso:not(#random_id_string)>.dropdown-toggle:empty:after,html body.bootstrapiso>:not(#wpwrap) .dropdown-toggle:empty:after{margin-left:0}html body.bootstrapiso:not(#random_id_string)>.dropdown-menu,html body.bootstrapiso>:not(#wpwrap) .dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}html body.bootstrapiso:not(#random_id_string)>.dropdown-menu-left,html body.bootstrapiso>:not(#wpwrap) .dropdown-menu-left{right:auto;left:0}html body.bootstrapiso:not(#random_id_string)>.dropdown-menu-right,html body.bootstrapiso>:not(#wpwrap) .dropdown-menu-right{right:0;left:auto}@media (min-width:576px){html body.bootstrapiso:not(#random_id_string)>.dropdown-menu-sm-left,html body.bootstrapiso>:not(#wpwrap) .dropdown-menu-sm-left{right:auto;left:0}html body.bootstrapiso:not(#random_id_string)>.dropdown-menu-sm-right,html body.bootstrapiso>:not(#wpwrap) .dropdown-menu-sm-right{right:0;left:auto}}@media (min-width:768px){html body.bootstrapiso:not(#random_id_string)>.dropdown-menu-md-left,html body.bootstrapiso>:not(#wpwrap) .dropdown-menu-md-left{right:auto;left:0}html body.bootstrapiso:not(#random_id_string)>.dropdown-menu-md-right,html body.bootstrapiso>:not(#wpwrap) .dropdown-menu-md-right{right:0;left:auto}}@media (min-width:992px){html body.bootstrapiso:not(#random_id_string)>.dropdown-menu-lg-left,html body.bootstrapiso>:not(#wpwrap) .dropdown-menu-lg-left{right:auto;left:0}html body.bootstrapiso:not(#random_id_string)>.dropdown-menu-lg-right,html body.bootstrapiso>:not(#wpwrap) .dropdown-menu-lg-right{right:0;left:auto}}@media (min-width:1200px){html body.bootstrapiso:not(#random_id_string)>.dropdown-menu-xl-left,html body.bootstrapiso>:not(#wpwrap) .dropdown-menu-xl-left{right:auto;left:0}html body.bootstrapiso:not(#random_id_string)>.dropdown-menu-xl-right,html body.bootstrapiso>:not(#wpwrap) .dropdown-menu-xl-right{right:0;left:auto}}html body.bootstrapiso:not(#random_id_string)>.dropup .dropdown-menu,html body.bootstrapiso>:not(#wpwrap) .dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}html body.bootstrapiso:not(#random_id_string)>.dropup .dropdown-toggle:after,html body.bootstrapiso>:not(#wpwrap) .dropup .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}html body.bootstrapiso:not(#random_id_string)>.dropup .dropdown-toggle:empty:after,html body.bootstrapiso>:not(#wpwrap) .dropup .dropdown-toggle:empty:after{margin-left:0}html body.bootstrapiso:not(#random_id_string)>.dropright .dropdown-menu,html body.bootstrapiso>:not(#wpwrap) .dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}html body.bootstrapiso:not(#random_id_string)>.dropright .dropdown-toggle:after,html body.bootstrapiso>:not(#wpwrap) .dropright .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}html body.bootstrapiso:not(#random_id_string)>.dropright .dropdown-toggle:empty:after,html body.bootstrapiso>:not(#wpwrap) .dropright .dropdown-toggle:empty:after{margin-left:0}html body.bootstrapiso:not(#random_id_string)>.dropright .dropdown-toggle:after,html body.bootstrapiso>:not(#wpwrap) .dropright .dropdown-toggle:after{vertical-align:0}html body.bootstrapiso:not(#random_id_string)>.dropleft .dropdown-menu,html body.bootstrapiso>:not(#wpwrap) .dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}html body.bootstrapiso:not(#random_id_string)>.dropleft .dropdown-toggle:after,html body.bootstrapiso>:not(#wpwrap) .dropleft .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";display:none}html body.bootstrapiso:not(#random_id_string)>.dropleft .dropdown-toggle:before,html body.bootstrapiso>:not(#wpwrap) .dropleft .dropdown-toggle:before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}html body.bootstrapiso:not(#random_id_string)>.dropleft .dropdown-toggle:empty:after,html body.bootstrapiso>:not(#wpwrap) .dropleft .dropdown-toggle:empty:after{margin-left:0}html body.bootstrapiso:not(#random_id_string)>.dropleft .dropdown-toggle:before,html body.bootstrapiso>:not(#wpwrap) .dropleft .dropdown-toggle:before{vertical-align:0}html body.bootstrapiso:not(#random_id_string)>.dropdown-menu[x-placement^=bottom],html body.bootstrapiso:not(#random_id_string)>.dropdown-menu[x-placement^=left],html body.bootstrapiso:not(#random_id_string)>.dropdown-menu[x-placement^=right],html body.bootstrapiso:not(#random_id_string)>.dropdown-menu[x-placement^=top],html body.bootstrapiso>:not(#wpwrap) .dropdown-menu[x-placement^=bottom],html body.bootstrapiso>:not(#wpwrap) .dropdown-menu[x-placement^=left],html body.bootstrapiso>:not(#wpwrap) .dropdown-menu[x-placement^=right],html body.bootstrapiso>:not(#wpwrap) .dropdown-menu[x-placement^=top]{right:auto;bottom:auto}html body.bootstrapiso:not(#random_id_string)>.dropdown-divider,html body.bootstrapiso>:not(#wpwrap) .dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}html body.bootstrapiso:not(#random_id_string)>.dropdown-item,html body.bootstrapiso>:not(#wpwrap) .dropdown-item{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}html body.bootstrapiso:not(#random_id_string)>.dropdown-item:focus,html body.bootstrapiso:not(#random_id_string)>.dropdown-item:hover,html body.bootstrapiso>:not(#wpwrap) .dropdown-item:focus,html body.bootstrapiso>:not(#wpwrap) .dropdown-item:hover{color:#16181b;text-decoration:none;background-color:#e9ecef}html body.bootstrapiso:not(#random_id_string)>.dropdown-item.active,html body.bootstrapiso:not(#random_id_string)>.dropdown-item:active,html body.bootstrapiso>:not(#wpwrap) .dropdown-item.active,html body.bootstrapiso>:not(#wpwrap) .dropdown-item:active{color:#fff;text-decoration:none;background-color:#007bff}html body.bootstrapiso:not(#random_id_string)>.dropdown-item.disabled,html body.bootstrapiso:not(#random_id_string)>.dropdown-item:disabled,html body.bootstrapiso>:not(#wpwrap) .dropdown-item.disabled,html body.bootstrapiso>:not(#wpwrap) .dropdown-item:disabled{color:#adb5bd;pointer-events:none;background-color:transparent}html body.bootstrapiso:not(#random_id_string)>.dropdown-menu.show,html body.bootstrapiso>:not(#wpwrap) .dropdown-menu.show{display:block}html body.bootstrapiso:not(#random_id_string)>.dropdown-header,html body.bootstrapiso>:not(#wpwrap) .dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}html body.bootstrapiso:not(#random_id_string)>.dropdown-item-text,html body.bootstrapiso>:not(#wpwrap) .dropdown-item-text{display:block;padding:.25rem 1.5rem;color:#212529}html body.bootstrapiso:not(#random_id_string)>.btn-group,html body.bootstrapiso:not(#random_id_string)>.btn-group-vertical,html body.bootstrapiso>:not(#wpwrap) .btn-group,html body.bootstrapiso>:not(#wpwrap) .btn-group-vertical{position:relative;display:-webkit-inline-flex;display:inline-flex;vertical-align:middle}html body.bootstrapiso:not(#random_id_string)>.btn-group-vertical>.btn,html body.bootstrapiso:not(#random_id_string)>.btn-group>.btn,html body.bootstrapiso>:not(#wpwrap) .btn-group-vertical>.btn,html body.bootstrapiso>:not(#wpwrap) .btn-group>.btn{position:relative;-webkit-flex:1 1 auto;flex:1 1 auto}html body.bootstrapiso:not(#random_id_string)>.btn-group-vertical>.btn.active,html body.bootstrapiso:not(#random_id_string)>.btn-group-vertical>.btn:active,html body.bootstrapiso:not(#random_id_string)>.btn-group-vertical>.btn:focus,html body.bootstrapiso:not(#random_id_string)>.btn-group-vertical>.btn:hover,html body.bootstrapiso:not(#random_id_string)>.btn-group>.btn.active,html body.bootstrapiso:not(#random_id_string)>.btn-group>.btn:active,html body.bootstrapiso:not(#random_id_string)>.btn-group>.btn:focus,html body.bootstrapiso:not(#random_id_string)>.btn-group>.btn:hover,html body.bootstrapiso>:not(#wpwrap) .btn-group-vertical>.btn.active,html body.bootstrapiso>:not(#wpwrap) .btn-group-vertical>.btn:active,html body.bootstrapiso>:not(#wpwrap) .btn-group-vertical>.btn:focus,html body.bootstrapiso>:not(#wpwrap) .btn-group-vertical>.btn:hover,html body.bootstrapiso>:not(#wpwrap) .btn-group>.btn.active,html body.bootstrapiso>:not(#wpwrap) .btn-group>.btn:active,html body.bootstrapiso>:not(#wpwrap) .btn-group>.btn:focus,html body.bootstrapiso>:not(#wpwrap) .btn-group>.btn:hover{z-index:1}html body.bootstrapiso:not(#random_id_string)>.btn-toolbar,html body.bootstrapiso>:not(#wpwrap) .btn-toolbar{display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;-webkit-justify-content:flex-start;justify-content:flex-start}html body.bootstrapiso:not(#random_id_string)>.btn-toolbar .input-group,html body.bootstrapiso>:not(#wpwrap) .btn-toolbar .input-group{width:auto}html body.bootstrapiso:not(#random_id_string)>.btn-group>.btn-group:not(:first-child),html body.bootstrapiso:not(#random_id_string)>.btn-group>.btn:not(:first-child),html body.bootstrapiso>:not(#wpwrap) .btn-group>.btn-group:not(:first-child),html body.bootstrapiso>:not(#wpwrap) .btn-group>.btn:not(:first-child){margin-left:-1px}html body.bootstrapiso:not(#random_id_string)>.btn-group>.btn-group:not(:last-child)>.btn,html body.bootstrapiso:not(#random_id_string)>.btn-group>.btn:not(:last-child):not(.dropdown-toggle),html body.bootstrapiso>:not(#wpwrap) .btn-group>.btn-group:not(:last-child)>.btn,html body.bootstrapiso>:not(#wpwrap) .btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}html body.bootstrapiso:not(#random_id_string)>.btn-group>.btn-group:not(:first-child)>.btn,html body.bootstrapiso:not(#random_id_string)>.btn-group>.btn:not(:first-child),html body.bootstrapiso>:not(#wpwrap) .btn-group>.btn-group:not(:first-child)>.btn,html body.bootstrapiso>:not(#wpwrap) .btn-group>.btn:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}html body.bootstrapiso:not(#random_id_string)>.dropdown-toggle-split,html body.bootstrapiso>:not(#wpwrap) .dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}html body.bootstrapiso:not(#random_id_string)>.dropdown-toggle-split:after,html body.bootstrapiso:not(#random_id_string)>.dropright .dropdown-toggle-split:after,html body.bootstrapiso:not(#random_id_string)>.dropup .dropdown-toggle-split:after,html body.bootstrapiso>:not(#wpwrap) .dropdown-toggle-split:after,html body.bootstrapiso>:not(#wpwrap) .dropright .dropdown-toggle-split:after,html body.bootstrapiso>:not(#wpwrap) .dropup .dropdown-toggle-split:after{margin-left:0}html body.bootstrapiso:not(#random_id_string)>.dropleft .dropdown-toggle-split:before,html body.bootstrapiso>:not(#wpwrap) .dropleft .dropdown-toggle-split:before{margin-right:0}html body.bootstrapiso:not(#random_id_string)>.btn-group-sm>.btn+.dropdown-toggle-split,html body.bootstrapiso:not(#random_id_string)>.btn-sm+.dropdown-toggle-split,html body.bootstrapiso>:not(#wpwrap) .btn-group-sm>.btn+.dropdown-toggle-split,html body.bootstrapiso>:not(#wpwrap) .btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}html body.bootstrapiso:not(#random_id_string)>.btn-group-lg>.btn+.dropdown-toggle-split,html body.bootstrapiso:not(#random_id_string)>.btn-lg+.dropdown-toggle-split,html body.bootstrapiso>:not(#wpwrap) .btn-group-lg>.btn+.dropdown-toggle-split,html body.bootstrapiso>:not(#wpwrap) .btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}html body.bootstrapiso:not(#random_id_string)>.btn-group-vertical,html body.bootstrapiso>:not(#wpwrap) .btn-group-vertical{-webkit-flex-direction:column;flex-direction:column;-webkit-align-items:flex-start;align-items:flex-start;-webkit-justify-content:center;justify-content:center}html body.bootstrapiso:not(#random_id_string)>.btn-group-vertical>.btn,html body.bootstrapiso:not(#random_id_string)>.btn-group-vertical>.btn-group,html body.bootstrapiso>:not(#wpwrap) .btn-group-vertical>.btn,html body.bootstrapiso>:not(#wpwrap) .btn-group-vertical>.btn-group{width:100%}html body.bootstrapiso:not(#random_id_string)>.btn-group-vertical>.btn-group:not(:first-child),html body.bootstrapiso:not(#random_id_string)>.btn-group-vertical>.btn:not(:first-child),html body.bootstrapiso>:not(#wpwrap) .btn-group-vertical>.btn-group:not(:first-child),html body.bootstrapiso>:not(#wpwrap) .btn-group-vertical>.btn:not(:first-child){margin-top:-1px}html body.bootstrapiso:not(#random_id_string)>.btn-group-vertical>.btn-group:not(:last-child)>.btn,html body.bootstrapiso:not(#random_id_string)>.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),html body.bootstrapiso>:not(#wpwrap) .btn-group-vertical>.btn-group:not(:last-child)>.btn,html body.bootstrapiso>:not(#wpwrap) .btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}html body.bootstrapiso:not(#random_id_string)>.btn-group-vertical>.btn-group:not(:first-child)>.btn,html body.bootstrapiso:not(#random_id_string)>.btn-group-vertical>.btn:not(:first-child),html body.bootstrapiso>:not(#wpwrap) .btn-group-vertical>.btn-group:not(:first-child)>.btn,html body.bootstrapiso>:not(#wpwrap) .btn-group-vertical>.btn:not(:first-child){border-top-left-radius:0;border-top-right-radius:0}html body.bootstrapiso:not(#random_id_string)>.btn-group-toggle>.btn,html body.bootstrapiso:not(#random_id_string)>.btn-group-toggle>.btn-group>.btn,html body.bootstrapiso>:not(#wpwrap) .btn-group-toggle>.btn,html body.bootstrapiso>:not(#wpwrap) .btn-group-toggle>.btn-group>.btn{margin-bottom:0}html body.bootstrapiso:not(#random_id_string)>.btn-group-toggle>.btn-group>.btn input[type=checkbox],html body.bootstrapiso:not(#random_id_string)>.btn-group-toggle>.btn-group>.btn input[type=radio],html body.bootstrapiso:not(#random_id_string)>.btn-group-toggle>.btn input[type=checkbox],html body.bootstrapiso:not(#random_id_string)>.btn-group-toggle>.btn input[type=radio],html body.bootstrapiso>:not(#wpwrap) .btn-group-toggle>.btn-group>.btn input[type=checkbox],html body.bootstrapiso>:not(#wpwrap) .btn-group-toggle>.btn-group>.btn input[type=radio],html body.bootstrapiso>:not(#wpwrap) .btn-group-toggle>.btn input[type=checkbox],html body.bootstrapiso>:not(#wpwrap) .btn-group-toggle>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}html body.bootstrapiso:not(#random_id_string)>.input-group,html body.bootstrapiso>:not(#wpwrap) .input-group{position:relative;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;-webkit-align-items:stretch;align-items:stretch;width:100%}html body.bootstrapiso:not(#random_id_string)>.input-group>.custom-file,html body.bootstrapiso:not(#random_id_string)>.input-group>.custom-select,html body.bootstrapiso:not(#random_id_string)>.input-group>.form-control,html body.bootstrapiso:not(#random_id_string)>.input-group>.form-control-plaintext,html body.bootstrapiso>:not(#wpwrap) .input-group>.custom-file,html body.bootstrapiso>:not(#wpwrap) .input-group>.custom-select,html body.bootstrapiso>:not(#wpwrap) .input-group>.form-control,html body.bootstrapiso>:not(#wpwrap) .input-group>.form-control-plaintext{position:relative;-webkit-flex:1 1 auto;flex:1 1 auto;width:1%;min-width:0;margin-bottom:0}html body.bootstrapiso:not(#random_id_string)>.input-group>.custom-file+.custom-file,html body.bootstrapiso:not(#random_id_string)>.input-group>.custom-file+.custom-select,html body.bootstrapiso:not(#random_id_string)>.input-group>.custom-file+.form-control,html body.bootstrapiso:not(#random_id_string)>.input-group>.custom-select+.custom-file,html body.bootstrapiso:not(#random_id_string)>.input-group>.custom-select+.custom-select,html body.bootstrapiso:not(#random_id_string)>.input-group>.custom-select+.form-control,html body.bootstrapiso:not(#random_id_string)>.input-group>.form-control+.custom-file,html body.bootstrapiso:not(#random_id_string)>.input-group>.form-control+.custom-select,html body.bootstrapiso:not(#random_id_string)>.input-group>.form-control+.form-control,html body.bootstrapiso:not(#random_id_string)>.input-group>.form-control-plaintext+.custom-file,html body.bootstrapiso:not(#random_id_string)>.input-group>.form-control-plaintext+.custom-select,html body.bootstrapiso:not(#random_id_string)>.input-group>.form-control-plaintext+.form-control,html body.bootstrapiso>:not(#wpwrap) .input-group>.custom-file+.custom-file,html body.bootstrapiso>:not(#wpwrap) .input-group>.custom-file+.custom-select,html body.bootstrapiso>:not(#wpwrap) .input-group>.custom-file+.form-control,html body.bootstrapiso>:not(#wpwrap) .input-group>.custom-select+.custom-file,html body.bootstrapiso>:not(#wpwrap) .input-group>.custom-select+.custom-select,html body.bootstrapiso>:not(#wpwrap) .input-group>.custom-select+.form-control,html body.bootstrapiso>:not(#wpwrap) .input-group>.form-control+.custom-file,html body.bootstrapiso>:not(#wpwrap) .input-group>.form-control+.custom-select,html body.bootstrapiso>:not(#wpwrap) .input-group>.form-control+.form-control,html body.bootstrapiso>:not(#wpwrap) .input-group>.form-control-plaintext+.custom-file,html body.bootstrapiso>:not(#wpwrap) .input-group>.form-control-plaintext+.custom-select,html body.bootstrapiso>:not(#wpwrap) .input-group>.form-control-plaintext+.form-control{margin-left:-1px}html body.bootstrapiso:not(#random_id_string)>.input-group>.custom-file .custom-file-input:focus~.custom-file-label,html body.bootstrapiso:not(#random_id_string)>.input-group>.custom-select:focus,html body.bootstrapiso:not(#random_id_string)>.input-group>.form-control:focus,html body.bootstrapiso>:not(#wpwrap) .input-group>.custom-file .custom-file-input:focus~.custom-file-label,html body.bootstrapiso>:not(#wpwrap) .input-group>.custom-select:focus,html body.bootstrapiso>:not(#wpwrap) .input-group>.form-control:focus{z-index:3}html body.bootstrapiso:not(#random_id_string)>.input-group>.custom-file .custom-file-input:focus,html body.bootstrapiso>:not(#wpwrap) .input-group>.custom-file .custom-file-input:focus{z-index:4}html body.bootstrapiso:not(#random_id_string)>.input-group>.custom-select:not(:first-child),html body.bootstrapiso:not(#random_id_string)>.input-group>.form-control:not(:first-child),html body.bootstrapiso>:not(#wpwrap) .input-group>.custom-select:not(:first-child),html body.bootstrapiso>:not(#wpwrap) .input-group>.form-control:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}html body.bootstrapiso:not(#random_id_string)>.input-group>.custom-file,html body.bootstrapiso>:not(#wpwrap) .input-group>.custom-file{display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center}html body.bootstrapiso:not(#random_id_string)>.input-group>.custom-file:not(:first-child) .custom-file-label,html body.bootstrapiso:not(#random_id_string)>.input-group>.custom-file:not(:last-child) .custom-file-label,html body.bootstrapiso>:not(#wpwrap) .input-group>.custom-file:not(:first-child) .custom-file-label,html body.bootstrapiso>:not(#wpwrap) .input-group>.custom-file:not(:last-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}html body.bootstrapiso:not(#random_id_string)>.input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label:after,html body.bootstrapiso:not(#random_id_string)>.input-group.has-validation>.custom-select:nth-last-child(n+3),html body.bootstrapiso:not(#random_id_string)>.input-group.has-validation>.form-control:nth-last-child(n+3),html body.bootstrapiso:not(#random_id_string)>.input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label:after,html body.bootstrapiso:not(#random_id_string)>.input-group:not(.has-validation)>.custom-select:not(:last-child),html body.bootstrapiso:not(#random_id_string)>.input-group:not(.has-validation)>.form-control:not(:last-child),html body.bootstrapiso>:not(#wpwrap) .input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label:after,html body.bootstrapiso>:not(#wpwrap) .input-group.has-validation>.custom-select:nth-last-child(n+3),html body.bootstrapiso>:not(#wpwrap) .input-group.has-validation>.form-control:nth-last-child(n+3),html body.bootstrapiso>:not(#wpwrap) .input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label:after,html body.bootstrapiso>:not(#wpwrap) .input-group:not(.has-validation)>.custom-select:not(:last-child),html body.bootstrapiso>:not(#wpwrap) .input-group:not(.has-validation)>.form-control:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}html body.bootstrapiso:not(#random_id_string)>.input-group-append,html body.bootstrapiso:not(#random_id_string)>.input-group-prepend,html body.bootstrapiso>:not(#wpwrap) .input-group-append,html body.bootstrapiso>:not(#wpwrap) .input-group-prepend{display:-webkit-flex;display:flex}html body.bootstrapiso:not(#random_id_string)>.input-group-append .btn,html body.bootstrapiso:not(#random_id_string)>.input-group-prepend .btn,html body.bootstrapiso>:not(#wpwrap) .input-group-append .btn,html body.bootstrapiso>:not(#wpwrap) .input-group-prepend .btn{position:relative;z-index:2}html body.bootstrapiso:not(#random_id_string)>.input-group-append .btn:focus,html body.bootstrapiso:not(#random_id_string)>.input-group-prepend .btn:focus,html body.bootstrapiso>:not(#wpwrap) .input-group-append .btn:focus,html body.bootstrapiso>:not(#wpwrap) .input-group-prepend .btn:focus{z-index:3}html body.bootstrapiso:not(#random_id_string)>.input-group-append .btn+.btn,html body.bootstrapiso:not(#random_id_string)>.input-group-append .btn+.input-group-text,html body.bootstrapiso:not(#random_id_string)>.input-group-append .input-group-text+.btn,html body.bootstrapiso:not(#random_id_string)>.input-group-append .input-group-text+.input-group-text,html body.bootstrapiso:not(#random_id_string)>.input-group-prepend .btn+.btn,html body.bootstrapiso:not(#random_id_string)>.input-group-prepend .btn+.input-group-text,html body.bootstrapiso:not(#random_id_string)>.input-group-prepend .input-group-text+.btn,html body.bootstrapiso:not(#random_id_string)>.input-group-prepend .input-group-text+.input-group-text,html body.bootstrapiso>:not(#wpwrap) .input-group-append .btn+.btn,html body.bootstrapiso>:not(#wpwrap) .input-group-append .btn+.input-group-text,html body.bootstrapiso>:not(#wpwrap) .input-group-append .input-group-text+.btn,html body.bootstrapiso>:not(#wpwrap) .input-group-append .input-group-text+.input-group-text,html body.bootstrapiso>:not(#wpwrap) .input-group-prepend .btn+.btn,html body.bootstrapiso>:not(#wpwrap) .input-group-prepend .btn+.input-group-text,html body.bootstrapiso>:not(#wpwrap) .input-group-prepend .input-group-text+.btn,html body.bootstrapiso>:not(#wpwrap) .input-group-prepend .input-group-text+.input-group-text{margin-left:-1px}html body.bootstrapiso:not(#random_id_string)>.input-group-prepend,html body.bootstrapiso>:not(#wpwrap) .input-group-prepend{margin-right:-1px}html body.bootstrapiso:not(#random_id_string)>.input-group-append,html body.bootstrapiso>:not(#wpwrap) .input-group-append{margin-left:-1px}html body.bootstrapiso:not(#random_id_string)>.input-group-text,html body.bootstrapiso>:not(#wpwrap) .input-group-text{display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;padding:.375rem .75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}html body.bootstrapiso:not(#random_id_string)>.input-group-text input[type=checkbox],html body.bootstrapiso:not(#random_id_string)>.input-group-text input[type=radio],html body.bootstrapiso>:not(#wpwrap) .input-group-text input[type=checkbox],html body.bootstrapiso>:not(#wpwrap) .input-group-text input[type=radio]{margin-top:0}html body.bootstrapiso:not(#random_id_string)>.input-group-lg>.custom-select,html body.bootstrapiso:not(#random_id_string)>.input-group-lg>.form-control:not(textarea),html body.bootstrapiso>:not(#wpwrap) .input-group-lg>.custom-select,html body.bootstrapiso>:not(#wpwrap) .input-group-lg>.form-control:not(textarea){height:calc(1.5em + 1rem + 2px)}html body.bootstrapiso:not(#random_id_string)>.input-group-lg>.custom-select,html body.bootstrapiso:not(#random_id_string)>.input-group-lg>.form-control,html body.bootstrapiso:not(#random_id_string)>.input-group-lg>.input-group-append>.btn,html body.bootstrapiso:not(#random_id_string)>.input-group-lg>.input-group-append>.input-group-text,html body.bootstrapiso:not(#random_id_string)>.input-group-lg>.input-group-prepend>.btn,html body.bootstrapiso:not(#random_id_string)>.input-group-lg>.input-group-prepend>.input-group-text,html body.bootstrapiso>:not(#wpwrap) .input-group-lg>.custom-select,html body.bootstrapiso>:not(#wpwrap) .input-group-lg>.form-control,html body.bootstrapiso>:not(#wpwrap) .input-group-lg>.input-group-append>.btn,html body.bootstrapiso>:not(#wpwrap) .input-group-lg>.input-group-append>.input-group-text,html body.bootstrapiso>:not(#wpwrap) .input-group-lg>.input-group-prepend>.btn,html body.bootstrapiso>:not(#wpwrap) .input-group-lg>.input-group-prepend>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}html body.bootstrapiso:not(#random_id_string)>.input-group-sm>.custom-select,html body.bootstrapiso:not(#random_id_string)>.input-group-sm>.form-control:not(textarea),html body.bootstrapiso>:not(#wpwrap) .input-group-sm>.custom-select,html body.bootstrapiso>:not(#wpwrap) .input-group-sm>.form-control:not(textarea){height:calc(1.5em + .5rem + 2px)}html body.bootstrapiso:not(#random_id_string)>.input-group-sm>.custom-select,html body.bootstrapiso:not(#random_id_string)>.input-group-sm>.form-control,html body.bootstrapiso:not(#random_id_string)>.input-group-sm>.input-group-append>.btn,html body.bootstrapiso:not(#random_id_string)>.input-group-sm>.input-group-append>.input-group-text,html body.bootstrapiso:not(#random_id_string)>.input-group-sm>.input-group-prepend>.btn,html body.bootstrapiso:not(#random_id_string)>.input-group-sm>.input-group-prepend>.input-group-text,html body.bootstrapiso>:not(#wpwrap) .input-group-sm>.custom-select,html body.bootstrapiso>:not(#wpwrap) .input-group-sm>.form-control,html body.bootstrapiso>:not(#wpwrap) .input-group-sm>.input-group-append>.btn,html body.bootstrapiso>:not(#wpwrap) .input-group-sm>.input-group-append>.input-group-text,html body.bootstrapiso>:not(#wpwrap) .input-group-sm>.input-group-prepend>.btn,html body.bootstrapiso>:not(#wpwrap) .input-group-sm>.input-group-prepend>.input-group-text{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}html body.bootstrapiso:not(#random_id_string)>.input-group-lg>.custom-select,html body.bootstrapiso:not(#random_id_string)>.input-group-sm>.custom-select,html body.bootstrapiso>:not(#wpwrap) .input-group-lg>.custom-select,html body.bootstrapiso>:not(#wpwrap) .input-group-sm>.custom-select{padding-right:1.75rem}html body.bootstrapiso:not(#random_id_string)>.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.btn,html body.bootstrapiso:not(#random_id_string)>.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.input-group-text,html body.bootstrapiso:not(#random_id_string)>.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.btn,html body.bootstrapiso:not(#random_id_string)>.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.input-group-text,html body.bootstrapiso:not(#random_id_string)>.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),html body.bootstrapiso:not(#random_id_string)>.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),html body.bootstrapiso:not(#random_id_string)>.input-group>.input-group-prepend>.btn,html body.bootstrapiso:not(#random_id_string)>.input-group>.input-group-prepend>.input-group-text,html body.bootstrapiso>:not(#wpwrap) .input-group.has-validation>.input-group-append:nth-last-child(n+3)>.btn,html body.bootstrapiso>:not(#wpwrap) .input-group.has-validation>.input-group-append:nth-last-child(n+3)>.input-group-text,html body.bootstrapiso>:not(#wpwrap) .input-group:not(.has-validation)>.input-group-append:not(:last-child)>.btn,html body.bootstrapiso>:not(#wpwrap) .input-group:not(.has-validation)>.input-group-append:not(:last-child)>.input-group-text,html body.bootstrapiso>:not(#wpwrap) .input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),html body.bootstrapiso>:not(#wpwrap) .input-group>.input-group-append:last-child>.input-group-text:not(:last-child),html body.bootstrapiso>:not(#wpwrap) .input-group>.input-group-prepend>.btn,html body.bootstrapiso>:not(#wpwrap) .input-group>.input-group-prepend>.input-group-text{border-top-right-radius:0;border-bottom-right-radius:0}html body.bootstrapiso:not(#random_id_string)>.input-group>.input-group-append>.btn,html body.bootstrapiso:not(#random_id_string)>.input-group>.input-group-append>.input-group-text,html body.bootstrapiso:not(#random_id_string)>.input-group>.input-group-prepend:first-child>.btn:not(:first-child),html body.bootstrapiso:not(#random_id_string)>.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),html body.bootstrapiso:not(#random_id_string)>.input-group>.input-group-prepend:not(:first-child)>.btn,html body.bootstrapiso:not(#random_id_string)>.input-group>.input-group-prepend:not(:first-child)>.input-group-text,html body.bootstrapiso>:not(#wpwrap) .input-group>.input-group-append>.btn,html body.bootstrapiso>:not(#wpwrap) .input-group>.input-group-append>.input-group-text,html body.bootstrapiso>:not(#wpwrap) .input-group>.input-group-prepend:first-child>.btn:not(:first-child),html body.bootstrapiso>:not(#wpwrap) .input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),html body.bootstrapiso>:not(#wpwrap) .input-group>.input-group-prepend:not(:first-child)>.btn,html body.bootstrapiso>:not(#wpwrap) .input-group>.input-group-prepend:not(:first-child)>.input-group-text{border-top-left-radius:0;border-bottom-left-radius:0}html body.bootstrapiso:not(#random_id_string)>.custom-control,html body.bootstrapiso>:not(#wpwrap) .custom-control{position:relative;z-index:1;display:block;min-height:1.5rem;padding-left:1.5rem;-webkit-print-color-adjust:exact;color-adjust:exact}html body.bootstrapiso:not(#random_id_string)>.custom-control-inline,html body.bootstrapiso>:not(#wpwrap) .custom-control-inline{display:-webkit-inline-flex;display:inline-flex;margin-right:1rem}html body.bootstrapiso:not(#random_id_string)>.custom-control-input,html body.bootstrapiso>:not(#wpwrap) .custom-control-input{position:absolute;left:0;z-index:-1;width:1rem;height:1.25rem;opacity:0}html body.bootstrapiso:not(#random_id_string)>.custom-control-input:checked~.custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .custom-control-input:checked~.custom-control-label:before{color:#fff;border-color:#007bff;background-color:#007bff}html body.bootstrapiso:not(#random_id_string)>.custom-control-input:focus~.custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .custom-control-input:focus~.custom-control-label:before{box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}html body.bootstrapiso:not(#random_id_string)>.custom-control-input:focus:not(:checked)~.custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .custom-control-input:focus:not(:checked)~.custom-control-label:before{border-color:#80bdff}html body.bootstrapiso:not(#random_id_string)>.custom-control-input:not(:disabled):active~.custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .custom-control-input:not(:disabled):active~.custom-control-label:before{color:#fff;background-color:#b3d7ff;border-color:#b3d7ff}html body.bootstrapiso:not(#random_id_string)>.custom-control-input:disabled~.custom-control-label,html body.bootstrapiso:not(#random_id_string)>.custom-control-input[disabled]~.custom-control-label,html body.bootstrapiso>:not(#wpwrap) .custom-control-input:disabled~.custom-control-label,html body.bootstrapiso>:not(#wpwrap) .custom-control-input[disabled]~.custom-control-label{color:#6c757d}html body.bootstrapiso:not(#random_id_string)>.custom-control-input:disabled~.custom-control-label:before,html body.bootstrapiso:not(#random_id_string)>.custom-control-input[disabled]~.custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .custom-control-input:disabled~.custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .custom-control-input[disabled]~.custom-control-label:before{background-color:#e9ecef}html body.bootstrapiso:not(#random_id_string)>.custom-control-label,html body.bootstrapiso>:not(#wpwrap) .custom-control-label{position:relative;margin-bottom:0;vertical-align:top}html body.bootstrapiso:not(#random_id_string)>.custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .custom-control-label:before{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";background-color:#fff;border:1px solid #adb5bd}html body.bootstrapiso:not(#random_id_string)>.custom-control-label:after,html body.bootstrapiso>:not(#wpwrap) .custom-control-label:after{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:"";background:50%/50% 50% no-repeat}html body.bootstrapiso:not(#random_id_string)>.custom-checkbox .custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .custom-checkbox .custom-control-label:before{border-radius:.25rem}html body.bootstrapiso:not(#random_id_string)>.custom-checkbox .custom-control-input:checked~.custom-control-label:after,html body.bootstrapiso>:not(#wpwrap) .custom-checkbox .custom-control-input:checked~.custom-control-label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3E%3C/svg%3E")}html body.bootstrapiso:not(#random_id_string)>.custom-checkbox .custom-control-input:indeterminate~.custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .custom-checkbox .custom-control-input:indeterminate~.custom-control-label:before{border-color:#007bff;background-color:#007bff}html body.bootstrapiso:not(#random_id_string)>.custom-checkbox .custom-control-input:indeterminate~.custom-control-label:after,html body.bootstrapiso>:not(#wpwrap) .custom-checkbox .custom-control-input:indeterminate~.custom-control-label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E")}html body.bootstrapiso:not(#random_id_string)>.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .custom-checkbox .custom-control-input:disabled:checked~.custom-control-label:before{background-color:rgba(0,123,255,.5)}html body.bootstrapiso:not(#random_id_string)>.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label:before{background-color:rgba(0,123,255,.5)}html body.bootstrapiso:not(#random_id_string)>.custom-radio .custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .custom-radio .custom-control-label:before{border-radius:50%}html body.bootstrapiso:not(#random_id_string)>.custom-radio .custom-control-input:checked~.custom-control-label:after,html body.bootstrapiso>:not(#wpwrap) .custom-radio .custom-control-input:checked~.custom-control-label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E")}html body.bootstrapiso:not(#random_id_string)>.custom-radio .custom-control-input:disabled:checked~.custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .custom-radio .custom-control-input:disabled:checked~.custom-control-label:before{background-color:rgba(0,123,255,.5)}html body.bootstrapiso:not(#random_id_string)>.custom-switch,html body.bootstrapiso>:not(#wpwrap) .custom-switch{padding-left:2.25rem}html body.bootstrapiso:not(#random_id_string)>.custom-switch .custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .custom-switch .custom-control-label:before{left:-2.25rem;width:1.75rem;pointer-events:all;border-radius:.5rem}html body.bootstrapiso:not(#random_id_string)>.custom-switch .custom-control-label:after,html body.bootstrapiso>:not(#wpwrap) .custom-switch .custom-control-label:after{top:calc(.25rem + 2px);left:calc(-2.25rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);background-color:#adb5bd;border-radius:.5rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out}@media (prefers-reduced-motion:reduce){html body.bootstrapiso:not(#random_id_string)>.custom-switch .custom-control-label:after,html body.bootstrapiso>:not(#wpwrap) .custom-switch .custom-control-label:after{transition:none}}html body.bootstrapiso:not(#random_id_string)>.custom-switch .custom-control-input:checked~.custom-control-label:after,html body.bootstrapiso>:not(#wpwrap) .custom-switch .custom-control-input:checked~.custom-control-label:after{background-color:#fff;-webkit-transform:translateX(.75rem);transform:translateX(.75rem)}html body.bootstrapiso:not(#random_id_string)>.custom-switch .custom-control-input:disabled:checked~.custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .custom-switch .custom-control-input:disabled:checked~.custom-control-label:before{background-color:rgba(0,123,255,.5)}html body.bootstrapiso:not(#random_id_string)>.custom-select,html body.bootstrapiso>:not(#wpwrap) .custom-select{display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem 1.75rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;vertical-align:middle;background:#fff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") right .75rem center/8px 10px no-repeat;border:1px solid #ced4da;border-radius:.25rem;-webkit-appearance:none;appearance:none}html body.bootstrapiso:not(#random_id_string)>.custom-select:focus,html body.bootstrapiso>:not(#wpwrap) .custom-select:focus{border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}html body.bootstrapiso:not(#random_id_string)>.custom-select:focus::-ms-value,html body.bootstrapiso>:not(#wpwrap) .custom-select:focus::-ms-value{color:#495057;background-color:#fff}html body.bootstrapiso:not(#random_id_string)>.custom-select[multiple],html body.bootstrapiso:not(#random_id_string)>.custom-select[size]:not([size="1"]),html body.bootstrapiso>:not(#wpwrap) .custom-select[multiple],html body.bootstrapiso>:not(#wpwrap) .custom-select[size]:not([size="1"]){height:auto;padding-right:.75rem;background-image:none}html body.bootstrapiso:not(#random_id_string)>.custom-select:disabled,html body.bootstrapiso>:not(#wpwrap) .custom-select:disabled{color:#6c757d;background-color:#e9ecef}html body.bootstrapiso:not(#random_id_string)>.custom-select::-ms-expand,html body.bootstrapiso>:not(#wpwrap) .custom-select::-ms-expand{display:none}html body.bootstrapiso:not(#random_id_string)>.custom-select:-moz-focusring,html body.bootstrapiso>:not(#wpwrap) .custom-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}html body.bootstrapiso:not(#random_id_string)>.custom-select-sm,html body.bootstrapiso>:not(#wpwrap) .custom-select-sm{height:calc(1.5em + .5rem + 2px);padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}html body.bootstrapiso:not(#random_id_string)>.custom-select-lg,html body.bootstrapiso>:not(#wpwrap) .custom-select-lg{height:calc(1.5em + 1rem + 2px);padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}html body.bootstrapiso:not(#random_id_string)>.custom-file,html body.bootstrapiso>:not(#wpwrap) .custom-file{position:relative;display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);margin-bottom:0}html body.bootstrapiso:not(#random_id_string)>.custom-file-input,html body.bootstrapiso>:not(#wpwrap) .custom-file-input{position:relative;z-index:2;width:100%;height:calc(1.5em + .75rem + 2px);margin:0;overflow:hidden;opacity:0}html body.bootstrapiso:not(#random_id_string)>.custom-file-input:focus~.custom-file-label,html body.bootstrapiso>:not(#wpwrap) .custom-file-input:focus~.custom-file-label{border-color:#80bdff;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}html body.bootstrapiso:not(#random_id_string)>.custom-file-input:disabled~.custom-file-label,html body.bootstrapiso:not(#random_id_string)>.custom-file-input[disabled]~.custom-file-label,html body.bootstrapiso>:not(#wpwrap) .custom-file-input:disabled~.custom-file-label,html body.bootstrapiso>:not(#wpwrap) .custom-file-input[disabled]~.custom-file-label{background-color:#e9ecef}html body.bootstrapiso:not(#random_id_string)>.custom-file-input:lang(en)~.custom-file-label:after,html body.bootstrapiso>:not(#wpwrap) .custom-file-input:lang(en)~.custom-file-label:after{content:"Browse"}html body.bootstrapiso:not(#random_id_string)>.custom-file-input~.custom-file-label[data-browse]:after,html body.bootstrapiso>:not(#wpwrap) .custom-file-input~.custom-file-label[data-browse]:after{content:attr(data-browse)}html body.bootstrapiso:not(#random_id_string)>.custom-file-label,html body.bootstrapiso>:not(#wpwrap) .custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;overflow:hidden;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem}html body.bootstrapiso:not(#random_id_string)>.custom-file-label:after,html body.bootstrapiso>:not(#wpwrap) .custom-file-label:after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:calc(1.5em + .75rem);padding:.375rem .75rem;line-height:1.5;color:#495057;content:"Browse";background-color:#e9ecef;border-left:inherit;border-radius:0 .25rem .25rem 0}html body.bootstrapiso:not(#random_id_string)>.custom-range,html body.bootstrapiso>:not(#wpwrap) .custom-range{width:100%;height:1.4rem;padding:0;background-color:transparent;-webkit-appearance:none;appearance:none}html body.bootstrapiso:not(#random_id_string)>.custom-range:focus,html body.bootstrapiso>:not(#wpwrap) .custom-range:focus{outline:0}html body.bootstrapiso:not(#random_id_string)>.custom-range:focus::-webkit-slider-thumb,html body.bootstrapiso>:not(#wpwrap) .custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}html body.bootstrapiso:not(#random_id_string)>.custom-range:focus::-moz-range-thumb,html body.bootstrapiso>:not(#wpwrap) .custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}html body.bootstrapiso:not(#random_id_string)>.custom-range:focus::-ms-thumb,html body.bootstrapiso>:not(#wpwrap) .custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}html body.bootstrapiso:not(#random_id_string)>.custom-range::-moz-focus-outer,html body.bootstrapiso>:not(#wpwrap) .custom-range::-moz-focus-outer{border:0}html body.bootstrapiso:not(#random_id_string)>.custom-range::-webkit-slider-thumb,html body.bootstrapiso>:not(#wpwrap) .custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#007bff;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){html body.bootstrapiso:not(#random_id_string)>.custom-range::-webkit-slider-thumb,html body.bootstrapiso>:not(#wpwrap) .custom-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}html body.bootstrapiso:not(#random_id_string)>.custom-range::-webkit-slider-thumb:active,html body.bootstrapiso>:not(#wpwrap) .custom-range::-webkit-slider-thumb:active{background-color:#b3d7ff}html body.bootstrapiso:not(#random_id_string)>.custom-range::-webkit-slider-runnable-track,html body.bootstrapiso>:not(#wpwrap) .custom-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}html body.bootstrapiso:not(#random_id_string)>.custom-range::-moz-range-thumb,html body.bootstrapiso>:not(#wpwrap) .custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#007bff;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media (prefers-reduced-motion:reduce){html body.bootstrapiso:not(#random_id_string)>.custom-range::-moz-range-thumb,html body.bootstrapiso>:not(#wpwrap) .custom-range::-moz-range-thumb{-moz-transition:none;transition:none}}html body.bootstrapiso:not(#random_id_string)>.custom-range::-moz-range-thumb:active,html body.bootstrapiso>:not(#wpwrap) .custom-range::-moz-range-thumb:active{background-color:#b3d7ff}html body.bootstrapiso:not(#random_id_string)>.custom-range::-moz-range-track,html body.bootstrapiso>:not(#wpwrap) .custom-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}html body.bootstrapiso:not(#random_id_string)>.custom-range::-ms-thumb,html body.bootstrapiso>:not(#wpwrap) .custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:.2rem;margin-left:.2rem;background-color:#007bff;border:0;border-radius:1rem;-ms-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media (prefers-reduced-motion:reduce){html body.bootstrapiso:not(#random_id_string)>.custom-range::-ms-thumb,html body.bootstrapiso>:not(#wpwrap) .custom-range::-ms-thumb{-ms-transition:none;transition:none}}html body.bootstrapiso:not(#random_id_string)>.custom-range::-ms-thumb:active,html body.bootstrapiso>:not(#wpwrap) .custom-range::-ms-thumb:active{background-color:#b3d7ff}html body.bootstrapiso:not(#random_id_string)>.custom-range::-ms-track,html body.bootstrapiso>:not(#wpwrap) .custom-range::-ms-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:.5rem}html body.bootstrapiso:not(#random_id_string)>.custom-range::-ms-fill-lower,html body.bootstrapiso>:not(#wpwrap) .custom-range::-ms-fill-lower{background-color:#dee2e6;border-radius:1rem}html body.bootstrapiso:not(#random_id_string)>.custom-range::-ms-fill-upper,html body.bootstrapiso>:not(#wpwrap) .custom-range::-ms-fill-upper{margin-right:15px;background-color:#dee2e6;border-radius:1rem}html body.bootstrapiso:not(#random_id_string)>.custom-range:disabled::-webkit-slider-thumb,html body.bootstrapiso>:not(#wpwrap) .custom-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}html body.bootstrapiso:not(#random_id_string)>.custom-range:disabled::-webkit-slider-runnable-track,html body.bootstrapiso>:not(#wpwrap) .custom-range:disabled::-webkit-slider-runnable-track{cursor:default}html body.bootstrapiso:not(#random_id_string)>.custom-range:disabled::-moz-range-thumb,html body.bootstrapiso>:not(#wpwrap) .custom-range:disabled::-moz-range-thumb{background-color:#adb5bd}html body.bootstrapiso:not(#random_id_string)>.custom-range:disabled::-moz-range-track,html body.bootstrapiso>:not(#wpwrap) .custom-range:disabled::-moz-range-track{cursor:default}html body.bootstrapiso:not(#random_id_string)>.custom-range:disabled::-ms-thumb,html body.bootstrapiso>:not(#wpwrap) .custom-range:disabled::-ms-thumb{background-color:#adb5bd}html body.bootstrapiso:not(#random_id_string)>.custom-control-label:before,html body.bootstrapiso:not(#random_id_string)>.custom-file-label,html body.bootstrapiso:not(#random_id_string)>.custom-select,html body.bootstrapiso>:not(#wpwrap) .custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .custom-file-label,html body.bootstrapiso>:not(#wpwrap) .custom-select{transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){html body.bootstrapiso:not(#random_id_string)>.custom-control-label:before,html body.bootstrapiso:not(#random_id_string)>.custom-file-label,html body.bootstrapiso:not(#random_id_string)>.custom-select,html body.bootstrapiso>:not(#wpwrap) .custom-control-label:before,html body.bootstrapiso>:not(#wpwrap) .custom-file-label,html body.bootstrapiso>:not(#wpwrap) .custom-select{transition:none}}html body.bootstrapiso:not(#random_id_string)>.nav,html body.bootstrapiso>:not(#wpwrap) .nav{display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}html body.bootstrapiso:not(#random_id_string)>.nav-link,html body.bootstrapiso>:not(#wpwrap) .nav-link{display:block;padding:.5rem 1rem}html body.bootstrapiso:not(#random_id_string)>.nav-link:focus,html body.bootstrapiso:not(#random_id_string)>.nav-link:hover,html body.bootstrapiso>:not(#wpwrap) .nav-link:focus,html body.bootstrapiso>:not(#wpwrap) .nav-link:hover{text-decoration:none}html body.bootstrapiso:not(#random_id_string)>.nav-link.disabled,html body.bootstrapiso>:not(#wpwrap) .nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}html body.bootstrapiso:not(#random_id_string)>.nav-tabs,html body.bootstrapiso>:not(#wpwrap) .nav-tabs{border-bottom:1px solid #dee2e6}html body.bootstrapiso:not(#random_id_string)>.nav-tabs .nav-link,html body.bootstrapiso>:not(#wpwrap) .nav-tabs .nav-link{margin-bottom:-1px;border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}html body.bootstrapiso:not(#random_id_string)>.nav-tabs .nav-link:focus,html body.bootstrapiso:not(#random_id_string)>.nav-tabs .nav-link:hover,html body.bootstrapiso>:not(#wpwrap) .nav-tabs .nav-link:focus,html body.bootstrapiso>:not(#wpwrap) .nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6}html body.bootstrapiso:not(#random_id_string)>.nav-tabs .nav-link.disabled,html body.bootstrapiso>:not(#wpwrap) .nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}html body.bootstrapiso:not(#random_id_string)>.nav-tabs .nav-item.show .nav-link,html body.bootstrapiso:not(#random_id_string)>.nav-tabs .nav-link.active,html body.bootstrapiso>:not(#wpwrap) .nav-tabs .nav-item.show .nav-link,html body.bootstrapiso>:not(#wpwrap) .nav-tabs .nav-link.active{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}html body.bootstrapiso:not(#random_id_string)>.nav-tabs .dropdown-menu,html body.bootstrapiso>:not(#wpwrap) .nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}html body.bootstrapiso:not(#random_id_string)>.nav-pills .nav-link,html body.bootstrapiso>:not(#wpwrap) .nav-pills .nav-link{border-radius:.25rem}html body.bootstrapiso:not(#random_id_string)>.nav-pills .nav-link.active,html body.bootstrapiso:not(#random_id_string)>.nav-pills .show>.nav-link,html body.bootstrapiso>:not(#wpwrap) .nav-pills .nav-link.active,html body.bootstrapiso>:not(#wpwrap) .nav-pills .show>.nav-link{color:#fff;background-color:#007bff}html body.bootstrapiso:not(#random_id_string)>.nav-fill .nav-item,html body.bootstrapiso:not(#random_id_string)>.nav-fill>.nav-link,html body.bootstrapiso>:not(#wpwrap) .nav-fill .nav-item,html body.bootstrapiso>:not(#wpwrap) .nav-fill>.nav-link{-webkit-flex:1 1 auto;flex:1 1 auto;text-align:center}html body.bootstrapiso:not(#random_id_string)>.nav-justified .nav-item,html body.bootstrapiso:not(#random_id_string)>.nav-justified>.nav-link,html body.bootstrapiso>:not(#wpwrap) .nav-justified .nav-item,html body.bootstrapiso>:not(#wpwrap) .nav-justified>.nav-link{-webkit-flex-basis:0;flex-basis:0;-webkit-flex-grow:1;flex-grow:1;text-align:center}html body.bootstrapiso:not(#random_id_string)>.tab-content>.tab-pane,html body.bootstrapiso>:not(#wpwrap) .tab-content>.tab-pane{display:none}html body.bootstrapiso:not(#random_id_string)>.tab-content>.active,html body.bootstrapiso>:not(#wpwrap) .tab-content>.active{display:block}html body.bootstrapiso:not(#random_id_string)>.navbar,html body.bootstrapiso>:not(#wpwrap) .navbar{position:relative;padding:.5rem 1rem}html body.bootstrapiso:not(#random_id_string)>.navbar,html body.bootstrapiso:not(#random_id_string)>.navbar .container,html body.bootstrapiso:not(#random_id_string)>.navbar .container-fluid,html body.bootstrapiso:not(#random_id_string)>.navbar .container-lg,html body.bootstrapiso:not(#random_id_string)>.navbar .container-md,html body.bootstrapiso:not(#random_id_string)>.navbar .container-sm,html body.bootstrapiso:not(#random_id_string)>.navbar .container-xl,html body.bootstrapiso>:not(#wpwrap) .navbar,html body.bootstrapiso>:not(#wpwrap) .navbar .container,html body.bootstrapiso>:not(#wpwrap) .navbar .container-fluid,html body.bootstrapiso>:not(#wpwrap) .navbar .container-lg,html body.bootstrapiso>:not(#wpwrap) .navbar .container-md,html body.bootstrapiso>:not(#wpwrap) .navbar .container-sm,html body.bootstrapiso>:not(#wpwrap) .navbar .container-xl{display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-between;justify-content:space-between}html body.bootstrapiso:not(#random_id_string)>.navbar-brand,html body.bootstrapiso>:not(#wpwrap) .navbar-brand{display:inline-block;padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;line-height:inherit;white-space:nowrap}html body.bootstrapiso:not(#random_id_string)>.navbar-brand:focus,html body.bootstrapiso:not(#random_id_string)>.navbar-brand:hover,html body.bootstrapiso>:not(#wpwrap) .navbar-brand:focus,html body.bootstrapiso>:not(#wpwrap) .navbar-brand:hover{text-decoration:none}html body.bootstrapiso:not(#random_id_string)>.navbar-nav,html body.bootstrapiso>:not(#wpwrap) .navbar-nav{display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}html body.bootstrapiso:not(#random_id_string)>.navbar-nav .nav-link,html body.bootstrapiso>:not(#wpwrap) .navbar-nav .nav-link{padding-right:0;padding-left:0}html body.bootstrapiso:not(#random_id_string)>.navbar-nav .dropdown-menu,html body.bootstrapiso>:not(#wpwrap) .navbar-nav .dropdown-menu{position:static;float:none}html body.bootstrapiso:not(#random_id_string)>.navbar-text,html body.bootstrapiso>:not(#wpwrap) .navbar-text{display:inline-block;padding-top:.5rem;padding-bottom:.5rem}html body.bootstrapiso:not(#random_id_string)>.navbar-collapse,html body.bootstrapiso>:not(#wpwrap) .navbar-collapse{-webkit-flex-basis:100%;flex-basis:100%;-webkit-flex-grow:1;flex-grow:1;-webkit-align-items:center;align-items:center}html body.bootstrapiso:not(#random_id_string)>.navbar-toggler,html body.bootstrapiso>:not(#wpwrap) .navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem}html body.bootstrapiso:not(#random_id_string)>.navbar-toggler:focus,html body.bootstrapiso:not(#random_id_string)>.navbar-toggler:hover,html body.bootstrapiso>:not(#wpwrap) .navbar-toggler:focus,html body.bootstrapiso>:not(#wpwrap) .navbar-toggler:hover{text-decoration:none}html body.bootstrapiso:not(#random_id_string)>.navbar-toggler-icon,html body.bootstrapiso>:not(#wpwrap) .navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:50%/100% 100% no-repeat}html body.bootstrapiso:not(#random_id_string)>.navbar-nav-scroll,html body.bootstrapiso>:not(#wpwrap) .navbar-nav-scroll{max-height:75vh;overflow-y:auto}@media (max-width:575.98px){html body.bootstrapiso:not(#random_id_string)>.navbar-expand-sm>.container,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-sm>.container-fluid,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-sm>.container-lg,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-sm>.container-md,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-sm>.container-sm,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-sm>.container-xl,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-sm>.container,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-sm>.container-fluid,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-sm>.container-lg,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-sm>.container-md,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-sm>.container-sm,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-sm>.container-xl{padding-right:0;padding-left:0}}@media (min-width:576px){html body.bootstrapiso:not(#random_id_string)>.navbar-expand-sm,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-sm{-webkit-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-justify-content:flex-start;justify-content:flex-start}html body.bootstrapiso:not(#random_id_string)>.navbar-expand-sm .navbar-nav,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-sm .navbar-nav{-webkit-flex-direction:row;flex-direction:row}html body.bootstrapiso:not(#random_id_string)>.navbar-expand-sm .navbar-nav .dropdown-menu,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}html body.bootstrapiso:not(#random_id_string)>.navbar-expand-sm .navbar-nav .nav-link,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}html body.bootstrapiso:not(#random_id_string)>.navbar-expand-sm>.container,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-sm>.container-fluid,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-sm>.container-lg,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-sm>.container-md,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-sm>.container-sm,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-sm>.container-xl,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-sm>.container,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-sm>.container-fluid,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-sm>.container-lg,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-sm>.container-md,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-sm>.container-sm,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-sm>.container-xl{-webkit-flex-wrap:nowrap;flex-wrap:nowrap}html body.bootstrapiso:not(#random_id_string)>.navbar-expand-sm .navbar-nav-scroll,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-sm .navbar-nav-scroll{overflow:visible}html body.bootstrapiso:not(#random_id_string)>.navbar-expand-sm .navbar-collapse,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-sm .navbar-collapse{display:-webkit-flex!important;display:flex!important;-webkit-flex-basis:auto;flex-basis:auto}html body.bootstrapiso:not(#random_id_string)>.navbar-expand-sm .navbar-toggler,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-sm .navbar-toggler{display:none}}@media (max-width:767.98px){html body.bootstrapiso:not(#random_id_string)>.navbar-expand-md>.container,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-md>.container-fluid,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-md>.container-lg,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-md>.container-md,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-md>.container-sm,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-md>.container-xl,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-md>.container,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-md>.container-fluid,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-md>.container-lg,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-md>.container-md,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-md>.container-sm,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-md>.container-xl{padding-right:0;padding-left:0}}@media (min-width:768px){html body.bootstrapiso:not(#random_id_string)>.navbar-expand-md,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-md{-webkit-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-justify-content:flex-start;justify-content:flex-start}html body.bootstrapiso:not(#random_id_string)>.navbar-expand-md .navbar-nav,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-md .navbar-nav{-webkit-flex-direction:row;flex-direction:row}html body.bootstrapiso:not(#random_id_string)>.navbar-expand-md .navbar-nav .dropdown-menu,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}html body.bootstrapiso:not(#random_id_string)>.navbar-expand-md .navbar-nav .nav-link,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}html body.bootstrapiso:not(#random_id_string)>.navbar-expand-md>.container,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-md>.container-fluid,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-md>.container-lg,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-md>.container-md,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-md>.container-sm,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-md>.container-xl,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-md>.container,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-md>.container-fluid,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-md>.container-lg,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-md>.container-md,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-md>.container-sm,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-md>.container-xl{-webkit-flex-wrap:nowrap;flex-wrap:nowrap}html body.bootstrapiso:not(#random_id_string)>.navbar-expand-md .navbar-nav-scroll,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-md .navbar-nav-scroll{overflow:visible}html body.bootstrapiso:not(#random_id_string)>.navbar-expand-md .navbar-collapse,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-md .navbar-collapse{display:-webkit-flex!important;display:flex!important;-webkit-flex-basis:auto;flex-basis:auto}html body.bootstrapiso:not(#random_id_string)>.navbar-expand-md .navbar-toggler,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-md .navbar-toggler{display:none}}@media (max-width:991.98px){html body.bootstrapiso:not(#random_id_string)>.navbar-expand-lg>.container,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-lg>.container-fluid,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-lg>.container-lg,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-lg>.container-md,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-lg>.container-sm,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-lg>.container-xl,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-lg>.container,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-lg>.container-fluid,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-lg>.container-lg,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-lg>.container-md,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-lg>.container-sm,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-lg>.container-xl{padding-right:0;padding-left:0}}@media (min-width:992px){html body.bootstrapiso:not(#random_id_string)>.navbar-expand-lg,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-lg{-webkit-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-justify-content:flex-start;justify-content:flex-start}html body.bootstrapiso:not(#random_id_string)>.navbar-expand-lg .navbar-nav,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-lg .navbar-nav{-webkit-flex-direction:row;flex-direction:row}html body.bootstrapiso:not(#random_id_string)>.navbar-expand-lg .navbar-nav .dropdown-menu,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}html body.bootstrapiso:not(#random_id_string)>.navbar-expand-lg .navbar-nav .nav-link,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}html body.bootstrapiso:not(#random_id_string)>.navbar-expand-lg>.container,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-lg>.container-fluid,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-lg>.container-lg,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-lg>.container-md,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-lg>.container-sm,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-lg>.container-xl,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-lg>.container,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-lg>.container-fluid,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-lg>.container-lg,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-lg>.container-md,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-lg>.container-sm,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-lg>.container-xl{-webkit-flex-wrap:nowrap;flex-wrap:nowrap}html body.bootstrapiso:not(#random_id_string)>.navbar-expand-lg .navbar-nav-scroll,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-lg .navbar-nav-scroll{overflow:visible}html body.bootstrapiso:not(#random_id_string)>.navbar-expand-lg .navbar-collapse,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-lg .navbar-collapse{display:-webkit-flex!important;display:flex!important;-webkit-flex-basis:auto;flex-basis:auto}html body.bootstrapiso:not(#random_id_string)>.navbar-expand-lg .navbar-toggler,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-lg .navbar-toggler{display:none}}@media (max-width:1199.98px){html body.bootstrapiso:not(#random_id_string)>.navbar-expand-xl>.container,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-xl>.container-fluid,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-xl>.container-lg,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-xl>.container-md,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-xl>.container-sm,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-xl>.container-xl,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-xl>.container,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-xl>.container-fluid,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-xl>.container-lg,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-xl>.container-md,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-xl>.container-sm,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-xl>.container-xl{padding-right:0;padding-left:0}}@media (min-width:1200px){html body.bootstrapiso:not(#random_id_string)>.navbar-expand-xl,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-xl{-webkit-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-justify-content:flex-start;justify-content:flex-start}html body.bootstrapiso:not(#random_id_string)>.navbar-expand-xl .navbar-nav,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-xl .navbar-nav{-webkit-flex-direction:row;flex-direction:row}html body.bootstrapiso:not(#random_id_string)>.navbar-expand-xl .navbar-nav .dropdown-menu,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}html body.bootstrapiso:not(#random_id_string)>.navbar-expand-xl .navbar-nav .nav-link,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}html body.bootstrapiso:not(#random_id_string)>.navbar-expand-xl>.container,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-xl>.container-fluid,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-xl>.container-lg,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-xl>.container-md,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-xl>.container-sm,html body.bootstrapiso:not(#random_id_string)>.navbar-expand-xl>.container-xl,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-xl>.container,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-xl>.container-fluid,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-xl>.container-lg,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-xl>.container-md,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-xl>.container-sm,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-xl>.container-xl{-webkit-flex-wrap:nowrap;flex-wrap:nowrap}html body.bootstrapiso:not(#random_id_string)>.navbar-expand-xl .navbar-nav-scroll,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-xl .navbar-nav-scroll{overflow:visible}html body.bootstrapiso:not(#random_id_string)>.navbar-expand-xl .navbar-collapse,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-xl .navbar-collapse{display:-webkit-flex!important;display:flex!important;-webkit-flex-basis:auto;flex-basis:auto}html body.bootstrapiso:not(#random_id_string)>.navbar-expand-xl .navbar-toggler,html body.bootstrapiso>:not(#wpwrap) .navbar-expand-xl .navbar-toggler{display:none}}html body.bootstrapiso:not(#random_id_string)>.navbar-expand,html body.bootstrapiso>:not(#wpwrap) .navbar-expand{-webkit-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-justify-content:flex-start;justify-content:flex-start}html body.bootstrapiso:not(#random_id_string)>.navbar-expand>.container,html body.bootstrapiso:not(#random_id_string)>.navbar-expand>.container-fluid,html body.bootstrapiso:not(#random_id_string)>.navbar-expand>.container-lg,html body.bootstrapiso:not(#random_id_string)>.navbar-expand>.container-md,html body.bootstrapiso:not(#random_id_string)>.navbar-expand>.container-sm,html body.bootstrapiso:not(#random_id_string)>.navbar-expand>.container-xl,html body.bootstrapiso>:not(#wpwrap) .navbar-expand>.container,html body.bootstrapiso>:not(#wpwrap) .navbar-expand>.container-fluid,html body.bootstrapiso>:not(#wpwrap) .navbar-expand>.container-lg,html body.bootstrapiso>:not(#wpwrap) .navbar-expand>.container-md,html body.bootstrapiso>:not(#wpwrap) .navbar-expand>.container-sm,html body.bootstrapiso>:not(#wpwrap) .navbar-expand>.container-xl{padding-right:0;padding-left:0}html body.bootstrapiso:not(#random_id_string)>.navbar-expand .navbar-nav,html body.bootstrapiso>:not(#wpwrap) .navbar-expand .navbar-nav{-webkit-flex-direction:row;flex-direction:row}html body.bootstrapiso:not(#random_id_string)>.navbar-expand .navbar-nav .dropdown-menu,html body.bootstrapiso>:not(#wpwrap) .navbar-expand .navbar-nav .dropdown-menu{position:absolute}html body.bootstrapiso:not(#random_id_string)>.navbar-expand .navbar-nav .nav-link,html body.bootstrapiso>:not(#wpwrap) .navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}html body.bootstrapiso:not(#random_id_string)>.navbar-expand>.container,html body.bootstrapiso:not(#random_id_string)>.navbar-expand>.container-fluid,html body.bootstrapiso:not(#random_id_string)>.navbar-expand>.container-lg,html body.bootstrapiso:not(#random_id_string)>.navbar-expand>.container-md,html body.bootstrapiso:not(#random_id_string)>.navbar-expand>.container-sm,html body.bootstrapiso:not(#random_id_string)>.navbar-expand>.container-xl,html body.bootstrapiso>:not(#wpwrap) .navbar-expand>.container,html body.bootstrapiso>:not(#wpwrap) .navbar-expand>.container-fluid,html body.bootstrapiso>:not(#wpwrap) .navbar-expand>.container-lg,html body.bootstrapiso>:not(#wpwrap) .navbar-expand>.container-md,html body.bootstrapiso>:not(#wpwrap) .navbar-expand>.container-sm,html body.bootstrapiso>:not(#wpwrap) .navbar-expand>.container-xl{-webkit-flex-wrap:nowrap;flex-wrap:nowrap}html body.bootstrapiso:not(#random_id_string)>.navbar-expand .navbar-nav-scroll,html body.bootstrapiso>:not(#wpwrap) .navbar-expand .navbar-nav-scroll{overflow:visible}html body.bootstrapiso:not(#random_id_string)>.navbar-expand .navbar-collapse,html body.bootstrapiso>:not(#wpwrap) .navbar-expand .navbar-collapse{display:-webkit-flex!important;display:flex!important;-webkit-flex-basis:auto;flex-basis:auto}html body.bootstrapiso:not(#random_id_string)>.navbar-expand .navbar-toggler,html body.bootstrapiso>:not(#wpwrap) .navbar-expand .navbar-toggler{display:none}html body.bootstrapiso:not(#random_id_string)>.navbar-light .navbar-brand,html body.bootstrapiso:not(#random_id_string)>.navbar-light .navbar-brand:focus,html body.bootstrapiso:not(#random_id_string)>.navbar-light .navbar-brand:hover,html body.bootstrapiso>:not(#wpwrap) .navbar-light .navbar-brand,html body.bootstrapiso>:not(#wpwrap) .navbar-light .navbar-brand:focus,html body.bootstrapiso>:not(#wpwrap) .navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}html body.bootstrapiso:not(#random_id_string)>.navbar-light .navbar-nav .nav-link,html body.bootstrapiso>:not(#wpwrap) .navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.5)}html body.bootstrapiso:not(#random_id_string)>.navbar-light .navbar-nav .nav-link:focus,html body.bootstrapiso:not(#random_id_string)>.navbar-light .navbar-nav .nav-link:hover,html body.bootstrapiso>:not(#wpwrap) .navbar-light .navbar-nav .nav-link:focus,html body.bootstrapiso>:not(#wpwrap) .navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}html body.bootstrapiso:not(#random_id_string)>.navbar-light .navbar-nav .nav-link.disabled,html body.bootstrapiso>:not(#wpwrap) .navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}html body.bootstrapiso:not(#random_id_string)>.navbar-light .navbar-nav .active>.nav-link,html body.bootstrapiso:not(#random_id_string)>.navbar-light .navbar-nav .nav-link.active,html body.bootstrapiso:not(#random_id_string)>.navbar-light .navbar-nav .nav-link.show,html body.bootstrapiso:not(#random_id_string)>.navbar-light .navbar-nav .show>.nav-link,html body.bootstrapiso>:not(#wpwrap) .navbar-light .navbar-nav .active>.nav-link,html body.bootstrapiso>:not(#wpwrap) .navbar-light .navbar-nav .nav-link.active,html body.bootstrapiso>:not(#wpwrap) .navbar-light .navbar-nav .nav-link.show,html body.bootstrapiso>:not(#wpwrap) .navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}html body.bootstrapiso:not(#random_id_string)>.navbar-light .navbar-toggler,html body.bootstrapiso>:not(#wpwrap) .navbar-light .navbar-toggler{color:rgba(0,0,0,.5);border-color:rgba(0,0,0,.1)}html body.bootstrapiso:not(#random_id_string)>.navbar-light .navbar-toggler-icon,html body.bootstrapiso>:not(#wpwrap) .navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}html body.bootstrapiso:not(#random_id_string)>.navbar-light .navbar-text,html body.bootstrapiso>:not(#wpwrap) .navbar-light .navbar-text{color:rgba(0,0,0,.5)}html body.bootstrapiso:not(#random_id_string)>.navbar-light .navbar-text a,html body.bootstrapiso:not(#random_id_string)>.navbar-light .navbar-text a:focus,html body.bootstrapiso:not(#random_id_string)>.navbar-light .navbar-text a:hover,html body.bootstrapiso>:not(#wpwrap) .navbar-light .navbar-text a,html body.bootstrapiso>:not(#wpwrap) .navbar-light .navbar-text a:focus,html body.bootstrapiso>:not(#wpwrap) .navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}html body.bootstrapiso:not(#random_id_string)>.navbar-dark .navbar-brand,html body.bootstrapiso:not(#random_id_string)>.navbar-dark .navbar-brand:focus,html body.bootstrapiso:not(#random_id_string)>.navbar-dark .navbar-brand:hover,html body.bootstrapiso>:not(#wpwrap) .navbar-dark .navbar-brand,html body.bootstrapiso>:not(#wpwrap) .navbar-dark .navbar-brand:focus,html body.bootstrapiso>:not(#wpwrap) .navbar-dark .navbar-brand:hover{color:#fff}html body.bootstrapiso:not(#random_id_string)>.navbar-dark .navbar-nav .nav-link,html body.bootstrapiso>:not(#wpwrap) .navbar-dark .navbar-nav .nav-link{color:hsla(0,0%,100%,.5)}html body.bootstrapiso:not(#random_id_string)>.navbar-dark .navbar-nav .nav-link:focus,html body.bootstrapiso:not(#random_id_string)>.navbar-dark .navbar-nav .nav-link:hover,html body.bootstrapiso>:not(#wpwrap) .navbar-dark .navbar-nav .nav-link:focus,html body.bootstrapiso>:not(#wpwrap) .navbar-dark .navbar-nav .nav-link:hover{color:hsla(0,0%,100%,.75)}html body.bootstrapiso:not(#random_id_string)>.navbar-dark .navbar-nav .nav-link.disabled,html body.bootstrapiso>:not(#wpwrap) .navbar-dark .navbar-nav .nav-link.disabled{color:hsla(0,0%,100%,.25)}html body.bootstrapiso:not(#random_id_string)>.navbar-dark .navbar-nav .active>.nav-link,html body.bootstrapiso:not(#random_id_string)>.navbar-dark .navbar-nav .nav-link.active,html body.bootstrapiso:not(#random_id_string)>.navbar-dark .navbar-nav .nav-link.show,html body.bootstrapiso:not(#random_id_string)>.navbar-dark .navbar-nav .show>.nav-link,html body.bootstrapiso>:not(#wpwrap) .navbar-dark .navbar-nav .active>.nav-link,html body.bootstrapiso>:not(#wpwrap) .navbar-dark .navbar-nav .nav-link.active,html body.bootstrapiso>:not(#wpwrap) .navbar-dark .navbar-nav .nav-link.show,html body.bootstrapiso>:not(#wpwrap) .navbar-dark .navbar-nav .show>.nav-link{color:#fff}html body.bootstrapiso:not(#random_id_string)>.navbar-dark .navbar-toggler,html body.bootstrapiso>:not(#wpwrap) .navbar-dark .navbar-toggler{color:hsla(0,0%,100%,.5);border-color:hsla(0,0%,100%,.1)}html body.bootstrapiso:not(#random_id_string)>.navbar-dark .navbar-toggler-icon,html body.bootstrapiso>:not(#wpwrap) .navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}html body.bootstrapiso:not(#random_id_string)>.navbar-dark .navbar-text,html body.bootstrapiso>:not(#wpwrap) .navbar-dark .navbar-text{color:hsla(0,0%,100%,.5)}html body.bootstrapiso:not(#random_id_string)>.navbar-dark .navbar-text a,html body.bootstrapiso:not(#random_id_string)>.navbar-dark .navbar-text a:focus,html body.bootstrapiso:not(#random_id_string)>.navbar-dark .navbar-text a:hover,html body.bootstrapiso>:not(#wpwrap) .navbar-dark .navbar-text a,html body.bootstrapiso>:not(#wpwrap) .navbar-dark .navbar-text a:focus,html body.bootstrapiso>:not(#wpwrap) .navbar-dark .navbar-text a:hover{color:#fff}html body.bootstrapiso:not(#random_id_string)>.card,html body.bootstrapiso>:not(#wpwrap) .card{position:relative;display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}html body.bootstrapiso:not(#random_id_string)>.card>hr,html body.bootstrapiso>:not(#wpwrap) .card>hr{margin-right:0;margin-left:0}html body.bootstrapiso:not(#random_id_string)>.card>.list-group,html body.bootstrapiso>:not(#wpwrap) .card>.list-group{border-top:inherit;border-bottom:inherit}html body.bootstrapiso:not(#random_id_string)>.card>.list-group:first-child,html body.bootstrapiso>:not(#wpwrap) .card>.list-group:first-child{border-top-width:0;border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}html body.bootstrapiso:not(#random_id_string)>.card>.list-group:last-child,html body.bootstrapiso>:not(#wpwrap) .card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}html body.bootstrapiso:not(#random_id_string)>.card>.card-header+.list-group,html body.bootstrapiso:not(#random_id_string)>.card>.list-group+.card-footer,html body.bootstrapiso>:not(#wpwrap) .card>.card-header+.list-group,html body.bootstrapiso>:not(#wpwrap) .card>.list-group+.card-footer{border-top:0}html body.bootstrapiso:not(#random_id_string)>.card-body,html body.bootstrapiso>:not(#wpwrap) .card-body{-webkit-flex:1 1 auto;flex:1 1 auto;min-height:1px;padding:1.25rem}html body.bootstrapiso:not(#random_id_string)>.card-title,html body.bootstrapiso>:not(#wpwrap) .card-title{margin-bottom:.75rem}html body.bootstrapiso:not(#random_id_string)>.card-subtitle,html body.bootstrapiso>:not(#wpwrap) .card-subtitle{margin-top:-.375rem;margin-bottom:0}html body.bootstrapiso:not(#random_id_string)>.card-text:last-child,html body.bootstrapiso>:not(#wpwrap) .card-text:last-child{margin-bottom:0}html body.bootstrapiso:not(#random_id_string)>.card-link:hover,html body.bootstrapiso>:not(#wpwrap) .card-link:hover{text-decoration:none}html body.bootstrapiso:not(#random_id_string)>.card-link+.card-link,html body.bootstrapiso>:not(#wpwrap) .card-link+.card-link{margin-left:1.25rem}html body.bootstrapiso:not(#random_id_string)>.card-header,html body.bootstrapiso>:not(#wpwrap) .card-header{padding:.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}html body.bootstrapiso:not(#random_id_string)>.card-header:first-child,html body.bootstrapiso>:not(#wpwrap) .card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}html body.bootstrapiso:not(#random_id_string)>.card-footer,html body.bootstrapiso>:not(#wpwrap) .card-footer{padding:.75rem 1.25rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}html body.bootstrapiso:not(#random_id_string)>.card-footer:last-child,html body.bootstrapiso>:not(#wpwrap) .card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}html body.bootstrapiso:not(#random_id_string)>.card-header-tabs,html body.bootstrapiso>:not(#wpwrap) .card-header-tabs{margin-right:-.625rem;margin-bottom:-.75rem;margin-left:-.625rem;border-bottom:0}html body.bootstrapiso:not(#random_id_string)>.card-header-pills,html body.bootstrapiso>:not(#wpwrap) .card-header-pills{margin-right:-.625rem;margin-left:-.625rem}html body.bootstrapiso:not(#random_id_string)>.card-img-overlay,html body.bootstrapiso>:not(#wpwrap) .card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem;border-radius:calc(.25rem - 1px)}html body.bootstrapiso:not(#random_id_string)>.card-img,html body.bootstrapiso:not(#random_id_string)>.card-img-bottom,html body.bootstrapiso:not(#random_id_string)>.card-img-top,html body.bootstrapiso>:not(#wpwrap) .card-img,html body.bootstrapiso>:not(#wpwrap) .card-img-bottom,html body.bootstrapiso>:not(#wpwrap) .card-img-top{-webkit-flex-shrink:0;flex-shrink:0;width:100%}html body.bootstrapiso:not(#random_id_string)>.card-img,html body.bootstrapiso:not(#random_id_string)>.card-img-top,html body.bootstrapiso>:not(#wpwrap) .card-img,html body.bootstrapiso>:not(#wpwrap) .card-img-top{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}html body.bootstrapiso:not(#random_id_string)>.card-img,html body.bootstrapiso:not(#random_id_string)>.card-img-bottom,html body.bootstrapiso>:not(#wpwrap) .card-img,html body.bootstrapiso>:not(#wpwrap) .card-img-bottom{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}html body.bootstrapiso:not(#random_id_string)>.card-deck .card,html body.bootstrapiso>:not(#wpwrap) .card-deck .card{margin-bottom:15px}@media (min-width:576px){html body.bootstrapiso:not(#random_id_string)>.card-deck,html body.bootstrapiso>:not(#wpwrap) .card-deck{display:-webkit-flex;display:flex;-webkit-flex-flow:row wrap;flex-flow:row wrap;margin-right:-15px;margin-left:-15px}html body.bootstrapiso:not(#random_id_string)>.card-deck .card,html body.bootstrapiso>:not(#wpwrap) .card-deck .card{-webkit-flex:1 0;flex:1 0;margin-right:15px;margin-bottom:0;margin-left:15px}}html body.bootstrapiso:not(#random_id_string)>.card-group>.card,html body.bootstrapiso>:not(#wpwrap) .card-group>.card{margin-bottom:15px}@media (min-width:576px){html body.bootstrapiso:not(#random_id_string)>.card-group,html body.bootstrapiso>:not(#wpwrap) .card-group{display:-webkit-flex;display:flex;-webkit-flex-flow:row wrap;flex-flow:row wrap}html body.bootstrapiso:not(#random_id_string)>.card-group>.card,html body.bootstrapiso>:not(#wpwrap) .card-group>.card{-webkit-flex:1 0;flex:1 0;margin-bottom:0}html body.bootstrapiso:not(#random_id_string)>.card-group>.card+.card,html body.bootstrapiso>:not(#wpwrap) .card-group>.card+.card{margin-left:0;border-left:0}html body.bootstrapiso:not(#random_id_string)>.card-group>.card:not(:last-child),html body.bootstrapiso>:not(#wpwrap) .card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}html body.bootstrapiso:not(#random_id_string)>.card-group>.card:not(:last-child) .card-header,html body.bootstrapiso:not(#random_id_string)>.card-group>.card:not(:last-child) .card-img-top,html body.bootstrapiso>:not(#wpwrap) .card-group>.card:not(:last-child) .card-header,html body.bootstrapiso>:not(#wpwrap) .card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}html body.bootstrapiso:not(#random_id_string)>.card-group>.card:not(:last-child) .card-footer,html body.bootstrapiso:not(#random_id_string)>.card-group>.card:not(:last-child) .card-img-bottom,html body.bootstrapiso>:not(#wpwrap) .card-group>.card:not(:last-child) .card-footer,html body.bootstrapiso>:not(#wpwrap) .card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}html body.bootstrapiso:not(#random_id_string)>.card-group>.card:not(:first-child),html body.bootstrapiso>:not(#wpwrap) .card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}html body.bootstrapiso:not(#random_id_string)>.card-group>.card:not(:first-child) .card-header,html body.bootstrapiso:not(#random_id_string)>.card-group>.card:not(:first-child) .card-img-top,html body.bootstrapiso>:not(#wpwrap) .card-group>.card:not(:first-child) .card-header,html body.bootstrapiso>:not(#wpwrap) .card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}html body.bootstrapiso:not(#random_id_string)>.card-group>.card:not(:first-child) .card-footer,html body.bootstrapiso:not(#random_id_string)>.card-group>.card:not(:first-child) .card-img-bottom,html body.bootstrapiso>:not(#wpwrap) .card-group>.card:not(:first-child) .card-footer,html body.bootstrapiso>:not(#wpwrap) .card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}html body.bootstrapiso:not(#random_id_string)>.card-columns .card,html body.bootstrapiso>:not(#wpwrap) .card-columns .card{margin-bottom:.75rem}@media (min-width:576px){html body.bootstrapiso:not(#random_id_string)>.card-columns,html body.bootstrapiso>:not(#wpwrap) .card-columns{-webkit-column-count:3;column-count:3;-webkit-column-gap:1.25rem;-moz-column-gap:1.25rem;grid-column-gap:1.25rem;column-gap:1.25rem;orphans:1;widows:1}html body.bootstrapiso:not(#random_id_string)>.card-columns .card,html body.bootstrapiso>:not(#wpwrap) .card-columns .card{display:inline-block;width:100%}}html body.bootstrapiso:not(#random_id_string)>.accordion,html body.bootstrapiso>:not(#wpwrap) .accordion{overflow-anchor:none}html body.bootstrapiso:not(#random_id_string)>.accordion>.card,html body.bootstrapiso>:not(#wpwrap) .accordion>.card{overflow:hidden}html body.bootstrapiso:not(#random_id_string)>.accordion>.card:not(:last-of-type),html body.bootstrapiso>:not(#wpwrap) .accordion>.card:not(:last-of-type){border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}html body.bootstrapiso:not(#random_id_string)>.accordion>.card:not(:first-of-type),html body.bootstrapiso>:not(#wpwrap) .accordion>.card:not(:first-of-type){border-top-left-radius:0;border-top-right-radius:0}html body.bootstrapiso:not(#random_id_string)>.accordion>.card>.card-header,html body.bootstrapiso>:not(#wpwrap) .accordion>.card>.card-header{border-radius:0;margin-bottom:-1px}html body.bootstrapiso:not(#random_id_string)>.breadcrumb,html body.bootstrapiso>:not(#wpwrap) .breadcrumb{display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#e9ecef;border-radius:.25rem}html body.bootstrapiso:not(#random_id_string)>.breadcrumb-item+.breadcrumb-item,html body.bootstrapiso>:not(#wpwrap) .breadcrumb-item+.breadcrumb-item{padding-left:.5rem}html body.bootstrapiso:not(#random_id_string)>.breadcrumb-item+.breadcrumb-item:before,html body.bootstrapiso>:not(#wpwrap) .breadcrumb-item+.breadcrumb-item:before{float:left;padding-right:.5rem;color:#6c757d;content:"/"}html body.bootstrapiso:not(#random_id_string)>.breadcrumb-item+.breadcrumb-item:hover:before,html body.bootstrapiso>:not(#wpwrap) .breadcrumb-item+.breadcrumb-item:hover:before{text-decoration:underline;text-decoration:none}html body.bootstrapiso:not(#random_id_string)>.breadcrumb-item.active,html body.bootstrapiso>:not(#wpwrap) .breadcrumb-item.active{color:#6c757d}html body.bootstrapiso:not(#random_id_string)>.pagination,html body.bootstrapiso>:not(#wpwrap) .pagination{display:-webkit-flex;display:flex;padding-left:0;list-style:none;border-radius:.25rem}html body.bootstrapiso:not(#random_id_string)>.page-link,html body.bootstrapiso>:not(#wpwrap) .page-link{position:relative;display:block;padding:.5rem .75rem;margin-left:-1px;line-height:1.25;color:#007bff;background-color:#fff;border:1px solid #dee2e6}html body.bootstrapiso:not(#random_id_string)>.page-link:hover,html body.bootstrapiso>:not(#wpwrap) .page-link:hover{z-index:2;color:#0056b3;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}html body.bootstrapiso:not(#random_id_string)>.page-link:focus,html body.bootstrapiso>:not(#wpwrap) .page-link:focus{z-index:3;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}html body.bootstrapiso:not(#random_id_string)>.page-item:first-child .page-link,html body.bootstrapiso>:not(#wpwrap) .page-item:first-child .page-link{margin-left:0;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}html body.bootstrapiso:not(#random_id_string)>.page-item:last-child .page-link,html body.bootstrapiso>:not(#wpwrap) .page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}html body.bootstrapiso:not(#random_id_string)>.page-item.active .page-link,html body.bootstrapiso>:not(#wpwrap) .page-item.active .page-link{z-index:3;color:#fff;background-color:#007bff;border-color:#007bff}html body.bootstrapiso:not(#random_id_string)>.page-item.disabled .page-link,html body.bootstrapiso>:not(#wpwrap) .page-item.disabled .page-link{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}html body.bootstrapiso:not(#random_id_string)>.pagination-lg .page-link,html body.bootstrapiso>:not(#wpwrap) .pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem;line-height:1.5}html body.bootstrapiso:not(#random_id_string)>.pagination-lg .page-item:first-child .page-link,html body.bootstrapiso>:not(#wpwrap) .pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}html body.bootstrapiso:not(#random_id_string)>.pagination-lg .page-item:last-child .page-link,html body.bootstrapiso>:not(#wpwrap) .pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}html body.bootstrapiso:not(#random_id_string)>.pagination-sm .page-link,html body.bootstrapiso>:not(#wpwrap) .pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem;line-height:1.5}html body.bootstrapiso:not(#random_id_string)>.pagination-sm .page-item:first-child .page-link,html body.bootstrapiso>:not(#wpwrap) .pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}html body.bootstrapiso:not(#random_id_string)>.pagination-sm .page-item:last-child .page-link,html body.bootstrapiso>:not(#wpwrap) .pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}html body.bootstrapiso:not(#random_id_string)>.badge,html body.bootstrapiso>:not(#wpwrap) .badge{display:inline-block;padding:.25em .4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){html body.bootstrapiso:not(#random_id_string)>.badge,html body.bootstrapiso>:not(#wpwrap) .badge{transition:none}}html body.bootstrapiso:not(#random_id_string)>a.badge:focus,html body.bootstrapiso:not(#random_id_string)>a.badge:hover,html body.bootstrapiso>:not(#wpwrap) a.badge:focus,html body.bootstrapiso>:not(#wpwrap) a.badge:hover{text-decoration:none}html body.bootstrapiso:not(#random_id_string)>.badge:empty,html body.bootstrapiso>:not(#wpwrap) .badge:empty{display:none}html body.bootstrapiso:not(#random_id_string)>.btn .badge,html body.bootstrapiso>:not(#wpwrap) .btn .badge{position:relative;top:-1px}html body.bootstrapiso:not(#random_id_string)>.badge-pill,html body.bootstrapiso>:not(#wpwrap) .badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}html body.bootstrapiso:not(#random_id_string)>.badge-primary,html body.bootstrapiso>:not(#wpwrap) .badge-primary{color:#fff;background-color:#007bff}html body.bootstrapiso:not(#random_id_string)>a.badge-primary:focus,html body.bootstrapiso:not(#random_id_string)>a.badge-primary:hover,html body.bootstrapiso>:not(#wpwrap) a.badge-primary:focus,html body.bootstrapiso>:not(#wpwrap) a.badge-primary:hover{color:#fff;background-color:#0062cc}html body.bootstrapiso:not(#random_id_string)>a.badge-primary.focus,html body.bootstrapiso:not(#random_id_string)>a.badge-primary:focus,html body.bootstrapiso>:not(#wpwrap) a.badge-primary.focus,html body.bootstrapiso>:not(#wpwrap) a.badge-primary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}html body.bootstrapiso:not(#random_id_string)>.badge-secondary,html body.bootstrapiso>:not(#wpwrap) .badge-secondary{color:#fff;background-color:#6c757d}html body.bootstrapiso:not(#random_id_string)>a.badge-secondary:focus,html body.bootstrapiso:not(#random_id_string)>a.badge-secondary:hover,html body.bootstrapiso>:not(#wpwrap) a.badge-secondary:focus,html body.bootstrapiso>:not(#wpwrap) a.badge-secondary:hover{color:#fff;background-color:#545b62}html body.bootstrapiso:not(#random_id_string)>a.badge-secondary.focus,html body.bootstrapiso:not(#random_id_string)>a.badge-secondary:focus,html body.bootstrapiso>:not(#wpwrap) a.badge-secondary.focus,html body.bootstrapiso>:not(#wpwrap) a.badge-secondary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}html body.bootstrapiso:not(#random_id_string)>.badge-success,html body.bootstrapiso>:not(#wpwrap) .badge-success{color:#fff;background-color:#28a745}html body.bootstrapiso:not(#random_id_string)>a.badge-success:focus,html body.bootstrapiso:not(#random_id_string)>a.badge-success:hover,html body.bootstrapiso>:not(#wpwrap) a.badge-success:focus,html body.bootstrapiso>:not(#wpwrap) a.badge-success:hover{color:#fff;background-color:#1e7e34}html body.bootstrapiso:not(#random_id_string)>a.badge-success.focus,html body.bootstrapiso:not(#random_id_string)>a.badge-success:focus,html body.bootstrapiso>:not(#wpwrap) a.badge-success.focus,html body.bootstrapiso>:not(#wpwrap) a.badge-success:focus{outline:0;box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}html body.bootstrapiso:not(#random_id_string)>.badge-info,html body.bootstrapiso>:not(#wpwrap) .badge-info{color:#fff;background-color:#17a2b8}html body.bootstrapiso:not(#random_id_string)>a.badge-info:focus,html body.bootstrapiso:not(#random_id_string)>a.badge-info:hover,html body.bootstrapiso>:not(#wpwrap) a.badge-info:focus,html body.bootstrapiso>:not(#wpwrap) a.badge-info:hover{color:#fff;background-color:#117a8b}html body.bootstrapiso:not(#random_id_string)>a.badge-info.focus,html body.bootstrapiso:not(#random_id_string)>a.badge-info:focus,html body.bootstrapiso>:not(#wpwrap) a.badge-info.focus,html body.bootstrapiso>:not(#wpwrap) a.badge-info:focus{outline:0;box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}html body.bootstrapiso:not(#random_id_string)>.badge-warning,html body.bootstrapiso>:not(#wpwrap) .badge-warning{color:#212529;background-color:#ffc107}html body.bootstrapiso:not(#random_id_string)>a.badge-warning:focus,html body.bootstrapiso:not(#random_id_string)>a.badge-warning:hover,html body.bootstrapiso>:not(#wpwrap) a.badge-warning:focus,html body.bootstrapiso>:not(#wpwrap) a.badge-warning:hover{color:#212529;background-color:#d39e00}html body.bootstrapiso:not(#random_id_string)>a.badge-warning.focus,html body.bootstrapiso:not(#random_id_string)>a.badge-warning:focus,html body.bootstrapiso>:not(#wpwrap) a.badge-warning.focus,html body.bootstrapiso>:not(#wpwrap) a.badge-warning:focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}html body.bootstrapiso:not(#random_id_string)>.badge-danger,html body.bootstrapiso>:not(#wpwrap) .badge-danger{color:#fff;background-color:#dc3545}html body.bootstrapiso:not(#random_id_string)>a.badge-danger:focus,html body.bootstrapiso:not(#random_id_string)>a.badge-danger:hover,html body.bootstrapiso>:not(#wpwrap) a.badge-danger:focus,html body.bootstrapiso>:not(#wpwrap) a.badge-danger:hover{color:#fff;background-color:#bd2130}html body.bootstrapiso:not(#random_id_string)>a.badge-danger.focus,html body.bootstrapiso:not(#random_id_string)>a.badge-danger:focus,html body.bootstrapiso>:not(#wpwrap) a.badge-danger.focus,html body.bootstrapiso>:not(#wpwrap) a.badge-danger:focus{outline:0;box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}html body.bootstrapiso:not(#random_id_string)>.badge-light,html body.bootstrapiso>:not(#wpwrap) .badge-light{color:#212529;background-color:#f8f9fa}html body.bootstrapiso:not(#random_id_string)>a.badge-light:focus,html body.bootstrapiso:not(#random_id_string)>a.badge-light:hover,html body.bootstrapiso>:not(#wpwrap) a.badge-light:focus,html body.bootstrapiso>:not(#wpwrap) a.badge-light:hover{color:#212529;background-color:#dae0e5}html body.bootstrapiso:not(#random_id_string)>a.badge-light.focus,html body.bootstrapiso:not(#random_id_string)>a.badge-light:focus,html body.bootstrapiso>:not(#wpwrap) a.badge-light.focus,html body.bootstrapiso>:not(#wpwrap) a.badge-light:focus{outline:0;box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}html body.bootstrapiso:not(#random_id_string)>.badge-dark,html body.bootstrapiso>:not(#wpwrap) .badge-dark{color:#fff;background-color:#343a40}html body.bootstrapiso:not(#random_id_string)>a.badge-dark:focus,html body.bootstrapiso:not(#random_id_string)>a.badge-dark:hover,html body.bootstrapiso>:not(#wpwrap) a.badge-dark:focus,html body.bootstrapiso>:not(#wpwrap) a.badge-dark:hover{color:#fff;background-color:#1d2124}html body.bootstrapiso:not(#random_id_string)>a.badge-dark.focus,html body.bootstrapiso:not(#random_id_string)>a.badge-dark:focus,html body.bootstrapiso>:not(#wpwrap) a.badge-dark.focus,html body.bootstrapiso>:not(#wpwrap) a.badge-dark:focus{outline:0;box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}html body.bootstrapiso:not(#random_id_string)>.jumbotron,html body.bootstrapiso>:not(#wpwrap) .jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#e9ecef;border-radius:.3rem}@media (min-width:576px){html body.bootstrapiso:not(#random_id_string)>.jumbotron,html body.bootstrapiso>:not(#wpwrap) .jumbotron{padding:4rem 2rem}}html body.bootstrapiso:not(#random_id_string)>.jumbotron-fluid,html body.bootstrapiso>:not(#wpwrap) .jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}html body.bootstrapiso:not(#random_id_string)>.alert,html body.bootstrapiso>:not(#wpwrap) .alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}html body.bootstrapiso:not(#random_id_string)>.alert-heading,html body.bootstrapiso>:not(#wpwrap) .alert-heading{color:inherit}html body.bootstrapiso:not(#random_id_string)>.alert-link,html body.bootstrapiso>:not(#wpwrap) .alert-link{font-weight:700}html body.bootstrapiso:not(#random_id_string)>.alert-dismissible,html body.bootstrapiso>:not(#wpwrap) .alert-dismissible{padding-right:4rem}html body.bootstrapiso:not(#random_id_string)>.alert-dismissible .close,html body.bootstrapiso>:not(#wpwrap) .alert-dismissible .close{position:absolute;top:0;right:0;z-index:2;padding:.75rem 1.25rem;color:inherit}html body.bootstrapiso:not(#random_id_string)>.alert-primary,html body.bootstrapiso>:not(#wpwrap) .alert-primary{color:#004085;background-color:#cce5ff;border-color:#b8daff}html body.bootstrapiso:not(#random_id_string)>.alert-primary hr,html body.bootstrapiso>:not(#wpwrap) .alert-primary hr{border-top-color:#9fcdff}html body.bootstrapiso:not(#random_id_string)>.alert-primary .alert-link,html body.bootstrapiso>:not(#wpwrap) .alert-primary .alert-link{color:#002752}html body.bootstrapiso:not(#random_id_string)>.alert-secondary,html body.bootstrapiso>:not(#wpwrap) .alert-secondary{color:#383d41;background-color:#e2e3e5;border-color:#d6d8db}html body.bootstrapiso:not(#random_id_string)>.alert-secondary hr,html body.bootstrapiso>:not(#wpwrap) .alert-secondary hr{border-top-color:#c8cbcf}html body.bootstrapiso:not(#random_id_string)>.alert-secondary .alert-link,html body.bootstrapiso>:not(#wpwrap) .alert-secondary .alert-link{color:#202326}html body.bootstrapiso:not(#random_id_string)>.alert-success,html body.bootstrapiso>:not(#wpwrap) .alert-success{color:#155724;background-color:#d4edda;border-color:#c3e6cb}html body.bootstrapiso:not(#random_id_string)>.alert-success hr,html body.bootstrapiso>:not(#wpwrap) .alert-success hr{border-top-color:#b1dfbb}html body.bootstrapiso:not(#random_id_string)>.alert-success .alert-link,html body.bootstrapiso>:not(#wpwrap) .alert-success .alert-link{color:#0b2e13}html body.bootstrapiso:not(#random_id_string)>.alert-info,html body.bootstrapiso>:not(#wpwrap) .alert-info{color:#0c5460;background-color:#d1ecf1;border-color:#bee5eb}html body.bootstrapiso:not(#random_id_string)>.alert-info hr,html body.bootstrapiso>:not(#wpwrap) .alert-info hr{border-top-color:#abdde5}html body.bootstrapiso:not(#random_id_string)>.alert-info .alert-link,html body.bootstrapiso>:not(#wpwrap) .alert-info .alert-link{color:#062c33}html body.bootstrapiso:not(#random_id_string)>.alert-warning,html body.bootstrapiso>:not(#wpwrap) .alert-warning{color:#856404;background-color:#fff3cd;border-color:#ffeeba}html body.bootstrapiso:not(#random_id_string)>.alert-warning hr,html body.bootstrapiso>:not(#wpwrap) .alert-warning hr{border-top-color:#ffe8a1}html body.bootstrapiso:not(#random_id_string)>.alert-warning .alert-link,html body.bootstrapiso>:not(#wpwrap) .alert-warning .alert-link{color:#533f03}html body.bootstrapiso:not(#random_id_string)>.alert-danger,html body.bootstrapiso>:not(#wpwrap) .alert-danger{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}html body.bootstrapiso:not(#random_id_string)>.alert-danger hr,html body.bootstrapiso>:not(#wpwrap) .alert-danger hr{border-top-color:#f1b0b7}html body.bootstrapiso:not(#random_id_string)>.alert-danger .alert-link,html body.bootstrapiso>:not(#wpwrap) .alert-danger .alert-link{color:#491217}html body.bootstrapiso:not(#random_id_string)>.alert-light,html body.bootstrapiso>:not(#wpwrap) .alert-light{color:#818182;background-color:#fefefe;border-color:#fdfdfe}html body.bootstrapiso:not(#random_id_string)>.alert-light hr,html body.bootstrapiso>:not(#wpwrap) .alert-light hr{border-top-color:#ececf6}html body.bootstrapiso:not(#random_id_string)>.alert-light .alert-link,html body.bootstrapiso>:not(#wpwrap) .alert-light .alert-link{color:#686868}html body.bootstrapiso:not(#random_id_string)>.alert-dark,html body.bootstrapiso>:not(#wpwrap) .alert-dark{color:#1b1e21;background-color:#d6d8d9;border-color:#c6c8ca}html body.bootstrapiso:not(#random_id_string)>.alert-dark hr,html body.bootstrapiso>:not(#wpwrap) .alert-dark hr{border-top-color:#b9bbbe}html body.bootstrapiso:not(#random_id_string)>.alert-dark .alert-link,html body.bootstrapiso>:not(#wpwrap) .alert-dark .alert-link{color:#040505}@-webkit-keyframes progress-bar-stripes{0%{background-position:1rem 0}to{background-position:0 0}}@keyframes progress-bar-stripes{0%{background-position:1rem 0}to{background-position:0 0}}html body.bootstrapiso:not(#random_id_string)>.progress,html body.bootstrapiso>:not(#wpwrap) .progress{display:-webkit-flex;display:flex;height:1rem;overflow:hidden;line-height:0;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}html body.bootstrapiso:not(#random_id_string)>.progress-bar,html body.bootstrapiso>:not(#wpwrap) .progress-bar{display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;-webkit-justify-content:center;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#007bff;transition:width .6s ease}@media (prefers-reduced-motion:reduce){html body.bootstrapiso:not(#random_id_string)>.progress-bar,html body.bootstrapiso>:not(#wpwrap) .progress-bar{transition:none}}html body.bootstrapiso:not(#random_id_string)>.progress-bar-striped,html body.bootstrapiso>:not(#wpwrap) .progress-bar-striped{background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);background-size:1rem 1rem}html body.bootstrapiso:not(#random_id_string)>.progress-bar-animated,html body.bootstrapiso>:not(#wpwrap) .progress-bar-animated{-webkit-animation:progress-bar-stripes 1s linear infinite;animation:progress-bar-stripes 1s linear infinite}@media (prefers-reduced-motion:reduce){html body.bootstrapiso:not(#random_id_string)>.progress-bar-animated,html body.bootstrapiso>:not(#wpwrap) .progress-bar-animated{-webkit-animation:none;animation:none}}html body.bootstrapiso:not(#random_id_string)>.media,html body.bootstrapiso>:not(#wpwrap) .media{display:-webkit-flex;display:flex;-webkit-align-items:flex-start;align-items:flex-start}html body.bootstrapiso:not(#random_id_string)>.media-body,html body.bootstrapiso>:not(#wpwrap) .media-body{-webkit-flex:1 1;flex:1 1}html body.bootstrapiso:not(#random_id_string)>.list-group,html body.bootstrapiso>:not(#wpwrap) .list-group{display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.25rem}html body.bootstrapiso:not(#random_id_string)>.list-group-item-action,html body.bootstrapiso>:not(#wpwrap) .list-group-item-action{width:100%;color:#495057;text-align:inherit}html body.bootstrapiso:not(#random_id_string)>.list-group-item-action:focus,html body.bootstrapiso:not(#random_id_string)>.list-group-item-action:hover,html body.bootstrapiso>:not(#wpwrap) .list-group-item-action:focus,html body.bootstrapiso>:not(#wpwrap) .list-group-item-action:hover{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}html body.bootstrapiso:not(#random_id_string)>.list-group-item-action:active,html body.bootstrapiso>:not(#wpwrap) .list-group-item-action:active{color:#212529;background-color:#e9ecef}html body.bootstrapiso:not(#random_id_string)>.list-group-item,html body.bootstrapiso>:not(#wpwrap) .list-group-item{position:relative;display:block;padding:.75rem 1.25rem;background-color:#fff;border:1px solid rgba(0,0,0,.125)}html body.bootstrapiso:not(#random_id_string)>.list-group-item:first-child,html body.bootstrapiso>:not(#wpwrap) .list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}html body.bootstrapiso:not(#random_id_string)>.list-group-item:last-child,html body.bootstrapiso>:not(#wpwrap) .list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}html body.bootstrapiso:not(#random_id_string)>.list-group-item.disabled,html body.bootstrapiso:not(#random_id_string)>.list-group-item:disabled,html body.bootstrapiso>:not(#wpwrap) .list-group-item.disabled,html body.bootstrapiso>:not(#wpwrap) .list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}html body.bootstrapiso:not(#random_id_string)>.list-group-item.active,html body.bootstrapiso>:not(#wpwrap) .list-group-item.active{z-index:2;color:#fff;background-color:#007bff;border-color:#007bff}html body.bootstrapiso:not(#random_id_string)>.list-group-item+.list-group-item,html body.bootstrapiso>:not(#wpwrap) .list-group-item+.list-group-item{border-top-width:0}html body.bootstrapiso:not(#random_id_string)>.list-group-item+.list-group-item.active,html body.bootstrapiso>:not(#wpwrap) .list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal{-webkit-flex-direction:row;flex-direction:row}html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal>.list-group-item:first-child,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal>.list-group-item:last-child,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal>.list-group-item.active,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal>.list-group-item.active{margin-top:0}html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal>.list-group-item+.list-group-item,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal>.list-group-item+.list-group-item.active,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media (min-width:576px){html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal-sm,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal-sm{-webkit-flex-direction:row;flex-direction:row}html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal-sm>.list-group-item:first-child,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal-sm>.list-group-item:last-child,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal-sm>.list-group-item.active,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal-sm>.list-group-item.active{margin-top:0}html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal-sm>.list-group-item+.list-group-item,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal-sm>.list-group-item+.list-group-item.active,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:768px){html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal-md,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal-md{-webkit-flex-direction:row;flex-direction:row}html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal-md>.list-group-item:first-child,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal-md>.list-group-item:last-child,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal-md>.list-group-item.active,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal-md>.list-group-item.active{margin-top:0}html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal-md>.list-group-item+.list-group-item,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal-md>.list-group-item+.list-group-item.active,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:992px){html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal-lg,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal-lg{-webkit-flex-direction:row;flex-direction:row}html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal-lg>.list-group-item:first-child,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal-lg>.list-group-item:last-child,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal-lg>.list-group-item.active,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal-lg>.list-group-item.active{margin-top:0}html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal-lg>.list-group-item+.list-group-item,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal-lg>.list-group-item+.list-group-item.active,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:1200px){html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal-xl,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal-xl{-webkit-flex-direction:row;flex-direction:row}html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal-xl>.list-group-item:first-child,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal-xl>.list-group-item:last-child,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal-xl>.list-group-item.active,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal-xl>.list-group-item.active{margin-top:0}html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal-xl>.list-group-item+.list-group-item,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}html body.bootstrapiso:not(#random_id_string)>.list-group-horizontal-xl>.list-group-item+.list-group-item.active,html body.bootstrapiso>:not(#wpwrap) .list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}html body.bootstrapiso:not(#random_id_string)>.list-group-flush,html body.bootstrapiso>:not(#wpwrap) .list-group-flush{border-radius:0}html body.bootstrapiso:not(#random_id_string)>.list-group-flush>.list-group-item,html body.bootstrapiso>:not(#wpwrap) .list-group-flush>.list-group-item{border-width:0 0 1px}html body.bootstrapiso:not(#random_id_string)>.list-group-flush>.list-group-item:last-child,html body.bootstrapiso>:not(#wpwrap) .list-group-flush>.list-group-item:last-child{border-bottom-width:0}html body.bootstrapiso:not(#random_id_string)>.list-group-item-primary,html body.bootstrapiso>:not(#wpwrap) .list-group-item-primary{color:#004085;background-color:#b8daff}html body.bootstrapiso:not(#random_id_string)>.list-group-item-primary.list-group-item-action:focus,html body.bootstrapiso:not(#random_id_string)>.list-group-item-primary.list-group-item-action:hover,html body.bootstrapiso>:not(#wpwrap) .list-group-item-primary.list-group-item-action:focus,html body.bootstrapiso>:not(#wpwrap) .list-group-item-primary.list-group-item-action:hover{color:#004085;background-color:#9fcdff}html body.bootstrapiso:not(#random_id_string)>.list-group-item-primary.list-group-item-action.active,html body.bootstrapiso>:not(#wpwrap) .list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#004085;border-color:#004085}html body.bootstrapiso:not(#random_id_string)>.list-group-item-secondary,html body.bootstrapiso>:not(#wpwrap) .list-group-item-secondary{color:#383d41;background-color:#d6d8db}html body.bootstrapiso:not(#random_id_string)>.list-group-item-secondary.list-group-item-action:focus,html body.bootstrapiso:not(#random_id_string)>.list-group-item-secondary.list-group-item-action:hover,html body.bootstrapiso>:not(#wpwrap) .list-group-item-secondary.list-group-item-action:focus,html body.bootstrapiso>:not(#wpwrap) .list-group-item-secondary.list-group-item-action:hover{color:#383d41;background-color:#c8cbcf}html body.bootstrapiso:not(#random_id_string)>.list-group-item-secondary.list-group-item-action.active,html body.bootstrapiso>:not(#wpwrap) .list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#383d41;border-color:#383d41}html body.bootstrapiso:not(#random_id_string)>.list-group-item-success,html body.bootstrapiso>:not(#wpwrap) .list-group-item-success{color:#155724;background-color:#c3e6cb}html body.bootstrapiso:not(#random_id_string)>.list-group-item-success.list-group-item-action:focus,html body.bootstrapiso:not(#random_id_string)>.list-group-item-success.list-group-item-action:hover,html body.bootstrapiso>:not(#wpwrap) .list-group-item-success.list-group-item-action:focus,html body.bootstrapiso>:not(#wpwrap) .list-group-item-success.list-group-item-action:hover{color:#155724;background-color:#b1dfbb}html body.bootstrapiso:not(#random_id_string)>.list-group-item-success.list-group-item-action.active,html body.bootstrapiso>:not(#wpwrap) .list-group-item-success.list-group-item-action.active{color:#fff;background-color:#155724;border-color:#155724}html body.bootstrapiso:not(#random_id_string)>.list-group-item-info,html body.bootstrapiso>:not(#wpwrap) .list-group-item-info{color:#0c5460;background-color:#bee5eb}html body.bootstrapiso:not(#random_id_string)>.list-group-item-info.list-group-item-action:focus,html body.bootstrapiso:not(#random_id_string)>.list-group-item-info.list-group-item-action:hover,html body.bootstrapiso>:not(#wpwrap) .list-group-item-info.list-group-item-action:focus,html body.bootstrapiso>:not(#wpwrap) .list-group-item-info.list-group-item-action:hover{color:#0c5460;background-color:#abdde5}html body.bootstrapiso:not(#random_id_string)>.list-group-item-info.list-group-item-action.active,html body.bootstrapiso>:not(#wpwrap) .list-group-item-info.list-group-item-action.active{color:#fff;background-color:#0c5460;border-color:#0c5460}html body.bootstrapiso:not(#random_id_string)>.list-group-item-warning,html body.bootstrapiso>:not(#wpwrap) .list-group-item-warning{color:#856404;background-color:#ffeeba}html body.bootstrapiso:not(#random_id_string)>.list-group-item-warning.list-group-item-action:focus,html body.bootstrapiso:not(#random_id_string)>.list-group-item-warning.list-group-item-action:hover,html body.bootstrapiso>:not(#wpwrap) .list-group-item-warning.list-group-item-action:focus,html body.bootstrapiso>:not(#wpwrap) .list-group-item-warning.list-group-item-action:hover{color:#856404;background-color:#ffe8a1}html body.bootstrapiso:not(#random_id_string)>.list-group-item-warning.list-group-item-action.active,html body.bootstrapiso>:not(#wpwrap) .list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#856404;border-color:#856404}html body.bootstrapiso:not(#random_id_string)>.list-group-item-danger,html body.bootstrapiso>:not(#wpwrap) .list-group-item-danger{color:#721c24;background-color:#f5c6cb}html body.bootstrapiso:not(#random_id_string)>.list-group-item-danger.list-group-item-action:focus,html body.bootstrapiso:not(#random_id_string)>.list-group-item-danger.list-group-item-action:hover,html body.bootstrapiso>:not(#wpwrap) .list-group-item-danger.list-group-item-action:focus,html body.bootstrapiso>:not(#wpwrap) .list-group-item-danger.list-group-item-action:hover{color:#721c24;background-color:#f1b0b7}html body.bootstrapiso:not(#random_id_string)>.list-group-item-danger.list-group-item-action.active,html body.bootstrapiso>:not(#wpwrap) .list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#721c24;border-color:#721c24}html body.bootstrapiso:not(#random_id_string)>.list-group-item-light,html body.bootstrapiso>:not(#wpwrap) .list-group-item-light{color:#818182;background-color:#fdfdfe}html body.bootstrapiso:not(#random_id_string)>.list-group-item-light.list-group-item-action:focus,html body.bootstrapiso:not(#random_id_string)>.list-group-item-light.list-group-item-action:hover,html body.bootstrapiso>:not(#wpwrap) .list-group-item-light.list-group-item-action:focus,html body.bootstrapiso>:not(#wpwrap) .list-group-item-light.list-group-item-action:hover{color:#818182;background-color:#ececf6}html body.bootstrapiso:not(#random_id_string)>.list-group-item-light.list-group-item-action.active,html body.bootstrapiso>:not(#wpwrap) .list-group-item-light.list-group-item-action.active{color:#fff;background-color:#818182;border-color:#818182}html body.bootstrapiso:not(#random_id_string)>.list-group-item-dark,html body.bootstrapiso>:not(#wpwrap) .list-group-item-dark{color:#1b1e21;background-color:#c6c8ca}html body.bootstrapiso:not(#random_id_string)>.list-group-item-dark.list-group-item-action:focus,html body.bootstrapiso:not(#random_id_string)>.list-group-item-dark.list-group-item-action:hover,html body.bootstrapiso>:not(#wpwrap) .list-group-item-dark.list-group-item-action:focus,html body.bootstrapiso>:not(#wpwrap) .list-group-item-dark.list-group-item-action:hover{color:#1b1e21;background-color:#b9bbbe}html body.bootstrapiso:not(#random_id_string)>.list-group-item-dark.list-group-item-action.active,html body.bootstrapiso>:not(#wpwrap) .list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#1b1e21;border-color:#1b1e21}html body.bootstrapiso:not(#random_id_string)>.close,html body.bootstrapiso>:not(#wpwrap) .close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}html body.bootstrapiso:not(#random_id_string)>.close:hover,html body.bootstrapiso>:not(#wpwrap) .close:hover{color:#000;text-decoration:none}html body.bootstrapiso:not(#random_id_string)>.close:not(:disabled):not(.disabled):focus,html body.bootstrapiso:not(#random_id_string)>.close:not(:disabled):not(.disabled):hover,html body.bootstrapiso>:not(#wpwrap) .close:not(:disabled):not(.disabled):focus,html body.bootstrapiso>:not(#wpwrap) .close:not(:disabled):not(.disabled):hover{opacity:.75}html body.bootstrapiso:not(#random_id_string)>button.close,html body.bootstrapiso>:not(#wpwrap) button.close{padding:0;background-color:transparent;border:0}html body.bootstrapiso:not(#random_id_string)>a.close.disabled,html body.bootstrapiso>:not(#wpwrap) a.close.disabled{pointer-events:none}html body.bootstrapiso:not(#random_id_string)>.toast,html body.bootstrapiso>:not(#wpwrap) .toast{-webkit-flex-basis:350px;flex-basis:350px;max-width:350px;font-size:.875rem;background-color:hsla(0,0%,100%,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .25rem .75rem rgba(0,0,0,.1);opacity:0;border-radius:.25rem}html body.bootstrapiso:not(#random_id_string)>.toast:not(:last-child),html body.bootstrapiso>:not(#wpwrap) .toast:not(:last-child){margin-bottom:.75rem}html body.bootstrapiso:not(#random_id_string)>.toast.showing,html body.bootstrapiso>:not(#wpwrap) .toast.showing{opacity:1}html body.bootstrapiso:not(#random_id_string)>.toast.show,html body.bootstrapiso>:not(#wpwrap) .toast.show{display:block;opacity:1}html body.bootstrapiso:not(#random_id_string)>.toast.hide,html body.bootstrapiso>:not(#wpwrap) .toast.hide{display:none}html body.bootstrapiso:not(#random_id_string)>.toast-header,html body.bootstrapiso>:not(#wpwrap) .toast-header{display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;padding:.25rem .75rem;color:#6c757d;background-color:hsla(0,0%,100%,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05);border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}html body.bootstrapiso:not(#random_id_string)>.toast-body,html body.bootstrapiso>:not(#wpwrap) .toast-body{padding:.75rem}html body.bootstrapiso:not(#random_id_string)>.modal-open,html body.bootstrapiso>:not(#wpwrap) .modal-open{overflow:hidden}html body.bootstrapiso:not(#random_id_string)>.modal-open .modal,html body.bootstrapiso>:not(#wpwrap) .modal-open .modal{overflow-x:hidden;overflow-y:auto}html body.bootstrapiso:not(#random_id_string)>.modal,html body.bootstrapiso>:not(#wpwrap) .modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}html body.bootstrapiso:not(#random_id_string)>.modal-dialog,html body.bootstrapiso>:not(#wpwrap) .modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}html body.bootstrapiso:not(#random_id_string)>.modal.fade .modal-dialog,html body.bootstrapiso>:not(#wpwrap) .modal.fade .modal-dialog{transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out;-webkit-transform:translateY(-50px);transform:translateY(-50px)}@media (prefers-reduced-motion:reduce){html body.bootstrapiso:not(#random_id_string)>.modal.fade .modal-dialog,html body.bootstrapiso>:not(#wpwrap) .modal.fade .modal-dialog{transition:none}}html body.bootstrapiso:not(#random_id_string)>.modal.show .modal-dialog,html body.bootstrapiso>:not(#wpwrap) .modal.show .modal-dialog{-webkit-transform:none;transform:none}html body.bootstrapiso:not(#random_id_string)>.modal.modal-static .modal-dialog,html body.bootstrapiso>:not(#wpwrap) .modal.modal-static .modal-dialog{-webkit-transform:scale(1.02);transform:scale(1.02)}html body.bootstrapiso:not(#random_id_string)>.modal-dialog-scrollable,html body.bootstrapiso>:not(#wpwrap) .modal-dialog-scrollable{display:-webkit-flex;display:flex;max-height:calc(100% - 1rem)}html body.bootstrapiso:not(#random_id_string)>.modal-dialog-scrollable .modal-content,html body.bootstrapiso>:not(#wpwrap) .modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}html body.bootstrapiso:not(#random_id_string)>.modal-dialog-scrollable .modal-footer,html body.bootstrapiso:not(#random_id_string)>.modal-dialog-scrollable .modal-header,html body.bootstrapiso>:not(#wpwrap) .modal-dialog-scrollable .modal-footer,html body.bootstrapiso>:not(#wpwrap) .modal-dialog-scrollable .modal-header{-webkit-flex-shrink:0;flex-shrink:0}html body.bootstrapiso:not(#random_id_string)>.modal-dialog-scrollable .modal-body,html body.bootstrapiso>:not(#wpwrap) .modal-dialog-scrollable .modal-body{overflow-y:auto}html body.bootstrapiso:not(#random_id_string)>.modal-dialog-centered,html body.bootstrapiso>:not(#wpwrap) .modal-dialog-centered{display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;min-height:calc(100% - 1rem)}html body.bootstrapiso:not(#random_id_string)>.modal-dialog-centered:before,html body.bootstrapiso>:not(#wpwrap) .modal-dialog-centered:before{display:block;height:calc(100vh - 1rem);height:-webkit-min-content;height:min-content;content:""}html body.bootstrapiso:not(#random_id_string)>.modal-dialog-centered.modal-dialog-scrollable,html body.bootstrapiso>:not(#wpwrap) .modal-dialog-centered.modal-dialog-scrollable{-webkit-flex-direction:column;flex-direction:column;-webkit-justify-content:center;justify-content:center;height:100%}html body.bootstrapiso:not(#random_id_string)>.modal-dialog-centered.modal-dialog-scrollable .modal-content,html body.bootstrapiso>:not(#wpwrap) .modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}html body.bootstrapiso:not(#random_id_string)>.modal-dialog-centered.modal-dialog-scrollable:before,html body.bootstrapiso>:not(#wpwrap) .modal-dialog-centered.modal-dialog-scrollable:before{content:none}html body.bootstrapiso:not(#random_id_string)>.modal-content,html body.bootstrapiso>:not(#wpwrap) .modal-content{position:relative;display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}html body.bootstrapiso:not(#random_id_string)>.modal-backdrop,html body.bootstrapiso>:not(#wpwrap) .modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}html body.bootstrapiso:not(#random_id_string)>.modal-backdrop.fade,html body.bootstrapiso>:not(#wpwrap) .modal-backdrop.fade{opacity:0}html body.bootstrapiso:not(#random_id_string)>.modal-backdrop.show,html body.bootstrapiso>:not(#wpwrap) .modal-backdrop.show{opacity:.5}html body.bootstrapiso:not(#random_id_string)>.modal-header,html body.bootstrapiso>:not(#wpwrap) .modal-header{display:-webkit-flex;display:flex;-webkit-align-items:flex-start;align-items:flex-start;-webkit-justify-content:space-between;justify-content:space-between;padding:1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}html body.bootstrapiso:not(#random_id_string)>.modal-header .close,html body.bootstrapiso>:not(#wpwrap) .modal-header .close{padding:1rem;margin:-1rem -1rem -1rem auto}html body.bootstrapiso:not(#random_id_string)>.modal-title,html body.bootstrapiso>:not(#wpwrap) .modal-title{margin-bottom:0;line-height:1.5}html body.bootstrapiso:not(#random_id_string)>.modal-body,html body.bootstrapiso>:not(#wpwrap) .modal-body{position:relative;-webkit-flex:1 1 auto;flex:1 1 auto;padding:1rem}html body.bootstrapiso:not(#random_id_string)>.modal-footer,html body.bootstrapiso>:not(#wpwrap) .modal-footer{display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;-webkit-align-items:center;align-items:center;-webkit-justify-content:flex-end;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}html body.bootstrapiso:not(#random_id_string)>.modal-footer>*,html body.bootstrapiso>:not(#wpwrap) .modal-footer>*{margin:.25rem}html body.bootstrapiso:not(#random_id_string)>.modal-scrollbar-measure,html body.bootstrapiso>:not(#wpwrap) .modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:576px){html body.bootstrapiso:not(#random_id_string)>.modal-dialog,html body.bootstrapiso>:not(#wpwrap) .modal-dialog{max-width:500px;margin:1.75rem auto}html body.bootstrapiso:not(#random_id_string)>.modal-dialog-scrollable,html body.bootstrapiso>:not(#wpwrap) .modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}html body.bootstrapiso:not(#random_id_string)>.modal-dialog-scrollable .modal-content,html body.bootstrapiso>:not(#wpwrap) .modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}html body.bootstrapiso:not(#random_id_string)>.modal-dialog-centered,html body.bootstrapiso>:not(#wpwrap) .modal-dialog-centered{min-height:calc(100% - 3.5rem)}html body.bootstrapiso:not(#random_id_string)>.modal-dialog-centered:before,html body.bootstrapiso>:not(#wpwrap) .modal-dialog-centered:before{height:calc(100vh - 3.5rem);height:-webkit-min-content;height:min-content}html body.bootstrapiso:not(#random_id_string)>.modal-sm,html body.bootstrapiso>:not(#wpwrap) .modal-sm{max-width:300px}}@media (min-width:992px){html body.bootstrapiso:not(#random_id_string)>.modal-lg,html body.bootstrapiso:not(#random_id_string)>.modal-xl,html body.bootstrapiso>:not(#wpwrap) .modal-lg,html body.bootstrapiso>:not(#wpwrap) .modal-xl{max-width:800px}}@media (min-width:1200px){html body.bootstrapiso:not(#random_id_string)>.modal-xl,html body.bootstrapiso>:not(#wpwrap) .modal-xl{max-width:1140px}}html body.bootstrapiso:not(#random_id_string)>.tooltip,html body.bootstrapiso>:not(#wpwrap) .tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}html body.bootstrapiso:not(#random_id_string)>.tooltip.show,html body.bootstrapiso>:not(#wpwrap) .tooltip.show{opacity:.9}html body.bootstrapiso:not(#random_id_string)>.tooltip .arrow,html body.bootstrapiso>:not(#wpwrap) .tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}html body.bootstrapiso:not(#random_id_string)>.tooltip .arrow:before,html body.bootstrapiso>:not(#wpwrap) .tooltip .arrow:before{position:absolute;content:"";border-color:transparent;border-style:solid}html body.bootstrapiso:not(#random_id_string)>.bs-tooltip-auto[x-placement^=top],html body.bootstrapiso:not(#random_id_string)>.bs-tooltip-top,html body.bootstrapiso>:not(#wpwrap) .bs-tooltip-auto[x-placement^=top],html body.bootstrapiso>:not(#wpwrap) .bs-tooltip-top{padding:.4rem 0}html body.bootstrapiso:not(#random_id_string)>.bs-tooltip-auto[x-placement^=top] .arrow,html body.bootstrapiso:not(#random_id_string)>.bs-tooltip-top .arrow,html body.bootstrapiso>:not(#wpwrap) .bs-tooltip-auto[x-placement^=top] .arrow,html body.bootstrapiso>:not(#wpwrap) .bs-tooltip-top .arrow{bottom:0}html body.bootstrapiso:not(#random_id_string)>.bs-tooltip-auto[x-placement^=top] .arrow:before,html body.bootstrapiso:not(#random_id_string)>.bs-tooltip-top .arrow:before,html body.bootstrapiso>:not(#wpwrap) .bs-tooltip-auto[x-placement^=top] .arrow:before,html body.bootstrapiso>:not(#wpwrap) .bs-tooltip-top .arrow:before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}html body.bootstrapiso:not(#random_id_string)>.bs-tooltip-auto[x-placement^=right],html body.bootstrapiso:not(#random_id_string)>.bs-tooltip-right,html body.bootstrapiso>:not(#wpwrap) .bs-tooltip-auto[x-placement^=right],html body.bootstrapiso>:not(#wpwrap) .bs-tooltip-right{padding:0 .4rem}html body.bootstrapiso:not(#random_id_string)>.bs-tooltip-auto[x-placement^=right] .arrow,html body.bootstrapiso:not(#random_id_string)>.bs-tooltip-right .arrow,html body.bootstrapiso>:not(#wpwrap) .bs-tooltip-auto[x-placement^=right] .arrow,html body.bootstrapiso>:not(#wpwrap) .bs-tooltip-right .arrow{left:0;width:.4rem;height:.8rem}html body.bootstrapiso:not(#random_id_string)>.bs-tooltip-auto[x-placement^=right] .arrow:before,html body.bootstrapiso:not(#random_id_string)>.bs-tooltip-right .arrow:before,html body.bootstrapiso>:not(#wpwrap) .bs-tooltip-auto[x-placement^=right] .arrow:before,html body.bootstrapiso>:not(#wpwrap) .bs-tooltip-right .arrow:before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}html body.bootstrapiso:not(#random_id_string)>.bs-tooltip-auto[x-placement^=bottom],html body.bootstrapiso:not(#random_id_string)>.bs-tooltip-bottom,html body.bootstrapiso>:not(#wpwrap) .bs-tooltip-auto[x-placement^=bottom],html body.bootstrapiso>:not(#wpwrap) .bs-tooltip-bottom{padding:.4rem 0}html body.bootstrapiso:not(#random_id_string)>.bs-tooltip-auto[x-placement^=bottom] .arrow,html body.bootstrapiso:not(#random_id_string)>.bs-tooltip-bottom .arrow,html body.bootstrapiso>:not(#wpwrap) .bs-tooltip-auto[x-placement^=bottom] .arrow,html body.bootstrapiso>:not(#wpwrap) .bs-tooltip-bottom .arrow{top:0}html body.bootstrapiso:not(#random_id_string)>.bs-tooltip-auto[x-placement^=bottom] .arrow:before,html body.bootstrapiso:not(#random_id_string)>.bs-tooltip-bottom .arrow:before,html body.bootstrapiso>:not(#wpwrap) .bs-tooltip-auto[x-placement^=bottom] .arrow:before,html body.bootstrapiso>:not(#wpwrap) .bs-tooltip-bottom .arrow:before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}html body.bootstrapiso:not(#random_id_string)>.bs-tooltip-auto[x-placement^=left],html body.bootstrapiso:not(#random_id_string)>.bs-tooltip-left,html body.bootstrapiso>:not(#wpwrap) .bs-tooltip-auto[x-placement^=left],html body.bootstrapiso>:not(#wpwrap) .bs-tooltip-left{padding:0 .4rem}html body.bootstrapiso:not(#random_id_string)>.bs-tooltip-auto[x-placement^=left] .arrow,html body.bootstrapiso:not(#random_id_string)>.bs-tooltip-left .arrow,html body.bootstrapiso>:not(#wpwrap) .bs-tooltip-auto[x-placement^=left] .arrow,html body.bootstrapiso>:not(#wpwrap) .bs-tooltip-left .arrow{right:0;width:.4rem;height:.8rem}html body.bootstrapiso:not(#random_id_string)>.bs-tooltip-auto[x-placement^=left] .arrow:before,html body.bootstrapiso:not(#random_id_string)>.bs-tooltip-left .arrow:before,html body.bootstrapiso>:not(#wpwrap) .bs-tooltip-auto[x-placement^=left] .arrow:before,html body.bootstrapiso>:not(#wpwrap) .bs-tooltip-left .arrow:before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}html body.bootstrapiso:not(#random_id_string)>.tooltip-inner,html body.bootstrapiso>:not(#wpwrap) .tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}html body.bootstrapiso:not(#random_id_string)>.popover,html body.bootstrapiso>:not(#wpwrap) .popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}html body.bootstrapiso:not(#random_id_string)>.popover .arrow,html body.bootstrapiso>:not(#wpwrap) .popover .arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 .3rem}html body.bootstrapiso:not(#random_id_string)>.popover .arrow:after,html body.bootstrapiso:not(#random_id_string)>.popover .arrow:before,html body.bootstrapiso>:not(#wpwrap) .popover .arrow:after,html body.bootstrapiso>:not(#wpwrap) .popover .arrow:before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}html body.bootstrapiso:not(#random_id_string)>.bs-popover-auto[x-placement^=top],html body.bootstrapiso:not(#random_id_string)>.bs-popover-top,html body.bootstrapiso>:not(#wpwrap) .bs-popover-auto[x-placement^=top],html body.bootstrapiso>:not(#wpwrap) .bs-popover-top{margin-bottom:.5rem}html body.bootstrapiso:not(#random_id_string)>.bs-popover-auto[x-placement^=top]>.arrow,html body.bootstrapiso:not(#random_id_string)>.bs-popover-top>.arrow,html body.bootstrapiso>:not(#wpwrap) .bs-popover-auto[x-placement^=top]>.arrow,html body.bootstrapiso>:not(#wpwrap) .bs-popover-top>.arrow{bottom:calc(-.5rem - 1px)}html body.bootstrapiso:not(#random_id_string)>.bs-popover-auto[x-placement^=top]>.arrow:before,html body.bootstrapiso:not(#random_id_string)>.bs-popover-top>.arrow:before,html body.bootstrapiso>:not(#wpwrap) .bs-popover-auto[x-placement^=top]>.arrow:before,html body.bootstrapiso>:not(#wpwrap) .bs-popover-top>.arrow:before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}html body.bootstrapiso:not(#random_id_string)>.bs-popover-auto[x-placement^=top]>.arrow:after,html body.bootstrapiso:not(#random_id_string)>.bs-popover-top>.arrow:after,html body.bootstrapiso>:not(#wpwrap) .bs-popover-auto[x-placement^=top]>.arrow:after,html body.bootstrapiso>:not(#wpwrap) .bs-popover-top>.arrow:after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}html body.bootstrapiso:not(#random_id_string)>.bs-popover-auto[x-placement^=right],html body.bootstrapiso:not(#random_id_string)>.bs-popover-right,html body.bootstrapiso>:not(#wpwrap) .bs-popover-auto[x-placement^=right],html body.bootstrapiso>:not(#wpwrap) .bs-popover-right{margin-left:.5rem}html body.bootstrapiso:not(#random_id_string)>.bs-popover-auto[x-placement^=right]>.arrow,html body.bootstrapiso:not(#random_id_string)>.bs-popover-right>.arrow,html body.bootstrapiso>:not(#wpwrap) .bs-popover-auto[x-placement^=right]>.arrow,html body.bootstrapiso>:not(#wpwrap) .bs-popover-right>.arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}html body.bootstrapiso:not(#random_id_string)>.bs-popover-auto[x-placement^=right]>.arrow:before,html body.bootstrapiso:not(#random_id_string)>.bs-popover-right>.arrow:before,html body.bootstrapiso>:not(#wpwrap) .bs-popover-auto[x-placement^=right]>.arrow:before,html body.bootstrapiso>:not(#wpwrap) .bs-popover-right>.arrow:before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}html body.bootstrapiso:not(#random_id_string)>.bs-popover-auto[x-placement^=right]>.arrow:after,html body.bootstrapiso:not(#random_id_string)>.bs-popover-right>.arrow:after,html body.bootstrapiso>:not(#wpwrap) .bs-popover-auto[x-placement^=right]>.arrow:after,html body.bootstrapiso>:not(#wpwrap) .bs-popover-right>.arrow:after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}html body.bootstrapiso:not(#random_id_string)>.bs-popover-auto[x-placement^=bottom],html body.bootstrapiso:not(#random_id_string)>.bs-popover-bottom,html body.bootstrapiso>:not(#wpwrap) .bs-popover-auto[x-placement^=bottom],html body.bootstrapiso>:not(#wpwrap) .bs-popover-bottom{margin-top:.5rem}html body.bootstrapiso:not(#random_id_string)>.bs-popover-auto[x-placement^=bottom]>.arrow,html body.bootstrapiso:not(#random_id_string)>.bs-popover-bottom>.arrow,html body.bootstrapiso>:not(#wpwrap) .bs-popover-auto[x-placement^=bottom]>.arrow,html body.bootstrapiso>:not(#wpwrap) .bs-popover-bottom>.arrow{top:calc(-.5rem - 1px)}html body.bootstrapiso:not(#random_id_string)>.bs-popover-auto[x-placement^=bottom]>.arrow:before,html body.bootstrapiso:not(#random_id_string)>.bs-popover-bottom>.arrow:before,html body.bootstrapiso>:not(#wpwrap) .bs-popover-auto[x-placement^=bottom]>.arrow:before,html body.bootstrapiso>:not(#wpwrap) .bs-popover-bottom>.arrow:before{top:0;border-width:0 .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}html body.bootstrapiso:not(#random_id_string)>.bs-popover-auto[x-placement^=bottom]>.arrow:after,html body.bootstrapiso:not(#random_id_string)>.bs-popover-bottom>.arrow:after,html body.bootstrapiso>:not(#wpwrap) .bs-popover-auto[x-placement^=bottom]>.arrow:after,html body.bootstrapiso>:not(#wpwrap) .bs-popover-bottom>.arrow:after{top:1px;border-width:0 .5rem .5rem;border-bottom-color:#fff}html body.bootstrapiso:not(#random_id_string)>.bs-popover-auto[x-placement^=bottom] .popover-header:before,html body.bootstrapiso:not(#random_id_string)>.bs-popover-bottom .popover-header:before,html body.bootstrapiso>:not(#wpwrap) .bs-popover-auto[x-placement^=bottom] .popover-header:before,html body.bootstrapiso>:not(#wpwrap) .bs-popover-bottom .popover-header:before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f7f7f7}html body.bootstrapiso:not(#random_id_string)>.bs-popover-auto[x-placement^=left],html body.bootstrapiso:not(#random_id_string)>.bs-popover-left,html body.bootstrapiso>:not(#wpwrap) .bs-popover-auto[x-placement^=left],html body.bootstrapiso>:not(#wpwrap) .bs-popover-left{margin-right:.5rem}html body.bootstrapiso:not(#random_id_string)>.bs-popover-auto[x-placement^=left]>.arrow,html body.bootstrapiso:not(#random_id_string)>.bs-popover-left>.arrow,html body.bootstrapiso>:not(#wpwrap) .bs-popover-auto[x-placement^=left]>.arrow,html body.bootstrapiso>:not(#wpwrap) .bs-popover-left>.arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}html body.bootstrapiso:not(#random_id_string)>.bs-popover-auto[x-placement^=left]>.arrow:before,html body.bootstrapiso:not(#random_id_string)>.bs-popover-left>.arrow:before,html body.bootstrapiso>:not(#wpwrap) .bs-popover-auto[x-placement^=left]>.arrow:before,html body.bootstrapiso>:not(#wpwrap) .bs-popover-left>.arrow:before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}html body.bootstrapiso:not(#random_id_string)>.bs-popover-auto[x-placement^=left]>.arrow:after,html body.bootstrapiso:not(#random_id_string)>.bs-popover-left>.arrow:after,html body.bootstrapiso>:not(#wpwrap) .bs-popover-auto[x-placement^=left]>.arrow:after,html body.bootstrapiso>:not(#wpwrap) .bs-popover-left>.arrow:after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}html body.bootstrapiso:not(#random_id_string)>.popover-header,html body.bootstrapiso>:not(#wpwrap) .popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}html body.bootstrapiso:not(#random_id_string)>.popover-header:empty,html body.bootstrapiso>:not(#wpwrap) .popover-header:empty{display:none}html body.bootstrapiso:not(#random_id_string)>.popover-body,html body.bootstrapiso>:not(#wpwrap) .popover-body{padding:.5rem .75rem;color:#212529}html body.bootstrapiso:not(#random_id_string)>.carousel,html body.bootstrapiso>:not(#wpwrap) .carousel{position:relative}html body.bootstrapiso:not(#random_id_string)>.carousel.pointer-event,html body.bootstrapiso>:not(#wpwrap) .carousel.pointer-event{touch-action:pan-y}html body.bootstrapiso:not(#random_id_string)>.carousel-inner,html body.bootstrapiso>:not(#wpwrap) .carousel-inner{position:relative;width:100%;overflow:hidden}html body.bootstrapiso:not(#random_id_string)>.carousel-inner:after,html body.bootstrapiso>:not(#wpwrap) .carousel-inner:after{display:block;clear:both;content:""}html body.bootstrapiso:not(#random_id_string)>.carousel-item,html body.bootstrapiso>:not(#wpwrap) .carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:-webkit-transform .6s ease-in-out;transition:transform .6s ease-in-out;transition:transform .6s ease-in-out,-webkit-transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){html body.bootstrapiso:not(#random_id_string)>.carousel-item,html body.bootstrapiso>:not(#wpwrap) .carousel-item{transition:none}}html body.bootstrapiso:not(#random_id_string)>.carousel-item-next,html body.bootstrapiso:not(#random_id_string)>.carousel-item-prev,html body.bootstrapiso:not(#random_id_string)>.carousel-item.active,html body.bootstrapiso>:not(#wpwrap) .carousel-item-next,html body.bootstrapiso>:not(#wpwrap) .carousel-item-prev,html body.bootstrapiso>:not(#wpwrap) .carousel-item.active{display:block}html body.bootstrapiso:not(#random_id_string)>.active.carousel-item-right,html body.bootstrapiso:not(#random_id_string)>.carousel-item-next:not(.carousel-item-left),html body.bootstrapiso>:not(#wpwrap) .active.carousel-item-right,html body.bootstrapiso>:not(#wpwrap) .carousel-item-next:not(.carousel-item-left){-webkit-transform:translateX(100%);transform:translateX(100%)}html body.bootstrapiso:not(#random_id_string)>.active.carousel-item-left,html body.bootstrapiso:not(#random_id_string)>.carousel-item-prev:not(.carousel-item-right),html body.bootstrapiso>:not(#wpwrap) .active.carousel-item-left,html body.bootstrapiso>:not(#wpwrap) .carousel-item-prev:not(.carousel-item-right){-webkit-transform:translateX(-100%);transform:translateX(-100%)}html body.bootstrapiso:not(#random_id_string)>.carousel-fade .carousel-item,html body.bootstrapiso>:not(#wpwrap) .carousel-fade .carousel-item{opacity:0;transition-property:opacity;-webkit-transform:none;transform:none}html body.bootstrapiso:not(#random_id_string)>.carousel-fade .carousel-item-next.carousel-item-left,html body.bootstrapiso:not(#random_id_string)>.carousel-fade .carousel-item-prev.carousel-item-right,html body.bootstrapiso:not(#random_id_string)>.carousel-fade .carousel-item.active,html body.bootstrapiso>:not(#wpwrap) .carousel-fade .carousel-item-next.carousel-item-left,html body.bootstrapiso>:not(#wpwrap) .carousel-fade .carousel-item-prev.carousel-item-right,html body.bootstrapiso>:not(#wpwrap) .carousel-fade .carousel-item.active{z-index:1;opacity:1}html body.bootstrapiso:not(#random_id_string)>.carousel-fade .active.carousel-item-left,html body.bootstrapiso:not(#random_id_string)>.carousel-fade .active.carousel-item-right,html body.bootstrapiso>:not(#wpwrap) .carousel-fade .active.carousel-item-left,html body.bootstrapiso>:not(#wpwrap) .carousel-fade .active.carousel-item-right{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion:reduce){html body.bootstrapiso:not(#random_id_string)>.carousel-fade .active.carousel-item-left,html body.bootstrapiso:not(#random_id_string)>.carousel-fade .active.carousel-item-right,html body.bootstrapiso>:not(#wpwrap) .carousel-fade .active.carousel-item-left,html body.bootstrapiso>:not(#wpwrap) .carousel-fade .active.carousel-item-right{transition:none}}html body.bootstrapiso:not(#random_id_string)>.carousel-control-next,html body.bootstrapiso:not(#random_id_string)>.carousel-control-prev,html body.bootstrapiso>:not(#wpwrap) .carousel-control-next,html body.bootstrapiso>:not(#wpwrap) .carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center;width:15%;color:#fff;text-align:center;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){html body.bootstrapiso:not(#random_id_string)>.carousel-control-next,html body.bootstrapiso:not(#random_id_string)>.carousel-control-prev,html body.bootstrapiso>:not(#wpwrap) .carousel-control-next,html body.bootstrapiso>:not(#wpwrap) .carousel-control-prev{transition:none}}html body.bootstrapiso:not(#random_id_string)>.carousel-control-next:focus,html body.bootstrapiso:not(#random_id_string)>.carousel-control-next:hover,html body.bootstrapiso:not(#random_id_string)>.carousel-control-prev:focus,html body.bootstrapiso:not(#random_id_string)>.carousel-control-prev:hover,html body.bootstrapiso>:not(#wpwrap) .carousel-control-next:focus,html body.bootstrapiso>:not(#wpwrap) .carousel-control-next:hover,html body.bootstrapiso>:not(#wpwrap) .carousel-control-prev:focus,html body.bootstrapiso>:not(#wpwrap) .carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}html body.bootstrapiso:not(#random_id_string)>.carousel-control-prev,html body.bootstrapiso>:not(#wpwrap) .carousel-control-prev{left:0}html body.bootstrapiso:not(#random_id_string)>.carousel-control-next,html body.bootstrapiso>:not(#wpwrap) .carousel-control-next{right:0}html body.bootstrapiso:not(#random_id_string)>.carousel-control-next-icon,html body.bootstrapiso:not(#random_id_string)>.carousel-control-prev-icon,html body.bootstrapiso>:not(#wpwrap) .carousel-control-next-icon,html body.bootstrapiso>:not(#wpwrap) .carousel-control-prev-icon{display:inline-block;width:20px;height:20px;background:50%/100% 100% no-repeat}html body.bootstrapiso:not(#random_id_string)>.carousel-control-prev-icon,html body.bootstrapiso>:not(#wpwrap) .carousel-control-prev-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3E%3C/svg%3E")}html body.bootstrapiso:not(#random_id_string)>.carousel-control-next-icon,html body.bootstrapiso>:not(#wpwrap) .carousel-control-next-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8'%3E%3Cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3E%3C/svg%3E")}html body.bootstrapiso:not(#random_id_string)>.carousel-indicators,html body.bootstrapiso>:not(#wpwrap) .carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:15;display:-webkit-flex;display:flex;-webkit-justify-content:center;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}html body.bootstrapiso:not(#random_id_string)>.carousel-indicators li,html body.bootstrapiso>:not(#wpwrap) .carousel-indicators li{box-sizing:content-box;-webkit-flex:0 1 auto;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){html body.bootstrapiso:not(#random_id_string)>.carousel-indicators li,html body.bootstrapiso>:not(#wpwrap) .carousel-indicators li{transition:none}}html body.bootstrapiso:not(#random_id_string)>.carousel-indicators .active,html body.bootstrapiso>:not(#wpwrap) .carousel-indicators .active{opacity:1}html body.bootstrapiso:not(#random_id_string)>.carousel-caption,html body.bootstrapiso>:not(#wpwrap) .carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}@-webkit-keyframes spinner-border{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes spinner-border{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}html body.bootstrapiso:not(#random_id_string)>.spinner-border,html body.bootstrapiso>:not(#wpwrap) .spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;border:.25em solid;border-right:.25em solid transparent;border-radius:50%;-webkit-animation:spinner-border .75s linear infinite;animation:spinner-border .75s linear infinite}html body.bootstrapiso:not(#random_id_string)>.spinner-border-sm,html body.bootstrapiso>:not(#wpwrap) .spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@-webkit-keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1;-webkit-transform:none;transform:none}}@keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1;-webkit-transform:none;transform:none}}html body.bootstrapiso:not(#random_id_string)>.spinner-grow,html body.bootstrapiso>:not(#wpwrap) .spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:spinner-grow .75s linear infinite;animation:spinner-grow .75s linear infinite}html body.bootstrapiso:not(#random_id_string)>.spinner-grow-sm,html body.bootstrapiso>:not(#wpwrap) .spinner-grow-sm{width:1rem;height:1rem}@media (prefers-reduced-motion:reduce){html body.bootstrapiso:not(#random_id_string)>.spinner-border,html body.bootstrapiso:not(#random_id_string)>.spinner-grow,html body.bootstrapiso>:not(#wpwrap) .spinner-border,html body.bootstrapiso>:not(#wpwrap) .spinner-grow{-webkit-animation-duration:1.5s;animation-duration:1.5s}}html body.bootstrapiso:not(#random_id_string)>.align-baseline,html body.bootstrapiso>:not(#wpwrap) .align-baseline{vertical-align:baseline!important}html body.bootstrapiso:not(#random_id_string)>.align-top,html body.bootstrapiso>:not(#wpwrap) .align-top{vertical-align:top!important}html body.bootstrapiso:not(#random_id_string)>.align-middle,html body.bootstrapiso>:not(#wpwrap) .align-middle{vertical-align:middle!important}html body.bootstrapiso:not(#random_id_string)>.align-bottom,html body.bootstrapiso>:not(#wpwrap) .align-bottom{vertical-align:bottom!important}html body.bootstrapiso:not(#random_id_string)>.align-text-bottom,html body.bootstrapiso>:not(#wpwrap) .align-text-bottom{vertical-align:text-bottom!important}html body.bootstrapiso:not(#random_id_string)>.align-text-top,html body.bootstrapiso>:not(#wpwrap) .align-text-top{vertical-align:text-top!important}html body.bootstrapiso:not(#random_id_string)>.bg-primary,html body.bootstrapiso>:not(#wpwrap) .bg-primary{background-color:#007bff!important}html body.bootstrapiso:not(#random_id_string)>a.bg-primary:focus,html body.bootstrapiso:not(#random_id_string)>a.bg-primary:hover,html body.bootstrapiso:not(#random_id_string)>button.bg-primary:focus,html body.bootstrapiso:not(#random_id_string)>button.bg-primary:hover,html body.bootstrapiso>:not(#wpwrap) a.bg-primary:focus,html body.bootstrapiso>:not(#wpwrap) a.bg-primary:hover,html body.bootstrapiso>:not(#wpwrap) button.bg-primary:focus,html body.bootstrapiso>:not(#wpwrap) button.bg-primary:hover{background-color:#0062cc!important}html body.bootstrapiso:not(#random_id_string)>.bg-secondary,html body.bootstrapiso>:not(#wpwrap) .bg-secondary{background-color:#6c757d!important}html body.bootstrapiso:not(#random_id_string)>a.bg-secondary:focus,html body.bootstrapiso:not(#random_id_string)>a.bg-secondary:hover,html body.bootstrapiso:not(#random_id_string)>button.bg-secondary:focus,html body.bootstrapiso:not(#random_id_string)>button.bg-secondary:hover,html body.bootstrapiso>:not(#wpwrap) a.bg-secondary:focus,html body.bootstrapiso>:not(#wpwrap) a.bg-secondary:hover,html body.bootstrapiso>:not(#wpwrap) button.bg-secondary:focus,html body.bootstrapiso>:not(#wpwrap) button.bg-secondary:hover{background-color:#545b62!important}html body.bootstrapiso:not(#random_id_string)>.bg-success,html body.bootstrapiso>:not(#wpwrap) .bg-success{background-color:#28a745!important}html body.bootstrapiso:not(#random_id_string)>a.bg-success:focus,html body.bootstrapiso:not(#random_id_string)>a.bg-success:hover,html body.bootstrapiso:not(#random_id_string)>button.bg-success:focus,html body.bootstrapiso:not(#random_id_string)>button.bg-success:hover,html body.bootstrapiso>:not(#wpwrap) a.bg-success:focus,html body.bootstrapiso>:not(#wpwrap) a.bg-success:hover,html body.bootstrapiso>:not(#wpwrap) button.bg-success:focus,html body.bootstrapiso>:not(#wpwrap) button.bg-success:hover{background-color:#1e7e34!important}html body.bootstrapiso:not(#random_id_string)>.bg-info,html body.bootstrapiso>:not(#wpwrap) .bg-info{background-color:#17a2b8!important}html body.bootstrapiso:not(#random_id_string)>a.bg-info:focus,html body.bootstrapiso:not(#random_id_string)>a.bg-info:hover,html body.bootstrapiso:not(#random_id_string)>button.bg-info:focus,html body.bootstrapiso:not(#random_id_string)>button.bg-info:hover,html body.bootstrapiso>:not(#wpwrap) a.bg-info:focus,html body.bootstrapiso>:not(#wpwrap) a.bg-info:hover,html body.bootstrapiso>:not(#wpwrap) button.bg-info:focus,html body.bootstrapiso>:not(#wpwrap) button.bg-info:hover{background-color:#117a8b!important}html body.bootstrapiso:not(#random_id_string)>.bg-warning,html body.bootstrapiso>:not(#wpwrap) .bg-warning{background-color:#ffc107!important}html body.bootstrapiso:not(#random_id_string)>a.bg-warning:focus,html body.bootstrapiso:not(#random_id_string)>a.bg-warning:hover,html body.bootstrapiso:not(#random_id_string)>button.bg-warning:focus,html body.bootstrapiso:not(#random_id_string)>button.bg-warning:hover,html body.bootstrapiso>:not(#wpwrap) a.bg-warning:focus,html body.bootstrapiso>:not(#wpwrap) a.bg-warning:hover,html body.bootstrapiso>:not(#wpwrap) button.bg-warning:focus,html body.bootstrapiso>:not(#wpwrap) button.bg-warning:hover{background-color:#d39e00!important}html body.bootstrapiso:not(#random_id_string)>.bg-danger,html body.bootstrapiso>:not(#wpwrap) .bg-danger{background-color:#dc3545!important}html body.bootstrapiso:not(#random_id_string)>a.bg-danger:focus,html body.bootstrapiso:not(#random_id_string)>a.bg-danger:hover,html body.bootstrapiso:not(#random_id_string)>button.bg-danger:focus,html body.bootstrapiso:not(#random_id_string)>button.bg-danger:hover,html body.bootstrapiso>:not(#wpwrap) a.bg-danger:focus,html body.bootstrapiso>:not(#wpwrap) a.bg-danger:hover,html body.bootstrapiso>:not(#wpwrap) button.bg-danger:focus,html body.bootstrapiso>:not(#wpwrap) button.bg-danger:hover{background-color:#bd2130!important}html body.bootstrapiso:not(#random_id_string)>.bg-light,html body.bootstrapiso>:not(#wpwrap) .bg-light{background-color:#f8f9fa!important}html body.bootstrapiso:not(#random_id_string)>a.bg-light:focus,html body.bootstrapiso:not(#random_id_string)>a.bg-light:hover,html body.bootstrapiso:not(#random_id_string)>button.bg-light:focus,html body.bootstrapiso:not(#random_id_string)>button.bg-light:hover,html body.bootstrapiso>:not(#wpwrap) a.bg-light:focus,html body.bootstrapiso>:not(#wpwrap) a.bg-light:hover,html body.bootstrapiso>:not(#wpwrap) button.bg-light:focus,html body.bootstrapiso>:not(#wpwrap) button.bg-light:hover{background-color:#dae0e5!important}html body.bootstrapiso:not(#random_id_string)>.bg-dark,html body.bootstrapiso>:not(#wpwrap) .bg-dark{background-color:#343a40!important}html body.bootstrapiso:not(#random_id_string)>a.bg-dark:focus,html body.bootstrapiso:not(#random_id_string)>a.bg-dark:hover,html body.bootstrapiso:not(#random_id_string)>button.bg-dark:focus,html body.bootstrapiso:not(#random_id_string)>button.bg-dark:hover,html body.bootstrapiso>:not(#wpwrap) a.bg-dark:focus,html body.bootstrapiso>:not(#wpwrap) a.bg-dark:hover,html body.bootstrapiso>:not(#wpwrap) button.bg-dark:focus,html body.bootstrapiso>:not(#wpwrap) button.bg-dark:hover{background-color:#1d2124!important}html body.bootstrapiso:not(#random_id_string)>.bg-white,html body.bootstrapiso>:not(#wpwrap) .bg-white{background-color:#fff!important}html body.bootstrapiso:not(#random_id_string)>.bg-transparent,html body.bootstrapiso>:not(#wpwrap) .bg-transparent{background-color:transparent!important}html body.bootstrapiso:not(#random_id_string)>.border,html body.bootstrapiso>:not(#wpwrap) .border{border:1px solid #dee2e6!important}html body.bootstrapiso:not(#random_id_string)>.border-top,html body.bootstrapiso>:not(#wpwrap) .border-top{border-top:1px solid #dee2e6!important}html body.bootstrapiso:not(#random_id_string)>.border-right,html body.bootstrapiso>:not(#wpwrap) .border-right{border-right:1px solid #dee2e6!important}html body.bootstrapiso:not(#random_id_string)>.border-bottom,html body.bootstrapiso>:not(#wpwrap) .border-bottom{border-bottom:1px solid #dee2e6!important}html body.bootstrapiso:not(#random_id_string)>.border-left,html body.bootstrapiso>:not(#wpwrap) .border-left{border-left:1px solid #dee2e6!important}html body.bootstrapiso:not(#random_id_string)>.border-0,html body.bootstrapiso>:not(#wpwrap) .border-0{border:0!important}html body.bootstrapiso:not(#random_id_string)>.border-top-0,html body.bootstrapiso>:not(#wpwrap) .border-top-0{border-top:0!important}html body.bootstrapiso:not(#random_id_string)>.border-right-0,html body.bootstrapiso>:not(#wpwrap) .border-right-0{border-right:0!important}html body.bootstrapiso:not(#random_id_string)>.border-bottom-0,html body.bootstrapiso>:not(#wpwrap) .border-bottom-0{border-bottom:0!important}html body.bootstrapiso:not(#random_id_string)>.border-left-0,html body.bootstrapiso>:not(#wpwrap) .border-left-0{border-left:0!important}html body.bootstrapiso:not(#random_id_string)>.border-primary,html body.bootstrapiso>:not(#wpwrap) .border-primary{border-color:#007bff!important}html body.bootstrapiso:not(#random_id_string)>.border-secondary,html body.bootstrapiso>:not(#wpwrap) .border-secondary{border-color:#6c757d!important}html body.bootstrapiso:not(#random_id_string)>.border-success,html body.bootstrapiso>:not(#wpwrap) .border-success{border-color:#28a745!important}html body.bootstrapiso:not(#random_id_string)>.border-info,html body.bootstrapiso>:not(#wpwrap) .border-info{border-color:#17a2b8!important}html body.bootstrapiso:not(#random_id_string)>.border-warning,html body.bootstrapiso>:not(#wpwrap) .border-warning{border-color:#ffc107!important}html body.bootstrapiso:not(#random_id_string)>.border-danger,html body.bootstrapiso>:not(#wpwrap) .border-danger{border-color:#dc3545!important}html body.bootstrapiso:not(#random_id_string)>.border-light,html body.bootstrapiso>:not(#wpwrap) .border-light{border-color:#f8f9fa!important}html body.bootstrapiso:not(#random_id_string)>.border-dark,html body.bootstrapiso>:not(#wpwrap) .border-dark{border-color:#343a40!important}html body.bootstrapiso:not(#random_id_string)>.border-white,html body.bootstrapiso>:not(#wpwrap) .border-white{border-color:#fff!important}html body.bootstrapiso:not(#random_id_string)>.rounded-sm,html body.bootstrapiso>:not(#wpwrap) .rounded-sm{border-radius:.2rem!important}html body.bootstrapiso:not(#random_id_string)>.rounded,html body.bootstrapiso>:not(#wpwrap) .rounded{border-radius:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.rounded-top,html body.bootstrapiso>:not(#wpwrap) .rounded-top{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.rounded-right,html body.bootstrapiso>:not(#wpwrap) .rounded-right{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.rounded-bottom,html body.bootstrapiso>:not(#wpwrap) .rounded-bottom{border-bottom-right-radius:.25rem!important;border-bottom-left-radius:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.rounded-left,html body.bootstrapiso>:not(#wpwrap) .rounded-left{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.rounded-lg,html body.bootstrapiso>:not(#wpwrap) .rounded-lg{border-radius:.3rem!important}html body.bootstrapiso:not(#random_id_string)>.rounded-circle,html body.bootstrapiso>:not(#wpwrap) .rounded-circle{border-radius:50%!important}html body.bootstrapiso:not(#random_id_string)>.rounded-pill,html body.bootstrapiso>:not(#wpwrap) .rounded-pill{border-radius:50rem!important}html body.bootstrapiso:not(#random_id_string)>.rounded-0,html body.bootstrapiso>:not(#wpwrap) .rounded-0{border-radius:0!important}html body.bootstrapiso:not(#random_id_string)>.clearfix:after,html body.bootstrapiso>:not(#wpwrap) .clearfix:after{display:block;clear:both;content:""}html body.bootstrapiso:not(#random_id_string)>.d-none,html body.bootstrapiso>:not(#wpwrap) .d-none{display:none!important}html body.bootstrapiso:not(#random_id_string)>.d-inline,html body.bootstrapiso>:not(#wpwrap) .d-inline{display:inline!important}html body.bootstrapiso:not(#random_id_string)>.d-inline-block,html body.bootstrapiso>:not(#wpwrap) .d-inline-block{display:inline-block!important}html body.bootstrapiso:not(#random_id_string)>.d-block,html body.bootstrapiso>:not(#wpwrap) .d-block{display:block!important}html body.bootstrapiso:not(#random_id_string)>.d-table,html body.bootstrapiso>:not(#wpwrap) .d-table{display:table!important}html body.bootstrapiso:not(#random_id_string)>.d-table-row,html body.bootstrapiso>:not(#wpwrap) .d-table-row{display:table-row!important}html body.bootstrapiso:not(#random_id_string)>.d-table-cell,html body.bootstrapiso>:not(#wpwrap) .d-table-cell{display:table-cell!important}html body.bootstrapiso:not(#random_id_string)>.d-flex,html body.bootstrapiso>:not(#wpwrap) .d-flex{display:-webkit-flex!important;display:flex!important}html body.bootstrapiso:not(#random_id_string)>.d-inline-flex,html body.bootstrapiso>:not(#wpwrap) .d-inline-flex{display:-webkit-inline-flex!important;display:inline-flex!important}@media (min-width:576px){html body.bootstrapiso:not(#random_id_string)>.d-sm-none,html body.bootstrapiso>:not(#wpwrap) .d-sm-none{display:none!important}html body.bootstrapiso:not(#random_id_string)>.d-sm-inline,html body.bootstrapiso>:not(#wpwrap) .d-sm-inline{display:inline!important}html body.bootstrapiso:not(#random_id_string)>.d-sm-inline-block,html body.bootstrapiso>:not(#wpwrap) .d-sm-inline-block{display:inline-block!important}html body.bootstrapiso:not(#random_id_string)>.d-sm-block,html body.bootstrapiso>:not(#wpwrap) .d-sm-block{display:block!important}html body.bootstrapiso:not(#random_id_string)>.d-sm-table,html body.bootstrapiso>:not(#wpwrap) .d-sm-table{display:table!important}html body.bootstrapiso:not(#random_id_string)>.d-sm-table-row,html body.bootstrapiso>:not(#wpwrap) .d-sm-table-row{display:table-row!important}html body.bootstrapiso:not(#random_id_string)>.d-sm-table-cell,html body.bootstrapiso>:not(#wpwrap) .d-sm-table-cell{display:table-cell!important}html body.bootstrapiso:not(#random_id_string)>.d-sm-flex,html body.bootstrapiso>:not(#wpwrap) .d-sm-flex{display:-webkit-flex!important;display:flex!important}html body.bootstrapiso:not(#random_id_string)>.d-sm-inline-flex,html body.bootstrapiso>:not(#wpwrap) .d-sm-inline-flex{display:-webkit-inline-flex!important;display:inline-flex!important}}@media (min-width:768px){html body.bootstrapiso:not(#random_id_string)>.d-md-none,html body.bootstrapiso>:not(#wpwrap) .d-md-none{display:none!important}html body.bootstrapiso:not(#random_id_string)>.d-md-inline,html body.bootstrapiso>:not(#wpwrap) .d-md-inline{display:inline!important}html body.bootstrapiso:not(#random_id_string)>.d-md-inline-block,html body.bootstrapiso>:not(#wpwrap) .d-md-inline-block{display:inline-block!important}html body.bootstrapiso:not(#random_id_string)>.d-md-block,html body.bootstrapiso>:not(#wpwrap) .d-md-block{display:block!important}html body.bootstrapiso:not(#random_id_string)>.d-md-table,html body.bootstrapiso>:not(#wpwrap) .d-md-table{display:table!important}html body.bootstrapiso:not(#random_id_string)>.d-md-table-row,html body.bootstrapiso>:not(#wpwrap) .d-md-table-row{display:table-row!important}html body.bootstrapiso:not(#random_id_string)>.d-md-table-cell,html body.bootstrapiso>:not(#wpwrap) .d-md-table-cell{display:table-cell!important}html body.bootstrapiso:not(#random_id_string)>.d-md-flex,html body.bootstrapiso>:not(#wpwrap) .d-md-flex{display:-webkit-flex!important;display:flex!important}html body.bootstrapiso:not(#random_id_string)>.d-md-inline-flex,html body.bootstrapiso>:not(#wpwrap) .d-md-inline-flex{display:-webkit-inline-flex!important;display:inline-flex!important}}@media (min-width:992px){html body.bootstrapiso:not(#random_id_string)>.d-lg-none,html body.bootstrapiso>:not(#wpwrap) .d-lg-none{display:none!important}html body.bootstrapiso:not(#random_id_string)>.d-lg-inline,html body.bootstrapiso>:not(#wpwrap) .d-lg-inline{display:inline!important}html body.bootstrapiso:not(#random_id_string)>.d-lg-inline-block,html body.bootstrapiso>:not(#wpwrap) .d-lg-inline-block{display:inline-block!important}html body.bootstrapiso:not(#random_id_string)>.d-lg-block,html body.bootstrapiso>:not(#wpwrap) .d-lg-block{display:block!important}html body.bootstrapiso:not(#random_id_string)>.d-lg-table,html body.bootstrapiso>:not(#wpwrap) .d-lg-table{display:table!important}html body.bootstrapiso:not(#random_id_string)>.d-lg-table-row,html body.bootstrapiso>:not(#wpwrap) .d-lg-table-row{display:table-row!important}html body.bootstrapiso:not(#random_id_string)>.d-lg-table-cell,html body.bootstrapiso>:not(#wpwrap) .d-lg-table-cell{display:table-cell!important}html body.bootstrapiso:not(#random_id_string)>.d-lg-flex,html body.bootstrapiso>:not(#wpwrap) .d-lg-flex{display:-webkit-flex!important;display:flex!important}html body.bootstrapiso:not(#random_id_string)>.d-lg-inline-flex,html body.bootstrapiso>:not(#wpwrap) .d-lg-inline-flex{display:-webkit-inline-flex!important;display:inline-flex!important}}@media (min-width:1200px){html body.bootstrapiso:not(#random_id_string)>.d-xl-none,html body.bootstrapiso>:not(#wpwrap) .d-xl-none{display:none!important}html body.bootstrapiso:not(#random_id_string)>.d-xl-inline,html body.bootstrapiso>:not(#wpwrap) .d-xl-inline{display:inline!important}html body.bootstrapiso:not(#random_id_string)>.d-xl-inline-block,html body.bootstrapiso>:not(#wpwrap) .d-xl-inline-block{display:inline-block!important}html body.bootstrapiso:not(#random_id_string)>.d-xl-block,html body.bootstrapiso>:not(#wpwrap) .d-xl-block{display:block!important}html body.bootstrapiso:not(#random_id_string)>.d-xl-table,html body.bootstrapiso>:not(#wpwrap) .d-xl-table{display:table!important}html body.bootstrapiso:not(#random_id_string)>.d-xl-table-row,html body.bootstrapiso>:not(#wpwrap) .d-xl-table-row{display:table-row!important}html body.bootstrapiso:not(#random_id_string)>.d-xl-table-cell,html body.bootstrapiso>:not(#wpwrap) .d-xl-table-cell{display:table-cell!important}html body.bootstrapiso:not(#random_id_string)>.d-xl-flex,html body.bootstrapiso>:not(#wpwrap) .d-xl-flex{display:-webkit-flex!important;display:flex!important}html body.bootstrapiso:not(#random_id_string)>.d-xl-inline-flex,html body.bootstrapiso>:not(#wpwrap) .d-xl-inline-flex{display:-webkit-inline-flex!important;display:inline-flex!important}}@media print{html body.bootstrapiso:not(#random_id_string)>.d-print-none,html body.bootstrapiso>:not(#wpwrap) .d-print-none{display:none!important}html body.bootstrapiso:not(#random_id_string)>.d-print-inline,html body.bootstrapiso>:not(#wpwrap) .d-print-inline{display:inline!important}html body.bootstrapiso:not(#random_id_string)>.d-print-inline-block,html body.bootstrapiso>:not(#wpwrap) .d-print-inline-block{display:inline-block!important}html body.bootstrapiso:not(#random_id_string)>.d-print-block,html body.bootstrapiso>:not(#wpwrap) .d-print-block{display:block!important}html body.bootstrapiso:not(#random_id_string)>.d-print-table,html body.bootstrapiso>:not(#wpwrap) .d-print-table{display:table!important}html body.bootstrapiso:not(#random_id_string)>.d-print-table-row,html body.bootstrapiso>:not(#wpwrap) .d-print-table-row{display:table-row!important}html body.bootstrapiso:not(#random_id_string)>.d-print-table-cell,html body.bootstrapiso>:not(#wpwrap) .d-print-table-cell{display:table-cell!important}html body.bootstrapiso:not(#random_id_string)>.d-print-flex,html body.bootstrapiso>:not(#wpwrap) .d-print-flex{display:-webkit-flex!important;display:flex!important}html body.bootstrapiso:not(#random_id_string)>.d-print-inline-flex,html body.bootstrapiso>:not(#wpwrap) .d-print-inline-flex{display:-webkit-inline-flex!important;display:inline-flex!important}}html body.bootstrapiso:not(#random_id_string)>.embed-responsive,html body.bootstrapiso>:not(#wpwrap) .embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}html body.bootstrapiso:not(#random_id_string)>.embed-responsive:before,html body.bootstrapiso>:not(#wpwrap) .embed-responsive:before{display:block;content:""}html body.bootstrapiso:not(#random_id_string)>.embed-responsive .embed-responsive-item,html body.bootstrapiso:not(#random_id_string)>.embed-responsive embed,html body.bootstrapiso:not(#random_id_string)>.embed-responsive iframe,html body.bootstrapiso:not(#random_id_string)>.embed-responsive object,html body.bootstrapiso:not(#random_id_string)>.embed-responsive video,html body.bootstrapiso>:not(#wpwrap) .embed-responsive .embed-responsive-item,html body.bootstrapiso>:not(#wpwrap) .embed-responsive embed,html body.bootstrapiso>:not(#wpwrap) .embed-responsive iframe,html body.bootstrapiso>:not(#wpwrap) .embed-responsive object,html body.bootstrapiso>:not(#wpwrap) .embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}html body.bootstrapiso:not(#random_id_string)>.embed-responsive-21by9:before,html body.bootstrapiso>:not(#wpwrap) .embed-responsive-21by9:before{padding-top:42.857143%}html body.bootstrapiso:not(#random_id_string)>.embed-responsive-16by9:before,html body.bootstrapiso>:not(#wpwrap) .embed-responsive-16by9:before{padding-top:56.25%}html body.bootstrapiso:not(#random_id_string)>.embed-responsive-4by3:before,html body.bootstrapiso>:not(#wpwrap) .embed-responsive-4by3:before{padding-top:75%}html body.bootstrapiso:not(#random_id_string)>.embed-responsive-1by1:before,html body.bootstrapiso>:not(#wpwrap) .embed-responsive-1by1:before{padding-top:100%}html body.bootstrapiso:not(#random_id_string)>.flex-row,html body.bootstrapiso>:not(#wpwrap) .flex-row{-webkit-flex-direction:row!important;flex-direction:row!important}html body.bootstrapiso:not(#random_id_string)>.flex-column,html body.bootstrapiso>:not(#wpwrap) .flex-column{-webkit-flex-direction:column!important;flex-direction:column!important}html body.bootstrapiso:not(#random_id_string)>.flex-row-reverse,html body.bootstrapiso>:not(#wpwrap) .flex-row-reverse{-webkit-flex-direction:row-reverse!important;flex-direction:row-reverse!important}html body.bootstrapiso:not(#random_id_string)>.flex-column-reverse,html body.bootstrapiso>:not(#wpwrap) .flex-column-reverse{-webkit-flex-direction:column-reverse!important;flex-direction:column-reverse!important}html body.bootstrapiso:not(#random_id_string)>.flex-wrap,html body.bootstrapiso>:not(#wpwrap) .flex-wrap{-webkit-flex-wrap:wrap!important;flex-wrap:wrap!important}html body.bootstrapiso:not(#random_id_string)>.flex-nowrap,html body.bootstrapiso>:not(#wpwrap) .flex-nowrap{-webkit-flex-wrap:nowrap!important;flex-wrap:nowrap!important}html body.bootstrapiso:not(#random_id_string)>.flex-wrap-reverse,html body.bootstrapiso>:not(#wpwrap) .flex-wrap-reverse{-webkit-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}html body.bootstrapiso:not(#random_id_string)>.flex-fill,html body.bootstrapiso>:not(#wpwrap) .flex-fill{-webkit-flex:1 1 auto!important;flex:1 1 auto!important}html body.bootstrapiso:not(#random_id_string)>.flex-grow-0,html body.bootstrapiso>:not(#wpwrap) .flex-grow-0{-webkit-flex-grow:0!important;flex-grow:0!important}html body.bootstrapiso:not(#random_id_string)>.flex-grow-1,html body.bootstrapiso>:not(#wpwrap) .flex-grow-1{-webkit-flex-grow:1!important;flex-grow:1!important}html body.bootstrapiso:not(#random_id_string)>.flex-shrink-0,html body.bootstrapiso>:not(#wpwrap) .flex-shrink-0{-webkit-flex-shrink:0!important;flex-shrink:0!important}html body.bootstrapiso:not(#random_id_string)>.flex-shrink-1,html body.bootstrapiso>:not(#wpwrap) .flex-shrink-1{-webkit-flex-shrink:1!important;flex-shrink:1!important}html body.bootstrapiso:not(#random_id_string)>.justify-content-start,html body.bootstrapiso>:not(#wpwrap) .justify-content-start{-webkit-justify-content:flex-start!important;justify-content:flex-start!important}html body.bootstrapiso:not(#random_id_string)>.justify-content-end,html body.bootstrapiso>:not(#wpwrap) .justify-content-end{-webkit-justify-content:flex-end!important;justify-content:flex-end!important}html body.bootstrapiso:not(#random_id_string)>.justify-content-center,html body.bootstrapiso>:not(#wpwrap) .justify-content-center{-webkit-justify-content:center!important;justify-content:center!important}html body.bootstrapiso:not(#random_id_string)>.justify-content-between,html body.bootstrapiso>:not(#wpwrap) .justify-content-between{-webkit-justify-content:space-between!important;justify-content:space-between!important}html body.bootstrapiso:not(#random_id_string)>.justify-content-around,html body.bootstrapiso>:not(#wpwrap) .justify-content-around{-webkit-justify-content:space-around!important;justify-content:space-around!important}html body.bootstrapiso:not(#random_id_string)>.align-items-start,html body.bootstrapiso>:not(#wpwrap) .align-items-start{-webkit-align-items:flex-start!important;align-items:flex-start!important}html body.bootstrapiso:not(#random_id_string)>.align-items-end,html body.bootstrapiso>:not(#wpwrap) .align-items-end{-webkit-align-items:flex-end!important;align-items:flex-end!important}html body.bootstrapiso:not(#random_id_string)>.align-items-center,html body.bootstrapiso>:not(#wpwrap) .align-items-center{-webkit-align-items:center!important;align-items:center!important}html body.bootstrapiso:not(#random_id_string)>.align-items-baseline,html body.bootstrapiso>:not(#wpwrap) .align-items-baseline{-webkit-align-items:baseline!important;align-items:baseline!important}html body.bootstrapiso:not(#random_id_string)>.align-items-stretch,html body.bootstrapiso>:not(#wpwrap) .align-items-stretch{-webkit-align-items:stretch!important;align-items:stretch!important}html body.bootstrapiso:not(#random_id_string)>.align-content-start,html body.bootstrapiso>:not(#wpwrap) .align-content-start{-webkit-align-content:flex-start!important;align-content:flex-start!important}html body.bootstrapiso:not(#random_id_string)>.align-content-end,html body.bootstrapiso>:not(#wpwrap) .align-content-end{-webkit-align-content:flex-end!important;align-content:flex-end!important}html body.bootstrapiso:not(#random_id_string)>.align-content-center,html body.bootstrapiso>:not(#wpwrap) .align-content-center{-webkit-align-content:center!important;align-content:center!important}html body.bootstrapiso:not(#random_id_string)>.align-content-between,html body.bootstrapiso>:not(#wpwrap) .align-content-between{-webkit-align-content:space-between!important;align-content:space-between!important}html body.bootstrapiso:not(#random_id_string)>.align-content-around,html body.bootstrapiso>:not(#wpwrap) .align-content-around{-webkit-align-content:space-around!important;align-content:space-around!important}html body.bootstrapiso:not(#random_id_string)>.align-content-stretch,html body.bootstrapiso>:not(#wpwrap) .align-content-stretch{-webkit-align-content:stretch!important;align-content:stretch!important}html body.bootstrapiso:not(#random_id_string)>.align-self-auto,html body.bootstrapiso>:not(#wpwrap) .align-self-auto{-webkit-align-self:auto!important;align-self:auto!important}html body.bootstrapiso:not(#random_id_string)>.align-self-start,html body.bootstrapiso>:not(#wpwrap) .align-self-start{-webkit-align-self:flex-start!important;align-self:flex-start!important}html body.bootstrapiso:not(#random_id_string)>.align-self-end,html body.bootstrapiso>:not(#wpwrap) .align-self-end{-webkit-align-self:flex-end!important;align-self:flex-end!important}html body.bootstrapiso:not(#random_id_string)>.align-self-center,html body.bootstrapiso>:not(#wpwrap) .align-self-center{-webkit-align-self:center!important;align-self:center!important}html body.bootstrapiso:not(#random_id_string)>.align-self-baseline,html body.bootstrapiso>:not(#wpwrap) .align-self-baseline{-webkit-align-self:baseline!important;align-self:baseline!important}html body.bootstrapiso:not(#random_id_string)>.align-self-stretch,html body.bootstrapiso>:not(#wpwrap) .align-self-stretch{-webkit-align-self:stretch!important;align-self:stretch!important}@media (min-width:576px){html body.bootstrapiso:not(#random_id_string)>.flex-sm-row,html body.bootstrapiso>:not(#wpwrap) .flex-sm-row{-webkit-flex-direction:row!important;flex-direction:row!important}html body.bootstrapiso:not(#random_id_string)>.flex-sm-column,html body.bootstrapiso>:not(#wpwrap) .flex-sm-column{-webkit-flex-direction:column!important;flex-direction:column!important}html body.bootstrapiso:not(#random_id_string)>.flex-sm-row-reverse,html body.bootstrapiso>:not(#wpwrap) .flex-sm-row-reverse{-webkit-flex-direction:row-reverse!important;flex-direction:row-reverse!important}html body.bootstrapiso:not(#random_id_string)>.flex-sm-column-reverse,html body.bootstrapiso>:not(#wpwrap) .flex-sm-column-reverse{-webkit-flex-direction:column-reverse!important;flex-direction:column-reverse!important}html body.bootstrapiso:not(#random_id_string)>.flex-sm-wrap,html body.bootstrapiso>:not(#wpwrap) .flex-sm-wrap{-webkit-flex-wrap:wrap!important;flex-wrap:wrap!important}html body.bootstrapiso:not(#random_id_string)>.flex-sm-nowrap,html body.bootstrapiso>:not(#wpwrap) .flex-sm-nowrap{-webkit-flex-wrap:nowrap!important;flex-wrap:nowrap!important}html body.bootstrapiso:not(#random_id_string)>.flex-sm-wrap-reverse,html body.bootstrapiso>:not(#wpwrap) .flex-sm-wrap-reverse{-webkit-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}html body.bootstrapiso:not(#random_id_string)>.flex-sm-fill,html body.bootstrapiso>:not(#wpwrap) .flex-sm-fill{-webkit-flex:1 1 auto!important;flex:1 1 auto!important}html body.bootstrapiso:not(#random_id_string)>.flex-sm-grow-0,html body.bootstrapiso>:not(#wpwrap) .flex-sm-grow-0{-webkit-flex-grow:0!important;flex-grow:0!important}html body.bootstrapiso:not(#random_id_string)>.flex-sm-grow-1,html body.bootstrapiso>:not(#wpwrap) .flex-sm-grow-1{-webkit-flex-grow:1!important;flex-grow:1!important}html body.bootstrapiso:not(#random_id_string)>.flex-sm-shrink-0,html body.bootstrapiso>:not(#wpwrap) .flex-sm-shrink-0{-webkit-flex-shrink:0!important;flex-shrink:0!important}html body.bootstrapiso:not(#random_id_string)>.flex-sm-shrink-1,html body.bootstrapiso>:not(#wpwrap) .flex-sm-shrink-1{-webkit-flex-shrink:1!important;flex-shrink:1!important}html body.bootstrapiso:not(#random_id_string)>.justify-content-sm-start,html body.bootstrapiso>:not(#wpwrap) .justify-content-sm-start{-webkit-justify-content:flex-start!important;justify-content:flex-start!important}html body.bootstrapiso:not(#random_id_string)>.justify-content-sm-end,html body.bootstrapiso>:not(#wpwrap) .justify-content-sm-end{-webkit-justify-content:flex-end!important;justify-content:flex-end!important}html body.bootstrapiso:not(#random_id_string)>.justify-content-sm-center,html body.bootstrapiso>:not(#wpwrap) .justify-content-sm-center{-webkit-justify-content:center!important;justify-content:center!important}html body.bootstrapiso:not(#random_id_string)>.justify-content-sm-between,html body.bootstrapiso>:not(#wpwrap) .justify-content-sm-between{-webkit-justify-content:space-between!important;justify-content:space-between!important}html body.bootstrapiso:not(#random_id_string)>.justify-content-sm-around,html body.bootstrapiso>:not(#wpwrap) .justify-content-sm-around{-webkit-justify-content:space-around!important;justify-content:space-around!important}html body.bootstrapiso:not(#random_id_string)>.align-items-sm-start,html body.bootstrapiso>:not(#wpwrap) .align-items-sm-start{-webkit-align-items:flex-start!important;align-items:flex-start!important}html body.bootstrapiso:not(#random_id_string)>.align-items-sm-end,html body.bootstrapiso>:not(#wpwrap) .align-items-sm-end{-webkit-align-items:flex-end!important;align-items:flex-end!important}html body.bootstrapiso:not(#random_id_string)>.align-items-sm-center,html body.bootstrapiso>:not(#wpwrap) .align-items-sm-center{-webkit-align-items:center!important;align-items:center!important}html body.bootstrapiso:not(#random_id_string)>.align-items-sm-baseline,html body.bootstrapiso>:not(#wpwrap) .align-items-sm-baseline{-webkit-align-items:baseline!important;align-items:baseline!important}html body.bootstrapiso:not(#random_id_string)>.align-items-sm-stretch,html body.bootstrapiso>:not(#wpwrap) .align-items-sm-stretch{-webkit-align-items:stretch!important;align-items:stretch!important}html body.bootstrapiso:not(#random_id_string)>.align-content-sm-start,html body.bootstrapiso>:not(#wpwrap) .align-content-sm-start{-webkit-align-content:flex-start!important;align-content:flex-start!important}html body.bootstrapiso:not(#random_id_string)>.align-content-sm-end,html body.bootstrapiso>:not(#wpwrap) .align-content-sm-end{-webkit-align-content:flex-end!important;align-content:flex-end!important}html body.bootstrapiso:not(#random_id_string)>.align-content-sm-center,html body.bootstrapiso>:not(#wpwrap) .align-content-sm-center{-webkit-align-content:center!important;align-content:center!important}html body.bootstrapiso:not(#random_id_string)>.align-content-sm-between,html body.bootstrapiso>:not(#wpwrap) .align-content-sm-between{-webkit-align-content:space-between!important;align-content:space-between!important}html body.bootstrapiso:not(#random_id_string)>.align-content-sm-around,html body.bootstrapiso>:not(#wpwrap) .align-content-sm-around{-webkit-align-content:space-around!important;align-content:space-around!important}html body.bootstrapiso:not(#random_id_string)>.align-content-sm-stretch,html body.bootstrapiso>:not(#wpwrap) .align-content-sm-stretch{-webkit-align-content:stretch!important;align-content:stretch!important}html body.bootstrapiso:not(#random_id_string)>.align-self-sm-auto,html body.bootstrapiso>:not(#wpwrap) .align-self-sm-auto{-webkit-align-self:auto!important;align-self:auto!important}html body.bootstrapiso:not(#random_id_string)>.align-self-sm-start,html body.bootstrapiso>:not(#wpwrap) .align-self-sm-start{-webkit-align-self:flex-start!important;align-self:flex-start!important}html body.bootstrapiso:not(#random_id_string)>.align-self-sm-end,html body.bootstrapiso>:not(#wpwrap) .align-self-sm-end{-webkit-align-self:flex-end!important;align-self:flex-end!important}html body.bootstrapiso:not(#random_id_string)>.align-self-sm-center,html body.bootstrapiso>:not(#wpwrap) .align-self-sm-center{-webkit-align-self:center!important;align-self:center!important}html body.bootstrapiso:not(#random_id_string)>.align-self-sm-baseline,html body.bootstrapiso>:not(#wpwrap) .align-self-sm-baseline{-webkit-align-self:baseline!important;align-self:baseline!important}html body.bootstrapiso:not(#random_id_string)>.align-self-sm-stretch,html body.bootstrapiso>:not(#wpwrap) .align-self-sm-stretch{-webkit-align-self:stretch!important;align-self:stretch!important}}@media (min-width:768px){html body.bootstrapiso:not(#random_id_string)>.flex-md-row,html body.bootstrapiso>:not(#wpwrap) .flex-md-row{-webkit-flex-direction:row!important;flex-direction:row!important}html body.bootstrapiso:not(#random_id_string)>.flex-md-column,html body.bootstrapiso>:not(#wpwrap) .flex-md-column{-webkit-flex-direction:column!important;flex-direction:column!important}html body.bootstrapiso:not(#random_id_string)>.flex-md-row-reverse,html body.bootstrapiso>:not(#wpwrap) .flex-md-row-reverse{-webkit-flex-direction:row-reverse!important;flex-direction:row-reverse!important}html body.bootstrapiso:not(#random_id_string)>.flex-md-column-reverse,html body.bootstrapiso>:not(#wpwrap) .flex-md-column-reverse{-webkit-flex-direction:column-reverse!important;flex-direction:column-reverse!important}html body.bootstrapiso:not(#random_id_string)>.flex-md-wrap,html body.bootstrapiso>:not(#wpwrap) .flex-md-wrap{-webkit-flex-wrap:wrap!important;flex-wrap:wrap!important}html body.bootstrapiso:not(#random_id_string)>.flex-md-nowrap,html body.bootstrapiso>:not(#wpwrap) .flex-md-nowrap{-webkit-flex-wrap:nowrap!important;flex-wrap:nowrap!important}html body.bootstrapiso:not(#random_id_string)>.flex-md-wrap-reverse,html body.bootstrapiso>:not(#wpwrap) .flex-md-wrap-reverse{-webkit-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}html body.bootstrapiso:not(#random_id_string)>.flex-md-fill,html body.bootstrapiso>:not(#wpwrap) .flex-md-fill{-webkit-flex:1 1 auto!important;flex:1 1 auto!important}html body.bootstrapiso:not(#random_id_string)>.flex-md-grow-0,html body.bootstrapiso>:not(#wpwrap) .flex-md-grow-0{-webkit-flex-grow:0!important;flex-grow:0!important}html body.bootstrapiso:not(#random_id_string)>.flex-md-grow-1,html body.bootstrapiso>:not(#wpwrap) .flex-md-grow-1{-webkit-flex-grow:1!important;flex-grow:1!important}html body.bootstrapiso:not(#random_id_string)>.flex-md-shrink-0,html body.bootstrapiso>:not(#wpwrap) .flex-md-shrink-0{-webkit-flex-shrink:0!important;flex-shrink:0!important}html body.bootstrapiso:not(#random_id_string)>.flex-md-shrink-1,html body.bootstrapiso>:not(#wpwrap) .flex-md-shrink-1{-webkit-flex-shrink:1!important;flex-shrink:1!important}html body.bootstrapiso:not(#random_id_string)>.justify-content-md-start,html body.bootstrapiso>:not(#wpwrap) .justify-content-md-start{-webkit-justify-content:flex-start!important;justify-content:flex-start!important}html body.bootstrapiso:not(#random_id_string)>.justify-content-md-end,html body.bootstrapiso>:not(#wpwrap) .justify-content-md-end{-webkit-justify-content:flex-end!important;justify-content:flex-end!important}html body.bootstrapiso:not(#random_id_string)>.justify-content-md-center,html body.bootstrapiso>:not(#wpwrap) .justify-content-md-center{-webkit-justify-content:center!important;justify-content:center!important}html body.bootstrapiso:not(#random_id_string)>.justify-content-md-between,html body.bootstrapiso>:not(#wpwrap) .justify-content-md-between{-webkit-justify-content:space-between!important;justify-content:space-between!important}html body.bootstrapiso:not(#random_id_string)>.justify-content-md-around,html body.bootstrapiso>:not(#wpwrap) .justify-content-md-around{-webkit-justify-content:space-around!important;justify-content:space-around!important}html body.bootstrapiso:not(#random_id_string)>.align-items-md-start,html body.bootstrapiso>:not(#wpwrap) .align-items-md-start{-webkit-align-items:flex-start!important;align-items:flex-start!important}html body.bootstrapiso:not(#random_id_string)>.align-items-md-end,html body.bootstrapiso>:not(#wpwrap) .align-items-md-end{-webkit-align-items:flex-end!important;align-items:flex-end!important}html body.bootstrapiso:not(#random_id_string)>.align-items-md-center,html body.bootstrapiso>:not(#wpwrap) .align-items-md-center{-webkit-align-items:center!important;align-items:center!important}html body.bootstrapiso:not(#random_id_string)>.align-items-md-baseline,html body.bootstrapiso>:not(#wpwrap) .align-items-md-baseline{-webkit-align-items:baseline!important;align-items:baseline!important}html body.bootstrapiso:not(#random_id_string)>.align-items-md-stretch,html body.bootstrapiso>:not(#wpwrap) .align-items-md-stretch{-webkit-align-items:stretch!important;align-items:stretch!important}html body.bootstrapiso:not(#random_id_string)>.align-content-md-start,html body.bootstrapiso>:not(#wpwrap) .align-content-md-start{-webkit-align-content:flex-start!important;align-content:flex-start!important}html body.bootstrapiso:not(#random_id_string)>.align-content-md-end,html body.bootstrapiso>:not(#wpwrap) .align-content-md-end{-webkit-align-content:flex-end!important;align-content:flex-end!important}html body.bootstrapiso:not(#random_id_string)>.align-content-md-center,html body.bootstrapiso>:not(#wpwrap) .align-content-md-center{-webkit-align-content:center!important;align-content:center!important}html body.bootstrapiso:not(#random_id_string)>.align-content-md-between,html body.bootstrapiso>:not(#wpwrap) .align-content-md-between{-webkit-align-content:space-between!important;align-content:space-between!important}html body.bootstrapiso:not(#random_id_string)>.align-content-md-around,html body.bootstrapiso>:not(#wpwrap) .align-content-md-around{-webkit-align-content:space-around!important;align-content:space-around!important}html body.bootstrapiso:not(#random_id_string)>.align-content-md-stretch,html body.bootstrapiso>:not(#wpwrap) .align-content-md-stretch{-webkit-align-content:stretch!important;align-content:stretch!important}html body.bootstrapiso:not(#random_id_string)>.align-self-md-auto,html body.bootstrapiso>:not(#wpwrap) .align-self-md-auto{-webkit-align-self:auto!important;align-self:auto!important}html body.bootstrapiso:not(#random_id_string)>.align-self-md-start,html body.bootstrapiso>:not(#wpwrap) .align-self-md-start{-webkit-align-self:flex-start!important;align-self:flex-start!important}html body.bootstrapiso:not(#random_id_string)>.align-self-md-end,html body.bootstrapiso>:not(#wpwrap) .align-self-md-end{-webkit-align-self:flex-end!important;align-self:flex-end!important}html body.bootstrapiso:not(#random_id_string)>.align-self-md-center,html body.bootstrapiso>:not(#wpwrap) .align-self-md-center{-webkit-align-self:center!important;align-self:center!important}html body.bootstrapiso:not(#random_id_string)>.align-self-md-baseline,html body.bootstrapiso>:not(#wpwrap) .align-self-md-baseline{-webkit-align-self:baseline!important;align-self:baseline!important}html body.bootstrapiso:not(#random_id_string)>.align-self-md-stretch,html body.bootstrapiso>:not(#wpwrap) .align-self-md-stretch{-webkit-align-self:stretch!important;align-self:stretch!important}}@media (min-width:992px){html body.bootstrapiso:not(#random_id_string)>.flex-lg-row,html body.bootstrapiso>:not(#wpwrap) .flex-lg-row{-webkit-flex-direction:row!important;flex-direction:row!important}html body.bootstrapiso:not(#random_id_string)>.flex-lg-column,html body.bootstrapiso>:not(#wpwrap) .flex-lg-column{-webkit-flex-direction:column!important;flex-direction:column!important}html body.bootstrapiso:not(#random_id_string)>.flex-lg-row-reverse,html body.bootstrapiso>:not(#wpwrap) .flex-lg-row-reverse{-webkit-flex-direction:row-reverse!important;flex-direction:row-reverse!important}html body.bootstrapiso:not(#random_id_string)>.flex-lg-column-reverse,html body.bootstrapiso>:not(#wpwrap) .flex-lg-column-reverse{-webkit-flex-direction:column-reverse!important;flex-direction:column-reverse!important}html body.bootstrapiso:not(#random_id_string)>.flex-lg-wrap,html body.bootstrapiso>:not(#wpwrap) .flex-lg-wrap{-webkit-flex-wrap:wrap!important;flex-wrap:wrap!important}html body.bootstrapiso:not(#random_id_string)>.flex-lg-nowrap,html body.bootstrapiso>:not(#wpwrap) .flex-lg-nowrap{-webkit-flex-wrap:nowrap!important;flex-wrap:nowrap!important}html body.bootstrapiso:not(#random_id_string)>.flex-lg-wrap-reverse,html body.bootstrapiso>:not(#wpwrap) .flex-lg-wrap-reverse{-webkit-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}html body.bootstrapiso:not(#random_id_string)>.flex-lg-fill,html body.bootstrapiso>:not(#wpwrap) .flex-lg-fill{-webkit-flex:1 1 auto!important;flex:1 1 auto!important}html body.bootstrapiso:not(#random_id_string)>.flex-lg-grow-0,html body.bootstrapiso>:not(#wpwrap) .flex-lg-grow-0{-webkit-flex-grow:0!important;flex-grow:0!important}html body.bootstrapiso:not(#random_id_string)>.flex-lg-grow-1,html body.bootstrapiso>:not(#wpwrap) .flex-lg-grow-1{-webkit-flex-grow:1!important;flex-grow:1!important}html body.bootstrapiso:not(#random_id_string)>.flex-lg-shrink-0,html body.bootstrapiso>:not(#wpwrap) .flex-lg-shrink-0{-webkit-flex-shrink:0!important;flex-shrink:0!important}html body.bootstrapiso:not(#random_id_string)>.flex-lg-shrink-1,html body.bootstrapiso>:not(#wpwrap) .flex-lg-shrink-1{-webkit-flex-shrink:1!important;flex-shrink:1!important}html body.bootstrapiso:not(#random_id_string)>.justify-content-lg-start,html body.bootstrapiso>:not(#wpwrap) .justify-content-lg-start{-webkit-justify-content:flex-start!important;justify-content:flex-start!important}html body.bootstrapiso:not(#random_id_string)>.justify-content-lg-end,html body.bootstrapiso>:not(#wpwrap) .justify-content-lg-end{-webkit-justify-content:flex-end!important;justify-content:flex-end!important}html body.bootstrapiso:not(#random_id_string)>.justify-content-lg-center,html body.bootstrapiso>:not(#wpwrap) .justify-content-lg-center{-webkit-justify-content:center!important;justify-content:center!important}html body.bootstrapiso:not(#random_id_string)>.justify-content-lg-between,html body.bootstrapiso>:not(#wpwrap) .justify-content-lg-between{-webkit-justify-content:space-between!important;justify-content:space-between!important}html body.bootstrapiso:not(#random_id_string)>.justify-content-lg-around,html body.bootstrapiso>:not(#wpwrap) .justify-content-lg-around{-webkit-justify-content:space-around!important;justify-content:space-around!important}html body.bootstrapiso:not(#random_id_string)>.align-items-lg-start,html body.bootstrapiso>:not(#wpwrap) .align-items-lg-start{-webkit-align-items:flex-start!important;align-items:flex-start!important}html body.bootstrapiso:not(#random_id_string)>.align-items-lg-end,html body.bootstrapiso>:not(#wpwrap) .align-items-lg-end{-webkit-align-items:flex-end!important;align-items:flex-end!important}html body.bootstrapiso:not(#random_id_string)>.align-items-lg-center,html body.bootstrapiso>:not(#wpwrap) .align-items-lg-center{-webkit-align-items:center!important;align-items:center!important}html body.bootstrapiso:not(#random_id_string)>.align-items-lg-baseline,html body.bootstrapiso>:not(#wpwrap) .align-items-lg-baseline{-webkit-align-items:baseline!important;align-items:baseline!important}html body.bootstrapiso:not(#random_id_string)>.align-items-lg-stretch,html body.bootstrapiso>:not(#wpwrap) .align-items-lg-stretch{-webkit-align-items:stretch!important;align-items:stretch!important}html body.bootstrapiso:not(#random_id_string)>.align-content-lg-start,html body.bootstrapiso>:not(#wpwrap) .align-content-lg-start{-webkit-align-content:flex-start!important;align-content:flex-start!important}html body.bootstrapiso:not(#random_id_string)>.align-content-lg-end,html body.bootstrapiso>:not(#wpwrap) .align-content-lg-end{-webkit-align-content:flex-end!important;align-content:flex-end!important}html body.bootstrapiso:not(#random_id_string)>.align-content-lg-center,html body.bootstrapiso>:not(#wpwrap) .align-content-lg-center{-webkit-align-content:center!important;align-content:center!important}html body.bootstrapiso:not(#random_id_string)>.align-content-lg-between,html body.bootstrapiso>:not(#wpwrap) .align-content-lg-between{-webkit-align-content:space-between!important;align-content:space-between!important}html body.bootstrapiso:not(#random_id_string)>.align-content-lg-around,html body.bootstrapiso>:not(#wpwrap) .align-content-lg-around{-webkit-align-content:space-around!important;align-content:space-around!important}html body.bootstrapiso:not(#random_id_string)>.align-content-lg-stretch,html body.bootstrapiso>:not(#wpwrap) .align-content-lg-stretch{-webkit-align-content:stretch!important;align-content:stretch!important}html body.bootstrapiso:not(#random_id_string)>.align-self-lg-auto,html body.bootstrapiso>:not(#wpwrap) .align-self-lg-auto{-webkit-align-self:auto!important;align-self:auto!important}html body.bootstrapiso:not(#random_id_string)>.align-self-lg-start,html body.bootstrapiso>:not(#wpwrap) .align-self-lg-start{-webkit-align-self:flex-start!important;align-self:flex-start!important}html body.bootstrapiso:not(#random_id_string)>.align-self-lg-end,html body.bootstrapiso>:not(#wpwrap) .align-self-lg-end{-webkit-align-self:flex-end!important;align-self:flex-end!important}html body.bootstrapiso:not(#random_id_string)>.align-self-lg-center,html body.bootstrapiso>:not(#wpwrap) .align-self-lg-center{-webkit-align-self:center!important;align-self:center!important}html body.bootstrapiso:not(#random_id_string)>.align-self-lg-baseline,html body.bootstrapiso>:not(#wpwrap) .align-self-lg-baseline{-webkit-align-self:baseline!important;align-self:baseline!important}html body.bootstrapiso:not(#random_id_string)>.align-self-lg-stretch,html body.bootstrapiso>:not(#wpwrap) .align-self-lg-stretch{-webkit-align-self:stretch!important;align-self:stretch!important}}@media (min-width:1200px){html body.bootstrapiso:not(#random_id_string)>.flex-xl-row,html body.bootstrapiso>:not(#wpwrap) .flex-xl-row{-webkit-flex-direction:row!important;flex-direction:row!important}html body.bootstrapiso:not(#random_id_string)>.flex-xl-column,html body.bootstrapiso>:not(#wpwrap) .flex-xl-column{-webkit-flex-direction:column!important;flex-direction:column!important}html body.bootstrapiso:not(#random_id_string)>.flex-xl-row-reverse,html body.bootstrapiso>:not(#wpwrap) .flex-xl-row-reverse{-webkit-flex-direction:row-reverse!important;flex-direction:row-reverse!important}html body.bootstrapiso:not(#random_id_string)>.flex-xl-column-reverse,html body.bootstrapiso>:not(#wpwrap) .flex-xl-column-reverse{-webkit-flex-direction:column-reverse!important;flex-direction:column-reverse!important}html body.bootstrapiso:not(#random_id_string)>.flex-xl-wrap,html body.bootstrapiso>:not(#wpwrap) .flex-xl-wrap{-webkit-flex-wrap:wrap!important;flex-wrap:wrap!important}html body.bootstrapiso:not(#random_id_string)>.flex-xl-nowrap,html body.bootstrapiso>:not(#wpwrap) .flex-xl-nowrap{-webkit-flex-wrap:nowrap!important;flex-wrap:nowrap!important}html body.bootstrapiso:not(#random_id_string)>.flex-xl-wrap-reverse,html body.bootstrapiso>:not(#wpwrap) .flex-xl-wrap-reverse{-webkit-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}html body.bootstrapiso:not(#random_id_string)>.flex-xl-fill,html body.bootstrapiso>:not(#wpwrap) .flex-xl-fill{-webkit-flex:1 1 auto!important;flex:1 1 auto!important}html body.bootstrapiso:not(#random_id_string)>.flex-xl-grow-0,html body.bootstrapiso>:not(#wpwrap) .flex-xl-grow-0{-webkit-flex-grow:0!important;flex-grow:0!important}html body.bootstrapiso:not(#random_id_string)>.flex-xl-grow-1,html body.bootstrapiso>:not(#wpwrap) .flex-xl-grow-1{-webkit-flex-grow:1!important;flex-grow:1!important}html body.bootstrapiso:not(#random_id_string)>.flex-xl-shrink-0,html body.bootstrapiso>:not(#wpwrap) .flex-xl-shrink-0{-webkit-flex-shrink:0!important;flex-shrink:0!important}html body.bootstrapiso:not(#random_id_string)>.flex-xl-shrink-1,html body.bootstrapiso>:not(#wpwrap) .flex-xl-shrink-1{-webkit-flex-shrink:1!important;flex-shrink:1!important}html body.bootstrapiso:not(#random_id_string)>.justify-content-xl-start,html body.bootstrapiso>:not(#wpwrap) .justify-content-xl-start{-webkit-justify-content:flex-start!important;justify-content:flex-start!important}html body.bootstrapiso:not(#random_id_string)>.justify-content-xl-end,html body.bootstrapiso>:not(#wpwrap) .justify-content-xl-end{-webkit-justify-content:flex-end!important;justify-content:flex-end!important}html body.bootstrapiso:not(#random_id_string)>.justify-content-xl-center,html body.bootstrapiso>:not(#wpwrap) .justify-content-xl-center{-webkit-justify-content:center!important;justify-content:center!important}html body.bootstrapiso:not(#random_id_string)>.justify-content-xl-between,html body.bootstrapiso>:not(#wpwrap) .justify-content-xl-between{-webkit-justify-content:space-between!important;justify-content:space-between!important}html body.bootstrapiso:not(#random_id_string)>.justify-content-xl-around,html body.bootstrapiso>:not(#wpwrap) .justify-content-xl-around{-webkit-justify-content:space-around!important;justify-content:space-around!important}html body.bootstrapiso:not(#random_id_string)>.align-items-xl-start,html body.bootstrapiso>:not(#wpwrap) .align-items-xl-start{-webkit-align-items:flex-start!important;align-items:flex-start!important}html body.bootstrapiso:not(#random_id_string)>.align-items-xl-end,html body.bootstrapiso>:not(#wpwrap) .align-items-xl-end{-webkit-align-items:flex-end!important;align-items:flex-end!important}html body.bootstrapiso:not(#random_id_string)>.align-items-xl-center,html body.bootstrapiso>:not(#wpwrap) .align-items-xl-center{-webkit-align-items:center!important;align-items:center!important}html body.bootstrapiso:not(#random_id_string)>.align-items-xl-baseline,html body.bootstrapiso>:not(#wpwrap) .align-items-xl-baseline{-webkit-align-items:baseline!important;align-items:baseline!important}html body.bootstrapiso:not(#random_id_string)>.align-items-xl-stretch,html body.bootstrapiso>:not(#wpwrap) .align-items-xl-stretch{-webkit-align-items:stretch!important;align-items:stretch!important}html body.bootstrapiso:not(#random_id_string)>.align-content-xl-start,html body.bootstrapiso>:not(#wpwrap) .align-content-xl-start{-webkit-align-content:flex-start!important;align-content:flex-start!important}html body.bootstrapiso:not(#random_id_string)>.align-content-xl-end,html body.bootstrapiso>:not(#wpwrap) .align-content-xl-end{-webkit-align-content:flex-end!important;align-content:flex-end!important}html body.bootstrapiso:not(#random_id_string)>.align-content-xl-center,html body.bootstrapiso>:not(#wpwrap) .align-content-xl-center{-webkit-align-content:center!important;align-content:center!important}html body.bootstrapiso:not(#random_id_string)>.align-content-xl-between,html body.bootstrapiso>:not(#wpwrap) .align-content-xl-between{-webkit-align-content:space-between!important;align-content:space-between!important}html body.bootstrapiso:not(#random_id_string)>.align-content-xl-around,html body.bootstrapiso>:not(#wpwrap) .align-content-xl-around{-webkit-align-content:space-around!important;align-content:space-around!important}html body.bootstrapiso:not(#random_id_string)>.align-content-xl-stretch,html body.bootstrapiso>:not(#wpwrap) .align-content-xl-stretch{-webkit-align-content:stretch!important;align-content:stretch!important}html body.bootstrapiso:not(#random_id_string)>.align-self-xl-auto,html body.bootstrapiso>:not(#wpwrap) .align-self-xl-auto{-webkit-align-self:auto!important;align-self:auto!important}html body.bootstrapiso:not(#random_id_string)>.align-self-xl-start,html body.bootstrapiso>:not(#wpwrap) .align-self-xl-start{-webkit-align-self:flex-start!important;align-self:flex-start!important}html body.bootstrapiso:not(#random_id_string)>.align-self-xl-end,html body.bootstrapiso>:not(#wpwrap) .align-self-xl-end{-webkit-align-self:flex-end!important;align-self:flex-end!important}html body.bootstrapiso:not(#random_id_string)>.align-self-xl-center,html body.bootstrapiso>:not(#wpwrap) .align-self-xl-center{-webkit-align-self:center!important;align-self:center!important}html body.bootstrapiso:not(#random_id_string)>.align-self-xl-baseline,html body.bootstrapiso>:not(#wpwrap) .align-self-xl-baseline{-webkit-align-self:baseline!important;align-self:baseline!important}html body.bootstrapiso:not(#random_id_string)>.align-self-xl-stretch,html body.bootstrapiso>:not(#wpwrap) .align-self-xl-stretch{-webkit-align-self:stretch!important;align-self:stretch!important}}html body.bootstrapiso:not(#random_id_string)>.float-left,html body.bootstrapiso>:not(#wpwrap) .float-left{float:left!important}html body.bootstrapiso:not(#random_id_string)>.float-right,html body.bootstrapiso>:not(#wpwrap) .float-right{float:right!important}html body.bootstrapiso:not(#random_id_string)>.float-none,html body.bootstrapiso>:not(#wpwrap) .float-none{float:none!important}@media (min-width:576px){html body.bootstrapiso:not(#random_id_string)>.float-sm-left,html body.bootstrapiso>:not(#wpwrap) .float-sm-left{float:left!important}html body.bootstrapiso:not(#random_id_string)>.float-sm-right,html body.bootstrapiso>:not(#wpwrap) .float-sm-right{float:right!important}html body.bootstrapiso:not(#random_id_string)>.float-sm-none,html body.bootstrapiso>:not(#wpwrap) .float-sm-none{float:none!important}}@media (min-width:768px){html body.bootstrapiso:not(#random_id_string)>.float-md-left,html body.bootstrapiso>:not(#wpwrap) .float-md-left{float:left!important}html body.bootstrapiso:not(#random_id_string)>.float-md-right,html body.bootstrapiso>:not(#wpwrap) .float-md-right{float:right!important}html body.bootstrapiso:not(#random_id_string)>.float-md-none,html body.bootstrapiso>:not(#wpwrap) .float-md-none{float:none!important}}@media (min-width:992px){html body.bootstrapiso:not(#random_id_string)>.float-lg-left,html body.bootstrapiso>:not(#wpwrap) .float-lg-left{float:left!important}html body.bootstrapiso:not(#random_id_string)>.float-lg-right,html body.bootstrapiso>:not(#wpwrap) .float-lg-right{float:right!important}html body.bootstrapiso:not(#random_id_string)>.float-lg-none,html body.bootstrapiso>:not(#wpwrap) .float-lg-none{float:none!important}}@media (min-width:1200px){html body.bootstrapiso:not(#random_id_string)>.float-xl-left,html body.bootstrapiso>:not(#wpwrap) .float-xl-left{float:left!important}html body.bootstrapiso:not(#random_id_string)>.float-xl-right,html body.bootstrapiso>:not(#wpwrap) .float-xl-right{float:right!important}html body.bootstrapiso:not(#random_id_string)>.float-xl-none,html body.bootstrapiso>:not(#wpwrap) .float-xl-none{float:none!important}}html body.bootstrapiso:not(#random_id_string)>.user-select-all,html body.bootstrapiso>:not(#wpwrap) .user-select-all{-webkit-user-select:all!important;-ms-user-select:all!important;user-select:all!important}html body.bootstrapiso:not(#random_id_string)>.user-select-auto,html body.bootstrapiso>:not(#wpwrap) .user-select-auto{-webkit-user-select:auto!important;-ms-user-select:auto!important;user-select:auto!important}html body.bootstrapiso:not(#random_id_string)>.user-select-none,html body.bootstrapiso>:not(#wpwrap) .user-select-none{-webkit-user-select:none!important;-ms-user-select:none!important;user-select:none!important}html body.bootstrapiso:not(#random_id_string)>.overflow-auto,html body.bootstrapiso>:not(#wpwrap) .overflow-auto{overflow:auto!important}html body.bootstrapiso:not(#random_id_string)>.overflow-hidden,html body.bootstrapiso>:not(#wpwrap) .overflow-hidden{overflow:hidden!important}html body.bootstrapiso:not(#random_id_string)>.position-static,html body.bootstrapiso>:not(#wpwrap) .position-static{position:static!important}html body.bootstrapiso:not(#random_id_string)>.position-relative,html body.bootstrapiso>:not(#wpwrap) .position-relative{position:relative!important}html body.bootstrapiso:not(#random_id_string)>.position-absolute,html body.bootstrapiso>:not(#wpwrap) .position-absolute{position:absolute!important}html body.bootstrapiso:not(#random_id_string)>.position-fixed,html body.bootstrapiso>:not(#wpwrap) .position-fixed{position:fixed!important}html body.bootstrapiso:not(#random_id_string)>.position-sticky,html body.bootstrapiso>:not(#wpwrap) .position-sticky{position:-webkit-sticky!important;position:sticky!important}html body.bootstrapiso:not(#random_id_string)>.fixed-top,html body.bootstrapiso>:not(#wpwrap) .fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}html body.bootstrapiso:not(#random_id_string)>.fixed-bottom,html body.bootstrapiso>:not(#wpwrap) .fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports ((position:-webkit-sticky) or (position:sticky)){html body.bootstrapiso:not(#random_id_string)>.sticky-top,html body.bootstrapiso>:not(#wpwrap) .sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}html body.bootstrapiso:not(#random_id_string)>.sr-only,html body.bootstrapiso>:not(#wpwrap) .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}html body.bootstrapiso:not(#random_id_string)>.sr-only-focusable:active,html body.bootstrapiso:not(#random_id_string)>.sr-only-focusable:focus,html body.bootstrapiso>:not(#wpwrap) .sr-only-focusable:active,html body.bootstrapiso>:not(#wpwrap) .sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}html body.bootstrapiso:not(#random_id_string)>.shadow-sm,html body.bootstrapiso>:not(#wpwrap) .shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}html body.bootstrapiso:not(#random_id_string)>.shadow,html body.bootstrapiso>:not(#wpwrap) .shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}html body.bootstrapiso:not(#random_id_string)>.shadow-lg,html body.bootstrapiso>:not(#wpwrap) .shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}html body.bootstrapiso:not(#random_id_string)>.shadow-none,html body.bootstrapiso>:not(#wpwrap) .shadow-none{box-shadow:none!important}html body.bootstrapiso:not(#random_id_string)>.w-25,html body.bootstrapiso>:not(#wpwrap) .w-25{width:25%!important}html body.bootstrapiso:not(#random_id_string)>.w-50,html body.bootstrapiso>:not(#wpwrap) .w-50{width:50%!important}html body.bootstrapiso:not(#random_id_string)>.w-75,html body.bootstrapiso>:not(#wpwrap) .w-75{width:75%!important}html body.bootstrapiso:not(#random_id_string)>.w-100,html body.bootstrapiso>:not(#wpwrap) .w-100{width:100%!important}html body.bootstrapiso:not(#random_id_string)>.w-auto,html body.bootstrapiso>:not(#wpwrap) .w-auto{width:auto!important}html body.bootstrapiso:not(#random_id_string)>.h-25,html body.bootstrapiso>:not(#wpwrap) .h-25{height:25%!important}html body.bootstrapiso:not(#random_id_string)>.h-50,html body.bootstrapiso>:not(#wpwrap) .h-50{height:50%!important}html body.bootstrapiso:not(#random_id_string)>.h-75,html body.bootstrapiso>:not(#wpwrap) .h-75{height:75%!important}html body.bootstrapiso:not(#random_id_string)>.h-100,html body.bootstrapiso>:not(#wpwrap) .h-100{height:100%!important}html body.bootstrapiso:not(#random_id_string)>.h-auto,html body.bootstrapiso>:not(#wpwrap) .h-auto{height:auto!important}html body.bootstrapiso:not(#random_id_string)>.mw-100,html body.bootstrapiso>:not(#wpwrap) .mw-100{max-width:100%!important}html body.bootstrapiso:not(#random_id_string)>.mh-100,html body.bootstrapiso>:not(#wpwrap) .mh-100{max-height:100%!important}html body.bootstrapiso:not(#random_id_string)>.min-vw-100,html body.bootstrapiso>:not(#wpwrap) .min-vw-100{min-width:100vw!important}html body.bootstrapiso:not(#random_id_string)>.min-vh-100,html body.bootstrapiso>:not(#wpwrap) .min-vh-100{min-height:100vh!important}html body.bootstrapiso:not(#random_id_string)>.vw-100,html body.bootstrapiso>:not(#wpwrap) .vw-100{width:100vw!important}html body.bootstrapiso:not(#random_id_string)>.vh-100,html body.bootstrapiso>:not(#wpwrap) .vh-100{height:100vh!important}html body.bootstrapiso:not(#random_id_string)>.m-0,html body.bootstrapiso>:not(#wpwrap) .m-0{margin:0!important}html body.bootstrapiso:not(#random_id_string)>.mt-0,html body.bootstrapiso:not(#random_id_string)>.my-0,html body.bootstrapiso>:not(#wpwrap) .mt-0,html body.bootstrapiso>:not(#wpwrap) .my-0{margin-top:0!important}html body.bootstrapiso:not(#random_id_string)>.mr-0,html body.bootstrapiso:not(#random_id_string)>.mx-0,html body.bootstrapiso>:not(#wpwrap) .mr-0,html body.bootstrapiso>:not(#wpwrap) .mx-0{margin-right:0!important}html body.bootstrapiso:not(#random_id_string)>.mb-0,html body.bootstrapiso:not(#random_id_string)>.my-0,html body.bootstrapiso>:not(#wpwrap) .mb-0,html body.bootstrapiso>:not(#wpwrap) .my-0{margin-bottom:0!important}html body.bootstrapiso:not(#random_id_string)>.ml-0,html body.bootstrapiso:not(#random_id_string)>.mx-0,html body.bootstrapiso>:not(#wpwrap) .ml-0,html body.bootstrapiso>:not(#wpwrap) .mx-0{margin-left:0!important}html body.bootstrapiso:not(#random_id_string)>.m-1,html body.bootstrapiso>:not(#wpwrap) .m-1{margin:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-1,html body.bootstrapiso:not(#random_id_string)>.my-1,html body.bootstrapiso>:not(#wpwrap) .mt-1,html body.bootstrapiso>:not(#wpwrap) .my-1{margin-top:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-1,html body.bootstrapiso:not(#random_id_string)>.mx-1,html body.bootstrapiso>:not(#wpwrap) .mr-1,html body.bootstrapiso>:not(#wpwrap) .mx-1{margin-right:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-1,html body.bootstrapiso:not(#random_id_string)>.my-1,html body.bootstrapiso>:not(#wpwrap) .mb-1,html body.bootstrapiso>:not(#wpwrap) .my-1{margin-bottom:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-1,html body.bootstrapiso:not(#random_id_string)>.mx-1,html body.bootstrapiso>:not(#wpwrap) .ml-1,html body.bootstrapiso>:not(#wpwrap) .mx-1{margin-left:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.m-2,html body.bootstrapiso>:not(#wpwrap) .m-2{margin:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-2,html body.bootstrapiso:not(#random_id_string)>.my-2,html body.bootstrapiso>:not(#wpwrap) .mt-2,html body.bootstrapiso>:not(#wpwrap) .my-2{margin-top:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-2,html body.bootstrapiso:not(#random_id_string)>.mx-2,html body.bootstrapiso>:not(#wpwrap) .mr-2,html body.bootstrapiso>:not(#wpwrap) .mx-2{margin-right:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-2,html body.bootstrapiso:not(#random_id_string)>.my-2,html body.bootstrapiso>:not(#wpwrap) .mb-2,html body.bootstrapiso>:not(#wpwrap) .my-2{margin-bottom:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-2,html body.bootstrapiso:not(#random_id_string)>.mx-2,html body.bootstrapiso>:not(#wpwrap) .ml-2,html body.bootstrapiso>:not(#wpwrap) .mx-2{margin-left:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.m-3,html body.bootstrapiso>:not(#wpwrap) .m-3{margin:1rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-3,html body.bootstrapiso:not(#random_id_string)>.my-3,html body.bootstrapiso>:not(#wpwrap) .mt-3,html body.bootstrapiso>:not(#wpwrap) .my-3{margin-top:1rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-3,html body.bootstrapiso:not(#random_id_string)>.mx-3,html body.bootstrapiso>:not(#wpwrap) .mr-3,html body.bootstrapiso>:not(#wpwrap) .mx-3{margin-right:1rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-3,html body.bootstrapiso:not(#random_id_string)>.my-3,html body.bootstrapiso>:not(#wpwrap) .mb-3,html body.bootstrapiso>:not(#wpwrap) .my-3{margin-bottom:1rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-3,html body.bootstrapiso:not(#random_id_string)>.mx-3,html body.bootstrapiso>:not(#wpwrap) .ml-3,html body.bootstrapiso>:not(#wpwrap) .mx-3{margin-left:1rem!important}html body.bootstrapiso:not(#random_id_string)>.m-4,html body.bootstrapiso>:not(#wpwrap) .m-4{margin:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-4,html body.bootstrapiso:not(#random_id_string)>.my-4,html body.bootstrapiso>:not(#wpwrap) .mt-4,html body.bootstrapiso>:not(#wpwrap) .my-4{margin-top:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-4,html body.bootstrapiso:not(#random_id_string)>.mx-4,html body.bootstrapiso>:not(#wpwrap) .mr-4,html body.bootstrapiso>:not(#wpwrap) .mx-4{margin-right:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-4,html body.bootstrapiso:not(#random_id_string)>.my-4,html body.bootstrapiso>:not(#wpwrap) .mb-4,html body.bootstrapiso>:not(#wpwrap) .my-4{margin-bottom:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-4,html body.bootstrapiso:not(#random_id_string)>.mx-4,html body.bootstrapiso>:not(#wpwrap) .ml-4,html body.bootstrapiso>:not(#wpwrap) .mx-4{margin-left:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.m-5,html body.bootstrapiso>:not(#wpwrap) .m-5{margin:3rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-5,html body.bootstrapiso:not(#random_id_string)>.my-5,html body.bootstrapiso>:not(#wpwrap) .mt-5,html body.bootstrapiso>:not(#wpwrap) .my-5{margin-top:3rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-5,html body.bootstrapiso:not(#random_id_string)>.mx-5,html body.bootstrapiso>:not(#wpwrap) .mr-5,html body.bootstrapiso>:not(#wpwrap) .mx-5{margin-right:3rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-5,html body.bootstrapiso:not(#random_id_string)>.my-5,html body.bootstrapiso>:not(#wpwrap) .mb-5,html body.bootstrapiso>:not(#wpwrap) .my-5{margin-bottom:3rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-5,html body.bootstrapiso:not(#random_id_string)>.mx-5,html body.bootstrapiso>:not(#wpwrap) .ml-5,html body.bootstrapiso>:not(#wpwrap) .mx-5{margin-left:3rem!important}html body.bootstrapiso:not(#random_id_string)>.p-0,html body.bootstrapiso>:not(#wpwrap) .p-0{padding:0!important}html body.bootstrapiso:not(#random_id_string)>.pt-0,html body.bootstrapiso:not(#random_id_string)>.py-0,html body.bootstrapiso>:not(#wpwrap) .pt-0,html body.bootstrapiso>:not(#wpwrap) .py-0{padding-top:0!important}html body.bootstrapiso:not(#random_id_string)>.pr-0,html body.bootstrapiso:not(#random_id_string)>.px-0,html body.bootstrapiso>:not(#wpwrap) .pr-0,html body.bootstrapiso>:not(#wpwrap) .px-0{padding-right:0!important}html body.bootstrapiso:not(#random_id_string)>.pb-0,html body.bootstrapiso:not(#random_id_string)>.py-0,html body.bootstrapiso>:not(#wpwrap) .pb-0,html body.bootstrapiso>:not(#wpwrap) .py-0{padding-bottom:0!important}html body.bootstrapiso:not(#random_id_string)>.pl-0,html body.bootstrapiso:not(#random_id_string)>.px-0,html body.bootstrapiso>:not(#wpwrap) .pl-0,html body.bootstrapiso>:not(#wpwrap) .px-0{padding-left:0!important}html body.bootstrapiso:not(#random_id_string)>.p-1,html body.bootstrapiso>:not(#wpwrap) .p-1{padding:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.pt-1,html body.bootstrapiso:not(#random_id_string)>.py-1,html body.bootstrapiso>:not(#wpwrap) .pt-1,html body.bootstrapiso>:not(#wpwrap) .py-1{padding-top:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.pr-1,html body.bootstrapiso:not(#random_id_string)>.px-1,html body.bootstrapiso>:not(#wpwrap) .pr-1,html body.bootstrapiso>:not(#wpwrap) .px-1{padding-right:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.pb-1,html body.bootstrapiso:not(#random_id_string)>.py-1,html body.bootstrapiso>:not(#wpwrap) .pb-1,html body.bootstrapiso>:not(#wpwrap) .py-1{padding-bottom:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.pl-1,html body.bootstrapiso:not(#random_id_string)>.px-1,html body.bootstrapiso>:not(#wpwrap) .pl-1,html body.bootstrapiso>:not(#wpwrap) .px-1{padding-left:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.p-2,html body.bootstrapiso>:not(#wpwrap) .p-2{padding:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pt-2,html body.bootstrapiso:not(#random_id_string)>.py-2,html body.bootstrapiso>:not(#wpwrap) .pt-2,html body.bootstrapiso>:not(#wpwrap) .py-2{padding-top:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pr-2,html body.bootstrapiso:not(#random_id_string)>.px-2,html body.bootstrapiso>:not(#wpwrap) .pr-2,html body.bootstrapiso>:not(#wpwrap) .px-2{padding-right:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pb-2,html body.bootstrapiso:not(#random_id_string)>.py-2,html body.bootstrapiso>:not(#wpwrap) .pb-2,html body.bootstrapiso>:not(#wpwrap) .py-2{padding-bottom:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pl-2,html body.bootstrapiso:not(#random_id_string)>.px-2,html body.bootstrapiso>:not(#wpwrap) .pl-2,html body.bootstrapiso>:not(#wpwrap) .px-2{padding-left:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.p-3,html body.bootstrapiso>:not(#wpwrap) .p-3{padding:1rem!important}html body.bootstrapiso:not(#random_id_string)>.pt-3,html body.bootstrapiso:not(#random_id_string)>.py-3,html body.bootstrapiso>:not(#wpwrap) .pt-3,html body.bootstrapiso>:not(#wpwrap) .py-3{padding-top:1rem!important}html body.bootstrapiso:not(#random_id_string)>.pr-3,html body.bootstrapiso:not(#random_id_string)>.px-3,html body.bootstrapiso>:not(#wpwrap) .pr-3,html body.bootstrapiso>:not(#wpwrap) .px-3{padding-right:1rem!important}html body.bootstrapiso:not(#random_id_string)>.pb-3,html body.bootstrapiso:not(#random_id_string)>.py-3,html body.bootstrapiso>:not(#wpwrap) .pb-3,html body.bootstrapiso>:not(#wpwrap) .py-3{padding-bottom:1rem!important}html body.bootstrapiso:not(#random_id_string)>.pl-3,html body.bootstrapiso:not(#random_id_string)>.px-3,html body.bootstrapiso>:not(#wpwrap) .pl-3,html body.bootstrapiso>:not(#wpwrap) .px-3{padding-left:1rem!important}html body.bootstrapiso:not(#random_id_string)>.p-4,html body.bootstrapiso>:not(#wpwrap) .p-4{padding:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pt-4,html body.bootstrapiso:not(#random_id_string)>.py-4,html body.bootstrapiso>:not(#wpwrap) .pt-4,html body.bootstrapiso>:not(#wpwrap) .py-4{padding-top:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pr-4,html body.bootstrapiso:not(#random_id_string)>.px-4,html body.bootstrapiso>:not(#wpwrap) .pr-4,html body.bootstrapiso>:not(#wpwrap) .px-4{padding-right:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pb-4,html body.bootstrapiso:not(#random_id_string)>.py-4,html body.bootstrapiso>:not(#wpwrap) .pb-4,html body.bootstrapiso>:not(#wpwrap) .py-4{padding-bottom:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pl-4,html body.bootstrapiso:not(#random_id_string)>.px-4,html body.bootstrapiso>:not(#wpwrap) .pl-4,html body.bootstrapiso>:not(#wpwrap) .px-4{padding-left:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.p-5,html body.bootstrapiso>:not(#wpwrap) .p-5{padding:3rem!important}html body.bootstrapiso:not(#random_id_string)>.pt-5,html body.bootstrapiso:not(#random_id_string)>.py-5,html body.bootstrapiso>:not(#wpwrap) .pt-5,html body.bootstrapiso>:not(#wpwrap) .py-5{padding-top:3rem!important}html body.bootstrapiso:not(#random_id_string)>.pr-5,html body.bootstrapiso:not(#random_id_string)>.px-5,html body.bootstrapiso>:not(#wpwrap) .pr-5,html body.bootstrapiso>:not(#wpwrap) .px-5{padding-right:3rem!important}html body.bootstrapiso:not(#random_id_string)>.pb-5,html body.bootstrapiso:not(#random_id_string)>.py-5,html body.bootstrapiso>:not(#wpwrap) .pb-5,html body.bootstrapiso>:not(#wpwrap) .py-5{padding-bottom:3rem!important}html body.bootstrapiso:not(#random_id_string)>.pl-5,html body.bootstrapiso:not(#random_id_string)>.px-5,html body.bootstrapiso>:not(#wpwrap) .pl-5,html body.bootstrapiso>:not(#wpwrap) .px-5{padding-left:3rem!important}html body.bootstrapiso:not(#random_id_string)>.m-n1,html body.bootstrapiso>:not(#wpwrap) .m-n1{margin:-.25rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-n1,html body.bootstrapiso:not(#random_id_string)>.my-n1,html body.bootstrapiso>:not(#wpwrap) .mt-n1,html body.bootstrapiso>:not(#wpwrap) .my-n1{margin-top:-.25rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-n1,html body.bootstrapiso:not(#random_id_string)>.mx-n1,html body.bootstrapiso>:not(#wpwrap) .mr-n1,html body.bootstrapiso>:not(#wpwrap) .mx-n1{margin-right:-.25rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-n1,html body.bootstrapiso:not(#random_id_string)>.my-n1,html body.bootstrapiso>:not(#wpwrap) .mb-n1,html body.bootstrapiso>:not(#wpwrap) .my-n1{margin-bottom:-.25rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-n1,html body.bootstrapiso:not(#random_id_string)>.mx-n1,html body.bootstrapiso>:not(#wpwrap) .ml-n1,html body.bootstrapiso>:not(#wpwrap) .mx-n1{margin-left:-.25rem!important}html body.bootstrapiso:not(#random_id_string)>.m-n2,html body.bootstrapiso>:not(#wpwrap) .m-n2{margin:-.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-n2,html body.bootstrapiso:not(#random_id_string)>.my-n2,html body.bootstrapiso>:not(#wpwrap) .mt-n2,html body.bootstrapiso>:not(#wpwrap) .my-n2{margin-top:-.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-n2,html body.bootstrapiso:not(#random_id_string)>.mx-n2,html body.bootstrapiso>:not(#wpwrap) .mr-n2,html body.bootstrapiso>:not(#wpwrap) .mx-n2{margin-right:-.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-n2,html body.bootstrapiso:not(#random_id_string)>.my-n2,html body.bootstrapiso>:not(#wpwrap) .mb-n2,html body.bootstrapiso>:not(#wpwrap) .my-n2{margin-bottom:-.5rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-n2,html body.bootstrapiso:not(#random_id_string)>.mx-n2,html body.bootstrapiso>:not(#wpwrap) .ml-n2,html body.bootstrapiso>:not(#wpwrap) .mx-n2{margin-left:-.5rem!important}html body.bootstrapiso:not(#random_id_string)>.m-n3,html body.bootstrapiso>:not(#wpwrap) .m-n3{margin:-1rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-n3,html body.bootstrapiso:not(#random_id_string)>.my-n3,html body.bootstrapiso>:not(#wpwrap) .mt-n3,html body.bootstrapiso>:not(#wpwrap) .my-n3{margin-top:-1rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-n3,html body.bootstrapiso:not(#random_id_string)>.mx-n3,html body.bootstrapiso>:not(#wpwrap) .mr-n3,html body.bootstrapiso>:not(#wpwrap) .mx-n3{margin-right:-1rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-n3,html body.bootstrapiso:not(#random_id_string)>.my-n3,html body.bootstrapiso>:not(#wpwrap) .mb-n3,html body.bootstrapiso>:not(#wpwrap) .my-n3{margin-bottom:-1rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-n3,html body.bootstrapiso:not(#random_id_string)>.mx-n3,html body.bootstrapiso>:not(#wpwrap) .ml-n3,html body.bootstrapiso>:not(#wpwrap) .mx-n3{margin-left:-1rem!important}html body.bootstrapiso:not(#random_id_string)>.m-n4,html body.bootstrapiso>:not(#wpwrap) .m-n4{margin:-1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-n4,html body.bootstrapiso:not(#random_id_string)>.my-n4,html body.bootstrapiso>:not(#wpwrap) .mt-n4,html body.bootstrapiso>:not(#wpwrap) .my-n4{margin-top:-1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-n4,html body.bootstrapiso:not(#random_id_string)>.mx-n4,html body.bootstrapiso>:not(#wpwrap) .mr-n4,html body.bootstrapiso>:not(#wpwrap) .mx-n4{margin-right:-1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-n4,html body.bootstrapiso:not(#random_id_string)>.my-n4,html body.bootstrapiso>:not(#wpwrap) .mb-n4,html body.bootstrapiso>:not(#wpwrap) .my-n4{margin-bottom:-1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-n4,html body.bootstrapiso:not(#random_id_string)>.mx-n4,html body.bootstrapiso>:not(#wpwrap) .ml-n4,html body.bootstrapiso>:not(#wpwrap) .mx-n4{margin-left:-1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.m-n5,html body.bootstrapiso>:not(#wpwrap) .m-n5{margin:-3rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-n5,html body.bootstrapiso:not(#random_id_string)>.my-n5,html body.bootstrapiso>:not(#wpwrap) .mt-n5,html body.bootstrapiso>:not(#wpwrap) .my-n5{margin-top:-3rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-n5,html body.bootstrapiso:not(#random_id_string)>.mx-n5,html body.bootstrapiso>:not(#wpwrap) .mr-n5,html body.bootstrapiso>:not(#wpwrap) .mx-n5{margin-right:-3rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-n5,html body.bootstrapiso:not(#random_id_string)>.my-n5,html body.bootstrapiso>:not(#wpwrap) .mb-n5,html body.bootstrapiso>:not(#wpwrap) .my-n5{margin-bottom:-3rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-n5,html body.bootstrapiso:not(#random_id_string)>.mx-n5,html body.bootstrapiso>:not(#wpwrap) .ml-n5,html body.bootstrapiso>:not(#wpwrap) .mx-n5{margin-left:-3rem!important}html body.bootstrapiso:not(#random_id_string)>.m-auto,html body.bootstrapiso>:not(#wpwrap) .m-auto{margin:auto!important}html body.bootstrapiso:not(#random_id_string)>.mt-auto,html body.bootstrapiso:not(#random_id_string)>.my-auto,html body.bootstrapiso>:not(#wpwrap) .mt-auto,html body.bootstrapiso>:not(#wpwrap) .my-auto{margin-top:auto!important}html body.bootstrapiso:not(#random_id_string)>.mr-auto,html body.bootstrapiso:not(#random_id_string)>.mx-auto,html body.bootstrapiso>:not(#wpwrap) .mr-auto,html body.bootstrapiso>:not(#wpwrap) .mx-auto{margin-right:auto!important}html body.bootstrapiso:not(#random_id_string)>.mb-auto,html body.bootstrapiso:not(#random_id_string)>.my-auto,html body.bootstrapiso>:not(#wpwrap) .mb-auto,html body.bootstrapiso>:not(#wpwrap) .my-auto{margin-bottom:auto!important}html body.bootstrapiso:not(#random_id_string)>.ml-auto,html body.bootstrapiso:not(#random_id_string)>.mx-auto,html body.bootstrapiso>:not(#wpwrap) .ml-auto,html body.bootstrapiso>:not(#wpwrap) .mx-auto{margin-left:auto!important}@media (min-width:576px){html body.bootstrapiso:not(#random_id_string)>.m-sm-0,html body.bootstrapiso>:not(#wpwrap) .m-sm-0{margin:0!important}html body.bootstrapiso:not(#random_id_string)>.mt-sm-0,html body.bootstrapiso:not(#random_id_string)>.my-sm-0,html body.bootstrapiso>:not(#wpwrap) .mt-sm-0,html body.bootstrapiso>:not(#wpwrap) .my-sm-0{margin-top:0!important}html body.bootstrapiso:not(#random_id_string)>.mr-sm-0,html body.bootstrapiso:not(#random_id_string)>.mx-sm-0,html body.bootstrapiso>:not(#wpwrap) .mr-sm-0,html body.bootstrapiso>:not(#wpwrap) .mx-sm-0{margin-right:0!important}html body.bootstrapiso:not(#random_id_string)>.mb-sm-0,html body.bootstrapiso:not(#random_id_string)>.my-sm-0,html body.bootstrapiso>:not(#wpwrap) .mb-sm-0,html body.bootstrapiso>:not(#wpwrap) .my-sm-0{margin-bottom:0!important}html body.bootstrapiso:not(#random_id_string)>.ml-sm-0,html body.bootstrapiso:not(#random_id_string)>.mx-sm-0,html body.bootstrapiso>:not(#wpwrap) .ml-sm-0,html body.bootstrapiso>:not(#wpwrap) .mx-sm-0{margin-left:0!important}html body.bootstrapiso:not(#random_id_string)>.m-sm-1,html body.bootstrapiso>:not(#wpwrap) .m-sm-1{margin:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-sm-1,html body.bootstrapiso:not(#random_id_string)>.my-sm-1,html body.bootstrapiso>:not(#wpwrap) .mt-sm-1,html body.bootstrapiso>:not(#wpwrap) .my-sm-1{margin-top:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-sm-1,html body.bootstrapiso:not(#random_id_string)>.mx-sm-1,html body.bootstrapiso>:not(#wpwrap) .mr-sm-1,html body.bootstrapiso>:not(#wpwrap) .mx-sm-1{margin-right:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-sm-1,html body.bootstrapiso:not(#random_id_string)>.my-sm-1,html body.bootstrapiso>:not(#wpwrap) .mb-sm-1,html body.bootstrapiso>:not(#wpwrap) .my-sm-1{margin-bottom:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-sm-1,html body.bootstrapiso:not(#random_id_string)>.mx-sm-1,html body.bootstrapiso>:not(#wpwrap) .ml-sm-1,html body.bootstrapiso>:not(#wpwrap) .mx-sm-1{margin-left:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.m-sm-2,html body.bootstrapiso>:not(#wpwrap) .m-sm-2{margin:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-sm-2,html body.bootstrapiso:not(#random_id_string)>.my-sm-2,html body.bootstrapiso>:not(#wpwrap) .mt-sm-2,html body.bootstrapiso>:not(#wpwrap) .my-sm-2{margin-top:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-sm-2,html body.bootstrapiso:not(#random_id_string)>.mx-sm-2,html body.bootstrapiso>:not(#wpwrap) .mr-sm-2,html body.bootstrapiso>:not(#wpwrap) .mx-sm-2{margin-right:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-sm-2,html body.bootstrapiso:not(#random_id_string)>.my-sm-2,html body.bootstrapiso>:not(#wpwrap) .mb-sm-2,html body.bootstrapiso>:not(#wpwrap) .my-sm-2{margin-bottom:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-sm-2,html body.bootstrapiso:not(#random_id_string)>.mx-sm-2,html body.bootstrapiso>:not(#wpwrap) .ml-sm-2,html body.bootstrapiso>:not(#wpwrap) .mx-sm-2{margin-left:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.m-sm-3,html body.bootstrapiso>:not(#wpwrap) .m-sm-3{margin:1rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-sm-3,html body.bootstrapiso:not(#random_id_string)>.my-sm-3,html body.bootstrapiso>:not(#wpwrap) .mt-sm-3,html body.bootstrapiso>:not(#wpwrap) .my-sm-3{margin-top:1rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-sm-3,html body.bootstrapiso:not(#random_id_string)>.mx-sm-3,html body.bootstrapiso>:not(#wpwrap) .mr-sm-3,html body.bootstrapiso>:not(#wpwrap) .mx-sm-3{margin-right:1rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-sm-3,html body.bootstrapiso:not(#random_id_string)>.my-sm-3,html body.bootstrapiso>:not(#wpwrap) .mb-sm-3,html body.bootstrapiso>:not(#wpwrap) .my-sm-3{margin-bottom:1rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-sm-3,html body.bootstrapiso:not(#random_id_string)>.mx-sm-3,html body.bootstrapiso>:not(#wpwrap) .ml-sm-3,html body.bootstrapiso>:not(#wpwrap) .mx-sm-3{margin-left:1rem!important}html body.bootstrapiso:not(#random_id_string)>.m-sm-4,html body.bootstrapiso>:not(#wpwrap) .m-sm-4{margin:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-sm-4,html body.bootstrapiso:not(#random_id_string)>.my-sm-4,html body.bootstrapiso>:not(#wpwrap) .mt-sm-4,html body.bootstrapiso>:not(#wpwrap) .my-sm-4{margin-top:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-sm-4,html body.bootstrapiso:not(#random_id_string)>.mx-sm-4,html body.bootstrapiso>:not(#wpwrap) .mr-sm-4,html body.bootstrapiso>:not(#wpwrap) .mx-sm-4{margin-right:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-sm-4,html body.bootstrapiso:not(#random_id_string)>.my-sm-4,html body.bootstrapiso>:not(#wpwrap) .mb-sm-4,html body.bootstrapiso>:not(#wpwrap) .my-sm-4{margin-bottom:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-sm-4,html body.bootstrapiso:not(#random_id_string)>.mx-sm-4,html body.bootstrapiso>:not(#wpwrap) .ml-sm-4,html body.bootstrapiso>:not(#wpwrap) .mx-sm-4{margin-left:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.m-sm-5,html body.bootstrapiso>:not(#wpwrap) .m-sm-5{margin:3rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-sm-5,html body.bootstrapiso:not(#random_id_string)>.my-sm-5,html body.bootstrapiso>:not(#wpwrap) .mt-sm-5,html body.bootstrapiso>:not(#wpwrap) .my-sm-5{margin-top:3rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-sm-5,html body.bootstrapiso:not(#random_id_string)>.mx-sm-5,html body.bootstrapiso>:not(#wpwrap) .mr-sm-5,html body.bootstrapiso>:not(#wpwrap) .mx-sm-5{margin-right:3rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-sm-5,html body.bootstrapiso:not(#random_id_string)>.my-sm-5,html body.bootstrapiso>:not(#wpwrap) .mb-sm-5,html body.bootstrapiso>:not(#wpwrap) .my-sm-5{margin-bottom:3rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-sm-5,html body.bootstrapiso:not(#random_id_string)>.mx-sm-5,html body.bootstrapiso>:not(#wpwrap) .ml-sm-5,html body.bootstrapiso>:not(#wpwrap) .mx-sm-5{margin-left:3rem!important}html body.bootstrapiso:not(#random_id_string)>.p-sm-0,html body.bootstrapiso>:not(#wpwrap) .p-sm-0{padding:0!important}html body.bootstrapiso:not(#random_id_string)>.pt-sm-0,html body.bootstrapiso:not(#random_id_string)>.py-sm-0,html body.bootstrapiso>:not(#wpwrap) .pt-sm-0,html body.bootstrapiso>:not(#wpwrap) .py-sm-0{padding-top:0!important}html body.bootstrapiso:not(#random_id_string)>.pr-sm-0,html body.bootstrapiso:not(#random_id_string)>.px-sm-0,html body.bootstrapiso>:not(#wpwrap) .pr-sm-0,html body.bootstrapiso>:not(#wpwrap) .px-sm-0{padding-right:0!important}html body.bootstrapiso:not(#random_id_string)>.pb-sm-0,html body.bootstrapiso:not(#random_id_string)>.py-sm-0,html body.bootstrapiso>:not(#wpwrap) .pb-sm-0,html body.bootstrapiso>:not(#wpwrap) .py-sm-0{padding-bottom:0!important}html body.bootstrapiso:not(#random_id_string)>.pl-sm-0,html body.bootstrapiso:not(#random_id_string)>.px-sm-0,html body.bootstrapiso>:not(#wpwrap) .pl-sm-0,html body.bootstrapiso>:not(#wpwrap) .px-sm-0{padding-left:0!important}html body.bootstrapiso:not(#random_id_string)>.p-sm-1,html body.bootstrapiso>:not(#wpwrap) .p-sm-1{padding:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.pt-sm-1,html body.bootstrapiso:not(#random_id_string)>.py-sm-1,html body.bootstrapiso>:not(#wpwrap) .pt-sm-1,html body.bootstrapiso>:not(#wpwrap) .py-sm-1{padding-top:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.pr-sm-1,html body.bootstrapiso:not(#random_id_string)>.px-sm-1,html body.bootstrapiso>:not(#wpwrap) .pr-sm-1,html body.bootstrapiso>:not(#wpwrap) .px-sm-1{padding-right:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.pb-sm-1,html body.bootstrapiso:not(#random_id_string)>.py-sm-1,html body.bootstrapiso>:not(#wpwrap) .pb-sm-1,html body.bootstrapiso>:not(#wpwrap) .py-sm-1{padding-bottom:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.pl-sm-1,html body.bootstrapiso:not(#random_id_string)>.px-sm-1,html body.bootstrapiso>:not(#wpwrap) .pl-sm-1,html body.bootstrapiso>:not(#wpwrap) .px-sm-1{padding-left:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.p-sm-2,html body.bootstrapiso>:not(#wpwrap) .p-sm-2{padding:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pt-sm-2,html body.bootstrapiso:not(#random_id_string)>.py-sm-2,html body.bootstrapiso>:not(#wpwrap) .pt-sm-2,html body.bootstrapiso>:not(#wpwrap) .py-sm-2{padding-top:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pr-sm-2,html body.bootstrapiso:not(#random_id_string)>.px-sm-2,html body.bootstrapiso>:not(#wpwrap) .pr-sm-2,html body.bootstrapiso>:not(#wpwrap) .px-sm-2{padding-right:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pb-sm-2,html body.bootstrapiso:not(#random_id_string)>.py-sm-2,html body.bootstrapiso>:not(#wpwrap) .pb-sm-2,html body.bootstrapiso>:not(#wpwrap) .py-sm-2{padding-bottom:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pl-sm-2,html body.bootstrapiso:not(#random_id_string)>.px-sm-2,html body.bootstrapiso>:not(#wpwrap) .pl-sm-2,html body.bootstrapiso>:not(#wpwrap) .px-sm-2{padding-left:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.p-sm-3,html body.bootstrapiso>:not(#wpwrap) .p-sm-3{padding:1rem!important}html body.bootstrapiso:not(#random_id_string)>.pt-sm-3,html body.bootstrapiso:not(#random_id_string)>.py-sm-3,html body.bootstrapiso>:not(#wpwrap) .pt-sm-3,html body.bootstrapiso>:not(#wpwrap) .py-sm-3{padding-top:1rem!important}html body.bootstrapiso:not(#random_id_string)>.pr-sm-3,html body.bootstrapiso:not(#random_id_string)>.px-sm-3,html body.bootstrapiso>:not(#wpwrap) .pr-sm-3,html body.bootstrapiso>:not(#wpwrap) .px-sm-3{padding-right:1rem!important}html body.bootstrapiso:not(#random_id_string)>.pb-sm-3,html body.bootstrapiso:not(#random_id_string)>.py-sm-3,html body.bootstrapiso>:not(#wpwrap) .pb-sm-3,html body.bootstrapiso>:not(#wpwrap) .py-sm-3{padding-bottom:1rem!important}html body.bootstrapiso:not(#random_id_string)>.pl-sm-3,html body.bootstrapiso:not(#random_id_string)>.px-sm-3,html body.bootstrapiso>:not(#wpwrap) .pl-sm-3,html body.bootstrapiso>:not(#wpwrap) .px-sm-3{padding-left:1rem!important}html body.bootstrapiso:not(#random_id_string)>.p-sm-4,html body.bootstrapiso>:not(#wpwrap) .p-sm-4{padding:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pt-sm-4,html body.bootstrapiso:not(#random_id_string)>.py-sm-4,html body.bootstrapiso>:not(#wpwrap) .pt-sm-4,html body.bootstrapiso>:not(#wpwrap) .py-sm-4{padding-top:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pr-sm-4,html body.bootstrapiso:not(#random_id_string)>.px-sm-4,html body.bootstrapiso>:not(#wpwrap) .pr-sm-4,html body.bootstrapiso>:not(#wpwrap) .px-sm-4{padding-right:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pb-sm-4,html body.bootstrapiso:not(#random_id_string)>.py-sm-4,html body.bootstrapiso>:not(#wpwrap) .pb-sm-4,html body.bootstrapiso>:not(#wpwrap) .py-sm-4{padding-bottom:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pl-sm-4,html body.bootstrapiso:not(#random_id_string)>.px-sm-4,html body.bootstrapiso>:not(#wpwrap) .pl-sm-4,html body.bootstrapiso>:not(#wpwrap) .px-sm-4{padding-left:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.p-sm-5,html body.bootstrapiso>:not(#wpwrap) .p-sm-5{padding:3rem!important}html body.bootstrapiso:not(#random_id_string)>.pt-sm-5,html body.bootstrapiso:not(#random_id_string)>.py-sm-5,html body.bootstrapiso>:not(#wpwrap) .pt-sm-5,html body.bootstrapiso>:not(#wpwrap) .py-sm-5{padding-top:3rem!important}html body.bootstrapiso:not(#random_id_string)>.pr-sm-5,html body.bootstrapiso:not(#random_id_string)>.px-sm-5,html body.bootstrapiso>:not(#wpwrap) .pr-sm-5,html body.bootstrapiso>:not(#wpwrap) .px-sm-5{padding-right:3rem!important}html body.bootstrapiso:not(#random_id_string)>.pb-sm-5,html body.bootstrapiso:not(#random_id_string)>.py-sm-5,html body.bootstrapiso>:not(#wpwrap) .pb-sm-5,html body.bootstrapiso>:not(#wpwrap) .py-sm-5{padding-bottom:3rem!important}html body.bootstrapiso:not(#random_id_string)>.pl-sm-5,html body.bootstrapiso:not(#random_id_string)>.px-sm-5,html body.bootstrapiso>:not(#wpwrap) .pl-sm-5,html body.bootstrapiso>:not(#wpwrap) .px-sm-5{padding-left:3rem!important}html body.bootstrapiso:not(#random_id_string)>.m-sm-n1,html body.bootstrapiso>:not(#wpwrap) .m-sm-n1{margin:-.25rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-sm-n1,html body.bootstrapiso:not(#random_id_string)>.my-sm-n1,html body.bootstrapiso>:not(#wpwrap) .mt-sm-n1,html body.bootstrapiso>:not(#wpwrap) .my-sm-n1{margin-top:-.25rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-sm-n1,html body.bootstrapiso:not(#random_id_string)>.mx-sm-n1,html body.bootstrapiso>:not(#wpwrap) .mr-sm-n1,html body.bootstrapiso>:not(#wpwrap) .mx-sm-n1{margin-right:-.25rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-sm-n1,html body.bootstrapiso:not(#random_id_string)>.my-sm-n1,html body.bootstrapiso>:not(#wpwrap) .mb-sm-n1,html body.bootstrapiso>:not(#wpwrap) .my-sm-n1{margin-bottom:-.25rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-sm-n1,html body.bootstrapiso:not(#random_id_string)>.mx-sm-n1,html body.bootstrapiso>:not(#wpwrap) .ml-sm-n1,html body.bootstrapiso>:not(#wpwrap) .mx-sm-n1{margin-left:-.25rem!important}html body.bootstrapiso:not(#random_id_string)>.m-sm-n2,html body.bootstrapiso>:not(#wpwrap) .m-sm-n2{margin:-.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-sm-n2,html body.bootstrapiso:not(#random_id_string)>.my-sm-n2,html body.bootstrapiso>:not(#wpwrap) .mt-sm-n2,html body.bootstrapiso>:not(#wpwrap) .my-sm-n2{margin-top:-.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-sm-n2,html body.bootstrapiso:not(#random_id_string)>.mx-sm-n2,html body.bootstrapiso>:not(#wpwrap) .mr-sm-n2,html body.bootstrapiso>:not(#wpwrap) .mx-sm-n2{margin-right:-.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-sm-n2,html body.bootstrapiso:not(#random_id_string)>.my-sm-n2,html body.bootstrapiso>:not(#wpwrap) .mb-sm-n2,html body.bootstrapiso>:not(#wpwrap) .my-sm-n2{margin-bottom:-.5rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-sm-n2,html body.bootstrapiso:not(#random_id_string)>.mx-sm-n2,html body.bootstrapiso>:not(#wpwrap) .ml-sm-n2,html body.bootstrapiso>:not(#wpwrap) .mx-sm-n2{margin-left:-.5rem!important}html body.bootstrapiso:not(#random_id_string)>.m-sm-n3,html body.bootstrapiso>:not(#wpwrap) .m-sm-n3{margin:-1rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-sm-n3,html body.bootstrapiso:not(#random_id_string)>.my-sm-n3,html body.bootstrapiso>:not(#wpwrap) .mt-sm-n3,html body.bootstrapiso>:not(#wpwrap) .my-sm-n3{margin-top:-1rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-sm-n3,html body.bootstrapiso:not(#random_id_string)>.mx-sm-n3,html body.bootstrapiso>:not(#wpwrap) .mr-sm-n3,html body.bootstrapiso>:not(#wpwrap) .mx-sm-n3{margin-right:-1rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-sm-n3,html body.bootstrapiso:not(#random_id_string)>.my-sm-n3,html body.bootstrapiso>:not(#wpwrap) .mb-sm-n3,html body.bootstrapiso>:not(#wpwrap) .my-sm-n3{margin-bottom:-1rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-sm-n3,html body.bootstrapiso:not(#random_id_string)>.mx-sm-n3,html body.bootstrapiso>:not(#wpwrap) .ml-sm-n3,html body.bootstrapiso>:not(#wpwrap) .mx-sm-n3{margin-left:-1rem!important}html body.bootstrapiso:not(#random_id_string)>.m-sm-n4,html body.bootstrapiso>:not(#wpwrap) .m-sm-n4{margin:-1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-sm-n4,html body.bootstrapiso:not(#random_id_string)>.my-sm-n4,html body.bootstrapiso>:not(#wpwrap) .mt-sm-n4,html body.bootstrapiso>:not(#wpwrap) .my-sm-n4{margin-top:-1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-sm-n4,html body.bootstrapiso:not(#random_id_string)>.mx-sm-n4,html body.bootstrapiso>:not(#wpwrap) .mr-sm-n4,html body.bootstrapiso>:not(#wpwrap) .mx-sm-n4{margin-right:-1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-sm-n4,html body.bootstrapiso:not(#random_id_string)>.my-sm-n4,html body.bootstrapiso>:not(#wpwrap) .mb-sm-n4,html body.bootstrapiso>:not(#wpwrap) .my-sm-n4{margin-bottom:-1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-sm-n4,html body.bootstrapiso:not(#random_id_string)>.mx-sm-n4,html body.bootstrapiso>:not(#wpwrap) .ml-sm-n4,html body.bootstrapiso>:not(#wpwrap) .mx-sm-n4{margin-left:-1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.m-sm-n5,html body.bootstrapiso>:not(#wpwrap) .m-sm-n5{margin:-3rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-sm-n5,html body.bootstrapiso:not(#random_id_string)>.my-sm-n5,html body.bootstrapiso>:not(#wpwrap) .mt-sm-n5,html body.bootstrapiso>:not(#wpwrap) .my-sm-n5{margin-top:-3rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-sm-n5,html body.bootstrapiso:not(#random_id_string)>.mx-sm-n5,html body.bootstrapiso>:not(#wpwrap) .mr-sm-n5,html body.bootstrapiso>:not(#wpwrap) .mx-sm-n5{margin-right:-3rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-sm-n5,html body.bootstrapiso:not(#random_id_string)>.my-sm-n5,html body.bootstrapiso>:not(#wpwrap) .mb-sm-n5,html body.bootstrapiso>:not(#wpwrap) .my-sm-n5{margin-bottom:-3rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-sm-n5,html body.bootstrapiso:not(#random_id_string)>.mx-sm-n5,html body.bootstrapiso>:not(#wpwrap) .ml-sm-n5,html body.bootstrapiso>:not(#wpwrap) .mx-sm-n5{margin-left:-3rem!important}html body.bootstrapiso:not(#random_id_string)>.m-sm-auto,html body.bootstrapiso>:not(#wpwrap) .m-sm-auto{margin:auto!important}html body.bootstrapiso:not(#random_id_string)>.mt-sm-auto,html body.bootstrapiso:not(#random_id_string)>.my-sm-auto,html body.bootstrapiso>:not(#wpwrap) .mt-sm-auto,html body.bootstrapiso>:not(#wpwrap) .my-sm-auto{margin-top:auto!important}html body.bootstrapiso:not(#random_id_string)>.mr-sm-auto,html body.bootstrapiso:not(#random_id_string)>.mx-sm-auto,html body.bootstrapiso>:not(#wpwrap) .mr-sm-auto,html body.bootstrapiso>:not(#wpwrap) .mx-sm-auto{margin-right:auto!important}html body.bootstrapiso:not(#random_id_string)>.mb-sm-auto,html body.bootstrapiso:not(#random_id_string)>.my-sm-auto,html body.bootstrapiso>:not(#wpwrap) .mb-sm-auto,html body.bootstrapiso>:not(#wpwrap) .my-sm-auto{margin-bottom:auto!important}html body.bootstrapiso:not(#random_id_string)>.ml-sm-auto,html body.bootstrapiso:not(#random_id_string)>.mx-sm-auto,html body.bootstrapiso>:not(#wpwrap) .ml-sm-auto,html body.bootstrapiso>:not(#wpwrap) .mx-sm-auto{margin-left:auto!important}}@media (min-width:768px){html body.bootstrapiso:not(#random_id_string)>.m-md-0,html body.bootstrapiso>:not(#wpwrap) .m-md-0{margin:0!important}html body.bootstrapiso:not(#random_id_string)>.mt-md-0,html body.bootstrapiso:not(#random_id_string)>.my-md-0,html body.bootstrapiso>:not(#wpwrap) .mt-md-0,html body.bootstrapiso>:not(#wpwrap) .my-md-0{margin-top:0!important}html body.bootstrapiso:not(#random_id_string)>.mr-md-0,html body.bootstrapiso:not(#random_id_string)>.mx-md-0,html body.bootstrapiso>:not(#wpwrap) .mr-md-0,html body.bootstrapiso>:not(#wpwrap) .mx-md-0{margin-right:0!important}html body.bootstrapiso:not(#random_id_string)>.mb-md-0,html body.bootstrapiso:not(#random_id_string)>.my-md-0,html body.bootstrapiso>:not(#wpwrap) .mb-md-0,html body.bootstrapiso>:not(#wpwrap) .my-md-0{margin-bottom:0!important}html body.bootstrapiso:not(#random_id_string)>.ml-md-0,html body.bootstrapiso:not(#random_id_string)>.mx-md-0,html body.bootstrapiso>:not(#wpwrap) .ml-md-0,html body.bootstrapiso>:not(#wpwrap) .mx-md-0{margin-left:0!important}html body.bootstrapiso:not(#random_id_string)>.m-md-1,html body.bootstrapiso>:not(#wpwrap) .m-md-1{margin:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-md-1,html body.bootstrapiso:not(#random_id_string)>.my-md-1,html body.bootstrapiso>:not(#wpwrap) .mt-md-1,html body.bootstrapiso>:not(#wpwrap) .my-md-1{margin-top:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-md-1,html body.bootstrapiso:not(#random_id_string)>.mx-md-1,html body.bootstrapiso>:not(#wpwrap) .mr-md-1,html body.bootstrapiso>:not(#wpwrap) .mx-md-1{margin-right:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-md-1,html body.bootstrapiso:not(#random_id_string)>.my-md-1,html body.bootstrapiso>:not(#wpwrap) .mb-md-1,html body.bootstrapiso>:not(#wpwrap) .my-md-1{margin-bottom:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-md-1,html body.bootstrapiso:not(#random_id_string)>.mx-md-1,html body.bootstrapiso>:not(#wpwrap) .ml-md-1,html body.bootstrapiso>:not(#wpwrap) .mx-md-1{margin-left:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.m-md-2,html body.bootstrapiso>:not(#wpwrap) .m-md-2{margin:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-md-2,html body.bootstrapiso:not(#random_id_string)>.my-md-2,html body.bootstrapiso>:not(#wpwrap) .mt-md-2,html body.bootstrapiso>:not(#wpwrap) .my-md-2{margin-top:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-md-2,html body.bootstrapiso:not(#random_id_string)>.mx-md-2,html body.bootstrapiso>:not(#wpwrap) .mr-md-2,html body.bootstrapiso>:not(#wpwrap) .mx-md-2{margin-right:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-md-2,html body.bootstrapiso:not(#random_id_string)>.my-md-2,html body.bootstrapiso>:not(#wpwrap) .mb-md-2,html body.bootstrapiso>:not(#wpwrap) .my-md-2{margin-bottom:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-md-2,html body.bootstrapiso:not(#random_id_string)>.mx-md-2,html body.bootstrapiso>:not(#wpwrap) .ml-md-2,html body.bootstrapiso>:not(#wpwrap) .mx-md-2{margin-left:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.m-md-3,html body.bootstrapiso>:not(#wpwrap) .m-md-3{margin:1rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-md-3,html body.bootstrapiso:not(#random_id_string)>.my-md-3,html body.bootstrapiso>:not(#wpwrap) .mt-md-3,html body.bootstrapiso>:not(#wpwrap) .my-md-3{margin-top:1rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-md-3,html body.bootstrapiso:not(#random_id_string)>.mx-md-3,html body.bootstrapiso>:not(#wpwrap) .mr-md-3,html body.bootstrapiso>:not(#wpwrap) .mx-md-3{margin-right:1rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-md-3,html body.bootstrapiso:not(#random_id_string)>.my-md-3,html body.bootstrapiso>:not(#wpwrap) .mb-md-3,html body.bootstrapiso>:not(#wpwrap) .my-md-3{margin-bottom:1rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-md-3,html body.bootstrapiso:not(#random_id_string)>.mx-md-3,html body.bootstrapiso>:not(#wpwrap) .ml-md-3,html body.bootstrapiso>:not(#wpwrap) .mx-md-3{margin-left:1rem!important}html body.bootstrapiso:not(#random_id_string)>.m-md-4,html body.bootstrapiso>:not(#wpwrap) .m-md-4{margin:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-md-4,html body.bootstrapiso:not(#random_id_string)>.my-md-4,html body.bootstrapiso>:not(#wpwrap) .mt-md-4,html body.bootstrapiso>:not(#wpwrap) .my-md-4{margin-top:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-md-4,html body.bootstrapiso:not(#random_id_string)>.mx-md-4,html body.bootstrapiso>:not(#wpwrap) .mr-md-4,html body.bootstrapiso>:not(#wpwrap) .mx-md-4{margin-right:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-md-4,html body.bootstrapiso:not(#random_id_string)>.my-md-4,html body.bootstrapiso>:not(#wpwrap) .mb-md-4,html body.bootstrapiso>:not(#wpwrap) .my-md-4{margin-bottom:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-md-4,html body.bootstrapiso:not(#random_id_string)>.mx-md-4,html body.bootstrapiso>:not(#wpwrap) .ml-md-4,html body.bootstrapiso>:not(#wpwrap) .mx-md-4{margin-left:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.m-md-5,html body.bootstrapiso>:not(#wpwrap) .m-md-5{margin:3rem!important}html body.bootstrapiso:not(#random_id_string)>.mt-md-5,html body.bootstrapiso:not(#random_id_string)>.my-md-5,html body.bootstrapiso>:not(#wpwrap) .mt-md-5,html body.bootstrapiso>:not(#wpwrap) .my-md-5{margin-top:3rem!important}html body.bootstrapiso:not(#random_id_string)>.mr-md-5,html body.bootstrapiso:not(#random_id_string)>.mx-md-5,html body.bootstrapiso>:not(#wpwrap) .mr-md-5,html body.bootstrapiso>:not(#wpwrap) .mx-md-5{margin-right:3rem!important}html body.bootstrapiso:not(#random_id_string)>.mb-md-5,html body.bootstrapiso:not(#random_id_string)>.my-md-5,html body.bootstrapiso>:not(#wpwrap) .mb-md-5,html body.bootstrapiso>:not(#wpwrap) .my-md-5{margin-bottom:3rem!important}html body.bootstrapiso:not(#random_id_string)>.ml-md-5,html body.bootstrapiso:not(#random_id_string)>.mx-md-5,html body.bootstrapiso>:not(#wpwrap) .ml-md-5,html body.bootstrapiso>:not(#wpwrap) .mx-md-5{margin-left:3rem!important}html body.bootstrapiso:not(#random_id_string)>.p-md-0,html body.bootstrapiso>:not(#wpwrap) .p-md-0{padding:0!important}html body.bootstrapiso:not(#random_id_string)>.pt-md-0,html body.bootstrapiso:not(#random_id_string)>.py-md-0,html body.bootstrapiso>:not(#wpwrap) .pt-md-0,html body.bootstrapiso>:not(#wpwrap) .py-md-0{padding-top:0!important}html body.bootstrapiso:not(#random_id_string)>.pr-md-0,html body.bootstrapiso:not(#random_id_string)>.px-md-0,html body.bootstrapiso>:not(#wpwrap) .pr-md-0,html body.bootstrapiso>:not(#wpwrap) .px-md-0{padding-right:0!important}html body.bootstrapiso:not(#random_id_string)>.pb-md-0,html body.bootstrapiso:not(#random_id_string)>.py-md-0,html body.bootstrapiso>:not(#wpwrap) .pb-md-0,html body.bootstrapiso>:not(#wpwrap) .py-md-0{padding-bottom:0!important}html body.bootstrapiso:not(#random_id_string)>.pl-md-0,html body.bootstrapiso:not(#random_id_string)>.px-md-0,html body.bootstrapiso>:not(#wpwrap) .pl-md-0,html body.bootstrapiso>:not(#wpwrap) .px-md-0{padding-left:0!important}html body.bootstrapiso:not(#random_id_string)>.p-md-1,html body.bootstrapiso>:not(#wpwrap) .p-md-1{padding:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.pt-md-1,html body.bootstrapiso:not(#random_id_string)>.py-md-1,html body.bootstrapiso>:not(#wpwrap) .pt-md-1,html body.bootstrapiso>:not(#wpwrap) .py-md-1{padding-top:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.pr-md-1,html body.bootstrapiso:not(#random_id_string)>.px-md-1,html body.bootstrapiso>:not(#wpwrap) .pr-md-1,html body.bootstrapiso>:not(#wpwrap) .px-md-1{padding-right:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.pb-md-1,html body.bootstrapiso:not(#random_id_string)>.py-md-1,html body.bootstrapiso>:not(#wpwrap) .pb-md-1,html body.bootstrapiso>:not(#wpwrap) .py-md-1{padding-bottom:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.pl-md-1,html body.bootstrapiso:not(#random_id_string)>.px-md-1,html body.bootstrapiso>:not(#wpwrap) .pl-md-1,html body.bootstrapiso>:not(#wpwrap) .px-md-1{padding-left:.25rem!important}html body.bootstrapiso:not(#random_id_string)>.p-md-2,html body.bootstrapiso>:not(#wpwrap) .p-md-2{padding:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pt-md-2,html body.bootstrapiso:not(#random_id_string)>.py-md-2,html body.bootstrapiso>:not(#wpwrap) .pt-md-2,html body.bootstrapiso>:not(#wpwrap) .py-md-2{padding-top:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pr-md-2,html body.bootstrapiso:not(#random_id_string)>.px-md-2,html body.bootstrapiso>:not(#wpwrap) .pr-md-2,html body.bootstrapiso>:not(#wpwrap) .px-md-2{padding-right:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pb-md-2,html body.bootstrapiso:not(#random_id_string)>.py-md-2,html body.bootstrapiso>:not(#wpwrap) .pb-md-2,html body.bootstrapiso>:not(#wpwrap) .py-md-2{padding-bottom:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pl-md-2,html body.bootstrapiso:not(#random_id_string)>.px-md-2,html body.bootstrapiso>:not(#wpwrap) .pl-md-2,html body.bootstrapiso>:not(#wpwrap) .px-md-2{padding-left:.5rem!important}html body.bootstrapiso:not(#random_id_string)>.p-md-3,html body.bootstrapiso>:not(#wpwrap) .p-md-3{padding:1rem!important}html body.bootstrapiso:not(#random_id_string)>.pt-md-3,html body.bootstrapiso:not(#random_id_string)>.py-md-3,html body.bootstrapiso>:not(#wpwrap) .pt-md-3,html body.bootstrapiso>:not(#wpwrap) .py-md-3{padding-top:1rem!important}html body.bootstrapiso:not(#random_id_string)>.pr-md-3,html body.bootstrapiso:not(#random_id_string)>.px-md-3,html body.bootstrapiso>:not(#wpwrap) .pr-md-3,html body.bootstrapiso>:not(#wpwrap) .px-md-3{padding-right:1rem!important}html body.bootstrapiso:not(#random_id_string)>.pb-md-3,html body.bootstrapiso:not(#random_id_string)>.py-md-3,html body.bootstrapiso>:not(#wpwrap) .pb-md-3,html body.bootstrapiso>:not(#wpwrap) .py-md-3{padding-bottom:1rem!important}html body.bootstrapiso:not(#random_id_string)>.pl-md-3,html body.bootstrapiso:not(#random_id_string)>.px-md-3,html body.bootstrapiso>:not(#wpwrap) .pl-md-3,html body.bootstrapiso>:not(#wpwrap) .px-md-3{padding-left:1rem!important}html body.bootstrapiso:not(#random_id_string)>.p-md-4,html body.bootstrapiso>:not(#wpwrap) .p-md-4{padding:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pt-md-4,html body.bootstrapiso:not(#random_id_string)>.py-md-4,html body.bootstrapiso>:not(#wpwrap) .pt-md-4,html body.bootstrapiso>:not(#wpwrap) .py-md-4{padding-top:1.5rem!important}html body.bootstrapiso:not(#random_id_string)>.pr-md-4,html body.bootstrapiso:not(#random_id_string)>.px-md-4,html body.bootstrapiso>:not(#wpwrap) .pr-md-4,html body.bootstrapiso>:not(#