Elementor Essential Addons - Version 4.9.4

Version Description

  • 11/10/2021 =

  • Improved: Asset Generator method for better performance

  • Fixed: EA Product Grid | Title not being clickable for certain styles

  • Fixed: EA Product grid | Broken layout in responsive devices

  • Fixed: EA Gravity Forms | Form label styling not properly

  • Fixed: EA Event Calendar | Events colors not changing with global color

  • Fixed: EA Call to Action | Button URL Custom Attributes not working correctly

  • Fixed: Missing Control icons inside Elemenetor panel

  • Fixed: EA Simple Menu | Hamburger menu center option not working

  • Fixed: EA Simple Menu | Active Page being shown on Responsive Devices despite being disabled

  • Few minor bug fix & improvements

Download this release

Release Info

Developer wpdevteam
Plugin Icon 128x128 Elementor Essential Addons
Version 4.9.4
Comparing to
See all releases

Code changes from version 4.9.3 to 4.9.4

Files changed (54) hide show
  1. assets/front-end/css/view/product-grid.css +29 -0
  2. assets/front-end/css/view/product-grid.min.css +1 -1
  3. assets/front-end/css/view/simple-menu.css +18 -5
  4. assets/front-end/css/view/simple-menu.min.css +1 -1
  5. assets/front-end/js/view/simple-menu.js +1 -1
  6. assets/front-end/js/view/simple-menu.min.js +1 -1
  7. essential_adons_elementor.php +2 -2
  8. includes/Classes/WPDeveloper_Setup_Wizard.php +1 -1
  9. includes/Controls/Select2.php +2 -2
  10. includes/Elements/Adv_Accordion.php +14 -12
  11. includes/Elements/Adv_Tabs.php +6 -4
  12. includes/Elements/Advanced_Data_Table.php +12 -12
  13. includes/Elements/Betterdocs_Category_Box.php +3 -3
  14. includes/Elements/Betterdocs_Category_Grid.php +6 -6
  15. includes/Elements/Caldera_Forms.php +6 -6
  16. includes/Elements/Contact_Form_7.php +3 -3
  17. includes/Elements/Countdown.php +6 -6
  18. includes/Elements/Creative_Button.php +3 -3
  19. includes/Elements/Cta_Box.php +19 -12
  20. includes/Elements/Data_Table.php +7 -7
  21. includes/Elements/Dual_Color_Header.php +6 -6
  22. includes/Elements/Event_Calendar.php +47 -15
  23. includes/Elements/Fancy_Text.php +3 -3
  24. includes/Elements/Feature_List.php +8 -8
  25. includes/Elements/Filterable_Gallery.php +6 -6
  26. includes/Elements/Flip_Box.php +22 -16
  27. includes/Elements/FluentForm.php +7 -7
  28. includes/Elements/Formstack.php +3 -3
  29. includes/Elements/GravityForms.php +52 -9
  30. includes/Elements/Image_Accordion.php +4 -4
  31. includes/Elements/Info_Box.php +5 -7
  32. includes/Elements/NinjaForms.php +6 -6
  33. includes/Elements/Post_Grid.php +16 -16
  34. includes/Elements/Post_Timeline.php +7 -7
  35. includes/Elements/Pricing_Table.php +33 -10
  36. includes/Elements/Product_Grid.php +11 -11
  37. includes/Elements/Progress_Bar.php +6 -6
  38. includes/Elements/Simple_Menu.php +18 -18
  39. includes/Elements/Team_Member.php +3 -3
  40. includes/Elements/Testimonial.php +4 -4
  41. includes/Elements/Tooltip.php +8 -8
  42. includes/Elements/Twitter_Feed.php +3 -3
  43. includes/Elements/WeForms.php +6 -6
  44. includes/Elements/Woo_Product_Carousel.php +5 -5
  45. includes/Elements/Woo_Product_Gallery.php +10 -10
  46. includes/Elements/WpForms.php +6 -6
  47. includes/Template/Eicon-Woocommerce/default.php +18 -2
  48. includes/Traits/Controls.php +10 -10
  49. includes/Traits/Generator.php +11 -14
  50. includes/Traits/Helper.php +5 -0
  51. includes/Traits/Library.php +21 -1
  52. includes/templates/admin/elements.php +1 -1
  53. languages/essential-addons-for-elementor-lite.pot +307 -299
  54. readme.txt +15 -2
assets/front-end/css/view/product-grid.css CHANGED
@@ -1996,6 +1996,10 @@
1996
  grid-template-columns: repeat(2, 1fr);
1997
  }
1998
 
 
 
 
 
1999
  .eael-product-grid-column-1 .eael-product-grid.masonry .woocommerce ul.products li.product {
2000
  width: 100%;
2001
  margin: 15px 0;
@@ -2050,6 +2054,10 @@
2050
  grid-template-columns: repeat(2, 1fr);
2051
  }
2052
 
 
 
 
 
2053
  .eael-product-grid-column-tablet-1 .eael-product-grid.masonry .woocommerce ul.products li.product {
2054
  width: 100%;
2055
  margin: 15px 0;
@@ -2121,6 +2129,27 @@
2121
  margin: 0;
2122
  }
2123
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2124
  .eael-product-grid-column-mobile-1 .eael-product-grid.masonry .woocommerce ul.products li.product {
2125
  width: 100%;
2126
  margin: 15px 0;
1996
  grid-template-columns: repeat(2, 1fr);
1997
  }
1998
 
1999
+ .eael-product-list-column-1 .eael-product-grid .woocommerce ul.products {
2000
+ grid-template-columns: 100%;
2001
+ }
2002
+
2003
  .eael-product-grid-column-1 .eael-product-grid.masonry .woocommerce ul.products li.product {
2004
  width: 100%;
2005
  margin: 15px 0;
2054
  grid-template-columns: repeat(2, 1fr);
2055
  }
2056
 
2057
+ .eael-product-list-column-tablet-1 .eael-product-grid .woocommerce ul.products {
2058
+ grid-template-columns: 100%;
2059
+ }
2060
+
2061
  .eael-product-grid-column-tablet-1 .eael-product-grid.masonry .woocommerce ul.products li.product {
2062
  width: 100%;
2063
  margin: 15px 0;
2129
  margin: 0;
2130
  }
2131
 
2132
+ .eael-product-list-column-mobile-1 .eael-product-grid .woocommerce ul.products {
2133
+ grid-template-columns: 100%;
2134
+ }
2135
+ .eael-product-list-column-mobile-1 .eael-product-grid .woocommerce ul.products .eael-product-wrap {
2136
+ -webkit-box-orient: vertical;
2137
+ -webkit-box-direction: normal;
2138
+ -ms-flex-direction: column;
2139
+ flex-direction: column;
2140
+ }
2141
+ .eael-product-list-column-mobile-1 .eael-product-grid .woocommerce ul.products .eael-product-wrap .product-image-wrap,
2142
+ .eael-product-list-column-mobile-1 .eael-product-grid .woocommerce ul.products .eael-product-wrap .product-details-wrap {
2143
+ width: 100%;
2144
+ }
2145
+ .eael-product-list-column-mobile-1 .eael-product-grid .woocommerce ul.products .eael-product-wrap .product-image-wrap {
2146
+ margin-bottom: 15px;
2147
+ }
2148
+ .eael-product-list-column-mobile-1 .eael-product-grid .woocommerce ul.products .eael-product-wrap .product-details-wrap {
2149
+ padding: 0;
2150
+ margin: 0;
2151
+ }
2152
+
2153
  .eael-product-grid-column-mobile-1 .eael-product-grid.masonry .woocommerce ul.products li.product {
2154
  width: 100%;
2155
  margin: 15px 0;
assets/front-end/css/view/product-grid.min.css CHANGED
@@ -1 +1 @@
1
- .table-responsive{width:100%;overflow-x:auto;overflow-y:hidden}.eael-wcpc-wrapper img{display:block;margin:auto}.eael-wcpc-wrapper th i{padding-right:10px;color:#dcdcdc}.eael-wcpc-wrapper .wcpc-table-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eael-wcpc-wrapper .wcpc-table-header .wcpc-title{word-break:break-word}.eael-wcpc-wrapper .elementor-icon{font-size:20px;margin-right:10px}.eael-wcpc-wrapper table td{text-align:center}.eael-wcpc-wrapper.custom{--h-bg: #2d1e87;--h-text-clr: #fff;--h-border-clr: #b6aaff;--text-clr: #707070;--text-bold-clr: #252525;--btn-bg: #6752e5;--btn-bg-hover: #ff9582;--btn-text: #fff;--image-bg: #6b55ec;--container-bg: #fff;--icon-color: #c3ccdc;background:var(--container-bg);overflow-x:scroll}.eael-wcpc-wrapper.custom table{border-collapse:collapse;border-spacing:0;max-width:none}.eael-wcpc-wrapper.custom table .icon{width:16px;margin-right:6px;fill:var(--icon-color)}.eael-wcpc-wrapper.custom table th,.eael-wcpc-wrapper.custom table td{padding:15px;border:1px solid var(--h-border-clr);border-collapse:collapse}.eael-wcpc-wrapper.custom table th.first-th{border:none;padding-left:5px}.eael-wcpc-wrapper.custom table th{color:var(--text-bold-clr);font-weight:normal;max-width:160px;border-left-width:2px;border-collapse:collapse;vertical-align:middle}.eael-wcpc-wrapper.custom table th div{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eael-wcpc-wrapper.custom table td{color:var(--text-clr);text-align:center}.eael-wcpc-wrapper.custom table tr.title{background:var(--h-bg);color:var(--h-text-clr)}.eael-wcpc-wrapper.custom table tr.title th,.eael-wcpc-wrapper.custom table tr.title td{font-size:20px;color:inherit;border:none;border-left:1px solid var(--h-border-clr);border-right:1px solid var(--h-border-clr)}.eael-wcpc-wrapper.custom table tr.image td{vertical-align:middle;border:none}.eael-wcpc-wrapper.custom table .button{border-radius:5px;background:var(--btn-bg);color:var(--btn-text)}.eael-wcpc-wrapper.custom table .button:hover{background:var(--btn-bg-hover)}.eael-wcpc-wrapper.custom.theme-1 table tr.image td{background:var(--image-bg);border-left:1px solid var(--h-border-clr);border-right:1px solid var(--h-border-clr)}.eael-wcpc-wrapper.custom.theme-2{--h-bg: #ff9453;--h-border-clr: #f4ede9;--btn-bg: #ff9453;--btn-bg-hover: #6752e5;--even-row-bg: #fbf8f7}.eael-wcpc-wrapper.custom.theme-2 table tr:nth-of-type(even):not(.title){background:var(--even-row-bg)}.eael-wcpc-wrapper.custom.theme-3{--container-bg: #f9fafc;--btn-bg: #ff907e;--btn-bg-hover: #ff907e;--even-row-bg: #f5f5f8;--h-odd-row-bg: #fdfdff;--first-img-bg: linear-gradient(-130deg, #ffd0b0 0%, #ff907e 100%);--second-img-bg: linear-gradient(-130deg, #ada0ff 0%, #7561f2 100%);--third-img-bg: linear-gradient(-130deg, #6fffac 0%, #23d56e 100%);--firt-btn-bg: #ff907e;--second-btn-bg: #7561f2;--third-btn-bg: #23d56e;padding:20px}.eael-wcpc-wrapper.custom.theme-3 table{-webkit-border-horizontal-spacing:10px}.eael-wcpc-wrapper.custom.theme-3 table tr:nth-of-type(even):not(.title){background:var(--even-row-bg)}.eael-wcpc-wrapper.custom.theme-3 table th,.eael-wcpc-wrapper.custom.theme-3 table td{border:none;-webkit-box-sizing:border-box;box-sizing:border-box}.eael-wcpc-wrapper.custom.theme-3 table tr.title td.featured,.eael-wcpc-wrapper.custom.theme-3 table tr:nth-of-type(odd) td.featured{-webkit-box-shadow:18px 0 10px -10px rgba(86,79,127,.06),-18px 0 10px -10px rgba(86,79,127,.06);box-shadow:18px 0 10px -10px rgba(86,79,127,.06),-18px 0 10px -10px rgba(86,79,127,.06)}.eael-wcpc-wrapper.custom.theme-3 table tr.title{background:initial;color:initial}.eael-wcpc-wrapper.custom.theme-3 table tr.title th,.eael-wcpc-wrapper.custom.theme-3 table tr.title td{color:initial;border-left:none;border-right:none}.eael-wcpc-wrapper.custom.theme-3 table tr.image td{background:initial;border-left:none;border-right:none;padding:0}.eael-wcpc-wrapper.custom.theme-3 table tr.image td span{display:block;width:100%;height:100%;-webkit-box-sizing:border-box;box-sizing:border-box;border-top-left-radius:10px;border-top-right-radius:10px}.eael-wcpc-wrapper.custom.theme-3 table tr.image td>span{padding:20px}.eael-wcpc-wrapper.custom.theme-3 table tr.image td span.inner{padding:0}.eael-wcpc-wrapper.custom.theme-3 table tr.image td.featured span{padding:10px;background:#fff}.eael-wcpc-wrapper.custom.theme-3 table tr.image td:nth-of-type(3n+1) .img-inner{background:var(--first-img-bg)}.eael-wcpc-wrapper.custom.theme-3 table tr.image td:nth-of-type(3n+2) .img-inner{background:var(--second-img-bg)}.eael-wcpc-wrapper.custom.theme-3 table tr.image td:nth-of-type(3n+3) .img-inner{background:var(--third-img-bg)}.eael-wcpc-wrapper.custom.theme-4{--h-bg: none;--h-text-clr: #707070;--h-border-clr: #e8ebf0;--text-clr: #707070;--text-bold-clr: #252525;--btn-bg: #613de6;--btn-bg-hover: #ff9582;--btn-text: #fff;--image-bg: none;--container-bg: #f9fafc}.eael-wcpc-wrapper.custom.theme-4 table{background:#fff}.eael-wcpc-wrapper.custom.theme-4 table th.first-th{background:var(--container-bg)}.eael-wcpc-wrapper.custom.theme-4 table tr.title th,.eael-wcpc-wrapper.custom.theme-4 table tr.title td{font-size:20px;color:inherit;border:1px solid var(--h-border-clr)}.eael-wcpc-wrapper.custom.theme-4 table tr.image td{position:relative;border:1px solid var(--h-border-clr);overflow:hidden}.eael-wcpc-wrapper.custom.theme-4 table tr.image .ribbon{position:absolute;left:-44px;top:10px;background:var(--btn-bg);color:var(--btn-text);padding:3px 50px;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:center;-ms-transform-origin:center;transform-origin:center}.eael-wcpc-wrapper.custom.theme-4 table tr.image .product-title,.eael-wcpc-wrapper.custom.theme-4 table tr.image .woocommerce-Price-amount{font-size:18px;font-weight:bold}.eael-wcpc-wrapper.custom.theme-4 table tr.image .product-title{color:var(--text-bold-clr);margin:0 auto 10px}.eael-wcpc-wrapper.custom.theme-4 table tr.image .woocommerce-Price-amount{color:var(--btn-bg)}.eael-wcpc-wrapper.custom.theme-5{--first-row-color: #fff;--first-col-bg: #6a3ee8;--second-col-bg: #3e5ae8;--third-col-bg: #15e9c9;--first-img-bg: #f4f0ff;--second-img-bg: #eaedff;--third-img-bg: #e5fffb;--h-bg: none;--h-text-clr: #707070;--h-border-clr: #e8ebf0;--first-btn-bg: #6a3ee8;--second-btn-bg: #3e5ae8;--third-btn-bg: #15e9c9;--image-bg: none}.eael-wcpc-wrapper.custom.theme-5 table th{border:none}.eael-wcpc-wrapper.custom.theme-5 table th.first-th{background:var(--container-bg)}.eael-wcpc-wrapper.custom.theme-5 table td:nth-of-type(3n+1) .button{background:var(--first-btn-bg)}.eael-wcpc-wrapper.custom.theme-5 table td:nth-of-type(3n+1) .button:hover{background:#5827e5}.eael-wcpc-wrapper.custom.theme-5 table td:nth-of-type(3n+2) .button{background:var(--second-btn-bg)}.eael-wcpc-wrapper.custom.theme-5 table td:nth-of-type(3n+2) .button:hover{background:#2747e5}.eael-wcpc-wrapper.custom.theme-5 table td:nth-of-type(3n+3) .button{background:var(--third-btn-bg)}.eael-wcpc-wrapper.custom.theme-5 table td:nth-of-type(3n+3) .button:hover{background:#13d2b5}.eael-wcpc-wrapper.custom.theme-5 table tr.title th,.eael-wcpc-wrapper.custom.theme-5 table tr.title td{font-size:20px;color:inherit;border:none}.eael-wcpc-wrapper.custom.theme-5 table tr.image td:nth-of-type(3n+1){background:var(--first-img-bg)}.eael-wcpc-wrapper.custom.theme-5 table tr.image td:nth-of-type(3n+2){background:var(--second-img-bg)}.eael-wcpc-wrapper.custom.theme-5 table tr.image td:nth-of-type(3n+3){background:var(--third-img-bg)}.eael-wcpc-wrapper.custom.theme-5 table tr.title td:nth-of-type(3n+1){background:var(--first-col-bg)}.eael-wcpc-wrapper.custom.theme-5 table tr.title td:nth-of-type(3n+2){background:var(--second-col-bg)}.eael-wcpc-wrapper.custom.theme-5 table tr.title td:nth-of-type(3n+3){background:var(--third-col-bg)}.eael-wcpc-wrapper.custom.theme-5 table tr.image td,.eael-wcpc-wrapper.custom.theme-5 table tr.title td{border:none;border-right:2px solid var(--first-row-color);color:var(--first-row-color)}.eael-wcpc-wrapper.custom.theme-5 table tr.image td:last-child,.eael-wcpc-wrapper.custom.theme-5 table tr.title td:last-child{border-right:none}.eael-wcpc-wrapper.custom.theme-6{--container-bg: #f0eff6;--first-row-color: #fff;--first-col-bg: #fd907b;--second-col-bg: #7f6cf4;--third-col-bg: #3ae281;--first-img-bg: #f4f0ff;--second-img-bg: #eaedff;--third-img-bg: #e5fffb;--h-bg: none;--h-text-clr: #707070;--h-border-clr: #e8ebf0;--image-bg: none}.eael-wcpc-wrapper.custom.theme-6 table tr.title th,.eael-wcpc-wrapper.custom.theme-6 table tr.title td{border-left:0;border-right:0}.eael-wcpc-wrapper.custom.theme-6 table tr.title td{color:#fff}.eael-wcpc-wrapper.custom.theme-6 table tr,.eael-wcpc-wrapper.custom.theme-6 table th,.eael-wcpc-wrapper.custom.theme-6 table td{border:none}.eael-wcpc-wrapper.custom.theme-6 table td{color:#fff;border-right:20px solid #fff}.eael-wcpc-wrapper.custom.theme-6 table td:last-child{border-right:none}.eael-wcpc-wrapper.custom.theme-6 table td:nth-of-type(3n+1){background:var(--first-col-bg)}.eael-wcpc-wrapper.custom.theme-6 table td:nth-of-type(3n+2){background:var(--second-col-bg)}.eael-wcpc-wrapper.custom.theme-6 table td:nth-of-type(3n+3){background:var(--third-col-bg)}.eael-wcpc-wrapper.custom.theme-6 table tr:nth-of-type(even) th,.eael-wcpc-wrapper.custom.theme-6 table tr:nth-of-type(even) td{background:#f7f6fa}.eael-wcpc-wrapper.custom.theme-6 table tr:nth-of-type(even) td:nth-of-type(3n+1){background:#fec1b5}.eael-wcpc-wrapper.custom.theme-6 table tr:nth-of-type(even) td:nth-of-type(3n+2){background:#b7adf9}.eael-wcpc-wrapper.custom.theme-6 table tr:nth-of-type(even) td:nth-of-type(3n+3){background:#91efb8}.eael-wcpc-wrapper.custom.theme-6 table tr.image td,.eael-wcpc-wrapper.custom.theme-6 table tr.title td{border:none;border-right:20px solid #fff}.eael-wcpc-wrapper.custom.theme-6 table tr.image td:last-child,.eael-wcpc-wrapper.custom.theme-6 table tr.title td:last-child{border-right:none}.eael-wcpc-wrapper.custom.theme-6 table .button{background:#fff}.eael-wcpc-wrapper.custom.theme-6 table .button:hover{background:#fff}.eael-wcpc-wrapper.custom.theme-6 table td:nth-of-type(3n+1) .button{color:var(--first-col-bg)}.eael-wcpc-wrapper.custom.theme-6 table td:nth-of-type(3n+1) .button:hover{color:#fb3c17}.eael-wcpc-wrapper.custom.theme-6 table td:nth-of-type(3n+2) .button{color:var(--second-col-bg)}.eael-wcpc-wrapper.custom.theme-6 table td:nth-of-type(3n+2) .button:hover{color:#2f11e9}.eael-wcpc-wrapper.custom.theme-6 table td:nth-of-type(3n+3) .button{color:var(--third-col-bg)}.eael-wcpc-wrapper.custom.theme-6 table td:nth-of-type(3n+3) .button:hover{color:#179f51}.eael-wcpc-wrapper.custom.theme-6 .img-inner{display:block;background:rgba(228,228,228,.45);border-radius:6px}@media screen and (min-width: 769px){.eael-wcpc-wrapper:not(.theme-4) tr.image td{padding:10px}.theme-4 tr.image td{padding:50px 10px}}.eael-product-grid .woocommerce ul.products,.eael-post-grid .woocommerce ul.products{display:grid;grid-gap:25px;margin:0 0 15px 0;padding:0 !important}.eael-product-grid .woocommerce ul.products:before,.eael-product-grid .woocommerce ul.products:after,.eael-post-grid .woocommerce ul.products:before,.eael-post-grid .woocommerce ul.products:after{display:none}.eael-product-grid .woocommerce ul.products .product,.eael-post-grid .woocommerce ul.products .product{width:100%;margin:0;padding:0}.eael-product-grid .woocommerce ul.products .product .eael-wc-compare,.eael-post-grid .woocommerce ul.products .product .eael-wc-compare{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around;cursor:pointer;color:#fff;background-color:#333;margin:15px}.eael-product-grid .woocommerce ul.products .product .eael-wc-compare:hover,.eael-post-grid .woocommerce ul.products .product .eael-wc-compare:hover{color:#fff;background-color:#333}.eael-product-grid .woocommerce ul.products .product .eael-wc-compare-loader,.eael-post-grid .woocommerce ul.products .product .eael-wc-compare-loader{display:none;width:1.5rem}.eael-product-grid .woocommerce ul.products .product .star-rating,.eael-post-grid .woocommerce ul.products .product .star-rating{margin:0 auto 5px;display:inline-block;float:none;height:1em;width:5.6em;font-size:1em;line-height:1em}.eael-product-grid .woocommerce ul.products .product .star-rating:before,.eael-post-grid .woocommerce ul.products .product .star-rating:before{content:"";font-family:"Font Awesome 5 Free";font-weight:400;opacity:1}.eael-product-grid .woocommerce ul.products .product .star-rating span,.eael-post-grid .woocommerce ul.products .product .star-rating span{display:inline-block}.eael-product-grid .woocommerce ul.products .product .star-rating span:before,.eael-post-grid .woocommerce ul.products .product .star-rating span:before{content:"";font-family:"Font Awesome 5 Free";font-weight:900}.eael-product-grid .woocommerce ul.products.products[class*=columns-] li.product,.eael-post-grid .woocommerce ul.products.products[class*=columns-] li.product{width:100%}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product{position:relative;float:left;display:block;overflow:hidden;text-align:center;padding:0;border-radius:0;background-color:#fff;-webkit-box-shadow:none;box-shadow:none}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product a,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product a,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product a,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product a{text-decoration:none}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product a:hover,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product a:hover,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product a:hover,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product a:hover{outline:none;-webkit-box-shadow:none;box-shadow:none}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product img,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product img,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product img,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product img{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;height:auto;margin:auto;max-width:100%;-webkit-backface-visibility:hidden;backface-visibility:hidden}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .woocommerce-loop-product__title,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .woocommerce-loop-product__title,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .woocommerce-loop-product__title,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .woocommerce-loop-product__title{font-size:16px;font-weight:700;line-height:1;color:#333;margin:25px 0 12px;padding:0}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .onsale,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .onsale,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .onsale,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .onsale{display:block;line-height:170px;font-size:13px;text-align:center;letter-spacing:0;text-shadow:0 1px 1px rgba(0,0,0,.6);text-transform:uppercase;color:#fff;background-color:#ff2a13;border-radius:0;border:none;-webkit-box-shadow:none;box-shadow:none;position:absolute;height:100px;width:200px;z-index:1;left:-100px;top:-50px;right:auto;margin:0;padding:0;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .outofstock-badge,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .outofstock-badge,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .outofstock-badge,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .outofstock-badge{line-height:16px;font-size:13px;font-weight:600;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;letter-spacing:0;text-shadow:0 1px 1px rgba(0,0,0,.6);text-transform:uppercase;color:#fff;background-color:#ff2a13;border-radius:0;border:none;-webkit-box-shadow:none;box-shadow:none;position:absolute;height:100px;width:200px;z-index:1;left:-95px;top:-45px;right:auto;margin:0;padding:0;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .price,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .price,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .price,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .price{font-size:14px;margin-bottom:0}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .price del,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .price del,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .price del,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .price del{opacity:.5;display:inline-block}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .price ins,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .price ins,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .price ins,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .price ins{font-weight:400;background-color:transparent;color:#ff2a13}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .star-rating,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .star-rating,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .star-rating,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .star-rating{display:block;float:none;font-size:14px;margin:10px auto}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .button,.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .button.add_to_cart_button,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .button,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .button.add_to_cart_button,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button{display:block;font-size:14px;font-weight:400;line-height:38px;text-align:center;text-transform:uppercase;color:#fff;background-color:#333;padding:0;margin:15px;border-radius:0}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .button::before,.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .button.add_to_cart_button::before,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button::before,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button::before,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .button::before,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .button.add_to_cart_button::before,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button::before,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button::before{content:"";font-family:"Font Awesome 5 Free";font-weight:900;padding-right:8px}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .button.product_type_variable:before,.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .button.add_to_cart_button.product_type_variable:before,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button.product_type_variable:before,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button.product_type_variable:before,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .button.product_type_variable:before,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .button.add_to_cart_button.product_type_variable:before,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button.product_type_variable:before,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button.product_type_variable:before{content:""}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .button:focus,.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .button.add_to_cart_button:focus,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button:focus,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button:focus,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .button:focus,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .button.add_to_cart_button:focus,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button:focus,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button:focus{outline:none}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .button::before,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button::before,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .button::before,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button::before{content:none}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .eael-wc-compare,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .eael-wc-compare,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .eael-wc-compare,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .eael-wc-compare{color:#fff;background-color:#333}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product a.added_to_cart,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product a.added_to_cart,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product a.added_to_cart,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product a.added_to_cart{display:block;margin:0 0 15px 0;padding:0;font-size:14px;line-height:1;text-transform:capitalize;color:#333;background-color:transparent}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product{border:1px solid #eee}.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product{border:1px solid transparent}.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .eael-wc-compare,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product a.added_to_cart,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .eael-wc-compare,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product a.added_to_cart{visibility:hidden;-webkit-transition:none;-o-transition:none;transition:none}.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product:hover,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product:hover{border:1px solid #eee}.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product:hover .eael-wc-compare,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product:hover .button,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product:hover .button.add_to_cart_button,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product:hover a.added_to_cart,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product:hover .eael-wc-compare,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product:hover .button,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product:hover .button.add_to_cart_button,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product:hover a.added_to_cart{visibility:visible}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product{position:relative;float:left;overflow:hidden;text-align:center;padding:0 0 15px 0;border-radius:0;background-color:#fff;-webkit-box-shadow:none;box-shadow:none}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product a,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product a{text-decoration:none}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product a:hover,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product a:hover{outline:none;-webkit-box-shadow:none;box-shadow:none}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product img,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product img{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;max-width:100%;height:auto;margin:auto;-webkit-backface-visibility:hidden;backface-visibility:hidden}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay{position:relative;overflow:hidden;line-height:0}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .button-wrap,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .button-wrap{position:absolute;top:50%;left:0;right:0;text-align:center;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .eael-wc-compare,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .product-link,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .eael-wc-compare,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .product-link,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:14px;line-height:38px;text-align:center;color:#fff;background-color:#333;width:38px;height:38px;border-style:none;border-radius:50%;vertical-align:middle;padding:0;margin:0 5px;-webkit-transform:translateY(20px);-ms-transform:translateY(20px);transform:translateY(20px);opacity:0;-webkit-transition:opacity 300ms,-webkit-transform 200ms;transition:opacity 300ms,-webkit-transform 200ms;-o-transition:transform 200ms,opacity 300ms;transition:transform 200ms,opacity 300ms;transition:transform 200ms,opacity 300ms,-webkit-transform 200ms}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .eael-wc-compare:focus,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .product-link:focus,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button:focus,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart:focus,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .eael-wc-compare:focus,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .product-link:focus,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button:focus,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart:focus{outline:none}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button{font-size:0}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button:before,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button:before{display:none}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button:after,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button:after{content:"";font-size:14px;line-height:38px;text-rendering:auto;-webkit-font-smoothing:antialiased;vertical-align:middle;margin:0;padding:0;font-family:"Font Awesome 5 Free";font-weight:900}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button.product_type_variable:after,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button.product_type_variable:after{content:""}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button.loading:before,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button.loading:before{display:none}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button.loading:after,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button.loading:after{content:"";display:inline-block;font-weight:normal;font-family:"Font Awesome 5 Free";font-size:14px;line-height:38px;color:#fff;height:auto;width:auto;position:relative;top:0;left:0;margin:0;padding:0}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart{font-size:0}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart:after,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart:after{content:"";font-family:"Font Awesome 5 Free";font-size:14px;line-height:38px;font-weight:900;color:#fff;text-rendering:auto;-webkit-font-smoothing:antialiased;vertical-align:middle;margin:0;padding:0}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .woocommerce-loop-product__title,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .woocommerce-loop-product__title{font-size:16px;font-weight:700;line-height:1;color:#333;margin:25px 0 12px;padding:0}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .onsale,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .onsale{display:block;line-height:170px;font-size:13px;text-align:center;letter-spacing:0;text-shadow:0 1px 1px rgba(0,0,0,.6);text-transform:uppercase;color:#fff;background-color:#ff2a13;border-radius:0;border:none;-webkit-box-shadow:none;box-shadow:none;position:absolute;height:100px;width:200px;z-index:1;left:-100px;top:-50px;right:auto;margin:0;padding:0;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .outofstock-badge,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .outofstock-badge{line-height:16px;font-size:13px;font-weight:600;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;letter-spacing:0;text-shadow:0 1px 1px rgba(0,0,0,.6);text-transform:uppercase;color:#fff;background-color:#ff2a13;border-radius:0;border:none;-webkit-box-shadow:none;box-shadow:none;position:absolute;height:100px;width:200px;z-index:9;left:-95px;top:-45px;right:auto;margin:0;padding:0;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .price,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .price{font-size:14px;margin-bottom:0}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .price del,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .price del{opacity:.5;display:inline-block}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .price ins,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .price ins{font-weight:400;background-color:transparent;color:#ff2a13}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .star-rating,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .star-rating{display:block;float:none;font-size:14px;margin:10px auto}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .eael-wc-compare,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .eael-wc-compare{padding:5px !important}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product:hover .overlay .eael-wc-compare,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product:hover .overlay a,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product:hover .overlay .add_to_cart_button,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product:hover .overlay .eael-wc-compare,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product:hover .overlay a,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product:hover .overlay .add_to_cart_button{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}.eael-product-grid.eael-product-default .woocommerce ul.products li.product,.eael-post-grid.eael-product-default .woocommerce ul.products li.product{overflow:visible !important}.eael-product-grid.eael-product-default .woocommerce ul.products li.product .onsale,.eael-post-grid.eael-product-default .woocommerce ul.products li.product .onsale{line-height:inherit;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eael-product-grid.eael-product-default .woocommerce ul.products li.product .outofstock-badge,.eael-post-grid.eael-product-default .woocommerce ul.products li.product .outofstock-badge{min-height:3.746em;min-width:3.746em;padding:.502em;font-size:13px;font-weight:700;position:absolute;text-align:center;line-height:1.25;top:-0.5em;left:-0.5em;margin:0;border-radius:50%;background-color:#ff2a13;color:#fff;font-size:.857em;z-index:9}.eael-product-grid.eael-product-default .button.add_to_cart_button::before,.eael-post-grid.eael-product-default .button.add_to_cart_button::before{content:"";font-family:"Font Awesome 5 Free";font-weight:900;padding-right:8px}.eael-product-grid.eael-product-default .button.add_to_cart_button.product_type_variable:before,.eael-post-grid.eael-product-default .button.add_to_cart_button.product_type_variable:before{content:""}.eael-product-grid.eael-product-preset-5 ul.products li.product .image-wrap img,.eael-product-grid.eael-product-preset-6 ul.products li.product .image-wrap img,.eael-product-grid.eael-product-preset-7 ul.products li.product .image-wrap img,.eael-product-grid.eael-product-preset-8 ul.products li.product .image-wrap img,.eael-post-grid.eael-product-preset-5 ul.products li.product .image-wrap img,.eael-post-grid.eael-product-preset-6 ul.products li.product .image-wrap img,.eael-post-grid.eael-product-preset-7 ul.products li.product .image-wrap img,.eael-post-grid.eael-product-preset-8 ul.products li.product .image-wrap img{-webkit-backface-visibility:hidden;backface-visibility:hidden}.eael-wcpc-modal{position:fixed;top:50px;right:0;bottom:50px;left:0;margin-left:auto;margin-right:auto;width:1080px;max-width:90%;background:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;z-index:9999999}.modal__content{width:100%;height:100%;overflow:hidden auto}.wcpc-overlay{position:fixed;top:0;left:0;width:100%;height:100vh;z-index:10;background:rgba(0,0,0,.5);pointer-events:none}.wcpc-overlay,.eael-wcpc-modal{visibility:hidden;opacity:0;-webkit-transition:all .5s ease;-o-transition:all .5s ease;transition:all .5s ease}.close-modal{position:absolute;top:-10px;right:-10px;cursor:pointer;display:block;border-radius:50%;color:#fff;background:#000;font-size:30px;font-weight:bold;text-align:center;line-height:23px;-webkit-box-shadow:-1px 0px 3px 0 #000;box-shadow:-1px 0px 3px 0 #000;-webkit-transition:-webkit-transform 300ms ease;transition:-webkit-transform 300ms ease;-o-transition:transform 300ms ease;transition:transform 300ms ease;transition:transform 300ms ease, -webkit-transform 300ms ease}.eael-wcpc-wrapper .eael-wc-remove,.eael-wcpc-wrapper.custom .eael-wc-remove{cursor:pointer;-webkit-transition:all 400ms ease;-o-transition:all 400ms ease;transition:all 400ms ease}.eael-wcpc-wrapper .eael-wc-remove.disable,.eael-wcpc-wrapper.custom .eael-wc-remove.disable{color:#a0a0a0 !important;-webkit-transform:scale(1) !important;-ms-transform:scale(1) !important;transform:scale(1) !important}.eael-wcpc-wrapper .eael-wc-remove:hover,.eael-wcpc-wrapper.custom .eael-wc-remove:hover{color:red;-webkit-transform:scale(2);-ms-transform:scale(2);transform:scale(2)}.eael-wcpc-wrapper .remove-row,.eael-wcpc-wrapper.custom .remove-row{border:none}.eael-wcpc-wrapper .remove-row th,.eael-wcpc-wrapper .remove-row td,.eael-wcpc-wrapper.custom .remove-row th,.eael-wcpc-wrapper.custom .remove-row td{border:none;text-align:center}.eael-product-grid .woocommerce ul.products li.product a img{margin-bottom:0;display:block;width:100%;-webkit-backface-visibility:hidden;backface-visibility:hidden}.eael-product-grid .woocommerce ul.products li.product .woocommerce-loop-product__title{letter-spacing:normal;font-weight:700;text-transform:capitalize}.eael-product-grid .woocommerce ul.products li.product ins{background:transparent}.eael-product-grid .woocommerce ul.products li.product .button{text-transform:capitalize;border:none;letter-spacing:normal;-webkit-box-shadow:none;box-shadow:none}.eael-product-grid .woocommerce ul.products li.product .button:hover,.eael-product-grid .woocommerce ul.products li.product .button:visited{text-decoration:none}.eael-product-grid .woocommerce ul.products li.product .star-rating{margin:0 auto 5px;display:inline-block;float:none;height:1em;width:5.6em;font-size:1em;line-height:1em}.eael-product-grid .woocommerce ul.products li.product .star-rating:before{content:"";font-family:"Font Awesome 5 Free";font-weight:400;opacity:1}.eael-product-grid .woocommerce ul.products li.product .star-rating span{display:inline-block}.eael-product-grid .woocommerce ul.products li.product .star-rating span:before{content:"";font-family:"Font Awesome 5 Free";font-weight:900}.eael-product-grid .eael-woo-pagination ul{display:inline-block;text-align:center;white-space:nowrap;padding:0;clear:both;border:0;margin:1px;width:auto}.eael-product-grid .eael-woo-pagination ul li{display:inline-block;margin:0 5px 5px 0;padding:0;float:left;overflow:hidden}.eael-product-grid .eael-woo-pagination ul li .page-numbers{margin:0;text-decoration:none;color:#000000bd;line-height:1;font-size:1em;font-weight:normal;padding:.75em;display:block;min-width:2.5em;-webkit-box-sizing:inherit;box-sizing:inherit;border:none}.eael-product-grid .eael-woo-pagination ul li .page-numbers.current,.eael-product-grid .eael-woo-pagination ul li .page-numbers:hover,.eael-product-grid .eael-woo-pagination ul li .page-numbers:focus{color:#fff;background:#000000bd}.eael-product-grid .woocommerce ul.products .product{overflow-y:auto}.eael-product-grid .eael-load-more-button-wrap{clear:both;margin-top:40px}.eael-product-grid .eael-product-wrap .eael-onsale{padding:5px 10px;font-size:12px;font-weight:500;position:absolute;text-align:center;line-height:1.2em;top:30px;left:0;margin:0;background-color:#ff7a80;color:#fff;z-index:9}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-1.outofstock br{display:none}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-1.right{left:auto;right:0}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-2{padding:0;top:5px;left:5px;display:inline-table;min-width:50px;min-height:50px;line-height:50px;border-radius:100%;-webkit-font-smoothing:antialiased}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-2.outofstock{line-height:normal;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-2.right{left:auto;right:5px}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-3{border-radius:50px;left:15px;top:15px}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-3.outofstock br{display:none}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-3.right{left:auto;right:15px}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-4{left:0;top:15px}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-4.outofstock br{display:none}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-4:after{position:absolute;right:-15px;bottom:0px;width:15px;height:24px;border-top:12px solid transparent;border-bottom:12px solid transparent;border-left:10px solid #23a454;content:""}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-4.right{left:auto;right:0}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-4.right:after{right:auto;left:-15px;border-left:0;border-right:10px solid #23a454}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-5{display:block;line-height:74px;height:60px;width:120px;left:-39px;top:-10px;right:auto;padding:0;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-5.outofstock{line-height:normal;padding-top:12px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-5.right{left:auto;right:-35px;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.eael-product-grid .eael-product-wrap .eael-product-title h2{font-size:20px;line-height:1.2em;color:#252525;font-weight:500;margin:0 0 8px;padding:0}.eael-product-grid .eael-product-wrap .eael-product-title h2:before{content:none}.eael-product-grid .eael-product-wrap .eael-product-price{font-size:18px;line-height:1.2em;color:#ff7a80;font-weight:600;margin-bottom:10px}.eael-product-grid .eael-product-wrap .star-rating{margin:0 auto 10px}.eael-product-grid .eael-product-wrap a.button.add_to_cart_button.added{display:none !important}.eael-product-grid.grid .eael-product-wrap:hover .icons-wrap.box-style,.eael-product-grid.masonry .eael-product-wrap:hover .icons-wrap.box-style{bottom:30px;visibility:visible;opacity:1}.eael-product-grid.grid .eael-product-wrap:hover .icons-wrap.block-box-style,.eael-product-grid.masonry .eael-product-wrap:hover .icons-wrap.block-box-style{visibility:visible;opacity:1;-webkit-transform:translateY(-50px);-ms-transform:translateY(-50px);transform:translateY(-50px)}.eael-product-grid.grid .eael-product-wrap:hover .icons-wrap.block-style,.eael-product-grid.masonry .eael-product-wrap:hover .icons-wrap.block-style{visibility:visible;opacity:1;-webkit-transform:translateY(-50px);-ms-transform:translateY(-50px);transform:translateY(-50px)}.eael-product-grid.grid .eael-product-wrap .product-image-wrap,.eael-product-grid.masonry .eael-product-wrap .product-image-wrap{position:relative;overflow:hidden}.eael-product-grid.grid .eael-product-wrap .icons-wrap,.eael-product-grid.masonry .eael-product-wrap .icons-wrap{padding:0;list-style:none;position:absolute;z-index:9;display:block;top:50%;left:0;right:0;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);opacity:0;visibility:hidden;-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;margin:0 auto;-webkit-transition:all ease .4s;-o-transition:all ease .4s;transition:all ease .4s}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-style,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-style{background:red;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:stretch;-ms-flex-pack:stretch;justify-content:stretch;width:100%;top:auto;bottom:-50px}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-style li,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-style li{-webkit-box-flex:1;-ms-flex:1;flex:1}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-style li:not(:last-child),.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-style li:not(:last-child){border-right:1px solid #fff}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-style li.add-to-cart,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-style li.add-to-cart{-webkit-box-flex:4;-ms-flex:4;flex:4}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-style li a,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-style li a{position:relative;background-color:transparent;margin:0;padding:10px 5px;font-size:15px;line-height:1.2em;color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-style li a:hover,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-style li a:hover{background-color:transparent;color:#000}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-style li a i,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-style li a i{line-height:normal}.eael-product-grid.grid .eael-product-wrap .icons-wrap.box-style,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.box-style{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;top:auto;bottom:-100px}.eael-product-grid.grid .eael-product-wrap .icons-wrap.box-style li a,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.box-style li a{position:relative;width:42px;height:42px;margin:3px;-webkit-box-shadow:0px 15px 10px rgba(61,70,79,.12);box-shadow:0px 15px 10px rgba(61,70,79,.12);background-color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eael-product-grid.grid .eael-product-wrap .icons-wrap.box-style li a i,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.box-style li a i{line-height:1rem}.eael-product-grid.grid .eael-product-wrap .icons-wrap.box-style li a.added_to_cart,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.box-style li a.added_to_cart{font-size:0}.eael-product-grid.grid .eael-product-wrap .icons-wrap.box-style li a.added_to_cart:after,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.box-style li a.added_to_cart:after{content:"";font-weight:900;font-family:"Font Awesome 5 Free";font-size:18px;text-rendering:auto;-webkit-font-smoothing:antialiased;vertical-align:middle;margin:0;padding:0}.eael-product-grid.grid .eael-product-wrap .icons-wrap.box-style li a.button.add_to_cart_button,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.box-style li a.button.add_to_cart_button{padding:0;margin:3px;font-size:0px}.eael-product-grid.grid .eael-product-wrap .icons-wrap.box-style li a.button.add_to_cart_button:before,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.box-style li a.button.add_to_cart_button:before{content:"";display:block;font-family:"Font Awesome 5 Free";font-size:18px;font-weight:900;-webkit-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);transform:translate(-50%, -50%);top:50%;left:50%;position:absolute}.eael-product-grid.grid .eael-product-wrap .icons-wrap.box-style li a.button.add_to_cart_button.product_type_variable:before,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.box-style li a.button.add_to_cart_button.product_type_variable:before{content:""}.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;-webkit-box-align:center;-ms-flex-align:center;align-items:center;visibility:visible;opacity:1;top:auto;bottom:-24px;margin:0 5%}.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style li a,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style li a{position:relative;width:42px;height:42px;margin:3px;-webkit-box-shadow:0px 15px 10px rgba(61,70,79,.12);box-shadow:0px 15px 10px rgba(61,70,79,.12);background-color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style li a i,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style li a i{line-height:1rem}.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style li a.added_to_cart,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style li a.added_to_cart{font-size:0}.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style li a.added_to_cart:after,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style li a.added_to_cart:after{content:"";font-weight:900;font-family:"Font Awesome 5 Free";font-size:18px;line-height:38px;text-rendering:auto;-webkit-font-smoothing:antialiased;vertical-align:middle;margin:0;padding:0}.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style li a.button.add_to_cart_button,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style li a.button.add_to_cart_button{padding:0;margin:0;font-size:0px}.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style li a.button.add_to_cart_button:before,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style li a.button.add_to_cart_button:before{content:"";display:block;font-family:"Font Awesome 5 Free";font-size:18px;font-weight:900;-webkit-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);transform:translate(-50%, -50%);top:50%;left:50%;position:absolute}.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style li a.button.add_to_cart_button.product_type_variable:before,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style li a.button.add_to_cart_button.product_type_variable:before{content:""}.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style li a.product_type_external,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style li a.product_type_external{width:auto;height:auto}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-box-style,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style{background:#fff;width:100%;top:auto;bottom:-50px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-box-style li a,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style li a{position:relative;width:42px;height:42px;margin:10px 2px 0;padding:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-box-style li a i,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style li a i{line-height:1rem}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-box-style li a.added_to_cart,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style li a.added_to_cart{font-size:0}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-box-style li a.added_to_cart:after,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style li a.added_to_cart:after{content:"";font-weight:900;font-family:"Font Awesome 5 Free";font-size:18px;text-rendering:auto;-webkit-font-smoothing:antialiased;vertical-align:middle;margin:0;padding:0}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-box-style li a.button.add_to_cart_button,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style li a.button.add_to_cart_button{padding:0;margin:10px 2px 0;font-size:0px}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-box-style li a.button.add_to_cart_button:before,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style li a.button.add_to_cart_button:before{content:"";display:block;font-family:"Font Awesome 5 Free";font-size:18px;font-weight:900;-webkit-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);transform:translate(-50%, -50%);top:50%;left:50%;position:absolute}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-box-style li a.button.add_to_cart_button.product_type_variable:before,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style li a.button.add_to_cart_button.product_type_variable:before{content:""}.eael-product-grid.grid .eael-product-wrap .icons-wrap li,.eael-product-grid.masonry .eael-product-wrap .icons-wrap li{display:inline-block;margin:0;padding:0}.eael-product-grid.grid .eael-product-wrap .icons-wrap li a,.eael-product-grid.masonry .eael-product-wrap .icons-wrap li a{display:block;position:absolute;color:#000;width:100%;height:100%;text-align:center;-webkit-transition:all ease .4s;-o-transition:all ease .4s;transition:all ease .4s}.eael-product-grid.grid .eael-product-wrap .icons-wrap li a:hover,.eael-product-grid.masonry .eael-product-wrap .icons-wrap li a:hover{background:#ff7a80;color:#fff}.eael-product-grid.grid .eael-product-wrap .icons-wrap li a i,.eael-product-grid.masonry .eael-product-wrap .icons-wrap li a i{position:relative;font-size:18px;line-height:42px}.eael-product-grid.grid .eael-product-wrap .icons-wrap li a svg,.eael-product-grid.masonry .eael-product-wrap .icons-wrap li a svg{width:18px}.eael-product-grid.grid .eael-product-wrap .product-details-wrap,.eael-product-grid.masonry .eael-product-wrap .product-details-wrap{padding:10px}.eael-product-grid.masonry .woocommerce ul.products{display:block}@media(min-width: 766px){.eael-product-grid.masonry .woocommerce ul.products{margin:0 -1% !important}}.eael-product-grid.masonry .woocommerce ul.products:before,.eael-product-grid.masonry .woocommerce ul.products:after{display:table;content:" "}.eael-product-grid.masonry .woocommerce ul.products li.product{float:left;margin:15px 0}@media(min-width: 766px){.eael-product-grid.masonry .woocommerce ul.products li.product{margin:1%}}.eael-product-grid.grid.eael-product-preset-8 .product-image-wrap,.eael-product-grid.masonry.eael-product-preset-8 .product-image-wrap{overflow:inherit}.eael-product-grid.grid.eael-product-preset-8 .product-details-wrap>div:first-child,.eael-product-grid.masonry.eael-product-preset-8 .product-details-wrap>div:first-child{margin-top:20px}.eael-product-grid.grid.eael-product-preset-5 ul.products,.eael-product-grid.grid.eael-product-preset-6 ul.products,.eael-product-grid.grid.eael-product-preset-7 ul.products,.eael-product-grid.grid.eael-product-preset-8 ul.products,.eael-product-grid.masonry.eael-product-preset-5 ul.products,.eael-product-grid.masonry.eael-product-preset-6 ul.products,.eael-product-grid.masonry.eael-product-preset-7 ul.products,.eael-product-grid.masonry.eael-product-preset-8 ul.products{padding:0;margin:0;list-style:none}.eael-product-grid.grid.eael-product-preset-5 ul.products li.product,.eael-product-grid.grid.eael-product-preset-6 ul.products li.product,.eael-product-grid.grid.eael-product-preset-7 ul.products li.product,.eael-product-grid.grid.eael-product-preset-8 ul.products li.product,.eael-product-grid.masonry.eael-product-preset-5 ul.products li.product,.eael-product-grid.masonry.eael-product-preset-6 ul.products li.product,.eael-product-grid.masonry.eael-product-preset-7 ul.products li.product,.eael-product-grid.masonry.eael-product-preset-8 ul.products li.product{text-align:center;border:1px solid #000;overflow:hidden}.eael-product-grid.grid.eael-product-preset-5 ul.products li.product.first,.eael-product-grid.grid.eael-product-preset-6 ul.products li.product.first,.eael-product-grid.grid.eael-product-preset-7 ul.products li.product.first,.eael-product-grid.grid.eael-product-preset-8 ul.products li.product.first,.eael-product-grid.masonry.eael-product-preset-5 ul.products li.product.first,.eael-product-grid.masonry.eael-product-preset-6 ul.products li.product.first,.eael-product-grid.masonry.eael-product-preset-7 ul.products li.product.first,.eael-product-grid.masonry.eael-product-preset-8 ul.products li.product.first{clear:none}.eael-product-grid.grid.eael-product-preset-6 .product.outofstock .icons-wrap .button,.eael-product-grid.grid.eael-product-preset-7 .product.outofstock .icons-wrap .button,.eael-product-grid.grid.eael-product-preset-8 .product.outofstock .icons-wrap .button,.eael-product-grid.masonry.eael-product-preset-6 .product.outofstock .icons-wrap .button,.eael-product-grid.masonry.eael-product-preset-7 .product.outofstock .icons-wrap .button,.eael-product-grid.masonry.eael-product-preset-8 .product.outofstock .icons-wrap .button{display:none}.eael-product-grid.grid.eael-product-preset-6 .icons-wrap .button.product_type_grouped,.eael-product-grid.grid.eael-product-preset-7 .icons-wrap .button.product_type_grouped,.eael-product-grid.grid.eael-product-preset-8 .icons-wrap .button.product_type_grouped,.eael-product-grid.masonry.eael-product-preset-6 .icons-wrap .button.product_type_grouped,.eael-product-grid.masonry.eael-product-preset-7 .icons-wrap .button.product_type_grouped,.eael-product-grid.masonry.eael-product-preset-8 .icons-wrap .button.product_type_grouped{display:none}.eael-product-grid.list .woocommerce ul.products li.product{overflow:hidden}.eael-product-grid.list .woocommerce ul.products li.product .woocommerce-loop-product__link img{margin-bottom:0}.eael-product-grid.list .woocommerce ul.products li.product .star-rating{margin:0 auto 10px 0}.eael-product-grid.list .eael-product-list-preset-2 .eael-product-wrap{padding:20px}.eael-product-grid.list .eael-product-list-preset-2 .eael-product-wrap .product-details-wrap{padding:0 0 0 25px}.eael-product-grid.list .eael-product-list-preset-3 .eael-product-wrap{padding:0;background-color:transparent}.eael-product-grid.list .eael-product-list-preset-3 .eael-product-wrap .product-details-wrap{padding:0 0 0 25px}.eael-product-grid.list .eael-product-list-preset-3 .eael-product-wrap .title-wrap,.eael-product-grid.list .eael-product-list-preset-3 .eael-product-wrap .price-wrap{margin-bottom:10px;padding-bottom:10px;border-bottom:1px solid}.eael-product-grid.list .eael-product-list-preset-4 .eael-product-wrap{padding:0}.eael-product-grid.list .eael-product-list-preset-4 .eael-product-wrap .product-details-wrap{padding:20px;margin-left:20px}.eael-product-grid.list .eael-product-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.eael-product-grid.list .eael-product-wrap:hover .icons-wrap.box-style{-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);visibility:visible;opacity:1}.eael-product-grid.list .eael-product-wrap:hover .icons-wrap.block-style{visibility:visible;opacity:1;-webkit-transform:translateY(-50px);-ms-transform:translateY(-50px);transform:translateY(-50px)}.eael-product-grid.list .eael-product-wrap .icons-wrap{padding:0;margin:0;list-style:none;-webkit-transition:all ease .4s;-o-transition:all ease .4s;transition:all ease .4s}.eael-product-grid.list .eael-product-wrap .icons-wrap.block-style{background:red;display:-webkit-box;display:-ms-flexbox;display:flex;height:50px;width:100%;top:auto;bottom:-50px}.eael-product-grid.list .eael-product-wrap .icons-wrap.block-style li{-webkit-box-flex:1;-ms-flex:1;flex:1}.eael-product-grid.list .eael-product-wrap .icons-wrap.block-style li.add-to-cart{-webkit-box-flex:4;-ms-flex:4;flex:4}.eael-product-grid.list .eael-product-wrap .icons-wrap.block-style li a{position:relative}.eael-product-grid.list .eael-product-wrap .icons-wrap.box-style li{width:42px;height:42px;-webkit-filter:drop-shadow(0px 15px 10px rgba(61, 70, 79, 0.12));filter:drop-shadow(0px 15px 10px rgba(61, 70, 79, 0.12));background-color:#fff}.eael-product-grid.list .eael-product-wrap .icons-wrap.details-block-style li.add-to-cart a{padding:11px 15px !important}.eael-product-grid.list .eael-product-wrap .icons-wrap.details-block-style li a{margin:2px;padding:10.5px 10px}.eael-product-grid.list .eael-product-wrap .icons-wrap.details-block-style-2{display:-webkit-box;display:-ms-flexbox;display:flex}.eael-product-grid.list .eael-product-wrap .icons-wrap.details-block-style-2 li:not(:first-child) a{border-left-width:0 !important}.eael-product-grid.list .eael-product-wrap .icons-wrap.details-block-style-2 li.add-to-cart a{padding:8.5px 10px;margin:0}.eael-product-grid.list .eael-product-wrap .icons-wrap.details-block-style-2 li a{border:2px solid #ddd}.eael-product-grid.list .eael-product-wrap .icons-wrap.details-block-style-2 li a.eael-wc-compare.eael-wc-compare-icon{margin:2px}.eael-product-grid.list .eael-product-wrap .icons-wrap li{display:inline-block;margin:0;padding:0;vertical-align:top}.eael-product-grid.list .eael-product-wrap .icons-wrap li a{display:block;color:#000;text-align:center;-webkit-transition:all ease .4s;-o-transition:all ease .4s;transition:all ease .4s;background:#ffebcd;padding:9px 10px;font-size:15px;line-height:1.4em;font-weight:700;cursor:pointer}.eael-product-grid.list .eael-product-wrap .icons-wrap li a:hover{background:#ff7a80;color:#fff}.eael-product-grid.list .eael-product-wrap .icons-wrap li a i{position:relative;font-size:18px}.eael-product-grid.list .eael-product-wrap .icons-wrap li a svg{width:18px}.eael-product-grid.list .eael-product-wrap .icons-wrap li a.button{font-size:15px;line-height:1.4em}.eael-product-grid.list .eael-product-wrap .product-image-wrap{position:relative;overflow:hidden;width:45%;margin:0}.eael-product-grid.list .eael-product-wrap .product-details-wrap{width:55%;padding:25px;text-align:left !important}.eael-product-grid.list .eael-product-wrap .eael-product-price{margin-bottom:5px}.eael-product-grid.list .eael-product-wrap .eael-product-excerpt p{margin:0 0 10px}@media only screen and (min-width: 1025px){.eael-product-grid-column-1 .eael-product-grid .woocommerce ul.products{grid-template-columns:100%}.eael-product-grid-column-2 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(2, 1fr)}.eael-product-grid-column-3 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(3, 1fr)}.eael-product-grid-column-4 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(4, 1fr)}.eael-product-grid-column-5 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(5, 1fr)}.eael-product-grid-column-6 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(6, 1fr)}.eael-product-list-column-2 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(2, 1fr)}.eael-product-grid-column-1 .eael-product-grid.masonry .woocommerce ul.products li.product{width:100%;margin:15px 0}.eael-product-grid-column-2 .eael-product-grid.masonry .woocommerce ul.products li.product{width:48%}.eael-product-grid-column-3 .eael-product-grid.masonry .woocommerce ul.products li.product{width:31.3333%}.eael-product-grid-column-4 .eael-product-grid.masonry .woocommerce ul.products li.product{width:23%}.eael-product-grid-column-5 .eael-product-grid.masonry .woocommerce ul.products li.product{width:18%}.eael-product-grid-column-6 .eael-product-grid.masonry .woocommerce ul.products li.product{width:14.66666667%}}@media only screen and (max-width: 1024px)and (min-width: 766px){.eael-product-grid-column-tablet-1 .eael-product-grid .woocommerce ul.products{grid-template-columns:100%}.eael-product-grid-column-tablet-2 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(2, 1fr)}.eael-product-grid-column-tablet-3 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(3, 1fr)}.eael-product-grid-column-tablet-4 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(4, 1fr)}.eael-product-grid-column-tablet-5 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(5, 1fr)}.eael-product-grid-column-tablet-6 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(6, 1fr)}.eael-product-list-column-tablet-2 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(2, 1fr)}.eael-product-grid-column-tablet-1 .eael-product-grid.masonry .woocommerce ul.products li.product{width:100%;margin:15px 0}.eael-product-grid-column-tablet-2 .eael-product-grid.masonry .woocommerce ul.products li.product{width:48%}.eael-product-grid-column-tablet-3 .eael-product-grid.masonry .woocommerce ul.products li.product{width:31.3333%}.eael-product-grid-column-tablet-4 .eael-product-grid.masonry .woocommerce ul.products li.product{width:23%}.eael-product-grid-column-tablet-5 .eael-product-grid.masonry .woocommerce ul.products li.product{width:18%}.eael-product-grid-column-tablet-6 .eael-product-grid.masonry .woocommerce ul.products li.product{width:14.66666667%}}@media only screen and (max-width: 767px){.eael-product-grid-column-mobile-1 .eael-product-grid .woocommerce ul.products{grid-template-columns:100%}.eael-product-grid-column-mobile-2 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(2, 1fr)}.eael-product-grid-column-mobile-3 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(3, 1fr)}.eael-product-grid-column-mobile-4 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(4, 1fr)}.eael-product-grid-column-mobile-5 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(5, 1fr)}.eael-product-grid-column-mobile-6 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(6, 1fr)}.eael-product-list-column-mobile-2 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(2, 1fr)}.eael-product-list-column-mobile-2 .eael-product-grid .woocommerce ul.products .eael-product-wrap{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.eael-product-list-column-mobile-2 .eael-product-grid .woocommerce ul.products .eael-product-wrap .product-image-wrap,.eael-product-list-column-mobile-2 .eael-product-grid .woocommerce ul.products .eael-product-wrap .product-details-wrap{width:100%}.eael-product-list-column-mobile-2 .eael-product-grid .woocommerce ul.products .eael-product-wrap .product-image-wrap{margin-bottom:15px}.eael-product-list-column-mobile-2 .eael-product-grid .woocommerce ul.products .eael-product-wrap .product-details-wrap{padding:0;margin:0}.eael-product-grid-column-mobile-1 .eael-product-grid.masonry .woocommerce ul.products li.product{width:100%;margin:15px 0}.eael-product-grid-column-mobile-2 .eael-product-grid.masonry .woocommerce ul.products li.product{width:48% !important;margin:1%}.eael-product-grid-column-mobile-3 .eael-product-grid.masonry .woocommerce ul.products li.product{width:31.3333% !important;margin:1%}.eael-product-grid-column-mobile-4 .eael-product-grid.masonry .woocommerce ul.products li.product{width:23% !important;margin:1%}.eael-product-grid-column-mobile-5 .eael-product-grid.masonry .woocommerce ul.products li.product{width:18% !important;margin:1%}.eael-product-grid-column-mobile-6 .eael-product-grid.masonry .woocommerce ul.products li.product{width:14.66666667% !important;margin:1%}}.eael-product-loader{position:relative}.eael-product-loader::after{border-radius:50%;width:50px;height:50px;position:absolute;content:"";border-top:4px solid rgba(0,0,0,.2);border-right:4px solid rgba(0,0,0,.2);border-bottom:4px solid rgba(0,0,0,.2);border-left:4px solid #000;-webkit-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);transform:translate(-50%, -50%);-webkit-animation:loaderSpin 1.1s infinite linear;animation:loaderSpin 1.1s infinite linear;left:48%;top:40%;-webkit-transition:all .2s;-o-transition:all .2s;transition:all .2s}.theme-flexia .woocommerce ul.products li.product .woocommerce-LoopProduct-link{position:unset;display:unset}.eael-product-grid .woocommerce ul.products li.product .ast-shop-product-out-of-stock{display:none}
1
+ .table-responsive{width:100%;overflow-x:auto;overflow-y:hidden}.eael-wcpc-wrapper img{display:block;margin:auto}.eael-wcpc-wrapper th i{padding-right:10px;color:#dcdcdc}.eael-wcpc-wrapper .wcpc-table-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eael-wcpc-wrapper .wcpc-table-header .wcpc-title{word-break:break-word}.eael-wcpc-wrapper .elementor-icon{font-size:20px;margin-right:10px}.eael-wcpc-wrapper table td{text-align:center}.eael-wcpc-wrapper.custom{--h-bg: #2d1e87;--h-text-clr: #fff;--h-border-clr: #b6aaff;--text-clr: #707070;--text-bold-clr: #252525;--btn-bg: #6752e5;--btn-bg-hover: #ff9582;--btn-text: #fff;--image-bg: #6b55ec;--container-bg: #fff;--icon-color: #c3ccdc;background:var(--container-bg);overflow-x:scroll}.eael-wcpc-wrapper.custom table{border-collapse:collapse;border-spacing:0;max-width:none}.eael-wcpc-wrapper.custom table .icon{width:16px;margin-right:6px;fill:var(--icon-color)}.eael-wcpc-wrapper.custom table th,.eael-wcpc-wrapper.custom table td{padding:15px;border:1px solid var(--h-border-clr);border-collapse:collapse}.eael-wcpc-wrapper.custom table th.first-th{border:none;padding-left:5px}.eael-wcpc-wrapper.custom table th{color:var(--text-bold-clr);font-weight:normal;max-width:160px;border-left-width:2px;border-collapse:collapse;vertical-align:middle}.eael-wcpc-wrapper.custom table th div{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eael-wcpc-wrapper.custom table td{color:var(--text-clr);text-align:center}.eael-wcpc-wrapper.custom table tr.title{background:var(--h-bg);color:var(--h-text-clr)}.eael-wcpc-wrapper.custom table tr.title th,.eael-wcpc-wrapper.custom table tr.title td{font-size:20px;color:inherit;border:none;border-left:1px solid var(--h-border-clr);border-right:1px solid var(--h-border-clr)}.eael-wcpc-wrapper.custom table tr.image td{vertical-align:middle;border:none}.eael-wcpc-wrapper.custom table .button{border-radius:5px;background:var(--btn-bg);color:var(--btn-text)}.eael-wcpc-wrapper.custom table .button:hover{background:var(--btn-bg-hover)}.eael-wcpc-wrapper.custom.theme-1 table tr.image td{background:var(--image-bg);border-left:1px solid var(--h-border-clr);border-right:1px solid var(--h-border-clr)}.eael-wcpc-wrapper.custom.theme-2{--h-bg: #ff9453;--h-border-clr: #f4ede9;--btn-bg: #ff9453;--btn-bg-hover: #6752e5;--even-row-bg: #fbf8f7}.eael-wcpc-wrapper.custom.theme-2 table tr:nth-of-type(even):not(.title){background:var(--even-row-bg)}.eael-wcpc-wrapper.custom.theme-3{--container-bg: #f9fafc;--btn-bg: #ff907e;--btn-bg-hover: #ff907e;--even-row-bg: #f5f5f8;--h-odd-row-bg: #fdfdff;--first-img-bg: linear-gradient(-130deg, #ffd0b0 0%, #ff907e 100%);--second-img-bg: linear-gradient(-130deg, #ada0ff 0%, #7561f2 100%);--third-img-bg: linear-gradient(-130deg, #6fffac 0%, #23d56e 100%);--firt-btn-bg: #ff907e;--second-btn-bg: #7561f2;--third-btn-bg: #23d56e;padding:20px}.eael-wcpc-wrapper.custom.theme-3 table{-webkit-border-horizontal-spacing:10px}.eael-wcpc-wrapper.custom.theme-3 table tr:nth-of-type(even):not(.title){background:var(--even-row-bg)}.eael-wcpc-wrapper.custom.theme-3 table th,.eael-wcpc-wrapper.custom.theme-3 table td{border:none;-webkit-box-sizing:border-box;box-sizing:border-box}.eael-wcpc-wrapper.custom.theme-3 table tr.title td.featured,.eael-wcpc-wrapper.custom.theme-3 table tr:nth-of-type(odd) td.featured{-webkit-box-shadow:18px 0 10px -10px rgba(86,79,127,.06),-18px 0 10px -10px rgba(86,79,127,.06);box-shadow:18px 0 10px -10px rgba(86,79,127,.06),-18px 0 10px -10px rgba(86,79,127,.06)}.eael-wcpc-wrapper.custom.theme-3 table tr.title{background:initial;color:initial}.eael-wcpc-wrapper.custom.theme-3 table tr.title th,.eael-wcpc-wrapper.custom.theme-3 table tr.title td{color:initial;border-left:none;border-right:none}.eael-wcpc-wrapper.custom.theme-3 table tr.image td{background:initial;border-left:none;border-right:none;padding:0}.eael-wcpc-wrapper.custom.theme-3 table tr.image td span{display:block;width:100%;height:100%;-webkit-box-sizing:border-box;box-sizing:border-box;border-top-left-radius:10px;border-top-right-radius:10px}.eael-wcpc-wrapper.custom.theme-3 table tr.image td>span{padding:20px}.eael-wcpc-wrapper.custom.theme-3 table tr.image td span.inner{padding:0}.eael-wcpc-wrapper.custom.theme-3 table tr.image td.featured span{padding:10px;background:#fff}.eael-wcpc-wrapper.custom.theme-3 table tr.image td:nth-of-type(3n+1) .img-inner{background:var(--first-img-bg)}.eael-wcpc-wrapper.custom.theme-3 table tr.image td:nth-of-type(3n+2) .img-inner{background:var(--second-img-bg)}.eael-wcpc-wrapper.custom.theme-3 table tr.image td:nth-of-type(3n+3) .img-inner{background:var(--third-img-bg)}.eael-wcpc-wrapper.custom.theme-4{--h-bg: none;--h-text-clr: #707070;--h-border-clr: #e8ebf0;--text-clr: #707070;--text-bold-clr: #252525;--btn-bg: #613de6;--btn-bg-hover: #ff9582;--btn-text: #fff;--image-bg: none;--container-bg: #f9fafc}.eael-wcpc-wrapper.custom.theme-4 table{background:#fff}.eael-wcpc-wrapper.custom.theme-4 table th.first-th{background:var(--container-bg)}.eael-wcpc-wrapper.custom.theme-4 table tr.title th,.eael-wcpc-wrapper.custom.theme-4 table tr.title td{font-size:20px;color:inherit;border:1px solid var(--h-border-clr)}.eael-wcpc-wrapper.custom.theme-4 table tr.image td{position:relative;border:1px solid var(--h-border-clr);overflow:hidden}.eael-wcpc-wrapper.custom.theme-4 table tr.image .ribbon{position:absolute;left:-44px;top:10px;background:var(--btn-bg);color:var(--btn-text);padding:3px 50px;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:center;-ms-transform-origin:center;transform-origin:center}.eael-wcpc-wrapper.custom.theme-4 table tr.image .product-title,.eael-wcpc-wrapper.custom.theme-4 table tr.image .woocommerce-Price-amount{font-size:18px;font-weight:bold}.eael-wcpc-wrapper.custom.theme-4 table tr.image .product-title{color:var(--text-bold-clr);margin:0 auto 10px}.eael-wcpc-wrapper.custom.theme-4 table tr.image .woocommerce-Price-amount{color:var(--btn-bg)}.eael-wcpc-wrapper.custom.theme-5{--first-row-color: #fff;--first-col-bg: #6a3ee8;--second-col-bg: #3e5ae8;--third-col-bg: #15e9c9;--first-img-bg: #f4f0ff;--second-img-bg: #eaedff;--third-img-bg: #e5fffb;--h-bg: none;--h-text-clr: #707070;--h-border-clr: #e8ebf0;--first-btn-bg: #6a3ee8;--second-btn-bg: #3e5ae8;--third-btn-bg: #15e9c9;--image-bg: none}.eael-wcpc-wrapper.custom.theme-5 table th{border:none}.eael-wcpc-wrapper.custom.theme-5 table th.first-th{background:var(--container-bg)}.eael-wcpc-wrapper.custom.theme-5 table td:nth-of-type(3n+1) .button{background:var(--first-btn-bg)}.eael-wcpc-wrapper.custom.theme-5 table td:nth-of-type(3n+1) .button:hover{background:#5827e5}.eael-wcpc-wrapper.custom.theme-5 table td:nth-of-type(3n+2) .button{background:var(--second-btn-bg)}.eael-wcpc-wrapper.custom.theme-5 table td:nth-of-type(3n+2) .button:hover{background:#2747e5}.eael-wcpc-wrapper.custom.theme-5 table td:nth-of-type(3n+3) .button{background:var(--third-btn-bg)}.eael-wcpc-wrapper.custom.theme-5 table td:nth-of-type(3n+3) .button:hover{background:#13d2b5}.eael-wcpc-wrapper.custom.theme-5 table tr.title th,.eael-wcpc-wrapper.custom.theme-5 table tr.title td{font-size:20px;color:inherit;border:none}.eael-wcpc-wrapper.custom.theme-5 table tr.image td:nth-of-type(3n+1){background:var(--first-img-bg)}.eael-wcpc-wrapper.custom.theme-5 table tr.image td:nth-of-type(3n+2){background:var(--second-img-bg)}.eael-wcpc-wrapper.custom.theme-5 table tr.image td:nth-of-type(3n+3){background:var(--third-img-bg)}.eael-wcpc-wrapper.custom.theme-5 table tr.title td:nth-of-type(3n+1){background:var(--first-col-bg)}.eael-wcpc-wrapper.custom.theme-5 table tr.title td:nth-of-type(3n+2){background:var(--second-col-bg)}.eael-wcpc-wrapper.custom.theme-5 table tr.title td:nth-of-type(3n+3){background:var(--third-col-bg)}.eael-wcpc-wrapper.custom.theme-5 table tr.image td,.eael-wcpc-wrapper.custom.theme-5 table tr.title td{border:none;border-right:2px solid var(--first-row-color);color:var(--first-row-color)}.eael-wcpc-wrapper.custom.theme-5 table tr.image td:last-child,.eael-wcpc-wrapper.custom.theme-5 table tr.title td:last-child{border-right:none}.eael-wcpc-wrapper.custom.theme-6{--container-bg: #f0eff6;--first-row-color: #fff;--first-col-bg: #fd907b;--second-col-bg: #7f6cf4;--third-col-bg: #3ae281;--first-img-bg: #f4f0ff;--second-img-bg: #eaedff;--third-img-bg: #e5fffb;--h-bg: none;--h-text-clr: #707070;--h-border-clr: #e8ebf0;--image-bg: none}.eael-wcpc-wrapper.custom.theme-6 table tr.title th,.eael-wcpc-wrapper.custom.theme-6 table tr.title td{border-left:0;border-right:0}.eael-wcpc-wrapper.custom.theme-6 table tr.title td{color:#fff}.eael-wcpc-wrapper.custom.theme-6 table tr,.eael-wcpc-wrapper.custom.theme-6 table th,.eael-wcpc-wrapper.custom.theme-6 table td{border:none}.eael-wcpc-wrapper.custom.theme-6 table td{color:#fff;border-right:20px solid #fff}.eael-wcpc-wrapper.custom.theme-6 table td:last-child{border-right:none}.eael-wcpc-wrapper.custom.theme-6 table td:nth-of-type(3n+1){background:var(--first-col-bg)}.eael-wcpc-wrapper.custom.theme-6 table td:nth-of-type(3n+2){background:var(--second-col-bg)}.eael-wcpc-wrapper.custom.theme-6 table td:nth-of-type(3n+3){background:var(--third-col-bg)}.eael-wcpc-wrapper.custom.theme-6 table tr:nth-of-type(even) th,.eael-wcpc-wrapper.custom.theme-6 table tr:nth-of-type(even) td{background:#f7f6fa}.eael-wcpc-wrapper.custom.theme-6 table tr:nth-of-type(even) td:nth-of-type(3n+1){background:#fec1b5}.eael-wcpc-wrapper.custom.theme-6 table tr:nth-of-type(even) td:nth-of-type(3n+2){background:#b7adf9}.eael-wcpc-wrapper.custom.theme-6 table tr:nth-of-type(even) td:nth-of-type(3n+3){background:#91efb8}.eael-wcpc-wrapper.custom.theme-6 table tr.image td,.eael-wcpc-wrapper.custom.theme-6 table tr.title td{border:none;border-right:20px solid #fff}.eael-wcpc-wrapper.custom.theme-6 table tr.image td:last-child,.eael-wcpc-wrapper.custom.theme-6 table tr.title td:last-child{border-right:none}.eael-wcpc-wrapper.custom.theme-6 table .button{background:#fff}.eael-wcpc-wrapper.custom.theme-6 table .button:hover{background:#fff}.eael-wcpc-wrapper.custom.theme-6 table td:nth-of-type(3n+1) .button{color:var(--first-col-bg)}.eael-wcpc-wrapper.custom.theme-6 table td:nth-of-type(3n+1) .button:hover{color:#fb3c17}.eael-wcpc-wrapper.custom.theme-6 table td:nth-of-type(3n+2) .button{color:var(--second-col-bg)}.eael-wcpc-wrapper.custom.theme-6 table td:nth-of-type(3n+2) .button:hover{color:#2f11e9}.eael-wcpc-wrapper.custom.theme-6 table td:nth-of-type(3n+3) .button{color:var(--third-col-bg)}.eael-wcpc-wrapper.custom.theme-6 table td:nth-of-type(3n+3) .button:hover{color:#179f51}.eael-wcpc-wrapper.custom.theme-6 .img-inner{display:block;background:rgba(228,228,228,.45);border-radius:6px}@media screen and (min-width: 769px){.eael-wcpc-wrapper:not(.theme-4) tr.image td{padding:10px}.theme-4 tr.image td{padding:50px 10px}}.eael-product-grid .woocommerce ul.products,.eael-post-grid .woocommerce ul.products{display:grid;grid-gap:25px;margin:0 0 15px 0;padding:0 !important}.eael-product-grid .woocommerce ul.products:before,.eael-product-grid .woocommerce ul.products:after,.eael-post-grid .woocommerce ul.products:before,.eael-post-grid .woocommerce ul.products:after{display:none}.eael-product-grid .woocommerce ul.products .product,.eael-post-grid .woocommerce ul.products .product{width:100%;margin:0;padding:0}.eael-product-grid .woocommerce ul.products .product .eael-wc-compare,.eael-post-grid .woocommerce ul.products .product .eael-wc-compare{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around;cursor:pointer;color:#fff;background-color:#333;margin:15px}.eael-product-grid .woocommerce ul.products .product .eael-wc-compare:hover,.eael-post-grid .woocommerce ul.products .product .eael-wc-compare:hover{color:#fff;background-color:#333}.eael-product-grid .woocommerce ul.products .product .eael-wc-compare-loader,.eael-post-grid .woocommerce ul.products .product .eael-wc-compare-loader{display:none;width:1.5rem}.eael-product-grid .woocommerce ul.products .product .star-rating,.eael-post-grid .woocommerce ul.products .product .star-rating{margin:0 auto 5px;display:inline-block;float:none;height:1em;width:5.6em;font-size:1em;line-height:1em}.eael-product-grid .woocommerce ul.products .product .star-rating:before,.eael-post-grid .woocommerce ul.products .product .star-rating:before{content:"";font-family:"Font Awesome 5 Free";font-weight:400;opacity:1}.eael-product-grid .woocommerce ul.products .product .star-rating span,.eael-post-grid .woocommerce ul.products .product .star-rating span{display:inline-block}.eael-product-grid .woocommerce ul.products .product .star-rating span:before,.eael-post-grid .woocommerce ul.products .product .star-rating span:before{content:"";font-family:"Font Awesome 5 Free";font-weight:900}.eael-product-grid .woocommerce ul.products.products[class*=columns-] li.product,.eael-post-grid .woocommerce ul.products.products[class*=columns-] li.product{width:100%}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product{position:relative;float:left;display:block;overflow:hidden;text-align:center;padding:0;border-radius:0;background-color:#fff;-webkit-box-shadow:none;box-shadow:none}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product a,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product a,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product a,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product a{text-decoration:none}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product a:hover,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product a:hover,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product a:hover,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product a:hover{outline:none;-webkit-box-shadow:none;box-shadow:none}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product img,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product img,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product img,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product img{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;height:auto;margin:auto;max-width:100%;-webkit-backface-visibility:hidden;backface-visibility:hidden}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .woocommerce-loop-product__title,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .woocommerce-loop-product__title,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .woocommerce-loop-product__title,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .woocommerce-loop-product__title{font-size:16px;font-weight:700;line-height:1;color:#333;margin:25px 0 12px;padding:0}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .onsale,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .onsale,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .onsale,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .onsale{display:block;line-height:170px;font-size:13px;text-align:center;letter-spacing:0;text-shadow:0 1px 1px rgba(0,0,0,.6);text-transform:uppercase;color:#fff;background-color:#ff2a13;border-radius:0;border:none;-webkit-box-shadow:none;box-shadow:none;position:absolute;height:100px;width:200px;z-index:1;left:-100px;top:-50px;right:auto;margin:0;padding:0;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .outofstock-badge,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .outofstock-badge,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .outofstock-badge,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .outofstock-badge{line-height:16px;font-size:13px;font-weight:600;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;letter-spacing:0;text-shadow:0 1px 1px rgba(0,0,0,.6);text-transform:uppercase;color:#fff;background-color:#ff2a13;border-radius:0;border:none;-webkit-box-shadow:none;box-shadow:none;position:absolute;height:100px;width:200px;z-index:1;left:-95px;top:-45px;right:auto;margin:0;padding:0;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .price,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .price,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .price,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .price{font-size:14px;margin-bottom:0}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .price del,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .price del,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .price del,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .price del{opacity:.5;display:inline-block}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .price ins,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .price ins,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .price ins,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .price ins{font-weight:400;background-color:transparent;color:#ff2a13}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .star-rating,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .star-rating,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .star-rating,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .star-rating{display:block;float:none;font-size:14px;margin:10px auto}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .button,.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .button.add_to_cart_button,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .button,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .button.add_to_cart_button,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button{display:block;font-size:14px;font-weight:400;line-height:38px;text-align:center;text-transform:uppercase;color:#fff;background-color:#333;padding:0;margin:15px;border-radius:0}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .button::before,.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .button.add_to_cart_button::before,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button::before,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button::before,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .button::before,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .button.add_to_cart_button::before,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button::before,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button::before{content:"";font-family:"Font Awesome 5 Free";font-weight:900;padding-right:8px}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .button.product_type_variable:before,.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .button.add_to_cart_button.product_type_variable:before,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button.product_type_variable:before,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button.product_type_variable:before,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .button.product_type_variable:before,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .button.add_to_cart_button.product_type_variable:before,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button.product_type_variable:before,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button.product_type_variable:before{content:""}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .button:focus,.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .button.add_to_cart_button:focus,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button:focus,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button:focus,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .button:focus,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .button.add_to_cart_button:focus,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button:focus,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button:focus{outline:none}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .button::before,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button::before,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .button::before,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button::before{content:none}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .eael-wc-compare,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .eael-wc-compare,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .eael-wc-compare,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .eael-wc-compare{color:#fff;background-color:#333}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product a.added_to_cart,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product a.added_to_cart,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product a.added_to_cart,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product a.added_to_cart{display:block;margin:0 0 15px 0;padding:0;font-size:14px;line-height:1;text-transform:capitalize;color:#333;background-color:transparent}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product{border:1px solid #eee}.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product{border:1px solid transparent}.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .eael-wc-compare,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product a.added_to_cart,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .eael-wc-compare,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product a.added_to_cart{visibility:hidden;-webkit-transition:none;-o-transition:none;transition:none}.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product:hover,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product:hover{border:1px solid #eee}.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product:hover .eael-wc-compare,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product:hover .button,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product:hover .button.add_to_cart_button,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product:hover a.added_to_cart,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product:hover .eael-wc-compare,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product:hover .button,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product:hover .button.add_to_cart_button,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product:hover a.added_to_cart{visibility:visible}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product{position:relative;float:left;overflow:hidden;text-align:center;padding:0 0 15px 0;border-radius:0;background-color:#fff;-webkit-box-shadow:none;box-shadow:none}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product a,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product a{text-decoration:none}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product a:hover,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product a:hover{outline:none;-webkit-box-shadow:none;box-shadow:none}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product img,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product img{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;max-width:100%;height:auto;margin:auto;-webkit-backface-visibility:hidden;backface-visibility:hidden}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay{position:relative;overflow:hidden;line-height:0}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .button-wrap,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .button-wrap{position:absolute;top:50%;left:0;right:0;text-align:center;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .eael-wc-compare,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .product-link,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .eael-wc-compare,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .product-link,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:14px;line-height:38px;text-align:center;color:#fff;background-color:#333;width:38px;height:38px;border-style:none;border-radius:50%;vertical-align:middle;padding:0;margin:0 5px;-webkit-transform:translateY(20px);-ms-transform:translateY(20px);transform:translateY(20px);opacity:0;-webkit-transition:opacity 300ms,-webkit-transform 200ms;transition:opacity 300ms,-webkit-transform 200ms;-o-transition:transform 200ms,opacity 300ms;transition:transform 200ms,opacity 300ms;transition:transform 200ms,opacity 300ms,-webkit-transform 200ms}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .eael-wc-compare:focus,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .product-link:focus,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button:focus,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart:focus,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .eael-wc-compare:focus,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .product-link:focus,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button:focus,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart:focus{outline:none}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button{font-size:0}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button:before,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button:before{display:none}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button:after,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button:after{content:"";font-size:14px;line-height:38px;text-rendering:auto;-webkit-font-smoothing:antialiased;vertical-align:middle;margin:0;padding:0;font-family:"Font Awesome 5 Free";font-weight:900}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button.product_type_variable:after,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button.product_type_variable:after{content:""}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button.loading:before,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button.loading:before{display:none}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button.loading:after,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button.loading:after{content:"";display:inline-block;font-weight:normal;font-family:"Font Awesome 5 Free";font-size:14px;line-height:38px;color:#fff;height:auto;width:auto;position:relative;top:0;left:0;margin:0;padding:0}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart{font-size:0}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart:after,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart:after{content:"";font-family:"Font Awesome 5 Free";font-size:14px;line-height:38px;font-weight:900;color:#fff;text-rendering:auto;-webkit-font-smoothing:antialiased;vertical-align:middle;margin:0;padding:0}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .woocommerce-loop-product__title,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .woocommerce-loop-product__title{font-size:16px;font-weight:700;line-height:1;color:#333;margin:25px 0 12px;padding:0}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .onsale,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .onsale{display:block;line-height:170px;font-size:13px;text-align:center;letter-spacing:0;text-shadow:0 1px 1px rgba(0,0,0,.6);text-transform:uppercase;color:#fff;background-color:#ff2a13;border-radius:0;border:none;-webkit-box-shadow:none;box-shadow:none;position:absolute;height:100px;width:200px;z-index:1;left:-100px;top:-50px;right:auto;margin:0;padding:0;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .outofstock-badge,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .outofstock-badge{line-height:16px;font-size:13px;font-weight:600;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;letter-spacing:0;text-shadow:0 1px 1px rgba(0,0,0,.6);text-transform:uppercase;color:#fff;background-color:#ff2a13;border-radius:0;border:none;-webkit-box-shadow:none;box-shadow:none;position:absolute;height:100px;width:200px;z-index:9;left:-95px;top:-45px;right:auto;margin:0;padding:0;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .price,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .price{font-size:14px;margin-bottom:0}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .price del,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .price del{opacity:.5;display:inline-block}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .price ins,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .price ins{font-weight:400;background-color:transparent;color:#ff2a13}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .star-rating,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .star-rating{display:block;float:none;font-size:14px;margin:10px auto}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .eael-wc-compare,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .eael-wc-compare{padding:5px !important}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product:hover .overlay .eael-wc-compare,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product:hover .overlay a,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product:hover .overlay .add_to_cart_button,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product:hover .overlay .eael-wc-compare,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product:hover .overlay a,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product:hover .overlay .add_to_cart_button{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}.eael-product-grid.eael-product-default .woocommerce ul.products li.product,.eael-post-grid.eael-product-default .woocommerce ul.products li.product{overflow:visible !important}.eael-product-grid.eael-product-default .woocommerce ul.products li.product .onsale,.eael-post-grid.eael-product-default .woocommerce ul.products li.product .onsale{line-height:inherit;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eael-product-grid.eael-product-default .woocommerce ul.products li.product .outofstock-badge,.eael-post-grid.eael-product-default .woocommerce ul.products li.product .outofstock-badge{min-height:3.746em;min-width:3.746em;padding:.502em;font-size:13px;font-weight:700;position:absolute;text-align:center;line-height:1.25;top:-0.5em;left:-0.5em;margin:0;border-radius:50%;background-color:#ff2a13;color:#fff;font-size:.857em;z-index:9}.eael-product-grid.eael-product-default .button.add_to_cart_button::before,.eael-post-grid.eael-product-default .button.add_to_cart_button::before{content:"";font-family:"Font Awesome 5 Free";font-weight:900;padding-right:8px}.eael-product-grid.eael-product-default .button.add_to_cart_button.product_type_variable:before,.eael-post-grid.eael-product-default .button.add_to_cart_button.product_type_variable:before{content:""}.eael-product-grid.eael-product-preset-5 ul.products li.product .image-wrap img,.eael-product-grid.eael-product-preset-6 ul.products li.product .image-wrap img,.eael-product-grid.eael-product-preset-7 ul.products li.product .image-wrap img,.eael-product-grid.eael-product-preset-8 ul.products li.product .image-wrap img,.eael-post-grid.eael-product-preset-5 ul.products li.product .image-wrap img,.eael-post-grid.eael-product-preset-6 ul.products li.product .image-wrap img,.eael-post-grid.eael-product-preset-7 ul.products li.product .image-wrap img,.eael-post-grid.eael-product-preset-8 ul.products li.product .image-wrap img{-webkit-backface-visibility:hidden;backface-visibility:hidden}.eael-wcpc-modal{position:fixed;top:50px;right:0;bottom:50px;left:0;margin-left:auto;margin-right:auto;width:1080px;max-width:90%;background:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;z-index:9999999}.modal__content{width:100%;height:100%;overflow:hidden auto}.wcpc-overlay{position:fixed;top:0;left:0;width:100%;height:100vh;z-index:10;background:rgba(0,0,0,.5);pointer-events:none}.wcpc-overlay,.eael-wcpc-modal{visibility:hidden;opacity:0;-webkit-transition:all .5s ease;-o-transition:all .5s ease;transition:all .5s ease}.close-modal{position:absolute;top:-10px;right:-10px;cursor:pointer;display:block;border-radius:50%;color:#fff;background:#000;font-size:30px;font-weight:bold;text-align:center;line-height:23px;-webkit-box-shadow:-1px 0px 3px 0 #000;box-shadow:-1px 0px 3px 0 #000;-webkit-transition:-webkit-transform 300ms ease;transition:-webkit-transform 300ms ease;-o-transition:transform 300ms ease;transition:transform 300ms ease;transition:transform 300ms ease, -webkit-transform 300ms ease}.eael-wcpc-wrapper .eael-wc-remove,.eael-wcpc-wrapper.custom .eael-wc-remove{cursor:pointer;-webkit-transition:all 400ms ease;-o-transition:all 400ms ease;transition:all 400ms ease}.eael-wcpc-wrapper .eael-wc-remove.disable,.eael-wcpc-wrapper.custom .eael-wc-remove.disable{color:#a0a0a0 !important;-webkit-transform:scale(1) !important;-ms-transform:scale(1) !important;transform:scale(1) !important}.eael-wcpc-wrapper .eael-wc-remove:hover,.eael-wcpc-wrapper.custom .eael-wc-remove:hover{color:red;-webkit-transform:scale(2);-ms-transform:scale(2);transform:scale(2)}.eael-wcpc-wrapper .remove-row,.eael-wcpc-wrapper.custom .remove-row{border:none}.eael-wcpc-wrapper .remove-row th,.eael-wcpc-wrapper .remove-row td,.eael-wcpc-wrapper.custom .remove-row th,.eael-wcpc-wrapper.custom .remove-row td{border:none;text-align:center}.eael-product-grid .woocommerce ul.products li.product a img{margin-bottom:0;display:block;width:100%;-webkit-backface-visibility:hidden;backface-visibility:hidden}.eael-product-grid .woocommerce ul.products li.product .woocommerce-loop-product__title{letter-spacing:normal;font-weight:700;text-transform:capitalize}.eael-product-grid .woocommerce ul.products li.product ins{background:transparent}.eael-product-grid .woocommerce ul.products li.product .button{text-transform:capitalize;border:none;letter-spacing:normal;-webkit-box-shadow:none;box-shadow:none}.eael-product-grid .woocommerce ul.products li.product .button:hover,.eael-product-grid .woocommerce ul.products li.product .button:visited{text-decoration:none}.eael-product-grid .woocommerce ul.products li.product .star-rating{margin:0 auto 5px;display:inline-block;float:none;height:1em;width:5.6em;font-size:1em;line-height:1em}.eael-product-grid .woocommerce ul.products li.product .star-rating:before{content:"";font-family:"Font Awesome 5 Free";font-weight:400;opacity:1}.eael-product-grid .woocommerce ul.products li.product .star-rating span{display:inline-block}.eael-product-grid .woocommerce ul.products li.product .star-rating span:before{content:"";font-family:"Font Awesome 5 Free";font-weight:900}.eael-product-grid .eael-woo-pagination ul{display:inline-block;text-align:center;white-space:nowrap;padding:0;clear:both;border:0;margin:1px;width:auto}.eael-product-grid .eael-woo-pagination ul li{display:inline-block;margin:0 5px 5px 0;padding:0;float:left;overflow:hidden}.eael-product-grid .eael-woo-pagination ul li .page-numbers{margin:0;text-decoration:none;color:#000000bd;line-height:1;font-size:1em;font-weight:normal;padding:.75em;display:block;min-width:2.5em;-webkit-box-sizing:inherit;box-sizing:inherit;border:none}.eael-product-grid .eael-woo-pagination ul li .page-numbers.current,.eael-product-grid .eael-woo-pagination ul li .page-numbers:hover,.eael-product-grid .eael-woo-pagination ul li .page-numbers:focus{color:#fff;background:#000000bd}.eael-product-grid .woocommerce ul.products .product{overflow-y:auto}.eael-product-grid .eael-load-more-button-wrap{clear:both;margin-top:40px}.eael-product-grid .eael-product-wrap .eael-onsale{padding:5px 10px;font-size:12px;font-weight:500;position:absolute;text-align:center;line-height:1.2em;top:30px;left:0;margin:0;background-color:#ff7a80;color:#fff;z-index:9}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-1.outofstock br{display:none}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-1.right{left:auto;right:0}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-2{padding:0;top:5px;left:5px;display:inline-table;min-width:50px;min-height:50px;line-height:50px;border-radius:100%;-webkit-font-smoothing:antialiased}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-2.outofstock{line-height:normal;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-2.right{left:auto;right:5px}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-3{border-radius:50px;left:15px;top:15px}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-3.outofstock br{display:none}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-3.right{left:auto;right:15px}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-4{left:0;top:15px}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-4.outofstock br{display:none}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-4:after{position:absolute;right:-15px;bottom:0px;width:15px;height:24px;border-top:12px solid transparent;border-bottom:12px solid transparent;border-left:10px solid #23a454;content:""}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-4.right{left:auto;right:0}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-4.right:after{right:auto;left:-15px;border-left:0;border-right:10px solid #23a454}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-5{display:block;line-height:74px;height:60px;width:120px;left:-39px;top:-10px;right:auto;padding:0;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-5.outofstock{line-height:normal;padding-top:12px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-5.right{left:auto;right:-35px;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.eael-product-grid .eael-product-wrap .eael-product-title h2{font-size:20px;line-height:1.2em;color:#252525;font-weight:500;margin:0 0 8px;padding:0}.eael-product-grid .eael-product-wrap .eael-product-title h2:before{content:none}.eael-product-grid .eael-product-wrap .eael-product-price{font-size:18px;line-height:1.2em;color:#ff7a80;font-weight:600;margin-bottom:10px}.eael-product-grid .eael-product-wrap .star-rating{margin:0 auto 10px}.eael-product-grid .eael-product-wrap a.button.add_to_cart_button.added{display:none !important}.eael-product-grid.grid .eael-product-wrap:hover .icons-wrap.box-style,.eael-product-grid.masonry .eael-product-wrap:hover .icons-wrap.box-style{bottom:30px;visibility:visible;opacity:1}.eael-product-grid.grid .eael-product-wrap:hover .icons-wrap.block-box-style,.eael-product-grid.masonry .eael-product-wrap:hover .icons-wrap.block-box-style{visibility:visible;opacity:1;-webkit-transform:translateY(-50px);-ms-transform:translateY(-50px);transform:translateY(-50px)}.eael-product-grid.grid .eael-product-wrap:hover .icons-wrap.block-style,.eael-product-grid.masonry .eael-product-wrap:hover .icons-wrap.block-style{visibility:visible;opacity:1;-webkit-transform:translateY(-50px);-ms-transform:translateY(-50px);transform:translateY(-50px)}.eael-product-grid.grid .eael-product-wrap .product-image-wrap,.eael-product-grid.masonry .eael-product-wrap .product-image-wrap{position:relative;overflow:hidden}.eael-product-grid.grid .eael-product-wrap .icons-wrap,.eael-product-grid.masonry .eael-product-wrap .icons-wrap{padding:0;list-style:none;position:absolute;z-index:9;display:block;top:50%;left:0;right:0;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);opacity:0;visibility:hidden;-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;margin:0 auto;-webkit-transition:all ease .4s;-o-transition:all ease .4s;transition:all ease .4s}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-style,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-style{background:red;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:stretch;-ms-flex-pack:stretch;justify-content:stretch;width:100%;top:auto;bottom:-50px}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-style li,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-style li{-webkit-box-flex:1;-ms-flex:1;flex:1}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-style li:not(:last-child),.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-style li:not(:last-child){border-right:1px solid #fff}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-style li.add-to-cart,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-style li.add-to-cart{-webkit-box-flex:4;-ms-flex:4;flex:4}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-style li a,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-style li a{position:relative;background-color:transparent;margin:0;padding:10px 5px;font-size:15px;line-height:1.2em;color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-style li a:hover,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-style li a:hover{background-color:transparent;color:#000}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-style li a i,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-style li a i{line-height:normal}.eael-product-grid.grid .eael-product-wrap .icons-wrap.box-style,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.box-style{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;top:auto;bottom:-100px}.eael-product-grid.grid .eael-product-wrap .icons-wrap.box-style li a,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.box-style li a{position:relative;width:42px;height:42px;margin:3px;-webkit-box-shadow:0px 15px 10px rgba(61,70,79,.12);box-shadow:0px 15px 10px rgba(61,70,79,.12);background-color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eael-product-grid.grid .eael-product-wrap .icons-wrap.box-style li a i,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.box-style li a i{line-height:1rem}.eael-product-grid.grid .eael-product-wrap .icons-wrap.box-style li a.added_to_cart,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.box-style li a.added_to_cart{font-size:0}.eael-product-grid.grid .eael-product-wrap .icons-wrap.box-style li a.added_to_cart:after,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.box-style li a.added_to_cart:after{content:"";font-weight:900;font-family:"Font Awesome 5 Free";font-size:18px;text-rendering:auto;-webkit-font-smoothing:antialiased;vertical-align:middle;margin:0;padding:0}.eael-product-grid.grid .eael-product-wrap .icons-wrap.box-style li a.button.add_to_cart_button,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.box-style li a.button.add_to_cart_button{padding:0;margin:3px;font-size:0px}.eael-product-grid.grid .eael-product-wrap .icons-wrap.box-style li a.button.add_to_cart_button:before,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.box-style li a.button.add_to_cart_button:before{content:"";display:block;font-family:"Font Awesome 5 Free";font-size:18px;font-weight:900;-webkit-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);transform:translate(-50%, -50%);top:50%;left:50%;position:absolute}.eael-product-grid.grid .eael-product-wrap .icons-wrap.box-style li a.button.add_to_cart_button.product_type_variable:before,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.box-style li a.button.add_to_cart_button.product_type_variable:before{content:""}.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;-webkit-box-align:center;-ms-flex-align:center;align-items:center;visibility:visible;opacity:1;top:auto;bottom:-24px;margin:0 5%}.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style li a,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style li a{position:relative;width:42px;height:42px;margin:3px;-webkit-box-shadow:0px 15px 10px rgba(61,70,79,.12);box-shadow:0px 15px 10px rgba(61,70,79,.12);background-color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style li a i,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style li a i{line-height:1rem}.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style li a.added_to_cart,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style li a.added_to_cart{font-size:0}.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style li a.added_to_cart:after,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style li a.added_to_cart:after{content:"";font-weight:900;font-family:"Font Awesome 5 Free";font-size:18px;line-height:38px;text-rendering:auto;-webkit-font-smoothing:antialiased;vertical-align:middle;margin:0;padding:0}.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style li a.button.add_to_cart_button,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style li a.button.add_to_cart_button{padding:0;margin:0;font-size:0px}.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style li a.button.add_to_cart_button:before,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style li a.button.add_to_cart_button:before{content:"";display:block;font-family:"Font Awesome 5 Free";font-size:18px;font-weight:900;-webkit-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);transform:translate(-50%, -50%);top:50%;left:50%;position:absolute}.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style li a.button.add_to_cart_button.product_type_variable:before,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style li a.button.add_to_cart_button.product_type_variable:before{content:""}.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style li a.product_type_external,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style li a.product_type_external{width:auto;height:auto}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-box-style,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style{background:#fff;width:100%;top:auto;bottom:-50px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-box-style li a,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style li a{position:relative;width:42px;height:42px;margin:10px 2px 0;padding:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-box-style li a i,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style li a i{line-height:1rem}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-box-style li a.added_to_cart,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style li a.added_to_cart{font-size:0}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-box-style li a.added_to_cart:after,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style li a.added_to_cart:after{content:"";font-weight:900;font-family:"Font Awesome 5 Free";font-size:18px;text-rendering:auto;-webkit-font-smoothing:antialiased;vertical-align:middle;margin:0;padding:0}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-box-style li a.button.add_to_cart_button,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style li a.button.add_to_cart_button{padding:0;margin:10px 2px 0;font-size:0px}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-box-style li a.button.add_to_cart_button:before,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style li a.button.add_to_cart_button:before{content:"";display:block;font-family:"Font Awesome 5 Free";font-size:18px;font-weight:900;-webkit-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);transform:translate(-50%, -50%);top:50%;left:50%;position:absolute}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-box-style li a.button.add_to_cart_button.product_type_variable:before,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style li a.button.add_to_cart_button.product_type_variable:before{content:""}.eael-product-grid.grid .eael-product-wrap .icons-wrap li,.eael-product-grid.masonry .eael-product-wrap .icons-wrap li{display:inline-block;margin:0;padding:0}.eael-product-grid.grid .eael-product-wrap .icons-wrap li a,.eael-product-grid.masonry .eael-product-wrap .icons-wrap li a{display:block;position:absolute;color:#000;width:100%;height:100%;text-align:center;-webkit-transition:all ease .4s;-o-transition:all ease .4s;transition:all ease .4s}.eael-product-grid.grid .eael-product-wrap .icons-wrap li a:hover,.eael-product-grid.masonry .eael-product-wrap .icons-wrap li a:hover{background:#ff7a80;color:#fff}.eael-product-grid.grid .eael-product-wrap .icons-wrap li a i,.eael-product-grid.masonry .eael-product-wrap .icons-wrap li a i{position:relative;font-size:18px;line-height:42px}.eael-product-grid.grid .eael-product-wrap .icons-wrap li a svg,.eael-product-grid.masonry .eael-product-wrap .icons-wrap li a svg{width:18px}.eael-product-grid.grid .eael-product-wrap .product-details-wrap,.eael-product-grid.masonry .eael-product-wrap .product-details-wrap{padding:10px}.eael-product-grid.masonry .woocommerce ul.products{display:block}@media(min-width: 766px){.eael-product-grid.masonry .woocommerce ul.products{margin:0 -1% !important}}.eael-product-grid.masonry .woocommerce ul.products:before,.eael-product-grid.masonry .woocommerce ul.products:after{display:table;content:" "}.eael-product-grid.masonry .woocommerce ul.products li.product{float:left;margin:15px 0}@media(min-width: 766px){.eael-product-grid.masonry .woocommerce ul.products li.product{margin:1%}}.eael-product-grid.grid.eael-product-preset-8 .product-image-wrap,.eael-product-grid.masonry.eael-product-preset-8 .product-image-wrap{overflow:inherit}.eael-product-grid.grid.eael-product-preset-8 .product-details-wrap>div:first-child,.eael-product-grid.masonry.eael-product-preset-8 .product-details-wrap>div:first-child{margin-top:20px}.eael-product-grid.grid.eael-product-preset-5 ul.products,.eael-product-grid.grid.eael-product-preset-6 ul.products,.eael-product-grid.grid.eael-product-preset-7 ul.products,.eael-product-grid.grid.eael-product-preset-8 ul.products,.eael-product-grid.masonry.eael-product-preset-5 ul.products,.eael-product-grid.masonry.eael-product-preset-6 ul.products,.eael-product-grid.masonry.eael-product-preset-7 ul.products,.eael-product-grid.masonry.eael-product-preset-8 ul.products{padding:0;margin:0;list-style:none}.eael-product-grid.grid.eael-product-preset-5 ul.products li.product,.eael-product-grid.grid.eael-product-preset-6 ul.products li.product,.eael-product-grid.grid.eael-product-preset-7 ul.products li.product,.eael-product-grid.grid.eael-product-preset-8 ul.products li.product,.eael-product-grid.masonry.eael-product-preset-5 ul.products li.product,.eael-product-grid.masonry.eael-product-preset-6 ul.products li.product,.eael-product-grid.masonry.eael-product-preset-7 ul.products li.product,.eael-product-grid.masonry.eael-product-preset-8 ul.products li.product{text-align:center;border:1px solid #000;overflow:hidden}.eael-product-grid.grid.eael-product-preset-5 ul.products li.product.first,.eael-product-grid.grid.eael-product-preset-6 ul.products li.product.first,.eael-product-grid.grid.eael-product-preset-7 ul.products li.product.first,.eael-product-grid.grid.eael-product-preset-8 ul.products li.product.first,.eael-product-grid.masonry.eael-product-preset-5 ul.products li.product.first,.eael-product-grid.masonry.eael-product-preset-6 ul.products li.product.first,.eael-product-grid.masonry.eael-product-preset-7 ul.products li.product.first,.eael-product-grid.masonry.eael-product-preset-8 ul.products li.product.first{clear:none}.eael-product-grid.grid.eael-product-preset-6 .product.outofstock .icons-wrap .button,.eael-product-grid.grid.eael-product-preset-7 .product.outofstock .icons-wrap .button,.eael-product-grid.grid.eael-product-preset-8 .product.outofstock .icons-wrap .button,.eael-product-grid.masonry.eael-product-preset-6 .product.outofstock .icons-wrap .button,.eael-product-grid.masonry.eael-product-preset-7 .product.outofstock .icons-wrap .button,.eael-product-grid.masonry.eael-product-preset-8 .product.outofstock .icons-wrap .button{display:none}.eael-product-grid.grid.eael-product-preset-6 .icons-wrap .button.product_type_grouped,.eael-product-grid.grid.eael-product-preset-7 .icons-wrap .button.product_type_grouped,.eael-product-grid.grid.eael-product-preset-8 .icons-wrap .button.product_type_grouped,.eael-product-grid.masonry.eael-product-preset-6 .icons-wrap .button.product_type_grouped,.eael-product-grid.masonry.eael-product-preset-7 .icons-wrap .button.product_type_grouped,.eael-product-grid.masonry.eael-product-preset-8 .icons-wrap .button.product_type_grouped{display:none}.eael-product-grid.list .woocommerce ul.products li.product{overflow:hidden}.eael-product-grid.list .woocommerce ul.products li.product .woocommerce-loop-product__link img{margin-bottom:0}.eael-product-grid.list .woocommerce ul.products li.product .star-rating{margin:0 auto 10px 0}.eael-product-grid.list .eael-product-list-preset-2 .eael-product-wrap{padding:20px}.eael-product-grid.list .eael-product-list-preset-2 .eael-product-wrap .product-details-wrap{padding:0 0 0 25px}.eael-product-grid.list .eael-product-list-preset-3 .eael-product-wrap{padding:0;background-color:transparent}.eael-product-grid.list .eael-product-list-preset-3 .eael-product-wrap .product-details-wrap{padding:0 0 0 25px}.eael-product-grid.list .eael-product-list-preset-3 .eael-product-wrap .title-wrap,.eael-product-grid.list .eael-product-list-preset-3 .eael-product-wrap .price-wrap{margin-bottom:10px;padding-bottom:10px;border-bottom:1px solid}.eael-product-grid.list .eael-product-list-preset-4 .eael-product-wrap{padding:0}.eael-product-grid.list .eael-product-list-preset-4 .eael-product-wrap .product-details-wrap{padding:20px;margin-left:20px}.eael-product-grid.list .eael-product-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.eael-product-grid.list .eael-product-wrap:hover .icons-wrap.box-style{-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);visibility:visible;opacity:1}.eael-product-grid.list .eael-product-wrap:hover .icons-wrap.block-style{visibility:visible;opacity:1;-webkit-transform:translateY(-50px);-ms-transform:translateY(-50px);transform:translateY(-50px)}.eael-product-grid.list .eael-product-wrap .icons-wrap{padding:0;margin:0;list-style:none;-webkit-transition:all ease .4s;-o-transition:all ease .4s;transition:all ease .4s}.eael-product-grid.list .eael-product-wrap .icons-wrap.block-style{background:red;display:-webkit-box;display:-ms-flexbox;display:flex;height:50px;width:100%;top:auto;bottom:-50px}.eael-product-grid.list .eael-product-wrap .icons-wrap.block-style li{-webkit-box-flex:1;-ms-flex:1;flex:1}.eael-product-grid.list .eael-product-wrap .icons-wrap.block-style li.add-to-cart{-webkit-box-flex:4;-ms-flex:4;flex:4}.eael-product-grid.list .eael-product-wrap .icons-wrap.block-style li a{position:relative}.eael-product-grid.list .eael-product-wrap .icons-wrap.box-style li{width:42px;height:42px;-webkit-filter:drop-shadow(0px 15px 10px rgba(61, 70, 79, 0.12));filter:drop-shadow(0px 15px 10px rgba(61, 70, 79, 0.12));background-color:#fff}.eael-product-grid.list .eael-product-wrap .icons-wrap.details-block-style li.add-to-cart a{padding:11px 15px !important}.eael-product-grid.list .eael-product-wrap .icons-wrap.details-block-style li a{margin:2px;padding:10.5px 10px}.eael-product-grid.list .eael-product-wrap .icons-wrap.details-block-style-2{display:-webkit-box;display:-ms-flexbox;display:flex}.eael-product-grid.list .eael-product-wrap .icons-wrap.details-block-style-2 li:not(:first-child) a{border-left-width:0 !important}.eael-product-grid.list .eael-product-wrap .icons-wrap.details-block-style-2 li.add-to-cart a{padding:8.5px 10px;margin:0}.eael-product-grid.list .eael-product-wrap .icons-wrap.details-block-style-2 li a{border:2px solid #ddd}.eael-product-grid.list .eael-product-wrap .icons-wrap.details-block-style-2 li a.eael-wc-compare.eael-wc-compare-icon{margin:2px}.eael-product-grid.list .eael-product-wrap .icons-wrap li{display:inline-block;margin:0;padding:0;vertical-align:top}.eael-product-grid.list .eael-product-wrap .icons-wrap li a{display:block;color:#000;text-align:center;-webkit-transition:all ease .4s;-o-transition:all ease .4s;transition:all ease .4s;background:#ffebcd;padding:9px 10px;font-size:15px;line-height:1.4em;font-weight:700;cursor:pointer}.eael-product-grid.list .eael-product-wrap .icons-wrap li a:hover{background:#ff7a80;color:#fff}.eael-product-grid.list .eael-product-wrap .icons-wrap li a i{position:relative;font-size:18px}.eael-product-grid.list .eael-product-wrap .icons-wrap li a svg{width:18px}.eael-product-grid.list .eael-product-wrap .icons-wrap li a.button{font-size:15px;line-height:1.4em}.eael-product-grid.list .eael-product-wrap .product-image-wrap{position:relative;overflow:hidden;width:45%;margin:0}.eael-product-grid.list .eael-product-wrap .product-details-wrap{width:55%;padding:25px;text-align:left !important}.eael-product-grid.list .eael-product-wrap .eael-product-price{margin-bottom:5px}.eael-product-grid.list .eael-product-wrap .eael-product-excerpt p{margin:0 0 10px}@media only screen and (min-width: 1025px){.eael-product-grid-column-1 .eael-product-grid .woocommerce ul.products{grid-template-columns:100%}.eael-product-grid-column-2 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(2, 1fr)}.eael-product-grid-column-3 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(3, 1fr)}.eael-product-grid-column-4 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(4, 1fr)}.eael-product-grid-column-5 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(5, 1fr)}.eael-product-grid-column-6 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(6, 1fr)}.eael-product-list-column-2 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(2, 1fr)}.eael-product-list-column-1 .eael-product-grid .woocommerce ul.products{grid-template-columns:100%}.eael-product-grid-column-1 .eael-product-grid.masonry .woocommerce ul.products li.product{width:100%;margin:15px 0}.eael-product-grid-column-2 .eael-product-grid.masonry .woocommerce ul.products li.product{width:48%}.eael-product-grid-column-3 .eael-product-grid.masonry .woocommerce ul.products li.product{width:31.3333%}.eael-product-grid-column-4 .eael-product-grid.masonry .woocommerce ul.products li.product{width:23%}.eael-product-grid-column-5 .eael-product-grid.masonry .woocommerce ul.products li.product{width:18%}.eael-product-grid-column-6 .eael-product-grid.masonry .woocommerce ul.products li.product{width:14.66666667%}}@media only screen and (max-width: 1024px)and (min-width: 766px){.eael-product-grid-column-tablet-1 .eael-product-grid .woocommerce ul.products{grid-template-columns:100%}.eael-product-grid-column-tablet-2 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(2, 1fr)}.eael-product-grid-column-tablet-3 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(3, 1fr)}.eael-product-grid-column-tablet-4 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(4, 1fr)}.eael-product-grid-column-tablet-5 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(5, 1fr)}.eael-product-grid-column-tablet-6 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(6, 1fr)}.eael-product-list-column-tablet-2 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(2, 1fr)}.eael-product-list-column-tablet-1 .eael-product-grid .woocommerce ul.products{grid-template-columns:100%}.eael-product-grid-column-tablet-1 .eael-product-grid.masonry .woocommerce ul.products li.product{width:100%;margin:15px 0}.eael-product-grid-column-tablet-2 .eael-product-grid.masonry .woocommerce ul.products li.product{width:48%}.eael-product-grid-column-tablet-3 .eael-product-grid.masonry .woocommerce ul.products li.product{width:31.3333%}.eael-product-grid-column-tablet-4 .eael-product-grid.masonry .woocommerce ul.products li.product{width:23%}.eael-product-grid-column-tablet-5 .eael-product-grid.masonry .woocommerce ul.products li.product{width:18%}.eael-product-grid-column-tablet-6 .eael-product-grid.masonry .woocommerce ul.products li.product{width:14.66666667%}}@media only screen and (max-width: 767px){.eael-product-grid-column-mobile-1 .eael-product-grid .woocommerce ul.products{grid-template-columns:100%}.eael-product-grid-column-mobile-2 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(2, 1fr)}.eael-product-grid-column-mobile-3 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(3, 1fr)}.eael-product-grid-column-mobile-4 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(4, 1fr)}.eael-product-grid-column-mobile-5 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(5, 1fr)}.eael-product-grid-column-mobile-6 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(6, 1fr)}.eael-product-list-column-mobile-2 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(2, 1fr)}.eael-product-list-column-mobile-2 .eael-product-grid .woocommerce ul.products .eael-product-wrap{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.eael-product-list-column-mobile-2 .eael-product-grid .woocommerce ul.products .eael-product-wrap .product-image-wrap,.eael-product-list-column-mobile-2 .eael-product-grid .woocommerce ul.products .eael-product-wrap .product-details-wrap{width:100%}.eael-product-list-column-mobile-2 .eael-product-grid .woocommerce ul.products .eael-product-wrap .product-image-wrap{margin-bottom:15px}.eael-product-list-column-mobile-2 .eael-product-grid .woocommerce ul.products .eael-product-wrap .product-details-wrap{padding:0;margin:0}.eael-product-list-column-mobile-1 .eael-product-grid .woocommerce ul.products{grid-template-columns:100%}.eael-product-list-column-mobile-1 .eael-product-grid .woocommerce ul.products .eael-product-wrap{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.eael-product-list-column-mobile-1 .eael-product-grid .woocommerce ul.products .eael-product-wrap .product-image-wrap,.eael-product-list-column-mobile-1 .eael-product-grid .woocommerce ul.products .eael-product-wrap .product-details-wrap{width:100%}.eael-product-list-column-mobile-1 .eael-product-grid .woocommerce ul.products .eael-product-wrap .product-image-wrap{margin-bottom:15px}.eael-product-list-column-mobile-1 .eael-product-grid .woocommerce ul.products .eael-product-wrap .product-details-wrap{padding:0;margin:0}.eael-product-grid-column-mobile-1 .eael-product-grid.masonry .woocommerce ul.products li.product{width:100%;margin:15px 0}.eael-product-grid-column-mobile-2 .eael-product-grid.masonry .woocommerce ul.products li.product{width:48% !important;margin:1%}.eael-product-grid-column-mobile-3 .eael-product-grid.masonry .woocommerce ul.products li.product{width:31.3333% !important;margin:1%}.eael-product-grid-column-mobile-4 .eael-product-grid.masonry .woocommerce ul.products li.product{width:23% !important;margin:1%}.eael-product-grid-column-mobile-5 .eael-product-grid.masonry .woocommerce ul.products li.product{width:18% !important;margin:1%}.eael-product-grid-column-mobile-6 .eael-product-grid.masonry .woocommerce ul.products li.product{width:14.66666667% !important;margin:1%}}.eael-product-loader{position:relative}.eael-product-loader::after{border-radius:50%;width:50px;height:50px;position:absolute;content:"";border-top:4px solid rgba(0,0,0,.2);border-right:4px solid rgba(0,0,0,.2);border-bottom:4px solid rgba(0,0,0,.2);border-left:4px solid #000;-webkit-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);transform:translate(-50%, -50%);-webkit-animation:loaderSpin 1.1s infinite linear;animation:loaderSpin 1.1s infinite linear;left:48%;top:40%;-webkit-transition:all .2s;-o-transition:all .2s;transition:all .2s}.theme-flexia .woocommerce ul.products li.product .woocommerce-LoopProduct-link{position:unset;display:unset}.eael-product-grid .woocommerce ul.products li.product .ast-shop-product-out-of-stock{display:none}
assets/front-end/css/view/simple-menu.css CHANGED
@@ -29,6 +29,9 @@
29
  display: none;
30
  }
31
  }
 
 
 
32
  .eael-simple-menu-container .eael-simple-menu-toggle-text {
33
  position: absolute;
34
  top: 0;
@@ -459,22 +462,32 @@
459
  color: #1BC1FF;
460
  }
461
  @media screen and (max-width: 991px) {
462
- .eael_advanced_menu_hamburger_disable_selected_menu_hide .eael-simple-menu-toggle-text {
463
  display: none;
464
  }
465
  }
 
 
 
466
  @media screen and (max-width: 991px) {
467
  .eael-simple-menu-hamburger-align-left .eael-simple-menu-toggle {
468
  top: 0;
469
  left: 0;
 
470
  }
471
  }
 
 
 
 
 
472
  @media screen and (max-width: 991px) {
473
  .eael-simple-menu-hamburger-align-center .eael-simple-menu-toggle {
474
- left: 0;
475
- right: 0;
476
- margin-left: auto;
477
- margin-right: auto;
 
478
  }
479
  }
480
  .eael-simple-menu--stretch .eael-simple-menu.eael-simple-menu-responsive {
29
  display: none;
30
  }
31
  }
32
+ .eael-simple-menu-container .eael-simple-menu-toggle .eael-simple-menu-toggle-text {
33
+ display: none;
34
+ }
35
  .eael-simple-menu-container .eael-simple-menu-toggle-text {
36
  position: absolute;
37
  top: 0;
462
  color: #1BC1FF;
463
  }
464
  @media screen and (max-width: 991px) {
465
+ .eael_simple_menu_hamburger_disable_selected_menu_hide .eael-simple-menu-toggle-text {
466
  display: none;
467
  }
468
  }
469
+ .eael-simple-menu-hamburger-align-left .eael-simple-menu-toggle-text {
470
+ display: none;
471
+ }
472
  @media screen and (max-width: 991px) {
473
  .eael-simple-menu-hamburger-align-left .eael-simple-menu-toggle {
474
  top: 0;
475
  left: 0;
476
+ right: auto;
477
  }
478
  }
479
+ .eael-simple-menu-hamburger-align-left .eael-simple-menu-toggle .eael-simple-menu-toggle-text {
480
+ display: block;
481
+ left: calc(100% + 20px);
482
+ white-space: nowrap;
483
+ }
484
  @media screen and (max-width: 991px) {
485
  .eael-simple-menu-hamburger-align-center .eael-simple-menu-toggle {
486
+ left: 50%;
487
+ right: auto;
488
+ -webkit-transform: translateX(-50%);
489
+ -ms-transform: translateX(-50%);
490
+ transform: translateX(-50%);
491
  }
492
  }
493
  .eael-simple-menu--stretch .eael-simple-menu.eael-simple-menu-responsive {
assets/front-end/css/view/simple-menu.min.css CHANGED
@@ -1 +1 @@
1
- .eael-simple-menu-container{background-color:#54595f}@media screen and (max-width: 991px){.eael-simple-menu-container{min-height:50px;overflow:auto}}.eael-simple-menu-container .eael-simple-menu-toggle{position:absolute;top:0;right:0;height:100%;padding-top:0;padding-bottom:0;padding-left:15px;padding-right:15px;background-color:#000;color:#fff;border:none;border-radius:0;outline:none;display:block;border-color:#333}@media screen and (min-width: 992px){.eael-simple-menu-container .eael-simple-menu-toggle{display:none}}.eael-simple-menu-container .eael-simple-menu-toggle-text{position:absolute;top:0;left:20px;font-size:14px;line-height:50px !important;letter-spacing:0 !important;color:#fff}@media screen and (min-width: 992px){.eael-simple-menu-container .eael-simple-menu-toggle-text{display:none}}.eael-simple-menu-container .eael-simple-menu{margin:0;padding:0;list-style:none}.eael-simple-menu-container .eael-simple-menu:after{content:"";display:table;clear:both}.eael-simple-menu-container .eael-simple-menu a{text-decoration:none;outline:none;-webkit-box-shadow:none;box-shadow:none}.eael-simple-menu-container .eael-simple-menu li a{font-size:14px;font-weight:400;line-height:50px;text-align:center;color:#fff;padding-left:20px;padding-right:20px;-webkit-transition:all 100ms;-o-transition:all 100ms;transition:all 100ms}.eael-simple-menu-container .eael-simple-menu li ul{margin:0;padding:0;list-style:none}.eael-simple-menu-container .eael-simple-menu li ul li a{font-size:13px;font-weight:400;line-height:40px;text-align:left;color:#000;padding-left:20px;padding-right:20px}.eael-simple-menu-container .eael-simple-menu li ul li:hover>a,.eael-simple-menu-container .eael-simple-menu li ul li.current-menu-item>a{color:#ee355f;background-color:#fff}.eael-simple-menu-container .eael-simple-menu li:hover>a,.eael-simple-menu-container .eael-simple-menu li.current-menu-item>a{color:#fff}.eael-simple-menu-container .eael-simple-menu .eael-simple-menu-indicator{position:absolute;top:25px;right:10px;width:28px;height:28px;display:block;border:1px solid #ffffff80;border-radius:2px;text-align:center;cursor:pointer}.eael-simple-menu-container .eael-simple-menu .eael-simple-menu-indicator:before{display:block;font-weight:900;line-height:26px;color:#fff;-webkit-transition:-webkit-transform 300ms;transition:-webkit-transform 300ms;-o-transition:transform 300ms;transition:transform 300ms;transition:transform 300ms, -webkit-transform 300ms}.eael-simple-menu-container .eael-simple-menu .eael-simple-menu-indicator.eael-simple-menu-indicator-open:before{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-horizontal li{position:relative;float:left;display:inline-block;padding-top:0;padding-bottom:0}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-horizontal li a{display:inline-block}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-horizontal li a span{position:relative;margin-left:5px}@media screen and (max-width: 991px){.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-horizontal li a span{display:none}}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-horizontal li ul{position:absolute;top:100%;left:auto;width:220px;visibility:hidden;opacity:0;background-color:#fff;-webkit-box-shadow:1px 1px 5px #0000001a;box-shadow:1px 1px 5px #0000001a;z-index:1}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-horizontal li ul li{position:relative;float:none;display:block}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-horizontal li ul li a{display:block}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-horizontal li ul li a span{-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg)}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-horizontal li ul li:last-child>a{border-bottom-width:0}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-horizontal li ul li ul{top:0;left:100%}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-horizontal li:hover>ul{visibility:visible;opacity:1}@media screen and (min-width: 992px){.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-horizontal.eael-simple-menu-dropdown-animate-fade li ul{-webkit-transition:all 300ms;-o-transition:all 300ms;transition:all 300ms}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-horizontal.eael-simple-menu-dropdown-animate-to-top li ul{-webkit-transform:translateY(20px);-ms-transform:translateY(20px);transform:translateY(20px);-webkit-transition:all 300ms;-o-transition:all 300ms;transition:all 300ms}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-horizontal.eael-simple-menu-dropdown-animate-to-top li:hover>ul{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-horizontal.eael-simple-menu-dropdown-animate-zoom-in li ul{-webkit-transform:scale(0.8);-ms-transform:scale(0.8);transform:scale(0.8);-webkit-transition:all 300ms;-o-transition:all 300ms;transition:all 300ms}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-horizontal.eael-simple-menu-dropdown-animate-zoom-in li:hover>ul{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-horizontal.eael-simple-menu-dropdown-animate-zoom-out li ul{-webkit-transform:scale(1.2);-ms-transform:scale(1.2);transform:scale(1.2);-webkit-transition:all 300ms;-o-transition:all 300ms;transition:all 300ms}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-horizontal.eael-simple-menu-dropdown-animate-zoom-out li:hover>ul{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-horizontal .eael-simple-menu-indicator{display:none}}@media screen and (max-width: 991px){.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-horizontal{position:absolute;top:50px;background-color:#54595f;width:100%;z-index:9;display:none}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-horizontal li{float:none;display:block}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-horizontal li a{display:block;text-align:inherit}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-horizontal li ul{position:relative;top:unset;left:unset;width:100%;-webkit-box-shadow:none;box-shadow:none;visibility:visible;opacity:1;display:none}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-horizontal li ul li{position:relative;display:block}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-horizontal li ul li .eael-simple-menu-indicator{border:1px solid #00000080}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-horizontal li ul li .eael-simple-menu-indicator:before{color:#000}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-horizontal li ul li ul{position:relative;width:100%;top:unset;left:unset}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-horizontal li ul li ul li:last-child>a{border-bottom-width:1px}}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-vertical li{position:relative}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-vertical li a{display:block;text-align:left}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-vertical li ul{display:none}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-vertical li ul li{position:relative;display:block}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-vertical li ul li a{border-bottom-style:solid;border-bottom-width:1px;border-bottom-color:transparent}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-vertical li ul li:last-child>a{border-bottom-width:0}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-vertical li ul li .eael-simple-menu-indicator{border:1px solid #00000080}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-vertical li ul li .eael-simple-menu-indicator:before{color:#000}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-vertical li ul li ul li:last-child>a{border-bottom-width:1px}@media screen and (min-width: 992px){.eael-simple-menu-container.eael-simple-menu-align-center{text-align:center}}@media screen and (min-width: 992px){.eael-simple-menu-container.eael-simple-menu-align-center .eael-simple-menu.eael-simple-menu-horizontal{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}}@media screen and (max-width: 991px){.eael-simple-menu-container.eael-simple-menu-align-center .eael-simple-menu>li>a{text-align:center}}.eael-simple-menu-container.eael-simple-menu-align-center .eael-simple-menu.eael-simple-menu-vertical>li>a{text-align:center}@media screen and (min-width: 992px){.eael-simple-menu-container.eael-simple-menu-align-right{text-align:right}}@media screen and (min-width: 992px){.eael-simple-menu-container.eael-simple-menu-align-right .eael-simple-menu.eael-simple-menu-horizontal{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}}@media screen and (max-width: 991px){.eael-simple-menu-container.eael-simple-menu-align-right .eael-simple-menu.eael-simple-menu-horizontal>li>a{text-align:right}}.eael-simple-menu-container.eael-simple-menu-align-right .eael-simple-menu.eael-simple-menu-horizontal>li>.eael-simple-menu-indicator{right:initial;left:10px}.eael-simple-menu-container.eael-simple-menu-align-right .eael-simple-menu.eael-simple-menu-horizontal>li:last-child a{border-right:none}.eael-simple-menu-container.eael-simple-menu-align-right .eael-simple-menu.eael-simple-menu-vertical>li>a{text-align:right}.eael-simple-menu-container.eael-simple-menu-align-right .eael-simple-menu.eael-simple-menu-vertical>li>.eael-simple-menu-indicator{right:initial;left:10px}.eael-simple-menu-container.eael-simple-menu-dropdown-align-center .eael-simple-menu li ul li a{text-align:center}.eael-simple-menu-container.eael-simple-menu-dropdown-align-right .eael-simple-menu li ul li a{text-align:right}.eael-simple-menu-container.eael-simple-menu-dropdown-align-right .eael-simple-menu li ul li>.eael-simple-menu-indicator{right:initial;left:10px}.eael-simple-menu-container.preset-1{background-color:#4e36a3}@media screen and (max-width: 991px){.eael-simple-menu-container.preset-1 .eael-simple-menu.eael-simple-menu-horizontal{background-color:#4e36a3}}.eael-simple-menu-container.preset-1 .eael-simple-menu li>a{color:#fff}.eael-simple-menu-container.preset-1 .eael-simple-menu li.current-menu-ancestor>a,.eael-simple-menu-container.preset-1 .eael-simple-menu li:hover>a,.eael-simple-menu-container.preset-1 .eael-simple-menu li.current-menu-item>a{background-color:#743eff}.eael-simple-menu-container.preset-1 .eael-simple-menu li ul{background-color:#743eff}.eael-simple-menu-container.preset-1 .eael-simple-menu li ul li.current-menu-ancestor>a,.eael-simple-menu-container.preset-1 .eael-simple-menu li ul li:hover>a,.eael-simple-menu-container.preset-1 .eael-simple-menu li ul li.current-menu-item>a{background-color:#4e36a3}.eael-simple-menu-container.preset-3{background-color:#15dbd5}@media screen and (max-width: 991px){.eael-simple-menu-container.preset-3 .eael-simple-menu.eael-simple-menu-horizontal{background-color:#15dbd5}}.eael-simple-menu-container.preset-3 .eael-simple-menu li>a{color:#2a1a6c}.eael-simple-menu-container.preset-3 .eael-simple-menu li.current-menu-ancestor>a,.eael-simple-menu-container.preset-3 .eael-simple-menu li:hover>a,.eael-simple-menu-container.preset-3 .eael-simple-menu li.current-menu-item>a{color:#fff;background-color:#f72c8a}.eael-simple-menu-container.preset-3 .eael-simple-menu li ul{background-color:#f72c8a}.eael-simple-menu-container.preset-3 .eael-simple-menu li ul li>a{color:#fff;border-bottom:1px solid #f72c8a}.eael-simple-menu-container.preset-3 .eael-simple-menu li ul li.current-menu-ancestor>a,.eael-simple-menu-container.preset-3 .eael-simple-menu li ul li:hover>a,.eael-simple-menu-container.preset-3 .eael-simple-menu li ul li.current-menu-item>a{background-color:#f30875}.eael-simple-menu-container.preset-2{background-color:#fff;border:1px solid #1bc1ff}@media screen and (max-width: 991px){.eael-simple-menu-container.preset-2 .eael-simple-menu.eael-simple-menu-horizontal{background-color:#1bc1ff}.eael-simple-menu-container.preset-2 .eael-simple-menu.eael-simple-menu-horizontal li.current-menu-ancestor>a,.eael-simple-menu-container.preset-2 .eael-simple-menu.eael-simple-menu-horizontal li:hover>a,.eael-simple-menu-container.preset-2 .eael-simple-menu.eael-simple-menu-horizontal li.current-menu-item>a{color:#fff}}.eael-simple-menu-container.preset-2 .eael-simple-menu li>a{color:#5d5e61}.eael-simple-menu-container.preset-2 .eael-simple-menu.eael-simple-menu-horizontal:not(.eael-simple-menu-responsive)>li:first-child>a{border-left:1px solid #1bc1ff}.eael-simple-menu-container.preset-2 .eael-simple-menu.eael-simple-menu-horizontal:not(.eael-advanced-menu-responsive)>li>a{border-right:1px solid #1bc1ff}.eael-simple-menu-container.preset-2 .eael-simple-menu li.current-menu-ancestor>a,.eael-simple-menu-container.preset-2 .eael-simple-menu li:hover>a,.eael-simple-menu-container.preset-2 .eael-simple-menu li.current-menu-item>a{color:#1bc1ff}.eael-simple-menu-container.preset-2 .eael-simple-menu li ul{background-color:#fff;border:1px solid #1bc1ff}.eael-simple-menu-container.preset-2 .eael-simple-menu li ul li>a{color:#5f5d5d;border-bottom:1px solid #1bc1ff}.eael-simple-menu-container.preset-2 .eael-simple-menu li ul li.current-menu-ancestor>a,.eael-simple-menu-container.preset-2 .eael-simple-menu li ul li:hover>a,.eael-simple-menu-container.preset-2 .eael-simple-menu li ul li.current-menu-item>a{color:#1bc1ff}@media screen and (max-width: 991px){.eael_advanced_menu_hamburger_disable_selected_menu_hide .eael-simple-menu-toggle-text{display:none}}@media screen and (max-width: 991px){.eael-simple-menu-hamburger-align-left .eael-simple-menu-toggle{top:0;left:0}}@media screen and (max-width: 991px){.eael-simple-menu-hamburger-align-center .eael-simple-menu-toggle{left:0;right:0;margin-left:auto;margin-right:auto}}.eael-simple-menu--stretch .eael-simple-menu.eael-simple-menu-responsive{left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);transition:max-height .3s,transform .3s,-webkit-transform .3s;-webkit-transform-origin:top;-ms-transform-origin:top;transform-origin:top;overflow:auto;z-index:9999;max-height:100vh}.eael-simple-menu-container .eael-simple-menu-responsive.eael-hamburger-center li .eael-simple-menu-indicator{left:initial !important;right:10px !important}.eael-simple-menu-container .eael-simple-menu-responsive.eael-hamburger-center li a{text-align:center !important}.eael-simple-menu-container .eael-simple-menu-responsive.eael-hamburger-left li .eael-simple-menu-indicator{left:initial !important;right:10px !important}.eael-simple-menu-container .eael-simple-menu-responsive.eael-hamburger-left li a{text-align:left !important}.eael-simple-menu-container .eael-simple-menu-responsive.eael-hamburger-right li .eael-simple-menu-indicator{right:initial !important;left:10px !important}.eael-simple-menu-container .eael-simple-menu-responsive.eael-hamburger-right li a{text-align:right !important}
1
+ .eael-simple-menu-container{background-color:#54595f}@media screen and (max-width: 991px){.eael-simple-menu-container{min-height:50px;overflow:auto}}.eael-simple-menu-container .eael-simple-menu-toggle{position:absolute;top:0;right:0;height:100%;padding-top:0;padding-bottom:0;padding-left:15px;padding-right:15px;background-color:#000;color:#fff;border:none;border-radius:0;outline:none;display:block;border-color:#333}@media screen and (min-width: 992px){.eael-simple-menu-container .eael-simple-menu-toggle{display:none}}.eael-simple-menu-container .eael-simple-menu-toggle .eael-simple-menu-toggle-text{display:none}.eael-simple-menu-container .eael-simple-menu-toggle-text{position:absolute;top:0;left:20px;font-size:14px;line-height:50px !important;letter-spacing:0 !important;color:#fff}@media screen and (min-width: 992px){.eael-simple-menu-container .eael-simple-menu-toggle-text{display:none}}.eael-simple-menu-container .eael-simple-menu{margin:0;padding:0;list-style:none}.eael-simple-menu-container .eael-simple-menu:after{content:"";display:table;clear:both}.eael-simple-menu-container .eael-simple-menu a{text-decoration:none;outline:none;-webkit-box-shadow:none;box-shadow:none}.eael-simple-menu-container .eael-simple-menu li a{font-size:14px;font-weight:400;line-height:50px;text-align:center;color:#fff;padding-left:20px;padding-right:20px;-webkit-transition:all 100ms;-o-transition:all 100ms;transition:all 100ms}.eael-simple-menu-container .eael-simple-menu li ul{margin:0;padding:0;list-style:none}.eael-simple-menu-container .eael-simple-menu li ul li a{font-size:13px;font-weight:400;line-height:40px;text-align:left;color:#000;padding-left:20px;padding-right:20px}.eael-simple-menu-container .eael-simple-menu li ul li:hover>a,.eael-simple-menu-container .eael-simple-menu li ul li.current-menu-item>a{color:#ee355f;background-color:#fff}.eael-simple-menu-container .eael-simple-menu li:hover>a,.eael-simple-menu-container .eael-simple-menu li.current-menu-item>a{color:#fff}.eael-simple-menu-container .eael-simple-menu .eael-simple-menu-indicator{position:absolute;top:25px;right:10px;width:28px;height:28px;display:block;border:1px solid #ffffff80;border-radius:2px;text-align:center;cursor:pointer}.eael-simple-menu-container .eael-simple-menu .eael-simple-menu-indicator:before{display:block;font-weight:900;line-height:26px;color:#fff;-webkit-transition:-webkit-transform 300ms;transition:-webkit-transform 300ms;-o-transition:transform 300ms;transition:transform 300ms;transition:transform 300ms, -webkit-transform 300ms}.eael-simple-menu-container .eael-simple-menu .eael-simple-menu-indicator.eael-simple-menu-indicator-open:before{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-horizontal li{position:relative;float:left;display:inline-block;padding-top:0;padding-bottom:0}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-horizontal li a{display:inline-block}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-horizontal li a span{position:relative;margin-left:5px}@media screen and (max-width: 991px){.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-horizontal li a span{display:none}}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-horizontal li ul{position:absolute;top:100%;left:auto;width:220px;visibility:hidden;opacity:0;background-color:#fff;-webkit-box-shadow:1px 1px 5px #0000001a;box-shadow:1px 1px 5px #0000001a;z-index:1}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-horizontal li ul li{position:relative;float:none;display:block}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-horizontal li ul li a{display:block}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-horizontal li ul li a span{-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg)}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-horizontal li ul li:last-child>a{border-bottom-width:0}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-horizontal li ul li ul{top:0;left:100%}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-horizontal li:hover>ul{visibility:visible;opacity:1}@media screen and (min-width: 992px){.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-horizontal.eael-simple-menu-dropdown-animate-fade li ul{-webkit-transition:all 300ms;-o-transition:all 300ms;transition:all 300ms}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-horizontal.eael-simple-menu-dropdown-animate-to-top li ul{-webkit-transform:translateY(20px);-ms-transform:translateY(20px);transform:translateY(20px);-webkit-transition:all 300ms;-o-transition:all 300ms;transition:all 300ms}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-horizontal.eael-simple-menu-dropdown-animate-to-top li:hover>ul{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-horizontal.eael-simple-menu-dropdown-animate-zoom-in li ul{-webkit-transform:scale(0.8);-ms-transform:scale(0.8);transform:scale(0.8);-webkit-transition:all 300ms;-o-transition:all 300ms;transition:all 300ms}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-horizontal.eael-simple-menu-dropdown-animate-zoom-in li:hover>ul{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-horizontal.eael-simple-menu-dropdown-animate-zoom-out li ul{-webkit-transform:scale(1.2);-ms-transform:scale(1.2);transform:scale(1.2);-webkit-transition:all 300ms;-o-transition:all 300ms;transition:all 300ms}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-horizontal.eael-simple-menu-dropdown-animate-zoom-out li:hover>ul{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-horizontal .eael-simple-menu-indicator{display:none}}@media screen and (max-width: 991px){.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-horizontal{position:absolute;top:50px;background-color:#54595f;width:100%;z-index:9;display:none}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-horizontal li{float:none;display:block}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-horizontal li a{display:block;text-align:inherit}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-horizontal li ul{position:relative;top:unset;left:unset;width:100%;-webkit-box-shadow:none;box-shadow:none;visibility:visible;opacity:1;display:none}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-horizontal li ul li{position:relative;display:block}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-horizontal li ul li .eael-simple-menu-indicator{border:1px solid #00000080}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-horizontal li ul li .eael-simple-menu-indicator:before{color:#000}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-horizontal li ul li ul{position:relative;width:100%;top:unset;left:unset}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-horizontal li ul li ul li:last-child>a{border-bottom-width:1px}}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-vertical li{position:relative}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-vertical li a{display:block;text-align:left}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-vertical li ul{display:none}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-vertical li ul li{position:relative;display:block}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-vertical li ul li a{border-bottom-style:solid;border-bottom-width:1px;border-bottom-color:transparent}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-vertical li ul li:last-child>a{border-bottom-width:0}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-vertical li ul li .eael-simple-menu-indicator{border:1px solid #00000080}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-vertical li ul li .eael-simple-menu-indicator:before{color:#000}.eael-simple-menu-container .eael-simple-menu.eael-simple-menu-vertical li ul li ul li:last-child>a{border-bottom-width:1px}@media screen and (min-width: 992px){.eael-simple-menu-container.eael-simple-menu-align-center{text-align:center}}@media screen and (min-width: 992px){.eael-simple-menu-container.eael-simple-menu-align-center .eael-simple-menu.eael-simple-menu-horizontal{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}}@media screen and (max-width: 991px){.eael-simple-menu-container.eael-simple-menu-align-center .eael-simple-menu>li>a{text-align:center}}.eael-simple-menu-container.eael-simple-menu-align-center .eael-simple-menu.eael-simple-menu-vertical>li>a{text-align:center}@media screen and (min-width: 992px){.eael-simple-menu-container.eael-simple-menu-align-right{text-align:right}}@media screen and (min-width: 992px){.eael-simple-menu-container.eael-simple-menu-align-right .eael-simple-menu.eael-simple-menu-horizontal{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}}@media screen and (max-width: 991px){.eael-simple-menu-container.eael-simple-menu-align-right .eael-simple-menu.eael-simple-menu-horizontal>li>a{text-align:right}}.eael-simple-menu-container.eael-simple-menu-align-right .eael-simple-menu.eael-simple-menu-horizontal>li>.eael-simple-menu-indicator{right:initial;left:10px}.eael-simple-menu-container.eael-simple-menu-align-right .eael-simple-menu.eael-simple-menu-horizontal>li:last-child a{border-right:none}.eael-simple-menu-container.eael-simple-menu-align-right .eael-simple-menu.eael-simple-menu-vertical>li>a{text-align:right}.eael-simple-menu-container.eael-simple-menu-align-right .eael-simple-menu.eael-simple-menu-vertical>li>.eael-simple-menu-indicator{right:initial;left:10px}.eael-simple-menu-container.eael-simple-menu-dropdown-align-center .eael-simple-menu li ul li a{text-align:center}.eael-simple-menu-container.eael-simple-menu-dropdown-align-right .eael-simple-menu li ul li a{text-align:right}.eael-simple-menu-container.eael-simple-menu-dropdown-align-right .eael-simple-menu li ul li>.eael-simple-menu-indicator{right:initial;left:10px}.eael-simple-menu-container.preset-1{background-color:#4e36a3}@media screen and (max-width: 991px){.eael-simple-menu-container.preset-1 .eael-simple-menu.eael-simple-menu-horizontal{background-color:#4e36a3}}.eael-simple-menu-container.preset-1 .eael-simple-menu li>a{color:#fff}.eael-simple-menu-container.preset-1 .eael-simple-menu li.current-menu-ancestor>a,.eael-simple-menu-container.preset-1 .eael-simple-menu li:hover>a,.eael-simple-menu-container.preset-1 .eael-simple-menu li.current-menu-item>a{background-color:#743eff}.eael-simple-menu-container.preset-1 .eael-simple-menu li ul{background-color:#743eff}.eael-simple-menu-container.preset-1 .eael-simple-menu li ul li.current-menu-ancestor>a,.eael-simple-menu-container.preset-1 .eael-simple-menu li ul li:hover>a,.eael-simple-menu-container.preset-1 .eael-simple-menu li ul li.current-menu-item>a{background-color:#4e36a3}.eael-simple-menu-container.preset-3{background-color:#15dbd5}@media screen and (max-width: 991px){.eael-simple-menu-container.preset-3 .eael-simple-menu.eael-simple-menu-horizontal{background-color:#15dbd5}}.eael-simple-menu-container.preset-3 .eael-simple-menu li>a{color:#2a1a6c}.eael-simple-menu-container.preset-3 .eael-simple-menu li.current-menu-ancestor>a,.eael-simple-menu-container.preset-3 .eael-simple-menu li:hover>a,.eael-simple-menu-container.preset-3 .eael-simple-menu li.current-menu-item>a{color:#fff;background-color:#f72c8a}.eael-simple-menu-container.preset-3 .eael-simple-menu li ul{background-color:#f72c8a}.eael-simple-menu-container.preset-3 .eael-simple-menu li ul li>a{color:#fff;border-bottom:1px solid #f72c8a}.eael-simple-menu-container.preset-3 .eael-simple-menu li ul li.current-menu-ancestor>a,.eael-simple-menu-container.preset-3 .eael-simple-menu li ul li:hover>a,.eael-simple-menu-container.preset-3 .eael-simple-menu li ul li.current-menu-item>a{background-color:#f30875}.eael-simple-menu-container.preset-2{background-color:#fff;border:1px solid #1bc1ff}@media screen and (max-width: 991px){.eael-simple-menu-container.preset-2 .eael-simple-menu.eael-simple-menu-horizontal{background-color:#1bc1ff}.eael-simple-menu-container.preset-2 .eael-simple-menu.eael-simple-menu-horizontal li.current-menu-ancestor>a,.eael-simple-menu-container.preset-2 .eael-simple-menu.eael-simple-menu-horizontal li:hover>a,.eael-simple-menu-container.preset-2 .eael-simple-menu.eael-simple-menu-horizontal li.current-menu-item>a{color:#fff}}.eael-simple-menu-container.preset-2 .eael-simple-menu li>a{color:#5d5e61}.eael-simple-menu-container.preset-2 .eael-simple-menu.eael-simple-menu-horizontal:not(.eael-simple-menu-responsive)>li:first-child>a{border-left:1px solid #1bc1ff}.eael-simple-menu-container.preset-2 .eael-simple-menu.eael-simple-menu-horizontal:not(.eael-advanced-menu-responsive)>li>a{border-right:1px solid #1bc1ff}.eael-simple-menu-container.preset-2 .eael-simple-menu li.current-menu-ancestor>a,.eael-simple-menu-container.preset-2 .eael-simple-menu li:hover>a,.eael-simple-menu-container.preset-2 .eael-simple-menu li.current-menu-item>a{color:#1bc1ff}.eael-simple-menu-container.preset-2 .eael-simple-menu li ul{background-color:#fff;border:1px solid #1bc1ff}.eael-simple-menu-container.preset-2 .eael-simple-menu li ul li>a{color:#5f5d5d;border-bottom:1px solid #1bc1ff}.eael-simple-menu-container.preset-2 .eael-simple-menu li ul li.current-menu-ancestor>a,.eael-simple-menu-container.preset-2 .eael-simple-menu li ul li:hover>a,.eael-simple-menu-container.preset-2 .eael-simple-menu li ul li.current-menu-item>a{color:#1bc1ff}@media screen and (max-width: 991px){.eael_simple_menu_hamburger_disable_selected_menu_hide .eael-simple-menu-toggle-text{display:none}}.eael-simple-menu-hamburger-align-left .eael-simple-menu-toggle-text{display:none}@media screen and (max-width: 991px){.eael-simple-menu-hamburger-align-left .eael-simple-menu-toggle{top:0;left:0;right:auto}}.eael-simple-menu-hamburger-align-left .eael-simple-menu-toggle .eael-simple-menu-toggle-text{display:block;left:calc(100% + 20px);white-space:nowrap}@media screen and (max-width: 991px){.eael-simple-menu-hamburger-align-center .eael-simple-menu-toggle{left:50%;right:auto;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}}.eael-simple-menu--stretch .eael-simple-menu.eael-simple-menu-responsive{left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);transition:max-height .3s,transform .3s,-webkit-transform .3s;-webkit-transform-origin:top;-ms-transform-origin:top;transform-origin:top;overflow:auto;z-index:9999;max-height:100vh}.eael-simple-menu-container .eael-simple-menu-responsive.eael-hamburger-center li .eael-simple-menu-indicator{left:initial !important;right:10px !important}.eael-simple-menu-container .eael-simple-menu-responsive.eael-hamburger-center li a{text-align:center !important}.eael-simple-menu-container .eael-simple-menu-responsive.eael-hamburger-left li .eael-simple-menu-indicator{left:initial !important;right:10px !important}.eael-simple-menu-container .eael-simple-menu-responsive.eael-hamburger-left li a{text-align:left !important}.eael-simple-menu-container .eael-simple-menu-responsive.eael-hamburger-right li .eael-simple-menu-indicator{right:initial !important;left:10px !important}.eael-simple-menu-container .eael-simple-menu-responsive.eael-hamburger-right li a{text-align:right !important}
assets/front-end/js/view/simple-menu.js CHANGED
@@ -93,7 +93,7 @@
93
  /*! no static exports found */
94
  /***/ (function(module, exports) {
95
 
96
- eval("var SimpleMenu = function SimpleMenu($scope, $) {\n var $indicator_class = $('.eael-simple-menu-container', $scope).data('indicator-class');\n var $indicator_icon = $('.eael-simple-menu-container', $scope).data('indicator');\n var $dropdown_indicator_icon = $('.eael-simple-menu-container', $scope).data('dropdown-indicator');\n var $dropdown_indicator_class = $('.eael-simple-menu-container', $scope).data('dropdown-indicator-class');\n var $horizontal = $('.eael-simple-menu', $scope).hasClass('eael-simple-menu-horizontal');\n var $fullWidth = $('.eael-simple-menu--stretch');\n\n if ($horizontal) {\n // insert indicator\n if ($indicator_icon == 'svg') {\n $('.eael-simple-menu > li.menu-item-has-children', $scope).each(function () {\n $('> a', $(this)).append('<span class=\"indicator-svg\">' + $indicator_class + '</span>');\n });\n } else {\n $('.eael-simple-menu > li.menu-item-has-children', $scope).each(function () {\n $('> a', $(this)).append('<span class=\"' + $indicator_class + '\"></span>');\n });\n }\n\n if ($dropdown_indicator_icon == 'svg') {\n $('.eael-simple-menu > li ul li.menu-item-has-children', $scope).each(function () {\n $('> a', $(this)).append('<span class=\"dropdown-indicator-svg\">' + $dropdown_indicator_class + '</span>');\n });\n } else {\n $('.eael-simple-menu > li ul li.menu-item-has-children', $scope).each(function () {\n $('> a', $(this)).append('<span class=\"' + $dropdown_indicator_class + '\"></span>');\n });\n } // insert responsive menu toggle, text\n\n\n $('.eael-simple-menu-horizontal', $scope).before('<span class=\"eael-simple-menu-toggle-text\"></span>').after('<button class=\"eael-simple-menu-toggle\"><span class=\"eicon-menu-bar\"></span></button>');\n eael_menu_resize(); // responsive menu slide\n\n $('.eael-simple-menu-container', $scope).on('click', '.eael-simple-menu-toggle', function (e) {\n e.preventDefault();\n var $siblings = $(this).siblings('nav').children('.eael-simple-menu-horizontal');\n $siblings.css('display') == 'none' ? $siblings.slideDown(300) : $siblings.slideUp(300);\n }); // clear responsive props\n\n $(window).on('resize load', function () {\n eael_menu_resize();\n });\n }\n\n function eael_menu_resize() {\n if (window.matchMedia('(max-width: 991px)').matches) {\n $('.eael-simple-menu-container', $scope).addClass('eael-simple-menu-hamburger');\n $('.eael-simple-menu-horizontal', $scope).addClass('eael-simple-menu-responsive');\n $('.eael-simple-menu-toggle-text', $scope).text($('.eael-simple-menu-horizontal .current-menu-item a', $scope).eq(0).text());\n\n if ($('.eael-simple-menu-container', $scope).hasClass('eael-simple-menu--stretch')) {\n var css = {};\n\n if (!$('.eael-simple-menu-horizontal', $scope).parent().hasClass('eael-nav-menu-wrapper')) {\n $('.eael-simple-menu-horizontal', $scope).wrap('<nav class=\"eael-nav-menu-wrapper\"></nav>');\n }\n\n var $navMenu = $(\".eael-simple-menu-container nav\", $scope);\n menu_size_reset($navMenu);\n css.width = parseFloat($('.elementor').width()) + 'px';\n css.left = -parseFloat($navMenu.offset().left) + 'px';\n css.position = 'absolute';\n $navMenu.css(css);\n } else {\n var _css = {};\n\n if (!$('.eael-simple-menu-horizontal', $scope).parent().hasClass('eael-nav-menu-wrapper')) {\n $('.eael-simple-menu-horizontal', $scope).wrap('<nav class=\"eael-nav-menu-wrapper\"></nav>');\n }\n\n var _$navMenu = $(\".eael-simple-menu-container nav\", $scope);\n\n menu_size_reset(_$navMenu);\n _css.width = '';\n _css.left = '';\n _css.position = 'inherit';\n\n _$navMenu.css(_css);\n }\n } else {\n $('.eael-simple-menu-container', $scope).removeClass('eael-simple-menu-hamburger');\n $('.eael-simple-menu-horizontal', $scope).removeClass('eael-simple-menu-responsive');\n $('.eael-simple-menu-horizontal, .eael-simple-menu-horizontal ul', $scope).css('display', '');\n $(\".eael-simple-menu-container nav\", $scope).removeAttr('style');\n }\n }\n\n function menu_size_reset(selector) {\n var css = {};\n css.width = '';\n css.left = '';\n css.position = 'inherit';\n selector.css(css);\n }\n\n $('.eael-simple-menu > li.menu-item-has-children', $scope).each(function () {\n // indicator position\n if ($indicator_icon == 'svg') {\n var $height = parseInt($('a', this).css('line-height')) / 2;\n $(this).append('<span class=\"eael-simple-menu-indicator\"> ' + $indicator_class + '</span>');\n } else {\n var $height = parseInt($('a', this).css('line-height')) / 2;\n $(this).append('<span class=\"eael-simple-menu-indicator ' + $indicator_class + '\"></span>');\n } // if current, keep indicator open\n // $(this).hasClass('current-menu-ancestor') ? $(this).addClass('eael-simple-menu-indicator-open') : ''\n\n });\n $('.eael-simple-menu > li ul li.menu-item-has-children', $scope).each(function (e) {\n // indicator position\n if ($dropdown_indicator_icon == 'svg') {\n var $height = parseInt($('a', this).css('line-height')) / 2;\n $(this).append('<span class=\"eael-simple-menu-indicator\"> ' + $dropdown_indicator_class + '</span>');\n } else {\n var $height = parseInt($('a', this).css('line-height')) / 2;\n $(this).append('<span class=\"eael-simple-menu-indicator ' + $dropdown_indicator_class + '\"></span>');\n } // if current, keep indicator open\n // $(this).hasClass('current-menu-ancestor') ? $(this).addClass('eael-simple-menu-indicator-open') : ''\n\n }); // menu indent\n\n $('.eael-simple-menu-dropdown-align-left .eael-simple-menu-vertical li.menu-item-has-children').each(function () {\n var $padding_left = parseInt($('a', $(this)).css('padding-left'));\n $('ul li a', this).css({\n 'padding-left': $padding_left + 20 + 'px'\n });\n });\n $('.eael-simple-menu-dropdown-align-right .eael-simple-menu-vertical li.menu-item-has-children').each(function () {\n var $padding_right = parseInt($('a', $(this)).css('padding-right'));\n $('ul li a', this).css({\n 'padding-right': $padding_right + 20 + 'px'\n });\n }); // menu dropdown toggle\n\n $('.eael-simple-menu', $scope).on('click', '.eael-simple-menu-indicator', function (e) {\n e.preventDefault();\n $(this).toggleClass('eael-simple-menu-indicator-open');\n $(this).hasClass('eael-simple-menu-indicator-open') ? $(this).siblings('ul').slideDown(300) : $(this).siblings('ul').slideUp(300);\n }); // main menu toggle\n\n $('.eael-simple-menu-container', $scope).on('click', '.eael-simple-menu-responsive li a', function (e) {\n $(this).parents('.eael-simple-menu-horizontal').slideUp(300);\n });\n};\n\njQuery(window).on('elementor/frontend/init', function () {\n elementorFrontend.hooks.addAction('frontend/element_ready/eael-simple-menu.default', SimpleMenu);\n});\n\n//# sourceURL=webpack:///./src/js/view/simple-menu.js?");
97
 
98
  /***/ })
99
 
93
  /*! no static exports found */
94
  /***/ (function(module, exports) {
95
 
96
+ eval("var SimpleMenu = function SimpleMenu($scope, $) {\n var $indicator_class = $('.eael-simple-menu-container', $scope).data('indicator-class');\n var $indicator_icon = $('.eael-simple-menu-container', $scope).data('indicator');\n var $dropdown_indicator_icon = $('.eael-simple-menu-container', $scope).data('dropdown-indicator');\n var $dropdown_indicator_class = $('.eael-simple-menu-container', $scope).data('dropdown-indicator-class');\n var $horizontal = $('.eael-simple-menu', $scope).hasClass('eael-simple-menu-horizontal');\n var $fullWidth = $('.eael-simple-menu--stretch');\n\n if ($horizontal) {\n // insert indicator\n if ($indicator_icon == 'svg') {\n $('.eael-simple-menu > li.menu-item-has-children', $scope).each(function () {\n $('> a', $(this)).append('<span class=\"indicator-svg\">' + $indicator_class + '</span>');\n });\n } else {\n $('.eael-simple-menu > li.menu-item-has-children', $scope).each(function () {\n $('> a', $(this)).append('<span class=\"' + $indicator_class + '\"></span>');\n });\n }\n\n if ($dropdown_indicator_icon == 'svg') {\n $('.eael-simple-menu > li ul li.menu-item-has-children', $scope).each(function () {\n $('> a', $(this)).append('<span class=\"dropdown-indicator-svg\">' + $dropdown_indicator_class + '</span>');\n });\n } else {\n $('.eael-simple-menu > li ul li.menu-item-has-children', $scope).each(function () {\n $('> a', $(this)).append('<span class=\"' + $dropdown_indicator_class + '\"></span>');\n });\n } // insert responsive menu toggle, text\n\n\n $('.eael-simple-menu-horizontal', $scope).before('<span class=\"eael-simple-menu-toggle-text\"></span>').after('<button class=\"eael-simple-menu-toggle\"><span class=\"eicon-menu-bar\"></span><span class=\"eael-simple-menu-toggle-text\"></span></button>');\n eael_menu_resize(); // responsive menu slide\n\n $('.eael-simple-menu-container', $scope).on('click', '.eael-simple-menu-toggle', function (e) {\n e.preventDefault();\n var $siblings = $(this).siblings('nav').children('.eael-simple-menu-horizontal');\n $siblings.css('display') == 'none' ? $siblings.slideDown(300) : $siblings.slideUp(300);\n }); // clear responsive props\n\n $(window).on('resize load', function () {\n eael_menu_resize();\n });\n }\n\n function eael_menu_resize() {\n if (window.matchMedia('(max-width: 991px)').matches) {\n $('.eael-simple-menu-container', $scope).addClass('eael-simple-menu-hamburger');\n $('.eael-simple-menu-horizontal', $scope).addClass('eael-simple-menu-responsive');\n $('.eael-simple-menu-toggle-text', $scope).text($('.eael-simple-menu-horizontal .current-menu-item a', $scope).eq(0).text());\n\n if ($('.eael-simple-menu-container', $scope).hasClass('eael-simple-menu--stretch')) {\n var css = {};\n\n if (!$('.eael-simple-menu-horizontal', $scope).parent().hasClass('eael-nav-menu-wrapper')) {\n $('.eael-simple-menu-horizontal', $scope).wrap('<nav class=\"eael-nav-menu-wrapper\"></nav>');\n }\n\n var $navMenu = $(\".eael-simple-menu-container nav\", $scope);\n menu_size_reset($navMenu);\n css.width = parseFloat($('.elementor').width()) + 'px';\n css.left = -parseFloat($navMenu.offset().left) + 'px';\n css.position = 'absolute';\n $navMenu.css(css);\n } else {\n var _css = {};\n\n if (!$('.eael-simple-menu-horizontal', $scope).parent().hasClass('eael-nav-menu-wrapper')) {\n $('.eael-simple-menu-horizontal', $scope).wrap('<nav class=\"eael-nav-menu-wrapper\"></nav>');\n }\n\n var _$navMenu = $(\".eael-simple-menu-container nav\", $scope);\n\n menu_size_reset(_$navMenu);\n _css.width = '';\n _css.left = '';\n _css.position = 'inherit';\n\n _$navMenu.css(_css);\n }\n } else {\n $('.eael-simple-menu-container', $scope).removeClass('eael-simple-menu-hamburger');\n $('.eael-simple-menu-horizontal', $scope).removeClass('eael-simple-menu-responsive');\n $('.eael-simple-menu-horizontal, .eael-simple-menu-horizontal ul', $scope).css('display', '');\n $(\".eael-simple-menu-container nav\", $scope).removeAttr('style');\n }\n }\n\n function menu_size_reset(selector) {\n var css = {};\n css.width = '';\n css.left = '';\n css.position = 'inherit';\n selector.css(css);\n }\n\n $('.eael-simple-menu > li.menu-item-has-children', $scope).each(function () {\n // indicator position\n if ($indicator_icon == 'svg') {\n var $height = parseInt($('a', this).css('line-height')) / 2;\n $(this).append('<span class=\"eael-simple-menu-indicator\"> ' + $indicator_class + '</span>');\n } else {\n var $height = parseInt($('a', this).css('line-height')) / 2;\n $(this).append('<span class=\"eael-simple-menu-indicator ' + $indicator_class + '\"></span>');\n } // if current, keep indicator open\n // $(this).hasClass('current-menu-ancestor') ? $(this).addClass('eael-simple-menu-indicator-open') : ''\n\n });\n $('.eael-simple-menu > li ul li.menu-item-has-children', $scope).each(function (e) {\n // indicator position\n if ($dropdown_indicator_icon == 'svg') {\n var $height = parseInt($('a', this).css('line-height')) / 2;\n $(this).append('<span class=\"eael-simple-menu-indicator\"> ' + $dropdown_indicator_class + '</span>');\n } else {\n var $height = parseInt($('a', this).css('line-height')) / 2;\n $(this).append('<span class=\"eael-simple-menu-indicator ' + $dropdown_indicator_class + '\"></span>');\n } // if current, keep indicator open\n // $(this).hasClass('current-menu-ancestor') ? $(this).addClass('eael-simple-menu-indicator-open') : ''\n\n }); // menu indent\n\n $('.eael-simple-menu-dropdown-align-left .eael-simple-menu-vertical li.menu-item-has-children').each(function () {\n var $padding_left = parseInt($('a', $(this)).css('padding-left'));\n $('ul li a', this).css({\n 'padding-left': $padding_left + 20 + 'px'\n });\n });\n $('.eael-simple-menu-dropdown-align-right .eael-simple-menu-vertical li.menu-item-has-children').each(function () {\n var $padding_right = parseInt($('a', $(this)).css('padding-right'));\n $('ul li a', this).css({\n 'padding-right': $padding_right + 20 + 'px'\n });\n }); // menu dropdown toggle\n\n $('.eael-simple-menu', $scope).on('click', '.eael-simple-menu-indicator', function (e) {\n e.preventDefault();\n $(this).toggleClass('eael-simple-menu-indicator-open');\n $(this).hasClass('eael-simple-menu-indicator-open') ? $(this).siblings('ul').slideDown(300) : $(this).siblings('ul').slideUp(300);\n }); // main menu toggle\n\n $('.eael-simple-menu-container', $scope).on('click', '.eael-simple-menu-responsive li a', function (e) {\n $(this).parents('.eael-simple-menu-horizontal').slideUp(300);\n });\n};\n\njQuery(window).on('elementor/frontend/init', function () {\n elementorFrontend.hooks.addAction('frontend/element_ready/eael-simple-menu.default', SimpleMenu);\n});\n\n//# sourceURL=webpack:///./src/js/view/simple-menu.js?");
97
 
98
  /***/ })
99
 
assets/front-end/js/view/simple-menu.min.js CHANGED
@@ -1 +1 @@
1
- !function(e){var n={};function a(i){if(n[i])return n[i].exports;var l=n[i]={i:i,l:!1,exports:{}};return e[i].call(l.exports,l,l.exports,a),l.l=!0,l.exports}a.m=e,a.c=n,a.d=function(e,n,i){a.o(e,n)||Object.defineProperty(e,n,{enumerable:!0,get:i})},a.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},a.t=function(e,n){if(1&n&&(e=a(e)),8&n)return e;if(4&n&&"object"==typeof e&&e&&e.__esModule)return e;var i=Object.create(null);if(a.r(i),Object.defineProperty(i,"default",{enumerable:!0,value:e}),2&n&&"string"!=typeof e)for(var l in e)a.d(i,l,function(n){return e[n]}.bind(null,l));return i},a.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return a.d(n,"a",n),n},a.o=function(e,n){return Object.prototype.hasOwnProperty.call(e,n)},a.p="",a(a.s=20)}({20:function(e,n){var a=function(e,n){var a=n(".eael-simple-menu-container",e).data("indicator-class"),i=n(".eael-simple-menu-container",e).data("indicator"),l=n(".eael-simple-menu-container",e).data("dropdown-indicator"),s=n(".eael-simple-menu-container",e).data("dropdown-indicator-class"),t=n(".eael-simple-menu",e).hasClass("eael-simple-menu-horizontal");n(".eael-simple-menu--stretch");function r(){if(window.matchMedia("(max-width: 991px)").matches)if(n(".eael-simple-menu-container",e).addClass("eael-simple-menu-hamburger"),n(".eael-simple-menu-horizontal",e).addClass("eael-simple-menu-responsive"),n(".eael-simple-menu-toggle-text",e).text(n(".eael-simple-menu-horizontal .current-menu-item a",e).eq(0).text()),n(".eael-simple-menu-container",e).hasClass("eael-simple-menu--stretch")){var a={};n(".eael-simple-menu-horizontal",e).parent().hasClass("eael-nav-menu-wrapper")||n(".eael-simple-menu-horizontal",e).wrap('<nav class="eael-nav-menu-wrapper"></nav>');var i=n(".eael-simple-menu-container nav",e);o(i),a.width=parseFloat(n(".elementor").width())+"px",a.left=-parseFloat(i.offset().left)+"px",a.position="absolute",i.css(a)}else{var l={};n(".eael-simple-menu-horizontal",e).parent().hasClass("eael-nav-menu-wrapper")||n(".eael-simple-menu-horizontal",e).wrap('<nav class="eael-nav-menu-wrapper"></nav>');var s=n(".eael-simple-menu-container nav",e);o(s),l.width="",l.left="",l.position="inherit",s.css(l)}else n(".eael-simple-menu-container",e).removeClass("eael-simple-menu-hamburger"),n(".eael-simple-menu-horizontal",e).removeClass("eael-simple-menu-responsive"),n(".eael-simple-menu-horizontal, .eael-simple-menu-horizontal ul",e).css("display",""),n(".eael-simple-menu-container nav",e).removeAttr("style")}function o(e){var n={width:"",left:"",position:"inherit"};e.css(n)}t&&("svg"==i?n(".eael-simple-menu > li.menu-item-has-children",e).each((function(){n("> a",n(this)).append('<span class="indicator-svg">'+a+"</span>")})):n(".eael-simple-menu > li.menu-item-has-children",e).each((function(){n("> a",n(this)).append('<span class="'+a+'"></span>')})),"svg"==l?n(".eael-simple-menu > li ul li.menu-item-has-children",e).each((function(){n("> a",n(this)).append('<span class="dropdown-indicator-svg">'+s+"</span>")})):n(".eael-simple-menu > li ul li.menu-item-has-children",e).each((function(){n("> a",n(this)).append('<span class="'+s+'"></span>')})),n(".eael-simple-menu-horizontal",e).before('<span class="eael-simple-menu-toggle-text"></span>').after('<button class="eael-simple-menu-toggle"><span class="eicon-menu-bar"></span></button>'),r(),n(".eael-simple-menu-container",e).on("click",".eael-simple-menu-toggle",(function(e){e.preventDefault();var a=n(this).siblings("nav").children(".eael-simple-menu-horizontal");"none"==a.css("display")?a.slideDown(300):a.slideUp(300)})),n(window).on("resize load",(function(){r()}))),n(".eael-simple-menu > li.menu-item-has-children",e).each((function(){if("svg"==i){parseInt(n("a",this).css("line-height"));n(this).append('<span class="eael-simple-menu-indicator"> '+a+"</span>")}else{parseInt(n("a",this).css("line-height"));n(this).append('<span class="eael-simple-menu-indicator '+a+'"></span>')}})),n(".eael-simple-menu > li ul li.menu-item-has-children",e).each((function(e){if("svg"==l){parseInt(n("a",this).css("line-height"));n(this).append('<span class="eael-simple-menu-indicator"> '+s+"</span>")}else{parseInt(n("a",this).css("line-height"));n(this).append('<span class="eael-simple-menu-indicator '+s+'"></span>')}})),n(".eael-simple-menu-dropdown-align-left .eael-simple-menu-vertical li.menu-item-has-children").each((function(){var e=parseInt(n("a",n(this)).css("padding-left"));n("ul li a",this).css({"padding-left":e+20+"px"})})),n(".eael-simple-menu-dropdown-align-right .eael-simple-menu-vertical li.menu-item-has-children").each((function(){var e=parseInt(n("a",n(this)).css("padding-right"));n("ul li a",this).css({"padding-right":e+20+"px"})})),n(".eael-simple-menu",e).on("click",".eael-simple-menu-indicator",(function(e){e.preventDefault(),n(this).toggleClass("eael-simple-menu-indicator-open"),n(this).hasClass("eael-simple-menu-indicator-open")?n(this).siblings("ul").slideDown(300):n(this).siblings("ul").slideUp(300)})),n(".eael-simple-menu-container",e).on("click",".eael-simple-menu-responsive li a",(function(e){n(this).parents(".eael-simple-menu-horizontal").slideUp(300)}))};jQuery(window).on("elementor/frontend/init",(function(){elementorFrontend.hooks.addAction("frontend/element_ready/eael-simple-menu.default",a)}))}});
1
+ !function(e){var n={};function a(i){if(n[i])return n[i].exports;var l=n[i]={i:i,l:!1,exports:{}};return e[i].call(l.exports,l,l.exports,a),l.l=!0,l.exports}a.m=e,a.c=n,a.d=function(e,n,i){a.o(e,n)||Object.defineProperty(e,n,{enumerable:!0,get:i})},a.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},a.t=function(e,n){if(1&n&&(e=a(e)),8&n)return e;if(4&n&&"object"==typeof e&&e&&e.__esModule)return e;var i=Object.create(null);if(a.r(i),Object.defineProperty(i,"default",{enumerable:!0,value:e}),2&n&&"string"!=typeof e)for(var l in e)a.d(i,l,function(n){return e[n]}.bind(null,l));return i},a.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return a.d(n,"a",n),n},a.o=function(e,n){return Object.prototype.hasOwnProperty.call(e,n)},a.p="",a(a.s=20)}({20:function(e,n){var a=function(e,n){var a=n(".eael-simple-menu-container",e).data("indicator-class"),i=n(".eael-simple-menu-container",e).data("indicator"),l=n(".eael-simple-menu-container",e).data("dropdown-indicator"),s=n(".eael-simple-menu-container",e).data("dropdown-indicator-class"),t=n(".eael-simple-menu",e).hasClass("eael-simple-menu-horizontal");n(".eael-simple-menu--stretch");function r(){if(window.matchMedia("(max-width: 991px)").matches)if(n(".eael-simple-menu-container",e).addClass("eael-simple-menu-hamburger"),n(".eael-simple-menu-horizontal",e).addClass("eael-simple-menu-responsive"),n(".eael-simple-menu-toggle-text",e).text(n(".eael-simple-menu-horizontal .current-menu-item a",e).eq(0).text()),n(".eael-simple-menu-container",e).hasClass("eael-simple-menu--stretch")){var a={};n(".eael-simple-menu-horizontal",e).parent().hasClass("eael-nav-menu-wrapper")||n(".eael-simple-menu-horizontal",e).wrap('<nav class="eael-nav-menu-wrapper"></nav>');var i=n(".eael-simple-menu-container nav",e);o(i),a.width=parseFloat(n(".elementor").width())+"px",a.left=-parseFloat(i.offset().left)+"px",a.position="absolute",i.css(a)}else{var l={};n(".eael-simple-menu-horizontal",e).parent().hasClass("eael-nav-menu-wrapper")||n(".eael-simple-menu-horizontal",e).wrap('<nav class="eael-nav-menu-wrapper"></nav>');var s=n(".eael-simple-menu-container nav",e);o(s),l.width="",l.left="",l.position="inherit",s.css(l)}else n(".eael-simple-menu-container",e).removeClass("eael-simple-menu-hamburger"),n(".eael-simple-menu-horizontal",e).removeClass("eael-simple-menu-responsive"),n(".eael-simple-menu-horizontal, .eael-simple-menu-horizontal ul",e).css("display",""),n(".eael-simple-menu-container nav",e).removeAttr("style")}function o(e){var n={width:"",left:"",position:"inherit"};e.css(n)}t&&("svg"==i?n(".eael-simple-menu > li.menu-item-has-children",e).each((function(){n("> a",n(this)).append('<span class="indicator-svg">'+a+"</span>")})):n(".eael-simple-menu > li.menu-item-has-children",e).each((function(){n("> a",n(this)).append('<span class="'+a+'"></span>')})),"svg"==l?n(".eael-simple-menu > li ul li.menu-item-has-children",e).each((function(){n("> a",n(this)).append('<span class="dropdown-indicator-svg">'+s+"</span>")})):n(".eael-simple-menu > li ul li.menu-item-has-children",e).each((function(){n("> a",n(this)).append('<span class="'+s+'"></span>')})),n(".eael-simple-menu-horizontal",e).before('<span class="eael-simple-menu-toggle-text"></span>').after('<button class="eael-simple-menu-toggle"><span class="eicon-menu-bar"></span><span class="eael-simple-menu-toggle-text"></span></button>'),r(),n(".eael-simple-menu-container",e).on("click",".eael-simple-menu-toggle",(function(e){e.preventDefault();var a=n(this).siblings("nav").children(".eael-simple-menu-horizontal");"none"==a.css("display")?a.slideDown(300):a.slideUp(300)})),n(window).on("resize load",(function(){r()}))),n(".eael-simple-menu > li.menu-item-has-children",e).each((function(){if("svg"==i){parseInt(n("a",this).css("line-height"));n(this).append('<span class="eael-simple-menu-indicator"> '+a+"</span>")}else{parseInt(n("a",this).css("line-height"));n(this).append('<span class="eael-simple-menu-indicator '+a+'"></span>')}})),n(".eael-simple-menu > li ul li.menu-item-has-children",e).each((function(e){if("svg"==l){parseInt(n("a",this).css("line-height"));n(this).append('<span class="eael-simple-menu-indicator"> '+s+"</span>")}else{parseInt(n("a",this).css("line-height"));n(this).append('<span class="eael-simple-menu-indicator '+s+'"></span>')}})),n(".eael-simple-menu-dropdown-align-left .eael-simple-menu-vertical li.menu-item-has-children").each((function(){var e=parseInt(n("a",n(this)).css("padding-left"));n("ul li a",this).css({"padding-left":e+20+"px"})})),n(".eael-simple-menu-dropdown-align-right .eael-simple-menu-vertical li.menu-item-has-children").each((function(){var e=parseInt(n("a",n(this)).css("padding-right"));n("ul li a",this).css({"padding-right":e+20+"px"})})),n(".eael-simple-menu",e).on("click",".eael-simple-menu-indicator",(function(e){e.preventDefault(),n(this).toggleClass("eael-simple-menu-indicator-open"),n(this).hasClass("eael-simple-menu-indicator-open")?n(this).siblings("ul").slideDown(300):n(this).siblings("ul").slideUp(300)})),n(".eael-simple-menu-container",e).on("click",".eael-simple-menu-responsive li a",(function(e){n(this).parents(".eael-simple-menu-horizontal").slideUp(300)}))};jQuery(window).on("elementor/frontend/init",(function(){elementorFrontend.hooks.addAction("frontend/element_ready/eael-simple-menu.default",a)}))}});
essential_adons_elementor.php CHANGED
@@ -4,7 +4,7 @@
4
  * Description: The Essential plugin you install after Elementor! Packed with 40+ stunning free elements including Advanced Data Table, Event Calendar, Filterable Gallery, WooCommerce, and many more.
5
  * Plugin URI: https://essential-addons.com/elementor/
6
  * Author: WPDeveloper
7
- * Version: 4.9.3
8
  * Author URI: https://wpdeveloper.net/
9
  * Text Domain: essential-addons-for-elementor-lite
10
  * Domain Path: /languages
@@ -27,7 +27,7 @@ define('EAEL_PLUGIN_FILE', __FILE__);
27
  define('EAEL_PLUGIN_BASENAME', plugin_basename(__FILE__));
28
  define('EAEL_PLUGIN_PATH', trailingslashit(plugin_dir_path(__FILE__)));
29
  define('EAEL_PLUGIN_URL', trailingslashit(plugins_url('/', __FILE__)));
30
- define('EAEL_PLUGIN_VERSION', '4.9.3');
31
  define('EAEL_ASSET_PATH', wp_upload_dir()['basedir'] . '/essential-addons-elementor');
32
  define('EAEL_ASSET_URL', wp_upload_dir()['baseurl'] . '/essential-addons-elementor');
33
  /**
4
  * Description: The Essential plugin you install after Elementor! Packed with 40+ stunning free elements including Advanced Data Table, Event Calendar, Filterable Gallery, WooCommerce, and many more.
5
  * Plugin URI: https://essential-addons.com/elementor/
6
  * Author: WPDeveloper
7
+ * Version: 4.9.4
8
  * Author URI: https://wpdeveloper.net/
9
  * Text Domain: essential-addons-for-elementor-lite
10
  * Domain Path: /languages
27
  define('EAEL_PLUGIN_BASENAME', plugin_basename(__FILE__));
28
  define('EAEL_PLUGIN_PATH', trailingslashit(plugin_dir_path(__FILE__)));
29
  define('EAEL_PLUGIN_URL', trailingslashit(plugins_url('/', __FILE__)));
30
+ define('EAEL_PLUGIN_VERSION', '4.9.4');
31
  define('EAEL_ASSET_PATH', wp_upload_dir()['basedir'] . '/essential-addons-elementor');
32
  define('EAEL_ASSET_URL', wp_upload_dir()['baseurl'] . '/essential-addons-elementor');
33
  /**
includes/Classes/WPDeveloper_Setup_Wizard.php CHANGED
@@ -730,7 +730,7 @@ c2.2,0,4.2-1.1,5.4-2.8L49.1,9.5C50.5,7.5,50.2,4.8,48.5,3.1z"/>
730
  ],
731
  [
732
  'key' => 'fluentform',
733
- 'title' => __( 'FluentForm', 'essential-addons-for-elementor-lite' ),
734
  ],
735
  [
736
  'key' => 'formstack',
730
  ],
731
  [
732
  'key' => 'fluentform',
733
+ 'title' => __( 'Fluent Forms', 'essential-addons-for-elementor-lite' ),
734
  ],
735
  [
736
  'key' => 'formstack',
includes/Controls/Select2.php CHANGED
@@ -57,9 +57,9 @@ class Select2 extends Base_Data_Control
57
  </div>
58
  <#
59
  ( function( $ ) {
60
- $( document.body ).trigger( 'eael_select2_init',{currentID:currentID,data:data,controlUID:controlUID,multiple:data.multiple} );
61
  }( jQuery ) );
62
  #>
63
  <?php
64
  }
65
- }
57
  </div>
58
  <#
59
  ( function( $ ) {
60
+ $( document.body ).trigger( 'eael_select2_init',{currentID:data.controlValue,data:data,controlUID:controlUID,multiple:data.multiple} );
61
  }( jQuery ) );
62
  #>
63
  <?php
64
  }
65
+ }
includes/Elements/Adv_Accordion.php CHANGED
@@ -259,18 +259,20 @@ class Adv_Accordion extends Widget_Base
259
  ]
260
  );
261
 
262
- $repeater->add_control(
263
- 'eael_primary_templates',
264
- [
265
- 'name' => 'eael_primary_templates',
266
- 'label' => __('Choose Template', 'essential-addons-for-elementor-lite'),
267
- 'type' => Controls_Manager::SELECT,
268
- 'options' => Helper::get_elementor_templates(),
269
- 'condition' => [
270
- 'eael_adv_accordion_text_type' => 'template',
271
- ],
272
- ]
273
- );
 
 
274
 
275
  $repeater->add_control(
276
  'eael_adv_accordion_tab_content',
259
  ]
260
  );
261
 
262
+ $repeater->add_control(
263
+ 'eael_primary_templates',
264
+ [
265
+ 'name' => 'eael_primary_templates',
266
+ 'label' => __('Choose Template', 'essential-addons-for-elementor-lite'),
267
+ 'type' => 'eael-select2',
268
+ 'source_name' => 'post_type',
269
+ 'source_type' => 'elementor_library',
270
+ 'label_block' => true,
271
+ 'condition' => [
272
+ 'eael_adv_accordion_text_type' => 'template',
273
+ ],
274
+ ]
275
+ );
276
 
277
  $repeater->add_control(
278
  'eael_adv_accordion_tab_content',
includes/Elements/Adv_Tabs.php CHANGED
@@ -173,11 +173,11 @@ class Adv_Tabs extends Widget_Base
173
  ],
174
  'icon' => [
175
  'title' => esc_html__('Icon', 'essential-addons-for-elementor-lite'),
176
- 'icon' => 'fa fa-gear',
177
  ],
178
  'image' => [
179
  'title' => esc_html__('Image', 'essential-addons-for-elementor-lite'),
180
- 'icon' => 'fa fa-picture-o',
181
  ],
182
  ],
183
  'default' => 'icon',
@@ -242,8 +242,10 @@ class Adv_Tabs extends Widget_Base
242
  'eael_primary_templates',
243
  [
244
  'label' => __('Choose Template', 'essential-addons-for-elementor-lite'),
245
- 'type' => Controls_Manager::SELECT,
246
- 'options' => Helper::get_elementor_templates(),
 
 
247
  'condition' => [
248
  'eael_adv_tabs_text_type' => 'template',
249
  ],
173
  ],
174
  'icon' => [
175
  'title' => esc_html__('Icon', 'essential-addons-for-elementor-lite'),
176
+ 'icon' => 'eicon-icon-box',
177
  ],
178
  'image' => [
179
  'title' => esc_html__('Image', 'essential-addons-for-elementor-lite'),
180
+ 'icon' => 'eicon-image-bold',
181
  ],
182
  ],
183
  'default' => 'icon',
242
  'eael_primary_templates',
243
  [
244
  'label' => __('Choose Template', 'essential-addons-for-elementor-lite'),
245
+ 'type' => 'eael-select2',
246
+ 'source_name' => 'post_type',
247
+ 'source_type' => 'elementor_library',
248
+ 'label_block' => true,
249
  'condition' => [
250
  'eael_adv_tabs_text_type' => 'template',
251
  ],
includes/Elements/Advanced_Data_Table.php CHANGED
@@ -429,15 +429,15 @@ class Advanced_Data_Table extends Widget_Base
429
  'options' => [
430
  'left' => [
431
  'title' => esc_html__('Left', 'essential-addons-for-elementor-lite'),
432
- 'icon' => 'fa fa-align-left',
433
  ],
434
  'center' => [
435
  'title' => esc_html__('Center', 'essential-addons-for-elementor-lite'),
436
- 'icon' => 'fa fa-align-center',
437
  ],
438
  'right' => [
439
  'title' => esc_html__('Right', 'essential-addons-for-elementor-lite'),
440
- 'icon' => 'fa fa-align-right',
441
  ],
442
  ],
443
  'default' => 'left',
@@ -548,15 +548,15 @@ class Advanced_Data_Table extends Widget_Base
548
  'options' => [
549
  'left' => [
550
  'title' => esc_html__('Left', 'essential-addons-for-elementor-lite'),
551
- 'icon' => 'fa fa-align-left',
552
  ],
553
  'center' => [
554
  'title' => esc_html__('Center', 'essential-addons-for-elementor-lite'),
555
- 'icon' => 'fa fa-align-center',
556
  ],
557
  'right' => [
558
  'title' => esc_html__('Right', 'essential-addons-for-elementor-lite'),
559
- 'icon' => 'fa fa-align-right',
560
  ],
561
  ],
562
  'default' => 'left',
@@ -974,15 +974,15 @@ class Advanced_Data_Table extends Widget_Base
974
  'options' => [
975
  'left' => [
976
  'title' => esc_html__('Left', 'essential-addons-for-elementor-lite'),
977
- 'icon' => 'fa fa-align-left',
978
  ],
979
  'center' => [
980
  'title' => esc_html__('Center', 'essential-addons-for-elementor-lite'),
981
- 'icon' => 'fa fa-align-center',
982
  ],
983
  'right' => [
984
  'title' => esc_html__('Right', 'essential-addons-for-elementor-lite'),
985
- 'icon' => 'fa fa-align-right',
986
  ],
987
  ],
988
  'default' => 'right',
@@ -1121,15 +1121,15 @@ class Advanced_Data_Table extends Widget_Base
1121
  'options' => [
1122
  'left' => [
1123
  'title' => esc_html__('Left', 'essential-addons-for-elementor-lite'),
1124
- 'icon' => 'fa fa-align-left',
1125
  ],
1126
  'center' => [
1127
  'title' => esc_html__('Center', 'essential-addons-for-elementor-lite'),
1128
- 'icon' => 'fa fa-align-center',
1129
  ],
1130
  'right' => [
1131
  'title' => esc_html__('Right', 'essential-addons-for-elementor-lite'),
1132
- 'icon' => 'fa fa-align-right',
1133
  ],
1134
  ],
1135
  'default' => 'left',
429
  'options' => [
430
  'left' => [
431
  'title' => esc_html__('Left', 'essential-addons-for-elementor-lite'),
432
+ 'icon' => 'eicon-text-align-left',
433
  ],
434
  'center' => [
435
  'title' => esc_html__('Center', 'essential-addons-for-elementor-lite'),
436
+ 'icon' => 'eicon-text-align-center',
437
  ],
438
  'right' => [
439
  'title' => esc_html__('Right', 'essential-addons-for-elementor-lite'),
440
+ 'icon' => 'eicon-text-align-right',
441
  ],
442
  ],
443
  'default' => 'left',
548
  'options' => [
549
  'left' => [
550
  'title' => esc_html__('Left', 'essential-addons-for-elementor-lite'),
551
+ 'icon' => 'eicon-text-align-left',
552
  ],
553
  'center' => [
554
  'title' => esc_html__('Center', 'essential-addons-for-elementor-lite'),
555
+ 'icon' => 'eicon-text-align-center',
556
  ],
557
  'right' => [
558
  'title' => esc_html__('Right', 'essential-addons-for-elementor-lite'),
559
+ 'icon' => 'eicon-text-align-right',
560
  ],
561
  ],
562
  'default' => 'left',
974
  'options' => [
975
  'left' => [
976
  'title' => esc_html__('Left', 'essential-addons-for-elementor-lite'),
977
+ 'icon' => 'eicon-text-align-left',
978
  ],
979
  'center' => [
980
  'title' => esc_html__('Center', 'essential-addons-for-elementor-lite'),
981
+ 'icon' => 'eicon-text-align-center',
982
  ],
983
  'right' => [
984
  'title' => esc_html__('Right', 'essential-addons-for-elementor-lite'),
985
+ 'icon' => 'eicon-text-align-right',
986
  ],
987
  ],
988
  'default' => 'right',
1121
  'options' => [
1122
  'left' => [
1123
  'title' => esc_html__('Left', 'essential-addons-for-elementor-lite'),
1124
+ 'icon' => 'eicon-text-align-left',
1125
  ],
1126
  'center' => [
1127
  'title' => esc_html__('Center', 'essential-addons-for-elementor-lite'),
1128
+ 'icon' => 'eicon-text-align-center',
1129
  ],
1130
  'right' => [
1131
  'title' => esc_html__('Right', 'essential-addons-for-elementor-lite'),
1132
+ 'icon' => 'eicon-text-align-right',
1133
  ],
1134
  ],
1135
  'default' => 'left',
includes/Elements/Betterdocs_Category_Box.php CHANGED
@@ -765,15 +765,15 @@ class Betterdocs_Category_Box extends Widget_Base {
765
  'options' => [
766
  'flex-start' => [
767
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
768
- 'icon' => 'fa fa-align-left',
769
  ],
770
  'center' => [
771
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
772
- 'icon' => 'fa fa-align-center',
773
  ],
774
  'flex-end' => [
775
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
776
- 'icon' => 'fa fa-align-right',
777
  ],
778
  ],
779
  'selectors' => [
765
  'options' => [
766
  'flex-start' => [
767
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
768
+ 'icon' => 'eicon-text-align-left',
769
  ],
770
  'center' => [
771
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
772
+ 'icon' => 'eicon-text-align-center',
773
  ],
774
  'flex-end' => [
775
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
776
+ 'icon' => 'eicon-text-align-right',
777
  ],
778
  ],
779
  'selectors' => [
includes/Elements/Betterdocs_Category_Grid.php CHANGED
@@ -1511,15 +1511,15 @@ class Betterdocs_Category_Grid extends Widget_Base
1511
  'options' => [
1512
  'left' => [
1513
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
1514
- 'icon' => 'fa fa-align-left',
1515
  ],
1516
  'center' => [
1517
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
1518
- 'icon' => 'fa fa-align-center',
1519
  ],
1520
  'right' => [
1521
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
1522
- 'icon' => 'fa fa-align-right',
1523
  ],
1524
  ],
1525
  'selectors' => [
@@ -1536,15 +1536,15 @@ class Betterdocs_Category_Grid extends Widget_Base
1536
  'options' => [
1537
  'left' => [
1538
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
1539
- 'icon' => 'fa fa-align-left',
1540
  ],
1541
  'center' => [
1542
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
1543
- 'icon' => 'fa fa-align-center',
1544
  ],
1545
  'right' => [
1546
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
1547
- 'icon' => 'fa fa-align-right',
1548
  ],
1549
  ],
1550
  'selectors' => [
1511
  'options' => [
1512
  'left' => [
1513
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
1514
+ 'icon' => 'eicon-text-align-left',
1515
  ],
1516
  'center' => [
1517
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
1518
+ 'icon' => 'eicon-text-align-center',
1519
  ],
1520
  'right' => [
1521
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
1522
+ 'icon' => 'eicon-text-align-right',
1523
  ],
1524
  ],
1525
  'selectors' => [
1536
  'options' => [
1537
  'left' => [
1538
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
1539
+ 'icon' => 'eicon-text-align-left',
1540
  ],
1541
  'center' => [
1542
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
1543
+ 'icon' => 'eicon-text-align-center',
1544
  ],
1545
  'right' => [
1546
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
1547
+ 'icon' => 'eicon-text-align-right',
1548
  ],
1549
  ],
1550
  'selectors' => [
includes/Elements/Caldera_Forms.php CHANGED
@@ -231,15 +231,15 @@ class Caldera_Forms extends Widget_Base
231
  'options' => [
232
  'left' => [
233
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
234
- 'icon' => 'fa fa-align-left',
235
  ],
236
  'center' => [
237
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
238
- 'icon' => 'fa fa-align-center',
239
  ],
240
  'right' => [
241
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
242
- 'icon' => 'fa fa-align-right',
243
  ],
244
  ],
245
  'default' => '',
@@ -559,15 +559,15 @@ class Caldera_Forms extends Widget_Base
559
  'options' => [
560
  'left' => [
561
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
562
- 'icon' => 'fa fa-align-left',
563
  ],
564
  'center' => [
565
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
566
- 'icon' => 'fa fa-align-center',
567
  ],
568
  'right' => [
569
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
570
- 'icon' => 'fa fa-align-right',
571
  ],
572
  ],
573
  'default' => '',
231
  'options' => [
232
  'left' => [
233
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
234
+ 'icon' => 'eicon-text-align-left',
235
  ],
236
  'center' => [
237
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
238
+ 'icon' => 'eicon-text-align-center',
239
  ],
240
  'right' => [
241
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
242
+ 'icon' => 'eicon-text-align-right',
243
  ],
244
  ],
245
  'default' => '',
559
  'options' => [
560
  'left' => [
561
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
562
+ 'icon' => 'eicon-text-align-left',
563
  ],
564
  'center' => [
565
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
566
+ 'icon' => 'eicon-text-align-center',
567
  ],
568
  'right' => [
569
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
570
+ 'icon' => 'eicon-text-align-right',
571
  ],
572
  ],
573
  'default' => '',
includes/Elements/Contact_Form_7.php CHANGED
@@ -441,15 +441,15 @@ class Contact_Form_7 extends Widget_Base
441
  'options' => [
442
  'left' => [
443
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
444
- 'icon' => 'fa fa-align-left',
445
  ],
446
  'center' => [
447
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
448
- 'icon' => 'fa fa-align-center',
449
  ],
450
  'right' => [
451
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
452
- 'icon' => 'fa fa-align-right',
453
  ],
454
  ],
455
  'default' => '',
441
  'options' => [
442
  'left' => [
443
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
444
+ 'icon' => 'eicon-text-align-left',
445
  ],
446
  'center' => [
447
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
448
+ 'icon' => 'eicon-text-align-center',
449
  ],
450
  'right' => [
451
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
452
+ 'icon' => 'eicon-text-align-right',
453
  ],
454
  ],
455
  'default' => '',
includes/Elements/Countdown.php CHANGED
@@ -116,15 +116,15 @@ class Countdown extends Widget_Base {
116
  'options' => [
117
  'left' => [
118
  'title' => __( 'Left', 'essential-addons-for-elementor-lite' ),
119
- 'icon' => 'fa fa-align-left',
120
  ],
121
  'center' => [
122
  'title' => __( 'Center', 'essential-addons-for-elementor-lite' ),
123
- 'icon' => 'fa fa-align-center',
124
  ],
125
  'right' => [
126
  'title' => __( 'Right', 'essential-addons-for-elementor-lite' ),
127
- 'icon' => 'fa fa-align-right',
128
  ],
129
  ],
130
  'default' => 'center',
@@ -1028,15 +1028,15 @@ class Countdown extends Widget_Base {
1028
  'options' => [
1029
  'left' => [
1030
  'title' => esc_html__( 'Left', 'essential-addons-for-elementor-lite' ),
1031
- 'icon' => 'fa fa-align-left',
1032
  ],
1033
  'center' => [
1034
  'title' => esc_html__( 'Center', 'essential-addons-for-elementor-lite' ),
1035
- 'icon' => 'fa fa-align-center',
1036
  ],
1037
  'right' => [
1038
  'title' => esc_html__( 'Right', 'essential-addons-for-elementor-lite' ),
1039
- 'icon' => 'fa fa-align-right',
1040
  ],
1041
  ],
1042
  'default' => 'left',
116
  'options' => [
117
  'left' => [
118
  'title' => __( 'Left', 'essential-addons-for-elementor-lite' ),
119
+ 'icon' => 'eicon-text-align-left',
120
  ],
121
  'center' => [
122
  'title' => __( 'Center', 'essential-addons-for-elementor-lite' ),
123
+ 'icon' => 'eicon-text-align-center',
124
  ],
125
  'right' => [
126
  'title' => __( 'Right', 'essential-addons-for-elementor-lite' ),
127
+ 'icon' => 'eicon-text-align-right',
128
  ],
129
  ],
130
  'default' => 'center',
1028
  'options' => [
1029
  'left' => [
1030
  'title' => esc_html__( 'Left', 'essential-addons-for-elementor-lite' ),
1031
+ 'icon' => 'eicon-text-align-left',
1032
  ],
1033
  'center' => [
1034
  'title' => esc_html__( 'Center', 'essential-addons-for-elementor-lite' ),
1035
+ 'icon' => 'eicon-text-align-center',
1036
  ],
1037
  'right' => [
1038
  'title' => esc_html__( 'Right', 'essential-addons-for-elementor-lite' ),
1039
+ 'icon' => 'eicon-text-align-right',
1040
  ],
1041
  ],
1042
  'default' => 'left',
includes/Elements/Creative_Button.php CHANGED
@@ -443,15 +443,15 @@ class Creative_Button extends Widget_Base
443
  'options' => [
444
  'flex-start' => [
445
  'title' => esc_html__('Left', 'essential-addons-for-elementor-lite'),
446
- 'icon' => 'fa fa-align-left',
447
  ],
448
  'center' => [
449
  'title' => esc_html__('Center', 'essential-addons-for-elementor-lite'),
450
- 'icon' => 'fa fa-align-center',
451
  ],
452
  'flex-end' => [
453
  'title' => esc_html__('Right', 'essential-addons-for-elementor-lite'),
454
- 'icon' => 'fa fa-align-right',
455
  ],
456
  ],
457
  'default' => '',
443
  'options' => [
444
  'flex-start' => [
445
  'title' => esc_html__('Left', 'essential-addons-for-elementor-lite'),
446
+ 'icon' => 'eicon-text-align-left',
447
  ],
448
  'center' => [
449
  'title' => esc_html__('Center', 'essential-addons-for-elementor-lite'),
450
+ 'icon' => 'eicon-text-align-center',
451
  ],
452
  'flex-end' => [
453
  'title' => esc_html__('Right', 'essential-addons-for-elementor-lite'),
454
+ 'icon' => 'eicon-text-align-right',
455
  ],
456
  ],
457
  'default' => '',
includes/Elements/Cta_Box.php CHANGED
@@ -1059,10 +1059,6 @@ class Cta_Box extends Widget_Base
1059
  $sub_title = Helper::eael_wp_kses($settings['eael_cta_sub_title']);
1060
  $icon_migrated = isset($settings['__fa4_migrated']['eael_cta_flex_grid_icon_new']);
1061
  $icon_is_new = empty($settings['eael_cta_flex_grid_icon']);
1062
- // Button
1063
- $target_primary = $settings['eael_cta_btn_link']['is_external'] ? 'target="_blank"' : '';
1064
- $nofollow_primary = $settings['eael_cta_btn_link']['nofollow'] ? 'rel="nofollow"' : '';
1065
-
1066
 
1067
  if ('cta-bg-color' == $settings['eael_cta_color_type']) {
1068
  $cta_class = 'bg-lite';
@@ -1108,14 +1104,25 @@ class Cta_Box extends Widget_Base
1108
  }
1109
  }
1110
 
1111
- // button markup
1112
- $buttonMarkup = '';
1113
- $buttonMarkup .='<a href="'.esc_url($settings['eael_cta_btn_link']['url']).'" '.$target_primary.' '.$nofollow_primary.' class="cta-button '.esc_attr($cta_btn_effect).'">'.esc_html($settings['eael_cta_btn_text']).'</a>';
1114
- if($settings['eael_cta_secondary_btn_is_show'] === 'yes'){
1115
- $target_secondary = $settings['eael_cta_secondary_btn_link']['is_external'] ? 'target="_blank"' : '';
1116
- $nofollow_secondary = $settings['eael_cta_secondary_btn_link']['nofollow'] ? 'rel="nofollow"' : '';
1117
- $buttonMarkup .='<a href="'.esc_url($settings['eael_cta_secondary_btn_link']['url']).'" '.$target_secondary.' '.$nofollow_secondary.' class="cta-button cta-secondary-button '.esc_attr($cta_secondary_btn_effect).'">'.esc_html($settings['eael_cta_secondary_btn_text']).'</a>';
1118
- }
 
 
 
 
 
 
 
 
 
 
 
1119
  ?>
1120
  <?php if ('cta-basic' == $settings['eael_cta_type']): ?>
1121
  <div class="eael-call-to-action <?php echo esc_attr($cta_class); ?>">
1059
  $sub_title = Helper::eael_wp_kses($settings['eael_cta_sub_title']);
1060
  $icon_migrated = isset($settings['__fa4_migrated']['eael_cta_flex_grid_icon_new']);
1061
  $icon_is_new = empty($settings['eael_cta_flex_grid_icon']);
 
 
 
 
1062
 
1063
  if ('cta-bg-color' == $settings['eael_cta_color_type']) {
1064
  $cta_class = 'bg-lite';
1104
  }
1105
  }
1106
 
1107
+ // button attributes
1108
+ if ( ! empty( $settings['eael_cta_btn_link']['url'] ) ) {
1109
+ $this->add_link_attributes( 'button', $settings['eael_cta_btn_link'] );
1110
+ }
1111
+ $this->add_render_attribute( 'button', 'class', "cta-button {$cta_btn_effect}" );
1112
+
1113
+ // button markup
1114
+ $buttonMarkup = '';
1115
+ $buttonMarkup .= '<a ' . $this->get_render_attribute_string( 'button' ) . '>' . esc_html( $settings['eael_cta_btn_text'] ) . '</a>';
1116
+ if ( $settings['eael_cta_secondary_btn_is_show'] === 'yes' ) {
1117
+ // button attributes
1118
+ if ( ! empty( $settings['eael_cta_secondary_btn_link']['url'] ) ) {
1119
+ $this->add_link_attributes( 'secondary_button', $settings['eael_cta_secondary_btn_link'] );
1120
+ }
1121
+ $this->add_render_attribute( 'secondary_button', 'class', "cta-button cta-secondary-button {$cta_secondary_btn_effect}" );
1122
+
1123
+ // button markup
1124
+ $buttonMarkup .= '<a ' . $this->get_render_attribute_string( 'secondary_button' ) . '>' . esc_html( $settings['eael_cta_secondary_btn_text'] ) . '</a>';
1125
+ }
1126
  ?>
1127
  <?php if ('cta-basic' == $settings['eael_cta_type']): ?>
1128
  <div class="eael-call-to-action <?php echo esc_attr($cta_class); ?>">
includes/Elements/Data_Table.php CHANGED
@@ -154,7 +154,7 @@ class Data_Table extends Widget_Base {
154
  ],
155
  'image' => [
156
  'title' => esc_html__('Image', 'essential-addons-for-elementor-lite'),
157
- 'icon' => 'fa fa-picture-o',
158
  ],
159
  ],
160
  'default' => 'icon',
@@ -776,15 +776,15 @@ class Data_Table extends Widget_Base {
776
  'options' => [
777
  'left' => [
778
  'title' => esc_html__( 'Left', 'essential-addons-for-elementor-lite'),
779
- 'icon' => 'fa fa-align-left',
780
  ],
781
  'center' => [
782
  'title' => esc_html__( 'Center', 'essential-addons-for-elementor-lite'),
783
- 'icon' => 'fa fa-align-center',
784
  ],
785
  'right' => [
786
  'title' => esc_html__( 'Right', 'essential-addons-for-elementor-lite'),
787
- 'icon' => 'fa fa-align-right',
788
  ],
789
  ],
790
  'default' => 'left',
@@ -1025,15 +1025,15 @@ class Data_Table extends Widget_Base {
1025
  'options' => [
1026
  'left' => [
1027
  'title' => esc_html__( 'Left', 'essential-addons-for-elementor-lite'),
1028
- 'icon' => 'fa fa-align-left',
1029
  ],
1030
  'center' => [
1031
  'title' => esc_html__( 'Center', 'essential-addons-for-elementor-lite'),
1032
- 'icon' => 'fa fa-align-center',
1033
  ],
1034
  'right' => [
1035
  'title' => esc_html__( 'Right', 'essential-addons-for-elementor-lite'),
1036
- 'icon' => 'fa fa-align-right',
1037
  ],
1038
  ],
1039
  'toggle' => true,
154
  ],
155
  'image' => [
156
  'title' => esc_html__('Image', 'essential-addons-for-elementor-lite'),
157
+ 'icon' => 'eicon-image-bold',
158
  ],
159
  ],
160
  'default' => 'icon',
776
  'options' => [
777
  'left' => [
778
  'title' => esc_html__( 'Left', 'essential-addons-for-elementor-lite'),
779
+ 'icon' => 'eicon-text-align-left',
780
  ],
781
  'center' => [
782
  'title' => esc_html__( 'Center', 'essential-addons-for-elementor-lite'),
783
+ 'icon' => 'eicon-text-align-center',
784
  ],
785
  'right' => [
786
  'title' => esc_html__( 'Right', 'essential-addons-for-elementor-lite'),
787
+ 'icon' => 'eicon-text-align-right',
788
  ],
789
  ],
790
  'default' => 'left',
1025
  'options' => [
1026
  'left' => [
1027
  'title' => esc_html__( 'Left', 'essential-addons-for-elementor-lite'),
1028
+ 'icon' => 'eicon-text-align-left',
1029
  ],
1030
  'center' => [
1031
  'title' => esc_html__( 'Center', 'essential-addons-for-elementor-lite'),
1032
+ 'icon' => 'eicon-text-align-center',
1033
  ],
1034
  'right' => [
1035
  'title' => esc_html__( 'Right', 'essential-addons-for-elementor-lite'),
1036
+ 'icon' => 'eicon-text-align-right',
1037
  ],
1038
  ],
1039
  'toggle' => true,
includes/Elements/Dual_Color_Header.php CHANGED
@@ -189,15 +189,15 @@ class Dual_Color_Header extends Widget_Base
189
  'options' => [
190
  'left' => [
191
  'title' => esc_html__('Left', 'essential-addons-for-elementor-lite'),
192
- 'icon' => 'fa fa-align-left',
193
  ],
194
  'center' => [
195
  'title' => esc_html__('Center', 'essential-addons-for-elementor-lite'),
196
- 'icon' => 'fa fa-align-center',
197
  ],
198
  'right' => [
199
  'title' => esc_html__('Right', 'essential-addons-for-elementor-lite'),
200
- 'icon' => 'fa fa-align-right',
201
  ],
202
  ],
203
  'default' => 'center',
@@ -652,15 +652,15 @@ class Dual_Color_Header extends Widget_Base
652
  'options' => [
653
  'flex-start' => [
654
  'title' => __('Flex Start', 'essential-addons-for-elementor-lite'),
655
- 'icon' => 'fa fa-align-left',
656
  ],
657
  'center' => [
658
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
659
- 'icon' => 'fa fa-align-center',
660
  ],
661
  'flex-end' => [
662
  'title' => __('Flex End', 'essential-addons-for-elementor-lite'),
663
- 'icon' => 'fa fa-align-right',
664
  ],
665
  ],
666
  'default' => 'center',
189
  'options' => [
190
  'left' => [
191
  'title' => esc_html__('Left', 'essential-addons-for-elementor-lite'),
192
+ 'icon' => 'eicon-text-align-left',
193
  ],
194
  'center' => [
195
  'title' => esc_html__('Center', 'essential-addons-for-elementor-lite'),
196
+ 'icon' => 'eicon-text-align-center',
197
  ],
198
  'right' => [
199
  'title' => esc_html__('Right', 'essential-addons-for-elementor-lite'),
200
+ 'icon' => 'eicon-text-align-right',
201
  ],
202
  ],
203
  'default' => 'center',
652
  'options' => [
653
  'flex-start' => [
654
  'title' => __('Flex Start', 'essential-addons-for-elementor-lite'),
655
+ 'icon' => 'eicon-text-align-left',
656
  ],
657
  'center' => [
658
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
659
+ 'icon' => 'eicon-text-align-center',
660
  ],
661
  'flex-end' => [
662
  'title' => __('Flex End', 'essential-addons-for-elementor-lite'),
663
+ 'icon' => 'eicon-text-align-right',
664
  ],
665
  ],
666
  'default' => 'center',
includes/Elements/Event_Calendar.php CHANGED
@@ -1005,15 +1005,15 @@ class Event_Calendar extends Widget_Base
1005
  'options' => [
1006
  'left' => [
1007
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
1008
- 'icon' => 'fa fa-align-left',
1009
  ],
1010
  'center' => [
1011
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
1012
- 'icon' => 'fa fa-align-center',
1013
  ],
1014
  'right' => [
1015
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
1016
- 'icon' => 'fa fa-align-right',
1017
  ],
1018
  ],
1019
  'default' => 'center',
@@ -1137,15 +1137,15 @@ class Event_Calendar extends Widget_Base
1137
  'options' => [
1138
  'left' => [
1139
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
1140
- 'icon' => 'fa fa-align-left',
1141
  ],
1142
  'center' => [
1143
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
1144
- 'icon' => 'fa fa-align-center',
1145
  ],
1146
  'right' => [
1147
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
1148
- 'icon' => 'fa fa-align-right',
1149
  ],
1150
  ],
1151
  'default' => 'center',
@@ -1789,15 +1789,19 @@ class Event_Calendar extends Widget_Base
1789
  $end = date('Y-m-d H:i', strtotime($event["eael_event_end_date"])) . ":01";
1790
  }
1791
 
 
 
 
 
1792
  $data[] = [
1793
  'id' => $i,
1794
  'title' => !empty($event["eael_event_title"]) ? $event["eael_event_title"] : 'No Title',
1795
  'description' => $event["eael_event_description"],
1796
  'start' => $start,
1797
  'end' => $end,
1798
- 'borderColor' => !empty($event['eael_event_border_color']) ? $event['eael_event_border_color'] : '#10ecab',
1799
- 'textColor' => $event['eael_event_text_color'],
1800
- 'color' => $event['eael_event_bg_color'],
1801
  'url' => ($settings['eael_event_details_link_hide'] !== 'yes') ? $event["eael_event_link"]["url"] : '',
1802
  'allDay' => $event['eael_event_all_day'],
1803
  'external' => $event['eael_event_link']['is_external'],
@@ -1887,15 +1891,19 @@ class Event_Calendar extends Widget_Base
1887
  $ev_end_date = $item->end->dateTime;
1888
  }
1889
 
 
 
 
 
1890
  $calendar_data[] = [
1891
  'id' => ++$key,
1892
  'title' => !empty($item->summary) ? $item->summary : 'No Title',
1893
  'description' => isset($item->description) ? $item->description : '',
1894
  'start' => $ev_start_date,
1895
  'end' => $ev_end_date,
1896
- 'borderColor' => !empty($settings['eael_event_global_popup_ribbon_color']) ? $settings['eael_event_global_popup_ribbon_color'] : '#10ecab',
1897
- 'textColor' => $settings['eael_event_global_text_color'],
1898
- 'color' => $settings['eael_event_global_bg_color'],
1899
  'url' => ($settings['eael_event_details_link_hide'] !== 'yes') ? $item->htmlLink : '',
1900
  'allDay' => $all_day,
1901
  'external' => 'on',
@@ -1956,6 +1964,10 @@ class Event_Calendar extends Widget_Base
1956
  $end = date('Y-m-d H:i', strtotime(tribe_get_end_date($event->ID, true, $date_format))) . ":01";
1957
  }
1958
 
 
 
 
 
1959
  $calendar_data[] = [
1960
  'id' => ++$key,
1961
  'title' => !empty($event->post_title) ? $event->post_title : __('No Title',
@@ -1963,9 +1975,9 @@ class Event_Calendar extends Widget_Base
1963
  'description' => $event->post_content,
1964
  'start' => tribe_get_start_date($event->ID, true, $date_format),
1965
  'end' => $end,
1966
- 'borderColor' => !empty($settings['eael_event_global_popup_ribbon_color']) ? $settings['eael_event_global_popup_ribbon_color'] : '#10ecab',
1967
- 'textColor' => $settings['eael_event_global_text_color'],
1968
- 'color' => $settings['eael_event_global_bg_color'],
1969
  'url' => ($settings['eael_event_details_link_hide'] !== 'yes') ? get_the_permalink($event->ID) : '',
1970
  'allDay' => $all_day,
1971
  'external' => 'on',
@@ -1974,4 +1986,24 @@ class Event_Calendar extends Widget_Base
1974
  }
1975
  return $calendar_data;
1976
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1977
  }
1005
  'options' => [
1006
  'left' => [
1007
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
1008
+ 'icon' => 'eicon-text-align-left',
1009
  ],
1010
  'center' => [
1011
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
1012
+ 'icon' => 'eicon-text-align-center',
1013
  ],
1014
  'right' => [
1015
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
1016
+ 'icon' => 'eicon-text-align-right',
1017
  ],
1018
  ],
1019
  'default' => 'center',
1137
  'options' => [
1138
  'left' => [
1139
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
1140
+ 'icon' => 'eicon-text-align-left',
1141
  ],
1142
  'center' => [
1143
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
1144
+ 'icon' => 'eicon-text-align-center',
1145
  ],
1146
  'right' => [
1147
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
1148
+ 'icon' => 'eicon-text-align-right',
1149
  ],
1150
  ],
1151
  'default' => 'center',
1789
  $end = date('Y-m-d H:i', strtotime($event["eael_event_end_date"])) . ":01";
1790
  }
1791
 
1792
+ $settings_eael_event_global_bg_color = $this->fetch_color_or_global_color($event, 'eael_event_bg_color');
1793
+ $settings_eael_event_global_text_color = $this->fetch_color_or_global_color($event, 'eael_event_text_color');
1794
+ $settings_eael_event_global_popup_ribbon_color = $this->fetch_color_or_global_color($event, 'eael_event_border_color');
1795
+
1796
  $data[] = [
1797
  'id' => $i,
1798
  'title' => !empty($event["eael_event_title"]) ? $event["eael_event_title"] : 'No Title',
1799
  'description' => $event["eael_event_description"],
1800
  'start' => $start,
1801
  'end' => $end,
1802
+ 'borderColor' => !empty($settings_eael_event_global_popup_ribbon_color) ? $settings_eael_event_global_popup_ribbon_color : '#10ecab',
1803
+ 'textColor' => $settings_eael_event_global_text_color,
1804
+ 'color' => $settings_eael_event_global_bg_color,
1805
  'url' => ($settings['eael_event_details_link_hide'] !== 'yes') ? $event["eael_event_link"]["url"] : '',
1806
  'allDay' => $event['eael_event_all_day'],
1807
  'external' => $event['eael_event_link']['is_external'],
1891
  $ev_end_date = $item->end->dateTime;
1892
  }
1893
 
1894
+ $settings_eael_event_global_bg_color = $this->fetch_color_or_global_color($settings, 'eael_event_global_bg_color');
1895
+ $settings_eael_event_global_text_color = $this->fetch_color_or_global_color($settings, 'eael_event_global_text_color');
1896
+ $settings_eael_event_global_popup_ribbon_color = $this->fetch_color_or_global_color($settings, 'eael_event_global_popup_ribbon_color');
1897
+
1898
  $calendar_data[] = [
1899
  'id' => ++$key,
1900
  'title' => !empty($item->summary) ? $item->summary : 'No Title',
1901
  'description' => isset($item->description) ? $item->description : '',
1902
  'start' => $ev_start_date,
1903
  'end' => $ev_end_date,
1904
+ 'borderColor' => !empty($settings_eael_event_global_popup_ribbon_color) ? $settings_eael_event_global_popup_ribbon_color : '#10ecab',
1905
+ 'textColor' => $settings_eael_event_global_text_color,
1906
+ 'color' => $settings_eael_event_global_bg_color,
1907
  'url' => ($settings['eael_event_details_link_hide'] !== 'yes') ? $item->htmlLink : '',
1908
  'allDay' => $all_day,
1909
  'external' => 'on',
1964
  $end = date('Y-m-d H:i', strtotime(tribe_get_end_date($event->ID, true, $date_format))) . ":01";
1965
  }
1966
 
1967
+ $settings_eael_event_global_bg_color = $this->fetch_color_or_global_color($settings, 'eael_event_global_bg_color');
1968
+ $settings_eael_event_global_text_color = $this->fetch_color_or_global_color($settings, 'eael_event_global_text_color');
1969
+ $settings_eael_event_global_popup_ribbon_color = $this->fetch_color_or_global_color($settings, 'eael_event_global_popup_ribbon_color');
1970
+
1971
  $calendar_data[] = [
1972
  'id' => ++$key,
1973
  'title' => !empty($event->post_title) ? $event->post_title : __('No Title',
1975
  'description' => $event->post_content,
1976
  'start' => tribe_get_start_date($event->ID, true, $date_format),
1977
  'end' => $end,
1978
+ 'borderColor' => !empty($settings_eael_event_global_popup_ribbon_color) ? $settings_eael_event_global_popup_ribbon_color : '#10ecab',
1979
+ 'textColor' => $settings_eael_event_global_text_color,
1980
+ 'color' => $settings_eael_event_global_bg_color,
1981
  'url' => ($settings['eael_event_details_link_hide'] !== 'yes') ? get_the_permalink($event->ID) : '',
1982
  'allDay' => $all_day,
1983
  'external' => 'on',
1986
  }
1987
  return $calendar_data;
1988
  }
1989
+
1990
+ public function fetch_color_or_global_color($settings, $control_name=''){
1991
+ if( !isset($settings[$control_name])) {
1992
+ return '';
1993
+ }
1994
+
1995
+ $color = $settings[$control_name];
1996
+
1997
+ if(!empty($settings['__globals__']) && !empty($settings['__globals__'][$control_name])){
1998
+ $color = $settings['__globals__'][$control_name];
1999
+ $color_arr = explode('?id=', $color); //E.x. 'globals/colors/?id=primary'
2000
+
2001
+ $color_name = count($color_arr) > 1 ? $color_arr[1] : '';
2002
+ if( !empty($color_name) ) {
2003
+ $color = "var( --e-global-color-$color_name )";
2004
+ }
2005
+ }
2006
+
2007
+ return $color;
2008
+ }
2009
  }
includes/Elements/Fancy_Text.php CHANGED
@@ -172,15 +172,15 @@ class Fancy_Text extends Widget_Base {
172
  'options' => [
173
  'left' => [
174
  'title' => esc_html__( 'Left', 'essential-addons-for-elementor-lite'),
175
- 'icon' => 'fa fa-align-left',
176
  ],
177
  'center' => [
178
  'title' => esc_html__( 'Center', 'essential-addons-for-elementor-lite'),
179
- 'icon' => 'fa fa-align-center',
180
  ],
181
  'right' => [
182
  'title' => esc_html__( 'Right', 'essential-addons-for-elementor-lite'),
183
- 'icon' => 'fa fa-align-right',
184
  ],
185
  ],
186
  'default' => 'center',
172
  'options' => [
173
  'left' => [
174
  'title' => esc_html__( 'Left', 'essential-addons-for-elementor-lite'),
175
+ 'icon' => 'eicon-text-align-left',
176
  ],
177
  'center' => [
178
  'title' => esc_html__( 'Center', 'essential-addons-for-elementor-lite'),
179
+ 'icon' => 'eicon-text-align-center',
180
  ],
181
  'right' => [
182
  'title' => esc_html__( 'Right', 'essential-addons-for-elementor-lite'),
183
+ 'icon' => 'eicon-text-align-right',
184
  ],
185
  ],
186
  'default' => 'center',
includes/Elements/Feature_List.php CHANGED
@@ -80,7 +80,7 @@ class Feature_List extends Widget_Base {
80
  ],
81
  'image' => [
82
  'title' => esc_html__( 'Image', 'essential-addons-for-elementor-lite' ),
83
- 'icon' => 'fa fa-picture-o',
84
  ],
85
  ],
86
  'default' => 'icon',
@@ -301,15 +301,15 @@ class Feature_List extends Widget_Base {
301
  'options' => [
302
  'left' => [
303
  'title' => esc_html__( 'Left', 'essential-addons-for-elementor-lite' ),
304
- 'icon' => 'fa fa-align-left',
305
  ],
306
  'top' => [
307
  'title' => esc_html__( 'Top', 'essential-addons-for-elementor-lite' ),
308
- 'icon' => 'fa fa-align-center',
309
  ],
310
  'right' => [
311
  'title' => esc_html__( 'Right', 'essential-addons-for-elementor-lite' ),
312
- 'icon' => 'fa fa-align-right',
313
  ],
314
  ],
315
  'default' => 'left',
@@ -705,19 +705,19 @@ class Feature_List extends Widget_Base {
705
  'options' => [
706
  'left' => [
707
  'title' => __( 'Left', 'elementor' ),
708
- 'icon' => 'fa fa-align-left',
709
  ],
710
  'center' => [
711
  'title' => __( 'Center', 'elementor' ),
712
- 'icon' => 'fa fa-align-center',
713
  ],
714
  'right' => [
715
  'title' => __( 'Right', 'elementor' ),
716
- 'icon' => 'fa fa-align-right',
717
  ],
718
  'justify' => [
719
  'title' => __( 'Justified', 'elementor' ),
720
- 'icon' => 'fa fa-align-justify',
721
  ],
722
  ],
723
  'condition' => [
80
  ],
81
  'image' => [
82
  'title' => esc_html__( 'Image', 'essential-addons-for-elementor-lite' ),
83
+ 'icon' => 'eicon-image-bold',
84
  ],
85
  ],
86
  'default' => 'icon',
301
  'options' => [
302
  'left' => [
303
  'title' => esc_html__( 'Left', 'essential-addons-for-elementor-lite' ),
304
+ 'icon' => 'eicon-text-align-left',
305
  ],
306
  'top' => [
307
  'title' => esc_html__( 'Top', 'essential-addons-for-elementor-lite' ),
308
+ 'icon' => 'eicon-text-align-center',
309
  ],
310
  'right' => [
311
  'title' => esc_html__( 'Right', 'essential-addons-for-elementor-lite' ),
312
+ 'icon' => 'eicon-text-align-right',
313
  ],
314
  ],
315
  'default' => 'left',
705
  'options' => [
706
  'left' => [
707
  'title' => __( 'Left', 'elementor' ),
708
+ 'icon' => 'eicon-text-align-left',
709
  ],
710
  'center' => [
711
  'title' => __( 'Center', 'elementor' ),
712
+ 'icon' => 'eicon-text-align-center',
713
  ],
714
  'right' => [
715
  'title' => __( 'Right', 'elementor' ),
716
+ 'icon' => 'eicon-text-align-right',
717
  ],
718
  'justify' => [
719
  'title' => __( 'Justified', 'elementor' ),
720
+ 'icon' => 'eicon-text-align-justify',
721
  ],
722
  ],
723
  'condition' => [
includes/Elements/Filterable_Gallery.php CHANGED
@@ -1298,15 +1298,15 @@ class Filterable_Gallery extends Widget_Base
1298
  'options' => [
1299
  'left' => [
1300
  'title' => esc_html__('Left', 'essential-addons-for-elementor-lite'),
1301
- 'icon' => 'fa fa-align-left',
1302
  ],
1303
  'center' => [
1304
  'title' => esc_html__('Center', 'essential-addons-for-elementor-lite'),
1305
- 'icon' => 'fa fa-align-center',
1306
  ],
1307
  'right' => [
1308
  'title' => esc_html__('Right', 'essential-addons-for-elementor-lite'),
1309
- 'icon' => 'fa fa-align-right',
1310
  ],
1311
  ],
1312
  'default' => 'left',
@@ -1681,15 +1681,15 @@ class Filterable_Gallery extends Widget_Base
1681
  'options' => [
1682
  'left' => [
1683
  'title' => esc_html__('Left', 'essential-addons-for-elementor-lite'),
1684
- 'icon' => 'fa fa-align-left',
1685
  ],
1686
  'center' => [
1687
  'title' => esc_html__('Center', 'essential-addons-for-elementor-lite'),
1688
- 'icon' => 'fa fa-align-center',
1689
  ],
1690
  'right' => [
1691
  'title' => esc_html__('Right', 'essential-addons-for-elementor-lite'),
1692
- 'icon' => 'fa fa-align-right',
1693
  ],
1694
  ],
1695
  'default' => 'left',
1298
  'options' => [
1299
  'left' => [
1300
  'title' => esc_html__('Left', 'essential-addons-for-elementor-lite'),
1301
+ 'icon' => 'eicon-text-align-left',
1302
  ],
1303
  'center' => [
1304
  'title' => esc_html__('Center', 'essential-addons-for-elementor-lite'),
1305
+ 'icon' => 'eicon-text-align-center',
1306
  ],
1307
  'right' => [
1308
  'title' => esc_html__('Right', 'essential-addons-for-elementor-lite'),
1309
+ 'icon' => 'eicon-text-align-right',
1310
  ],
1311
  ],
1312
  'default' => 'left',
1681
  'options' => [
1682
  'left' => [
1683
  'title' => esc_html__('Left', 'essential-addons-for-elementor-lite'),
1684
+ 'icon' => 'eicon-text-align-left',
1685
  ],
1686
  'center' => [
1687
  'title' => esc_html__('Center', 'essential-addons-for-elementor-lite'),
1688
+ 'icon' => 'eicon-text-align-center',
1689
  ],
1690
  'right' => [
1691
  'title' => esc_html__('Right', 'essential-addons-for-elementor-lite'),
1692
+ 'icon' => 'eicon-text-align-right',
1693
  ],
1694
  ],
1695
  'default' => 'left',
includes/Elements/Flip_Box.php CHANGED
@@ -182,15 +182,19 @@ class Flip_Box extends Widget_Base
182
  $this->add_control(
183
  'eael_flipbox_front_templates',
184
  [
185
- 'label' => __( 'Choose Template', 'essential-addons-elementor' ),
186
- 'type' => Controls_Manager::SELECT,
187
- 'options' => Helper::get_elementor_templates(),
188
- 'condition' => [
189
- 'eael_flipbox_front_content_type' => 'template',
 
 
190
  ],
191
  ]
192
  );
193
 
 
 
194
  $this->add_control(
195
  'eael_flipbox_img_or_icon',
196
  [
@@ -367,15 +371,15 @@ class Flip_Box extends Widget_Base
367
  'options' => [
368
  'left' => [
369
  'title' => esc_html__('Left', 'essential-addons-for-elementor-lite'),
370
- 'icon' => 'fa fa-align-left',
371
  ],
372
  'center' => [
373
  'title' => esc_html__('Center', 'essential-addons-for-elementor-lite'),
374
- 'icon' => 'fa fa-align-center',
375
  ],
376
  'right' => [
377
  'title' => esc_html__('Right', 'essential-addons-for-elementor-lite'),
378
- 'icon' => 'fa fa-align-right',
379
  ],
380
  ],
381
  'default' => 'center',
@@ -411,11 +415,13 @@ class Flip_Box extends Widget_Base
411
  $this->add_control(
412
  'eael_flipbox_back_templates',
413
  [
414
- 'label' => __( 'Choose Template', 'essential-addons-elementor' ),
415
- 'type' => Controls_Manager::SELECT,
416
- 'options' => Helper::get_elementor_templates(),
417
- 'condition' => [
418
- 'eael_flipbox_back_content_type' => 'template',
 
 
419
  ],
420
  ]
421
  );
@@ -596,15 +602,15 @@ class Flip_Box extends Widget_Base
596
  'options' => [
597
  'left' => [
598
  'title' => esc_html__('Left', 'essential-addons-for-elementor-lite'),
599
- 'icon' => 'fa fa-align-left',
600
  ],
601
  'center' => [
602
  'title' => esc_html__('Center', 'essential-addons-for-elementor-lite'),
603
- 'icon' => 'fa fa-align-center',
604
  ],
605
  'right' => [
606
  'title' => esc_html__('Right', 'essential-addons-for-elementor-lite'),
607
- 'icon' => 'fa fa-align-right',
608
  ],
609
  ],
610
  'default' => 'center',
182
  $this->add_control(
183
  'eael_flipbox_front_templates',
184
  [
185
+ 'label' => __( 'Choose Template', 'essential-addons-elementor' ),
186
+ 'type' => 'eael-select2',
187
+ 'source_name' => 'post_type',
188
+ 'source_type' => 'elementor_library',
189
+ 'label_block' => true,
190
+ 'condition' => [
191
+ 'eael_flipbox_front_content_type' => 'template',
192
  ],
193
  ]
194
  );
195
 
196
+
197
+
198
  $this->add_control(
199
  'eael_flipbox_img_or_icon',
200
  [
371
  'options' => [
372
  'left' => [
373
  'title' => esc_html__('Left', 'essential-addons-for-elementor-lite'),
374
+ 'icon' => 'eicon-text-align-left',
375
  ],
376
  'center' => [
377
  'title' => esc_html__('Center', 'essential-addons-for-elementor-lite'),
378
+ 'icon' => 'eicon-text-align-center',
379
  ],
380
  'right' => [
381
  'title' => esc_html__('Right', 'essential-addons-for-elementor-lite'),
382
+ 'icon' => 'eicon-text-align-right',
383
  ],
384
  ],
385
  'default' => 'center',
415
  $this->add_control(
416
  'eael_flipbox_back_templates',
417
  [
418
+ 'label' => __( 'Choose Template', 'essential-addons-elementor' ),
419
+ 'type' => 'eael-select2',
420
+ 'source_name' => 'post_type',
421
+ 'source_type' => 'elementor_library',
422
+ 'label_block' => true,
423
+ 'condition' => [
424
+ 'eael_flipbox_back_content_type' => 'template',
425
  ],
426
  ]
427
  );
602
  'options' => [
603
  'left' => [
604
  'title' => esc_html__('Left', 'essential-addons-for-elementor-lite'),
605
+ 'icon' => 'eicon-text-align-left',
606
  ],
607
  'center' => [
608
  'title' => esc_html__('Center', 'essential-addons-for-elementor-lite'),
609
+ 'icon' => 'eicon-text-align-center',
610
  ],
611
  'right' => [
612
  'title' => esc_html__('Right', 'essential-addons-for-elementor-lite'),
613
+ 'icon' => 'eicon-text-align-right',
614
  ],
615
  ],
616
  'default' => 'center',
includes/Elements/FluentForm.php CHANGED
@@ -27,7 +27,7 @@ class FluentForm extends Widget_Base
27
 
28
  public function get_title()
29
  {
30
- return __('Fluent Form', 'essential-addons-for-elementor-lite');
31
  }
32
 
33
  public function get_categories()
@@ -265,15 +265,15 @@ class FluentForm extends Widget_Base
265
  'options' => [
266
  'left' => [
267
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
268
- 'icon' => 'fa fa-align-left',
269
  ],
270
  'center' => [
271
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
272
- 'icon' => 'fa fa-align-center',
273
  ],
274
  'right' => [
275
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
276
- 'icon' => 'fa fa-align-right',
277
  ],
278
  ],
279
  'default' => '',
@@ -606,15 +606,15 @@ class FluentForm extends Widget_Base
606
  'options' => [
607
  'left' => [
608
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
609
- 'icon' => 'fa fa-align-left',
610
  ],
611
  'center' => [
612
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
613
- 'icon' => 'fa fa-align-center',
614
  ],
615
  'right' => [
616
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
617
- 'icon' => 'fa fa-align-right',
618
  ],
619
  ],
620
  'default' => '',
27
 
28
  public function get_title()
29
  {
30
+ return __('Fluent Forms', 'essential-addons-for-elementor-lite');
31
  }
32
 
33
  public function get_categories()
265
  'options' => [
266
  'left' => [
267
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
268
+ 'icon' => 'eicon-text-align-left',
269
  ],
270
  'center' => [
271
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
272
+ 'icon' => 'eicon-text-align-center',
273
  ],
274
  'right' => [
275
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
276
+ 'icon' => 'eicon-text-align-right',
277
  ],
278
  ],
279
  'default' => '',
606
  'options' => [
607
  'left' => [
608
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
609
+ 'icon' => 'eicon-text-align-left',
610
  ],
611
  'center' => [
612
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
613
+ 'icon' => 'eicon-text-align-center',
614
  ],
615
  'right' => [
616
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
617
+ 'icon' => 'eicon-text-align-right',
618
  ],
619
  ],
620
  'default' => '',
includes/Elements/Formstack.php CHANGED
@@ -447,15 +447,15 @@ class Formstack extends Widget_Base {
447
  'options' => [
448
  'left' => [
449
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
450
- 'icon' => 'fa fa-align-left',
451
  ],
452
  'center' => [
453
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
454
- 'icon' => 'fa fa-align-center',
455
  ],
456
  'right' => [
457
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
458
- 'icon' => 'fa fa-align-right',
459
  ],
460
  ],
461
  'default' => '',
447
  'options' => [
448
  'left' => [
449
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
450
+ 'icon' => 'eicon-text-align-left',
451
  ],
452
  'center' => [
453
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
454
+ 'icon' => 'eicon-text-align-center',
455
  ],
456
  'right' => [
457
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
458
+ 'icon' => 'eicon-text-align-right',
459
  ],
460
  ],
461
  'default' => '',
includes/Elements/GravityForms.php CHANGED
@@ -341,7 +341,7 @@ class GravityForms extends Widget_Base {
341
  'options' => [
342
  'default' => [
343
  'title' => __( 'Default', 'essential-addons-for-elementor-lite'),
344
- 'icon' => 'fa fa-ban',
345
  ],
346
  'left' => [
347
  'title' => esc_html__( 'Left', 'essential-addons-for-elementor-lite'),
@@ -482,15 +482,15 @@ class GravityForms extends Widget_Base {
482
  'options' => [
483
  'left' => [
484
  'title' => __( 'Left', 'essential-addons-for-elementor-lite'),
485
- 'icon' => 'fa fa-align-left',
486
  ],
487
  'center' => [
488
  'title' => __( 'Center', 'essential-addons-for-elementor-lite'),
489
- 'icon' => 'fa fa-align-center',
490
  ],
491
  'right' => [
492
  'title' => __( 'Right', 'essential-addons-for-elementor-lite'),
493
- 'icon' => 'fa fa-align-right',
494
  ],
495
  ],
496
  'default' => '',
@@ -585,7 +585,7 @@ class GravityForms extends Widget_Base {
585
  'label' => __( 'Text Color', 'essential-addons-for-elementor-lite'),
586
  'type' => Controls_Manager::COLOR,
587
  'selectors' => [
588
- '{{WRAPPER}} .eael-gravity-form .gfield label, {{WRAPPER}} .eael-gravity-form .gfield .gfield_label' => 'color: {{VALUE}}',
589
  ],
590
  'condition' => [
591
  'labels_switch' => 'yes',
@@ -598,7 +598,7 @@ class GravityForms extends Widget_Base {
598
  [
599
  'name' => 'typography_label',
600
  'label' => __( 'Typography', 'essential-addons-for-elementor-lite'),
601
- 'selector' => '{{WRAPPER}} .eael-gravity-form .gfield label, {{WRAPPER}} .eael-gravity-form .gfield .gfield_label',
602
  'condition' => [
603
  'labels_switch' => 'yes',
604
  ],
@@ -607,6 +607,49 @@ class GravityForms extends Widget_Base {
607
 
608
  $this->end_controls_section();
609
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
610
  /**
611
  * Style Tab: Input & Textarea
612
  * -------------------------------------------------
@@ -627,15 +670,15 @@ class GravityForms extends Widget_Base {
627
  'options' => [
628
  'left' => [
629
  'title' => __( 'Left', 'essential-addons-for-elementor-lite'),
630
- 'icon' => 'fa fa-align-left',
631
  ],
632
  'center' => [
633
  'title' => __( 'Center', 'essential-addons-for-elementor-lite'),
634
- 'icon' => 'fa fa-align-center',
635
  ],
636
  'right' => [
637
  'title' => __( 'Right', 'essential-addons-for-elementor-lite'),
638
- 'icon' => 'fa fa-align-right',
639
  ],
640
  ],
641
  'default' => '',
341
  'options' => [
342
  'default' => [
343
  'title' => __( 'Default', 'essential-addons-for-elementor-lite'),
344
+ 'icon' => 'eicon-ban',
345
  ],
346
  'left' => [
347
  'title' => esc_html__( 'Left', 'essential-addons-for-elementor-lite'),
482
  'options' => [
483
  'left' => [
484
  'title' => __( 'Left', 'essential-addons-for-elementor-lite'),
485
+ 'icon' => 'eicon-text-align-left',
486
  ],
487
  'center' => [
488
  'title' => __( 'Center', 'essential-addons-for-elementor-lite'),
489
+ 'icon' => 'eicon-text-align-center',
490
  ],
491
  'right' => [
492
  'title' => __( 'Right', 'essential-addons-for-elementor-lite'),
493
+ 'icon' => 'eicon-text-align-right',
494
  ],
495
  ],
496
  'default' => '',
585
  'label' => __( 'Text Color', 'essential-addons-for-elementor-lite'),
586
  'type' => Controls_Manager::COLOR,
587
  'selectors' => [
588
+ '{{WRAPPER}} .eael-gravity-form .gfield .gfield_label' => 'color: {{VALUE}}',
589
  ],
590
  'condition' => [
591
  'labels_switch' => 'yes',
598
  [
599
  'name' => 'typography_label',
600
  'label' => __( 'Typography', 'essential-addons-for-elementor-lite'),
601
+ 'selector' => '{{WRAPPER}} .eael-gravity-form .gfield .gfield_label',
602
  'condition' => [
603
  'labels_switch' => 'yes',
604
  ],
607
 
608
  $this->end_controls_section();
609
 
610
+ /**
611
+ * Style Tab: Sub-Labels
612
+ * -------------------------------------------------
613
+ */
614
+ $this->start_controls_section(
615
+ 'section_sub_label_style',
616
+ [
617
+ 'label' => __( 'Sub-Labels', 'essential-addons-for-elementor-lite'),
618
+ 'tab' => Controls_Manager::TAB_STYLE,
619
+ 'condition' => [
620
+ 'labels_switch' => 'yes',
621
+ ],
622
+ ]
623
+ );
624
+
625
+ $this->add_control(
626
+ 'text_color_sub_label',
627
+ [
628
+ 'label' => __( 'Text Color', 'essential-addons-for-elementor-lite'),
629
+ 'type' => Controls_Manager::COLOR,
630
+ 'selectors' => [
631
+ '{{WRAPPER}} .eael-gravity-form .gfield label' => 'color: {{VALUE}}',
632
+ ],
633
+ 'condition' => [
634
+ 'labels_switch' => 'yes',
635
+ ],
636
+ ]
637
+ );
638
+
639
+ $this->add_group_control(
640
+ Group_Control_Typography::get_type(),
641
+ [
642
+ 'name' => 'typography_sub_label',
643
+ 'label' => __( 'Typography', 'essential-addons-for-elementor-lite'),
644
+ 'selector' => '{{WRAPPER}} .eael-gravity-form .gfield label',
645
+ 'condition' => [
646
+ 'labels_switch' => 'yes',
647
+ ],
648
+ ]
649
+ );
650
+
651
+ $this->end_controls_section();
652
+
653
  /**
654
  * Style Tab: Input & Textarea
655
  * -------------------------------------------------
670
  'options' => [
671
  'left' => [
672
  'title' => __( 'Left', 'essential-addons-for-elementor-lite'),
673
+ 'icon' => 'eicon-text-align-left',
674
  ],
675
  'center' => [
676
  'title' => __( 'Center', 'essential-addons-for-elementor-lite'),
677
+ 'icon' => 'eicon-text-align-center',
678
  ],
679
  'right' => [
680
  'title' => __( 'Right', 'essential-addons-for-elementor-lite'),
681
+ 'icon' => 'eicon-text-align-right',
682
  ],
683
  ],
684
  'default' => '',
includes/Elements/Image_Accordion.php CHANGED
@@ -107,15 +107,15 @@ class Image_Accordion extends Widget_Base {
107
  'options' => [
108
  'left' => [
109
  'title' => __( 'Left', 'essential-addons-for-elementor-lite' ),
110
- 'icon' => 'fa fa-align-left',
111
  ],
112
  'center' => [
113
  'title' => __( 'Center', 'essential-addons-for-elementor-lite' ),
114
- 'icon' => 'fa fa-align-center',
115
  ],
116
  'right' => [
117
  'title' => __( 'Right', 'essential-addons-for-elementor-lite' ),
118
- 'icon' => 'fa fa-align-right',
119
  ],
120
  ],
121
  'default' => 'center',
@@ -134,7 +134,7 @@ class Image_Accordion extends Widget_Base {
134
  ],
135
  'center' => [
136
  'title' => __( 'Center', 'essential-addons-for-elementor-lite' ),
137
- 'icon' => 'fa fa-align-center',
138
  ],
139
  'bottom' => [
140
  'title' => __( 'Bottom', 'essential-addons-for-elementor-lite' ),
107
  'options' => [
108
  'left' => [
109
  'title' => __( 'Left', 'essential-addons-for-elementor-lite' ),
110
+ 'icon' => 'eicon-text-align-left',
111
  ],
112
  'center' => [
113
  'title' => __( 'Center', 'essential-addons-for-elementor-lite' ),
114
+ 'icon' => 'eicon-text-align-center',
115
  ],
116
  'right' => [
117
  'title' => __( 'Right', 'essential-addons-for-elementor-lite' ),
118
+ 'icon' => 'eicon-text-align-right',
119
  ],
120
  ],
121
  'default' => 'center',
134
  ],
135
  'center' => [
136
  'title' => __( 'Center', 'essential-addons-for-elementor-lite' ),
137
+ 'icon' => 'eicon-text-align-center',
138
  ],
139
  'bottom' => [
140
  'title' => __( 'Bottom', 'essential-addons-for-elementor-lite' ),
includes/Elements/Info_Box.php CHANGED
@@ -101,8 +101,7 @@ class Info_Box extends Widget_Base
101
  ],
102
  'number' => [
103
  'title' => esc_html__('Number', 'essential-addons-for-elementor-lite'),
104
- //'icon' => 'fa fa-sort-numeric-desc', //not showing/supported
105
- 'icon' => 'fas fa-sort-numeric-up-alt', //fa version 5
106
  ],
107
  'icon' => [
108
  'title' => esc_html__('Icon', 'essential-addons-for-elementor-lite'),
@@ -110,8 +109,7 @@ class Info_Box extends Widget_Base
110
  ],
111
  'img' => [
112
  'title' => esc_html__('Image', 'essential-addons-for-elementor-lite'),
113
- //'icon' => 'fa fa-picture-o',
114
- 'icon' => 'far fa-image',
115
  ],
116
  ],
117
  'default' => 'icon',
@@ -304,15 +302,15 @@ class Info_Box extends Widget_Base
304
  'options' => [
305
  'left' => [
306
  'title' => esc_html__('Left', 'essential-addons-for-elementor-lite'),
307
- 'icon' => 'fa fa-align-left',
308
  ],
309
  'center' => [
310
  'title' => esc_html__('Center', 'essential-addons-for-elementor-lite'),
311
- 'icon' => 'fa fa-align-center',
312
  ],
313
  'right' => [
314
  'title' => esc_html__('Right', 'essential-addons-for-elementor-lite'),
315
- 'icon' => 'fa fa-align-right',
316
  ],
317
  ],
318
  'default' => 'center',
101
  ],
102
  'number' => [
103
  'title' => esc_html__('Number', 'essential-addons-for-elementor-lite'),
104
+ 'icon' => 'eicon-number-field',
 
105
  ],
106
  'icon' => [
107
  'title' => esc_html__('Icon', 'essential-addons-for-elementor-lite'),
109
  ],
110
  'img' => [
111
  'title' => esc_html__('Image', 'essential-addons-for-elementor-lite'),
112
+ 'icon' => 'eicon-image-bold',
 
113
  ],
114
  ],
115
  'default' => 'icon',
302
  'options' => [
303
  'left' => [
304
  'title' => esc_html__('Left', 'essential-addons-for-elementor-lite'),
305
+ 'icon' => 'eicon-text-align-left',
306
  ],
307
  'center' => [
308
  'title' => esc_html__('Center', 'essential-addons-for-elementor-lite'),
309
+ 'icon' => 'eicon-text-align-center',
310
  ],
311
  'right' => [
312
  'title' => esc_html__('Right', 'essential-addons-for-elementor-lite'),
313
+ 'icon' => 'eicon-text-align-right',
314
  ],
315
  ],
316
  'default' => 'center',
includes/Elements/NinjaForms.php CHANGED
@@ -419,15 +419,15 @@ class NinjaForms extends Widget_Base
419
  'options' => [
420
  'left' => [
421
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
422
- 'icon' => 'fa fa-align-left',
423
  ],
424
  'center' => [
425
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
426
- 'icon' => 'fa fa-align-center',
427
  ],
428
  'right' => [
429
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
430
- 'icon' => 'fa fa-align-right',
431
  ],
432
  ],
433
  'default' => '',
@@ -601,15 +601,15 @@ class NinjaForms extends Widget_Base
601
  'options' => [
602
  'left' => [
603
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
604
- 'icon' => 'fa fa-align-left',
605
  ],
606
  'center' => [
607
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
608
- 'icon' => 'fa fa-align-center',
609
  ],
610
  'right' => [
611
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
612
- 'icon' => 'fa fa-align-right',
613
  ],
614
  ],
615
  'default' => '',
419
  'options' => [
420
  'left' => [
421
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
422
+ 'icon' => 'eicon-text-align-left',
423
  ],
424
  'center' => [
425
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
426
+ 'icon' => 'eicon-text-align-center',
427
  ],
428
  'right' => [
429
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
430
+ 'icon' => 'eicon-text-align-right',
431
  ],
432
  ],
433
  'default' => '',
601
  'options' => [
602
  'left' => [
603
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
604
+ 'icon' => 'eicon-text-align-left',
605
  ],
606
  'center' => [
607
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
608
+ 'icon' => 'eicon-text-align-center',
609
  ],
610
  'right' => [
611
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
612
+ 'icon' => 'eicon-text-align-right',
613
  ],
614
  ],
615
  'default' => '',
includes/Elements/Post_Grid.php CHANGED
@@ -485,15 +485,15 @@ class Post_Grid extends Widget_Base
485
  'options' => [
486
  'flex-start' => [
487
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
488
- 'icon' => 'fa fa-align-left',
489
  ],
490
  'center' => [
491
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
492
- 'icon' => 'fa fa-align-center',
493
  ],
494
  'flex-end' => [
495
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
496
- 'icon' => 'fa fa-align-right',
497
  ],
498
  ],
499
  'default' => 'flex-start',
@@ -640,15 +640,15 @@ class Post_Grid extends Widget_Base
640
  'options' => [
641
  'left' => [
642
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
643
- 'icon' => 'fa fa-align-left',
644
  ],
645
  'center' => [
646
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
647
- 'icon' => 'fa fa-align-center',
648
  ],
649
  'right' => [
650
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
651
- 'icon' => 'fa fa-align-right',
652
  ],
653
  ],
654
  'selectors' => [
@@ -708,19 +708,19 @@ class Post_Grid extends Widget_Base
708
  'options' => [
709
  'left' => [
710
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
711
- 'icon' => 'fa fa-align-left',
712
  ],
713
  'center' => [
714
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
715
- 'icon' => 'fa fa-align-center',
716
  ],
717
  'right' => [
718
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
719
- 'icon' => 'fa fa-align-right',
720
  ],
721
  'justify' => [
722
  'title' => __('Justified', 'essential-addons-for-elementor-lite'),
723
- 'icon' => 'fa fa-align-justify',
724
  ],
725
  ],
726
  'selectors' => [
@@ -803,15 +803,15 @@ class Post_Grid extends Widget_Base
803
  'options' => [
804
  'flex-start' => [
805
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
806
- 'icon' => 'fa fa-align-left',
807
  ],
808
  'center' => [
809
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
810
- 'icon' => 'fa fa-align-center',
811
  ],
812
  'flex-end' => [
813
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
814
- 'icon' => 'fa fa-align-right',
815
  ],
816
  ],
817
  'default' => 'flex-start',
@@ -886,15 +886,15 @@ class Post_Grid extends Widget_Base
886
  'options' => [
887
  'left' => [
888
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
889
- 'icon' => 'fa fa-align-left',
890
  ],
891
  'center' => [
892
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
893
- 'icon' => 'fa fa-align-center',
894
  ],
895
  'right' => [
896
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
897
- 'icon' => 'fa fa-align-right',
898
  ],
899
  ],
900
  'selectors' => [
485
  'options' => [
486
  'flex-start' => [
487
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
488
+ 'icon' => 'eicon-text-align-left',
489
  ],
490
  'center' => [
491
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
492
+ 'icon' => 'eicon-text-align-center',
493
  ],
494
  'flex-end' => [
495
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
496
+ 'icon' => 'eicon-text-align-right',
497
  ],
498
  ],
499
  'default' => 'flex-start',
640
  'options' => [
641
  'left' => [
642
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
643
+ 'icon' => 'eicon-text-align-left',
644
  ],
645
  'center' => [
646
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
647
+ 'icon' => 'eicon-text-align-center',
648
  ],
649
  'right' => [
650
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
651
+ 'icon' => 'eicon-text-align-right',
652
  ],
653
  ],
654
  'selectors' => [
708
  'options' => [
709
  'left' => [
710
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
711
+ 'icon' => 'eicon-text-align-left',
712
  ],
713
  'center' => [
714
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
715
+ 'icon' => 'eicon-text-align-center',
716
  ],
717
  'right' => [
718
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
719
+ 'icon' => 'eicon-text-align-right',
720
  ],
721
  'justify' => [
722
  'title' => __('Justified', 'essential-addons-for-elementor-lite'),
723
+ 'icon' => 'eicon-text-align-justify',
724
  ],
725
  ],
726
  'selectors' => [
803
  'options' => [
804
  'flex-start' => [
805
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
806
+ 'icon' => 'eicon-text-align-left',
807
  ],
808
  'center' => [
809
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
810
+ 'icon' => 'eicon-text-align-center',
811
  ],
812
  'flex-end' => [
813
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
814
+ 'icon' => 'eicon-text-align-right',
815
  ],
816
  ],
817
  'default' => 'flex-start',
886
  'options' => [
887
  'left' => [
888
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
889
+ 'icon' => 'eicon-text-align-left',
890
  ],
891
  'center' => [
892
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
893
+ 'icon' => 'eicon-text-align-center',
894
  ],
895
  'right' => [
896
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
897
+ 'icon' => 'eicon-text-align-right',
898
  ],
899
  ],
900
  'selectors' => [
includes/Elements/Post_Timeline.php CHANGED
@@ -355,15 +355,15 @@ class Post_Timeline extends Widget_Base
355
  'options' => [
356
  'left' => [
357
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
358
- 'icon' => 'fa fa-align-left',
359
  ],
360
  'center' => [
361
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
362
- 'icon' => 'fa fa-align-center',
363
  ],
364
  'right' => [
365
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
366
- 'icon' => 'fa fa-align-right',
367
  ],
368
  ],
369
  'selectors' => [
@@ -413,19 +413,19 @@ class Post_Timeline extends Widget_Base
413
  'options' => [
414
  'left' => [
415
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
416
- 'icon' => 'fa fa-align-left',
417
  ],
418
  'center' => [
419
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
420
- 'icon' => 'fa fa-align-center',
421
  ],
422
  'right' => [
423
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
424
- 'icon' => 'fa fa-align-right',
425
  ],
426
  'justify' => [
427
  'title' => __('Justified', 'essential-addons-for-elementor-lite'),
428
- 'icon' => 'fa fa-align-justify',
429
  ],
430
  ],
431
  'selectors' => [
355
  'options' => [
356
  'left' => [
357
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
358
+ 'icon' => 'eicon-text-align-left',
359
  ],
360
  'center' => [
361
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
362
+ 'icon' => 'eicon-text-align-center',
363
  ],
364
  'right' => [
365
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
366
+ 'icon' => 'eicon-text-align-right',
367
  ],
368
  ],
369
  'selectors' => [
413
  'options' => [
414
  'left' => [
415
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
416
+ 'icon' => 'eicon-text-align-left',
417
  ],
418
  'center' => [
419
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
420
+ 'icon' => 'eicon-text-align-center',
421
  ],
422
  'right' => [
423
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
424
+ 'icon' => 'eicon-text-align-right',
425
  ],
426
  'justify' => [
427
  'title' => __('Justified', 'essential-addons-for-elementor-lite'),
428
+ 'icon' => 'eicon-text-align-justify',
429
  ],
430
  ],
431
  'selectors' => [
includes/Elements/Pricing_Table.php CHANGED
@@ -12,6 +12,7 @@ use \Elementor\Group_Control_Background;
12
  use \Elementor\Group_Control_Border;
13
  use \Elementor\Group_Control_Box_Shadow;
14
  use \Elementor\Group_Control_Typography;
 
15
  use Elementor\Modules\DynamicTags\Module as TagsModule;
16
  use Elementor\Repeater;
17
  use \Elementor\Widget_Base;
@@ -673,11 +674,11 @@ class Pricing_Table extends Widget_Base
673
  'options' => [
674
  'left' => [
675
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
676
- 'icon' => 'fa fa-align-left',
677
  ],
678
  'right' => [
679
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
680
- 'icon' => 'fa fa-align-right',
681
  ],
682
  ],
683
  'default' => 'right',
@@ -813,15 +814,15 @@ class Pricing_Table extends Widget_Base
813
  'options' => [
814
  'left' => [
815
  'title' => esc_html__('Left', 'essential-addons-for-elementor-lite'),
816
- 'icon' => 'fa fa-align-left',
817
  ],
818
  'center' => [
819
  'title' => esc_html__('Center', 'essential-addons-for-elementor-lite'),
820
- 'icon' => 'fa fa-align-center',
821
  ],
822
  'right' => [
823
  'title' => esc_html__('Right', 'essential-addons-for-elementor-lite'),
824
- 'icon' => 'fa fa-align-right',
825
  ],
826
  ],
827
  'default' => 'center',
@@ -838,15 +839,15 @@ class Pricing_Table extends Widget_Base
838
  'options' => [
839
  'left' => [
840
  'title' => esc_html__('Left', 'essential-addons-for-elementor-lite'),
841
- 'icon' => 'fa fa-align-left',
842
  ],
843
  'center' => [
844
  'title' => esc_html__('Center', 'essential-addons-for-elementor-lite'),
845
- 'icon' => 'fa fa-align-center',
846
  ],
847
  'right' => [
848
  'title' => esc_html__('Right', 'essential-addons-for-elementor-lite'),
849
- 'icon' => 'fa fa-align-right',
850
  ],
851
  ],
852
  'default' => 'center',
@@ -1251,6 +1252,27 @@ class Pricing_Table extends Widget_Base
1251
  ]
1252
  );
1253
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1254
  $this->add_group_control(
1255
  Group_Control_Typography::get_type(),
1256
  [
@@ -2074,10 +2096,11 @@ class Pricing_Table extends Widget_Base
2074
  ?>
2075
  <li <?php echo $obj->get_render_attribute_string('pricing_feature_item' . $counter); ?>>
2076
  <?php if ('show' === $settings['eael_pricing_table_icon_enabled']) : ?>
2077
- <span class="li-icon" style="color:<?php echo esc_attr($item['eael_pricing_table_list_icon_color']); ?>">
2078
  <?php if (isset($item['__fa4_migrated']['eael_pricing_table_list_icon_new']) || empty($item['eael_pricing_table_list_icon'])) { ?>
2079
  <?php if (isset($item['eael_pricing_table_list_icon_new']['value']['url'])) : ?>
2080
- <img src="<?php echo $item['eael_pricing_table_list_icon_new']['value']['url']; ?>" alt="<?php echo esc_attr(get_post_meta($item['eael_pricing_table_list_icon_new']['value']['id'], '_wp_attachment_image_alt', true)); ?>" />
 
2081
  <?php else : ?>
2082
  <i class="<?php echo $item['eael_pricing_table_list_icon_new']['value']; ?>"></i>
2083
  <?php endif; ?>
12
  use \Elementor\Group_Control_Border;
13
  use \Elementor\Group_Control_Box_Shadow;
14
  use \Elementor\Group_Control_Typography;
15
+ use Elementor\Icons_Manager;
16
  use Elementor\Modules\DynamicTags\Module as TagsModule;
17
  use Elementor\Repeater;
18
  use \Elementor\Widget_Base;
674
  'options' => [
675
  'left' => [
676
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
677
+ 'icon' => 'eicon-text-align-left',
678
  ],
679
  'right' => [
680
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
681
+ 'icon' => 'eicon-text-align-right',
682
  ],
683
  ],
684
  'default' => 'right',
814
  'options' => [
815
  'left' => [
816
  'title' => esc_html__('Left', 'essential-addons-for-elementor-lite'),
817
+ 'icon' => 'eicon-text-align-left',
818
  ],
819
  'center' => [
820
  'title' => esc_html__('Center', 'essential-addons-for-elementor-lite'),
821
+ 'icon' => 'eicon-text-align-center',
822
  ],
823
  'right' => [
824
  'title' => esc_html__('Right', 'essential-addons-for-elementor-lite'),
825
+ 'icon' => 'eicon-text-align-right',
826
  ],
827
  ],
828
  'default' => 'center',
839
  'options' => [
840
  'left' => [
841
  'title' => esc_html__('Left', 'essential-addons-for-elementor-lite'),
842
+ 'icon' => 'eicon-text-align-left',
843
  ],
844
  'center' => [
845
  'title' => esc_html__('Center', 'essential-addons-for-elementor-lite'),
846
+ 'icon' => 'eicon-text-align-center',
847
  ],
848
  'right' => [
849
  'title' => esc_html__('Right', 'essential-addons-for-elementor-lite'),
850
+ 'icon' => 'eicon-text-align-right',
851
  ],
852
  ],
853
  'default' => 'center',
1252
  ]
1253
  );
1254
 
1255
+ $this->add_control(
1256
+ 'eael_pricing_table_list_item_icon_size_svg',
1257
+ [
1258
+ 'label' => esc_html__('SVG Icon Size', 'essential-addons-for-elementor-lite'),
1259
+ 'type' => Controls_Manager::SLIDER,
1260
+ 'default' => [
1261
+ 'size' => 20,
1262
+ 'unit' => 'px',
1263
+ ],
1264
+ 'range' => [
1265
+ 'px' => [
1266
+ 'max' => 50,
1267
+ ],
1268
+ ],
1269
+ 'selectors' => [
1270
+ '{{WRAPPER}} .eael-pricing-item .body ul li .li-icon' => 'width: {{SIZE}}{{UNIT}}; height: {{SIZE}}{{UNIT}};',
1271
+ '{{WRAPPER}} .eael-pricing-item .body ul li .li-icon svg' => 'font-size: {{SIZE}}{{UNIT}}; width: 1em; height: 1em;',
1272
+ ],
1273
+ ]
1274
+ );
1275
+
1276
  $this->add_group_control(
1277
  Group_Control_Typography::get_type(),
1278
  [
2096
  ?>
2097
  <li <?php echo $obj->get_render_attribute_string('pricing_feature_item' . $counter); ?>>
2098
  <?php if ('show' === $settings['eael_pricing_table_icon_enabled']) : ?>
2099
+ <span class="li-icon" style="color:<?php echo esc_attr($item['eael_pricing_table_list_icon_color']); ?>;fill:<?php echo esc_attr($item['eael_pricing_table_list_icon_color']); ?>;" >
2100
  <?php if (isset($item['__fa4_migrated']['eael_pricing_table_list_icon_new']) || empty($item['eael_pricing_table_list_icon'])) { ?>
2101
  <?php if (isset($item['eael_pricing_table_list_icon_new']['value']['url'])) : ?>
2102
+ <?php Icons_Manager::render_icon( $item['eael_pricing_table_list_icon_new'], [ 'aria-hidden' => 'true' ] ); ?>
2103
+ <!-- <img src="--><?php //echo $item['eael_pricing_table_list_icon_new']['value']['url']; ?><!--" alt="--><?php //echo esc_attr(get_post_meta($item['eael_pricing_table_list_icon_new']['value']['id'], '_wp_attachment_image_alt', true)); ?><!--" />-->
2104
  <?php else : ?>
2105
  <i class="<?php echo $item['eael_pricing_table_list_icon_new']['value']; ?>"></i>
2106
  <?php endif; ?>
includes/Elements/Product_Grid.php CHANGED
@@ -693,15 +693,15 @@ class Product_Grid extends Widget_Base
693
  'options' => [
694
  'left' => [
695
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
696
- 'icon' => 'fa fa-align-left',
697
  ],
698
  'center' => [
699
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
700
- 'icon' => 'fa fa-align-center',
701
  ],
702
  'right' => [
703
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
704
- 'icon' => 'fa fa-align-right',
705
  ],
706
  ],
707
  'default' => 'center',
@@ -1011,15 +1011,15 @@ class Product_Grid extends Widget_Base
1011
  'options' => [
1012
  'left' => [
1013
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
1014
- 'icon' => 'fa fa-align-left',
1015
  ],
1016
  'center' => [
1017
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
1018
- 'icon' => 'fa fa-align-center',
1019
  ],
1020
  'right' => [
1021
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
1022
- 'icon' => 'fa fa-align-right',
1023
  ],
1024
  ],
1025
  'default' => 'center',
@@ -1709,11 +1709,11 @@ class Product_Grid extends Widget_Base
1709
  'options' => [
1710
  'left' => [
1711
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
1712
- 'icon' => 'fa fa-align-left',
1713
  ],
1714
  'right' => [
1715
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
1716
- 'icon' => 'fa fa-align-right',
1717
  ],
1718
  ],
1719
  'condition' => [
@@ -2194,15 +2194,15 @@ class Product_Grid extends Widget_Base
2194
  'options' => [
2195
  'left' => [
2196
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
2197
- 'icon' => 'fa fa-align-left',
2198
  ],
2199
  'center' => [
2200
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
2201
- 'icon' => 'fa fa-align-center',
2202
  ],
2203
  'right' => [
2204
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
2205
- 'icon' => 'fa fa-align-right',
2206
  ],
2207
  ],
2208
  'default' => 'center',
693
  'options' => [
694
  'left' => [
695
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
696
+ 'icon' => 'eicon-text-align-left',
697
  ],
698
  'center' => [
699
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
700
+ 'icon' => 'eicon-text-align-center',
701
  ],
702
  'right' => [
703
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
704
+ 'icon' => 'eicon-text-align-right',
705
  ],
706
  ],
707
  'default' => 'center',
1011
  'options' => [
1012
  'left' => [
1013
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
1014
+ 'icon' => 'eicon-text-align-left',
1015
  ],
1016
  'center' => [
1017
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
1018
+ 'icon' => 'eicon-text-align-center',
1019
  ],
1020
  'right' => [
1021
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
1022
+ 'icon' => 'eicon-text-align-right',
1023
  ],
1024
  ],
1025
  'default' => 'center',
1709
  'options' => [
1710
  'left' => [
1711
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
1712
+ 'icon' => 'eicon-text-align-left',
1713
  ],
1714
  'right' => [
1715
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
1716
+ 'icon' => 'eicon-text-align-right',
1717
  ],
1718
  ],
1719
  'condition' => [
2194
  'options' => [
2195
  'left' => [
2196
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
2197
+ 'icon' => 'eicon-text-align-left',
2198
  ],
2199
  'center' => [
2200
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
2201
+ 'icon' => 'eicon-text-align-center',
2202
  ],
2203
  'right' => [
2204
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
2205
+ 'icon' => 'eicon-text-align-right',
2206
  ],
2207
  ],
2208
  'default' => 'center',
includes/Elements/Progress_Bar.php CHANGED
@@ -319,15 +319,15 @@ class Progress_Bar extends Widget_Base
319
  'options' => [
320
  'left' => [
321
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
322
- 'icon' => 'fa fa-align-left',
323
  ],
324
  'center' => [
325
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
326
- 'icon' => 'fa fa-align-center',
327
  ],
328
  'right' => [
329
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
330
- 'icon' => 'fa fa-align-right',
331
  ],
332
  ],
333
  'default' => 'center',
@@ -530,15 +530,15 @@ class Progress_Bar extends Widget_Base
530
  'options' => [
531
  'left' => [
532
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
533
- 'icon' => 'fa fa-align-left',
534
  ],
535
  'center' => [
536
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
537
- 'icon' => 'fa fa-align-center',
538
  ],
539
  'right' => [
540
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
541
- 'icon' => 'fa fa-align-right',
542
  ],
543
  ],
544
  'default' => 'center',
319
  'options' => [
320
  'left' => [
321
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
322
+ 'icon' => 'eicon-text-align-left',
323
  ],
324
  'center' => [
325
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
326
+ 'icon' => 'eicon-text-align-center',
327
  ],
328
  'right' => [
329
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
330
+ 'icon' => 'eicon-text-align-right',
331
  ],
332
  ],
333
  'default' => 'center',
530
  'options' => [
531
  'left' => [
532
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
533
+ 'icon' => 'eicon-text-align-left',
534
  ],
535
  'center' => [
536
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
537
+ 'icon' => 'eicon-text-align-center',
538
  ],
539
  'right' => [
540
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
541
+ 'icon' => 'eicon-text-align-right',
542
  ],
543
  ],
544
  'default' => 'center',
includes/Elements/Simple_Menu.php CHANGED
@@ -186,15 +186,15 @@ class Simple_Menu extends Widget_Base
186
  'options' => [
187
  'left' => [
188
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
189
- 'icon' => 'fa fa-align-left',
190
  ],
191
  'center' => [
192
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
193
- 'icon' => 'fa fa-align-center',
194
  ],
195
  'right' => [
196
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
197
- 'icon' => 'fa fa-align-right',
198
  ],
199
  ],
200
  'default' => 'eael-simple-menu-hamburger-align-right',
@@ -331,15 +331,15 @@ class Simple_Menu extends Widget_Base
331
  'options' => [
332
  'eael-hamburger-left' => [
333
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
334
- 'icon' => 'fa fa-align-left',
335
  ],
336
  'eael-hamburger-center' => [
337
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
338
- 'icon' => 'fa fa-align-center',
339
  ],
340
  'eael-hamburger-right' => [
341
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
342
- 'icon' => 'fa fa-align-right',
343
  ],
344
  ],
345
  'condition' => [
@@ -738,15 +738,15 @@ class Simple_Menu extends Widget_Base
738
  'options' => [
739
  'eael-simple-menu-align-left' => [
740
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
741
- 'icon' => 'fa fa-align-left',
742
  ],
743
  'eael-simple-menu-align-center' => [
744
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
745
- 'icon' => 'fa fa-align-center',
746
  ],
747
  'eael-simple-menu-align-right' => [
748
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
749
- 'icon' => 'fa fa-align-right',
750
  ],
751
  ],
752
  'default' => 'eael-simple-menu-align-left',
@@ -764,15 +764,15 @@ class Simple_Menu extends Widget_Base
764
  'options' => [
765
  'eael-simple-menu-align-left' => [
766
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
767
- 'icon' => 'fa fa-align-left',
768
  ],
769
  'eael-simple-menu-align-center' => [
770
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
771
- 'icon' => 'fa fa-align-center',
772
  ],
773
  'eael-simple-menu-align-right' => [
774
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
775
- 'icon' => 'fa fa-align-right',
776
  ],
777
  ],
778
  'default' => 'eael-simple-menu-align-right',
@@ -789,15 +789,15 @@ class Simple_Menu extends Widget_Base
789
  'options' => [
790
  'eael-simple-menu-align-left' => [
791
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
792
- 'icon' => 'fa fa-align-left',
793
  ],
794
  'eael-simple-menu-align-center' => [
795
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
796
- 'icon' => 'fa fa-align-center',
797
  ],
798
  'eael-simple-menu-align-right' => [
799
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
800
- 'icon' => 'fa fa-align-right',
801
  ],
802
  ],
803
  'default' => 'eael-simple-menu-align-center',
@@ -1084,15 +1084,15 @@ class Simple_Menu extends Widget_Base
1084
  'options' => [
1085
  'eael-simple-menu-dropdown-align-left' => [
1086
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
1087
- 'icon' => 'fa fa-align-left',
1088
  ],
1089
  'eael-simple-menu-dropdown-align-center' => [
1090
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
1091
- 'icon' => 'fa fa-align-center',
1092
  ],
1093
  'eael-simple-menu-dropdown-align-right' => [
1094
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
1095
- 'icon' => 'fa fa-align-right',
1096
  ],
1097
  ],
1098
  'default' => 'eael-simple-menu-dropdown-align-left',
186
  'options' => [
187
  'left' => [
188
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
189
+ 'icon' => 'eicon-text-align-left',
190
  ],
191
  'center' => [
192
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
193
+ 'icon' => 'eicon-text-align-center',
194
  ],
195
  'right' => [
196
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
197
+ 'icon' => 'eicon-text-align-right',
198
  ],
199
  ],
200
  'default' => 'eael-simple-menu-hamburger-align-right',
331
  'options' => [
332
  'eael-hamburger-left' => [
333
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
334
+ 'icon' => 'eicon-text-align-left',
335
  ],
336
  'eael-hamburger-center' => [
337
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
338
+ 'icon' => 'eicon-text-align-center',
339
  ],
340
  'eael-hamburger-right' => [
341
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
342
+ 'icon' => 'eicon-text-align-right',
343
  ],
344
  ],
345
  'condition' => [
738
  'options' => [
739
  'eael-simple-menu-align-left' => [
740
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
741
+ 'icon' => 'eicon-text-align-left',
742
  ],
743
  'eael-simple-menu-align-center' => [
744
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
745
+ 'icon' => 'eicon-text-align-center',
746
  ],
747
  'eael-simple-menu-align-right' => [
748
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
749
+ 'icon' => 'eicon-text-align-right',
750
  ],
751
  ],
752
  'default' => 'eael-simple-menu-align-left',
764
  'options' => [
765
  'eael-simple-menu-align-left' => [
766
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
767
+ 'icon' => 'eicon-text-align-left',
768
  ],
769
  'eael-simple-menu-align-center' => [
770
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
771
+ 'icon' => 'eicon-text-align-center',
772
  ],
773
  'eael-simple-menu-align-right' => [
774
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
775
+ 'icon' => 'eicon-text-align-right',
776
  ],
777
  ],
778
  'default' => 'eael-simple-menu-align-right',
789
  'options' => [
790
  'eael-simple-menu-align-left' => [
791
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
792
+ 'icon' => 'eicon-text-align-left',
793
  ],
794
  'eael-simple-menu-align-center' => [
795
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
796
+ 'icon' => 'eicon-text-align-center',
797
  ],
798
  'eael-simple-menu-align-right' => [
799
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
800
+ 'icon' => 'eicon-text-align-right',
801
  ],
802
  ],
803
  'default' => 'eael-simple-menu-align-center',
1084
  'options' => [
1085
  'eael-simple-menu-dropdown-align-left' => [
1086
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
1087
+ 'icon' => 'eicon-text-align-left',
1088
  ],
1089
  'eael-simple-menu-dropdown-align-center' => [
1090
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
1091
+ 'icon' => 'eicon-text-align-center',
1092
  ],
1093
  'eael-simple-menu-dropdown-align-right' => [
1094
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
1095
+ 'icon' => 'eicon-text-align-right',
1096
  ],
1097
  ],
1098
  'default' => 'eael-simple-menu-dropdown-align-left',
includes/Elements/Team_Member.php CHANGED
@@ -378,15 +378,15 @@ class Team_Member extends Widget_Base {
378
  ],
379
  'left' => [
380
  'title' => esc_html__( 'Left', 'essential-addons-for-elementor-lite'),
381
- 'icon' => 'fa fa-align-left',
382
  ],
383
  'centered' => [
384
  'title' => esc_html__( 'Center', 'essential-addons-for-elementor-lite'),
385
- 'icon' => 'fa fa-align-center',
386
  ],
387
  'right' => [
388
  'title' => esc_html__( 'Right', 'essential-addons-for-elementor-lite'),
389
- 'icon' => 'fa fa-align-right',
390
  ],
391
  ],
392
  'default' => 'eael-team-align-default',
378
  ],
379
  'left' => [
380
  'title' => esc_html__( 'Left', 'essential-addons-for-elementor-lite'),
381
+ 'icon' => 'eicon-text-align-left',
382
  ],
383
  'centered' => [
384
  'title' => esc_html__( 'Center', 'essential-addons-for-elementor-lite'),
385
+ 'icon' => 'eicon-text-align-center',
386
  ],
387
  'right' => [
388
  'title' => esc_html__( 'Right', 'essential-addons-for-elementor-lite'),
389
+ 'icon' => 'eicon-text-align-right',
390
  ],
391
  ],
392
  'default' => 'eael-team-align-default',
includes/Elements/Testimonial.php CHANGED
@@ -308,19 +308,19 @@ class Testimonial extends Widget_Base {
308
  'options' => [
309
  'default' => [
310
  'title' => __( 'Default', 'essential-addons-for-elementor-lite'),
311
- 'icon' => 'fa fa-ban',
312
  ],
313
  'left' => [
314
  'title' => esc_html__( 'Left', 'essential-addons-for-elementor-lite'),
315
- 'icon' => 'fa fa-align-left',
316
  ],
317
  'center' => [
318
  'title' => esc_html__( 'Center', 'essential-addons-for-elementor-lite'),
319
- 'icon' => 'fa fa-align-center',
320
  ],
321
  'right' => [
322
  'title' => esc_html__( 'Right', 'essential-addons-for-elementor-lite'),
323
- 'icon' => 'fa fa-align-right',
324
  ],
325
  ],
326
  'default' => 'default',
308
  'options' => [
309
  'default' => [
310
  'title' => __( 'Default', 'essential-addons-for-elementor-lite'),
311
+ 'icon' => 'eicon-ban',
312
  ],
313
  'left' => [
314
  'title' => esc_html__( 'Left', 'essential-addons-for-elementor-lite'),
315
+ 'icon' => 'eicon-text-align-left',
316
  ],
317
  'center' => [
318
  'title' => esc_html__( 'Center', 'essential-addons-for-elementor-lite'),
319
+ 'icon' => 'eicon-text-align-center',
320
  ],
321
  'right' => [
322
  'title' => esc_html__( 'Right', 'essential-addons-for-elementor-lite'),
323
+ 'icon' => 'eicon-text-align-right',
324
  ],
325
  ],
326
  'default' => 'default',
includes/Elements/Tooltip.php CHANGED
@@ -207,19 +207,19 @@ class Tooltip extends Widget_Base {
207
  'options' => [
208
  'left' => [
209
  'title' => esc_html__( 'Left', 'essential-addons-for-elementor-lite'),
210
- 'icon' => 'fa fa-align-left',
211
  ],
212
  'center' => [
213
  'title' => esc_html__( 'Center', 'essential-addons-for-elementor-lite'),
214
- 'icon' => 'fa fa-align-center',
215
  ],
216
  'right' => [
217
  'title' => esc_html__( 'Right', 'essential-addons-for-elementor-lite'),
218
- 'icon' => 'fa fa-align-right',
219
  ],
220
  'justify' => [
221
  'title' => __( 'Justified', 'essential-addons-for-elementor-lite'),
222
- 'icon' => 'fa fa-align-justify',
223
  ],
224
  ],
225
  'default' => 'left',
@@ -375,19 +375,19 @@ class Tooltip extends Widget_Base {
375
  'options' => [
376
  'left' => [
377
  'title' => esc_html__( 'Left', 'essential-addons-for-elementor-lite'),
378
- 'icon' => 'fa fa-align-left',
379
  ],
380
  'center' => [
381
  'title' => esc_html__( 'Center', 'essential-addons-for-elementor-lite'),
382
- 'icon' => 'fa fa-align-center',
383
  ],
384
  'right' => [
385
  'title' => esc_html__( 'Right', 'essential-addons-for-elementor-lite'),
386
- 'icon' => 'fa fa-align-right',
387
  ],
388
  'justify' => [
389
  'title' => __( 'Justified', 'essential-addons-for-elementor-lite'),
390
- 'icon' => 'fa fa-align-justify',
391
  ],
392
  ],
393
  'condition' => [
207
  'options' => [
208
  'left' => [
209
  'title' => esc_html__( 'Left', 'essential-addons-for-elementor-lite'),
210
+ 'icon' => 'eicon-text-align-left',
211
  ],
212
  'center' => [
213
  'title' => esc_html__( 'Center', 'essential-addons-for-elementor-lite'),
214
+ 'icon' => 'eicon-text-align-center',
215
  ],
216
  'right' => [
217
  'title' => esc_html__( 'Right', 'essential-addons-for-elementor-lite'),
218
+ 'icon' => 'eicon-text-align-right',
219
  ],
220
  'justify' => [
221
  'title' => __( 'Justified', 'essential-addons-for-elementor-lite'),
222
+ 'icon' => 'eicon-text-align-justify',
223
  ],
224
  ],
225
  'default' => 'left',
375
  'options' => [
376
  'left' => [
377
  'title' => esc_html__( 'Left', 'essential-addons-for-elementor-lite'),
378
+ 'icon' => 'eicon-text-align-left',
379
  ],
380
  'center' => [
381
  'title' => esc_html__( 'Center', 'essential-addons-for-elementor-lite'),
382
+ 'icon' => 'eicon-text-align-center',
383
  ],
384
  'right' => [
385
  'title' => esc_html__( 'Right', 'essential-addons-for-elementor-lite'),
386
+ 'icon' => 'eicon-text-align-right',
387
  ],
388
  'justify' => [
389
  'title' => __( 'Justified', 'essential-addons-for-elementor-lite'),
390
+ 'icon' => 'eicon-text-align-justify',
391
  ],
392
  ],
393
  'condition' => [
includes/Elements/Twitter_Feed.php CHANGED
@@ -363,15 +363,15 @@ class Twitter_Feed extends Widget_Base
363
  'options' => [
364
  'flex-start' => [
365
  'title' => __('Top', 'essential-addons-for-elementor-lite'),
366
- 'icon' => 'fa fa-align-left',
367
  ],
368
  'center' => [
369
  'title' => __('Middle', 'essential-addons-for-elementor-lite'),
370
- 'icon' => 'fa fa-align-center',
371
  ],
372
  'flex-end' => [
373
  'title' => __('Bottom', 'essential-addons-for-elementor-lite'),
374
- 'icon' => 'fa fa-align-right',
375
  ],
376
  ],
377
  'default' => 'center',
363
  'options' => [
364
  'flex-start' => [
365
  'title' => __('Top', 'essential-addons-for-elementor-lite'),
366
+ 'icon' => 'eicon-text-align-left',
367
  ],
368
  'center' => [
369
  'title' => __('Middle', 'essential-addons-for-elementor-lite'),
370
+ 'icon' => 'eicon-text-align-center',
371
  ],
372
  'flex-end' => [
373
  'title' => __('Bottom', 'essential-addons-for-elementor-lite'),
374
+ 'icon' => 'eicon-text-align-right',
375
  ],
376
  ],
377
  'default' => 'center',
includes/Elements/WeForms.php CHANGED
@@ -163,15 +163,15 @@ class WeForms extends Widget_Base
163
  ],
164
  'left' => [
165
  'title' => esc_html__('Left', 'essential-addons-for-elementor-lite'),
166
- 'icon' => 'fa fa-align-left',
167
  ],
168
  'center' => [
169
  'title' => esc_html__('Center', 'essential-addons-for-elementor-lite'),
170
- 'icon' => 'fa fa-align-center',
171
  ],
172
  'right' => [
173
  'title' => esc_html__('Right', 'essential-addons-for-elementor-lite'),
174
- 'icon' => 'fa fa-align-right',
175
  ],
176
  ],
177
  'default' => 'default',
@@ -633,15 +633,15 @@ class WeForms extends Widget_Base
633
  ],
634
  'left' => [
635
  'title' => esc_html__('Left', 'essential-addons-for-elementor-lite'),
636
- 'icon' => 'fa fa-align-left',
637
  ],
638
  'center' => [
639
  'title' => esc_html__('Center', 'essential-addons-for-elementor-lite'),
640
- 'icon' => 'fa fa-align-center',
641
  ],
642
  'right' => [
643
  'title' => esc_html__('Right', 'essential-addons-for-elementor-lite'),
644
- 'icon' => 'fa fa-align-right',
645
  ],
646
  ],
647
  'default' => 'default',
163
  ],
164
  'left' => [
165
  'title' => esc_html__('Left', 'essential-addons-for-elementor-lite'),
166
+ 'icon' => 'eicon-text-align-left',
167
  ],
168
  'center' => [
169
  'title' => esc_html__('Center', 'essential-addons-for-elementor-lite'),
170
+ 'icon' => 'eicon-text-align-center',
171
  ],
172
  'right' => [
173
  'title' => esc_html__('Right', 'essential-addons-for-elementor-lite'),
174
+ 'icon' => 'eicon-text-align-right',
175
  ],
176
  ],
177
  'default' => 'default',
633
  ],
634
  'left' => [
635
  'title' => esc_html__('Left', 'essential-addons-for-elementor-lite'),
636
+ 'icon' => 'eicon-text-align-left',
637
  ],
638
  'center' => [
639
  'title' => esc_html__('Center', 'essential-addons-for-elementor-lite'),
640
+ 'icon' => 'eicon-text-align-center',
641
  ],
642
  'right' => [
643
  'title' => esc_html__('Right', 'essential-addons-for-elementor-lite'),
644
+ 'icon' => 'eicon-text-align-right',
645
  ],
646
  ],
647
  'default' => 'default',
includes/Elements/Woo_Product_Carousel.php CHANGED
@@ -818,11 +818,11 @@ class Woo_Product_Carousel extends Widget_Base {
818
  'options' => [
819
  'left' => [
820
  'title' => __( 'Left', 'essential-addons-for-elementor-lite' ),
821
- 'icon' => 'fa fa-align-left',
822
  ],
823
  'right' => [
824
  'title' => __( 'Right', 'essential-addons-for-elementor-lite' ),
825
- 'icon' => 'fa fa-align-right',
826
  ],
827
  ],
828
  'condition' => [
@@ -867,15 +867,15 @@ class Woo_Product_Carousel extends Widget_Base {
867
  'options' => [
868
  'left' => [
869
  'title' => __( 'Left', 'essential-addons-for-elementor-lite' ),
870
- 'icon' => 'fa fa-align-left',
871
  ],
872
  'center' => [
873
  'title' => __( 'Center', 'essential-addons-for-elementor-lite' ),
874
- 'icon' => 'fa fa-align-center',
875
  ],
876
  'right' => [
877
  'title' => __( 'Right', 'essential-addons-for-elementor-lite' ),
878
- 'icon' => 'fa fa-align-right',
879
  ],
880
  ],
881
  'default' => 'center',
818
  'options' => [
819
  'left' => [
820
  'title' => __( 'Left', 'essential-addons-for-elementor-lite' ),
821
+ 'icon' => 'eicon-text-align-left',
822
  ],
823
  'right' => [
824
  'title' => __( 'Right', 'essential-addons-for-elementor-lite' ),
825
+ 'icon' => 'eicon-text-align-right',
826
  ],
827
  ],
828
  'condition' => [
867
  'options' => [
868
  'left' => [
869
  'title' => __( 'Left', 'essential-addons-for-elementor-lite' ),
870
+ 'icon' => 'eicon-text-align-left',
871
  ],
872
  'center' => [
873
  'title' => __( 'Center', 'essential-addons-for-elementor-lite' ),
874
+ 'icon' => 'eicon-text-align-center',
875
  ],
876
  'right' => [
877
  'title' => __( 'Right', 'essential-addons-for-elementor-lite' ),
878
+ 'icon' => 'eicon-text-align-right',
879
  ],
880
  ],
881
  'default' => 'center',
includes/Elements/Woo_Product_Gallery.php CHANGED
@@ -191,15 +191,15 @@ class Woo_Product_Gallery extends Widget_Base {
191
  'options' => [
192
  'left' => [
193
  'title' => __( 'Left', 'essential-addons-for-elementor-lite' ),
194
- 'icon' => 'fa fa-align-left',
195
  ],
196
  'center' => [
197
  'title' => __( 'Center', 'essential-addons-for-elementor-lite' ),
198
- 'icon' => 'fa fa-align-center',
199
  ],
200
  'right' => [
201
  'title' => __( 'Right', 'essential-addons-for-elementor-lite' ),
202
- 'icon' => 'fa fa-align-right',
203
  ],
204
  ],
205
  'default' => 'center',
@@ -221,11 +221,11 @@ class Woo_Product_Gallery extends Widget_Base {
221
  'options' => [
222
  'row' => [
223
  'title' => __( 'Left', 'essential-addons-for-elementor-lite' ),
224
- 'icon' => 'fa fa-align-left',
225
  ],
226
  'row-reverse' => [
227
  'title' => __( 'Right', 'essential-addons-for-elementor-lite' ),
228
- 'icon' => 'fa fa-align-right',
229
  ],
230
  ],
231
  'default' => 'row',
@@ -550,15 +550,15 @@ class Woo_Product_Gallery extends Widget_Base {
550
  'options' => [
551
  'left' => [
552
  'title' => __( 'Left', 'essential-addons-for-elementor-lite' ),
553
- 'icon' => 'fa fa-align-left',
554
  ],
555
  'center' => [
556
  'title' => __( 'Center', 'essential-addons-for-elementor-lite' ),
557
- 'icon' => 'fa fa-align-center',
558
  ],
559
  'right' => [
560
  'title' => __( 'Right', 'essential-addons-for-elementor-lite' ),
561
- 'icon' => 'fa fa-align-right',
562
  ],
563
  ],
564
  'default' => 'center',
@@ -1517,11 +1517,11 @@ class Woo_Product_Gallery extends Widget_Base {
1517
  'options' => [
1518
  'left' => [
1519
  'title' => __( 'Left', 'essential-addons-for-elementor-lite' ),
1520
- 'icon' => 'fa fa-align-left',
1521
  ],
1522
  'right' => [
1523
  'title' => __( 'Right', 'essential-addons-for-elementor-lite' ),
1524
- 'icon' => 'fa fa-align-right',
1525
  ],
1526
  ],
1527
  ]
191
  'options' => [
192
  'left' => [
193
  'title' => __( 'Left', 'essential-addons-for-elementor-lite' ),
194
+ 'icon' => 'eicon-text-align-left',
195
  ],
196
  'center' => [
197
  'title' => __( 'Center', 'essential-addons-for-elementor-lite' ),
198
+ 'icon' => 'eicon-text-align-center',
199
  ],
200
  'right' => [
201
  'title' => __( 'Right', 'essential-addons-for-elementor-lite' ),
202
+ 'icon' => 'eicon-text-align-right',
203
  ],
204
  ],
205
  'default' => 'center',
221
  'options' => [
222
  'row' => [
223
  'title' => __( 'Left', 'essential-addons-for-elementor-lite' ),
224
+ 'icon' => 'eicon-text-align-left',
225
  ],
226
  'row-reverse' => [
227
  'title' => __( 'Right', 'essential-addons-for-elementor-lite' ),
228
+ 'icon' => 'eicon-text-align-right',
229
  ],
230
  ],
231
  'default' => 'row',
550
  'options' => [
551
  'left' => [
552
  'title' => __( 'Left', 'essential-addons-for-elementor-lite' ),
553
+ 'icon' => 'eicon-text-align-left',
554
  ],
555
  'center' => [
556
  'title' => __( 'Center', 'essential-addons-for-elementor-lite' ),
557
+ 'icon' => 'eicon-text-align-center',
558
  ],
559
  'right' => [
560
  'title' => __( 'Right', 'essential-addons-for-elementor-lite' ),
561
+ 'icon' => 'eicon-text-align-right',
562
  ],
563
  ],
564
  'default' => 'center',
1517
  'options' => [
1518
  'left' => [
1519
  'title' => __( 'Left', 'essential-addons-for-elementor-lite' ),
1520
+ 'icon' => 'eicon-text-align-left',
1521
  ],
1522
  'right' => [
1523
  'title' => __( 'Right', 'essential-addons-for-elementor-lite' ),
1524
+ 'icon' => 'eicon-text-align-right',
1525
  ],
1526
  ],
1527
  ]
includes/Elements/WpForms.php CHANGED
@@ -386,15 +386,15 @@ class WpForms extends Widget_Base {
386
  'options' => [
387
  'left' => [
388
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
389
- 'icon' => 'fa fa-align-left',
390
  ],
391
  'center' => [
392
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
393
- 'icon' => 'fa fa-align-center',
394
  ],
395
  'right' => [
396
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
397
- 'icon' => 'fa fa-align-right',
398
  ],
399
  ],
400
  'default' => '',
@@ -570,15 +570,15 @@ class WpForms extends Widget_Base {
570
  'options' => [
571
  'left' => [
572
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
573
- 'icon' => 'fa fa-align-left',
574
  ],
575
  'center' => [
576
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
577
- 'icon' => 'fa fa-align-center',
578
  ],
579
  'right' => [
580
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
581
- 'icon' => 'fa fa-align-right',
582
  ],
583
  ],
584
  'default' => '',
386
  'options' => [
387
  'left' => [
388
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
389
+ 'icon' => 'eicon-text-align-left',
390
  ],
391
  'center' => [
392
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
393
+ 'icon' => 'eicon-text-align-center',
394
  ],
395
  'right' => [
396
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
397
+ 'icon' => 'eicon-text-align-right',
398
  ],
399
  ],
400
  'default' => '',
570
  'options' => [
571
  'left' => [
572
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
573
+ 'icon' => 'eicon-text-align-left',
574
  ],
575
  'center' => [
576
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
577
+ 'icon' => 'eicon-text-align-center',
578
  ],
579
  'right' => [
580
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
581
+ 'icon' => 'eicon-text-align-right',
582
  ],
583
  ],
584
  'default' => '',
includes/Template/Eicon-Woocommerce/default.php CHANGED
@@ -63,8 +63,14 @@ if ( $grid_style_preset == 'eael-product-simple' || $grid_style_preset == 'eael-
63
  if ( $should_print_image_clickable ) {
64
  echo '</a>';
65
  }
66
-
 
 
 
67
  printf('<%1$s class="woocommerce-loop-product__title">%2$s</%1$s>', $title_tag, $product->get_title());
 
 
 
68
  if ( $should_print_rating ) {
69
  echo wp_kses_post( wc_get_rating_html( $product->get_average_rating(), $product->get_rating_count() ) );
70
  }
@@ -111,7 +117,12 @@ if ( $grid_style_preset == 'eael-product-simple' || $grid_style_preset == 'eael-
111
  </div>
112
  </div>
113
  <?php
 
 
 
114
  printf('<%1$s class="woocommerce-loop-product__title">%2$s</%1$s>', $title_tag, $product->get_title());
 
 
115
 
116
  if ( $should_print_rating ) {
117
  echo wc_get_rating_html( $product->get_average_rating(), $product->get_rating_count() );
@@ -230,7 +241,12 @@ if ( $grid_style_preset == 'eael-product-simple' || $grid_style_preset == 'eael-
230
  }
231
  ?>
232
  <div class="eael-product-title">
233
- <?php printf('<%1$s>%2$s</%1$s>', $title_tag, $product->get_title()); ?>
 
 
 
 
 
234
  </div>
235
  <?php if(($grid_style_preset != 'eael-product-preset-7') && $should_print_price ){
236
  echo '<div class="eael-product-price">'.$product->get_price_html().'</div>';
63
  if ( $should_print_image_clickable ) {
64
  echo '</a>';
65
  }
66
+
67
+ // printf('<%1$s class="woocommerce-loop-product__title"><a href="%3$s" class="woocommerce-LoopProduct-link woocommerce-loop-product__link woocommerce-loop-product__title_link woocommerce-loop-product__title_link_simple woocommerce-loop-product__title_link_reveal">%2$s</a></%1$s>', $title_tag, $product->get_title(), $product->get_permalink());
68
+ echo '<div class="eael-product-title">
69
+ <a href="' . $product->get_permalink() . '" class="woocommerce-LoopProduct-link woocommerce-loop-product__link">';
70
  printf('<%1$s class="woocommerce-loop-product__title">%2$s</%1$s>', $title_tag, $product->get_title());
71
+ echo '</a>
72
+ </div>';
73
+
74
  if ( $should_print_rating ) {
75
  echo wp_kses_post( wc_get_rating_html( $product->get_average_rating(), $product->get_rating_count() ) );
76
  }
117
  </div>
118
  </div>
119
  <?php
120
+ // printf('<%1$s class="woocommerce-loop-product__title"><a href="%3$s" class="woocommerce-LoopProduct-link woocommerce-loop-product__link woocommerce-loop-product__title_link woocommerce-loop-product__title_link_overlay">%2$s</a></%1$s>', $title_tag, $product->get_title(), $product->get_permalink());
121
+ echo '<div class="eael-product-title">
122
+ <a href="' . $product->get_permalink() . '" class="woocommerce-LoopProduct-link woocommerce-loop-product__link">';
123
  printf('<%1$s class="woocommerce-loop-product__title">%2$s</%1$s>', $title_tag, $product->get_title());
124
+ echo '</a>
125
+ </div>';
126
 
127
  if ( $should_print_rating ) {
128
  echo wc_get_rating_html( $product->get_average_rating(), $product->get_rating_count() );
241
  }
242
  ?>
243
  <div class="eael-product-title">
244
+ <?php
245
+ echo '<a href="' . $product->get_permalink() . '" class="woocommerce-LoopProduct-link woocommerce-loop-product__link">';
246
+ printf('<%1$s>%2$s</%1$s>', $title_tag, $product->get_title());
247
+ echo '</a>';
248
+ ?>
249
+ <?php //printf('<%1$s><a href="%3$s" class="woocommerce-LoopProduct-link woocommerce-loop-product__link woocommerce-loop-product__title_link woocommerce-loop-product__title_link_simple woocommerce-loop-product__title_link_reveal">%2$s</a></%1$s>', $title_tag, $product->get_title(), $product->get_permalink()); ?>
250
  </div>
251
  <?php if(($grid_style_preset != 'eael-product-preset-7') && $should_print_price ){
252
  echo '<div class="eael-product-price">'.$product->get_price_html().'</div>';
includes/Traits/Controls.php CHANGED
@@ -735,7 +735,7 @@ trait Controls
735
  'options' => [
736
  'img' => [
737
  'title' => __('Image', 'essential-addons-for-elementor-lite'),
738
- 'icon' => 'fa fa-picture-o',
739
  ],
740
  'icon' => [
741
  'title' => __('Icon', 'essential-addons-for-elementor-lite'),
@@ -1157,15 +1157,15 @@ trait Controls
1157
  'options' => [
1158
  'left' => [
1159
  'title' => __('Left', 'essential-addons-elementor'),
1160
- 'icon' => 'fa fa-align-left',
1161
  ],
1162
  'center' => [
1163
  'title' => __('Center', 'essential-addons-elementor'),
1164
- 'icon' => 'fa fa-align-center',
1165
  ],
1166
  'right' => [
1167
  'title' => __('Right', 'essential-addons-elementor'),
1168
- 'icon' => 'fa fa-align-right',
1169
  ],
1170
  ],
1171
  'selectors' => [
@@ -1529,15 +1529,15 @@ trait Controls
1529
  'options' => [
1530
  'flex-start' => [
1531
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
1532
- 'icon' => 'fa fa-align-left',
1533
  ],
1534
  'center' => [
1535
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
1536
- 'icon' => 'fa fa-align-center',
1537
  ],
1538
  'flex-end' => [
1539
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
1540
- 'icon' => 'fa fa-align-right',
1541
  ],
1542
  ],
1543
  'default' => 'center',
@@ -1903,15 +1903,15 @@ trait Controls
1903
  'options' => [
1904
  'left' => [
1905
  'title' => __( 'Left', 'essential-addons-for-elementor-lite' ),
1906
- 'icon' => 'fa fa-align-left',
1907
  ],
1908
  'center' => [
1909
  'title' => __( 'Center', 'essential-addons-for-elementor-lite' ),
1910
- 'icon' => 'fa fa-align-center',
1911
  ],
1912
  'right' => [
1913
  'title' => __( 'Right', 'essential-addons-for-elementor-lite' ),
1914
- 'icon' => 'fa fa-align-right',
1915
  ],
1916
  ],
1917
  'default' => 'center',
735
  'options' => [
736
  'img' => [
737
  'title' => __('Image', 'essential-addons-for-elementor-lite'),
738
+ 'icon' => 'eicon-image-bold',
739
  ],
740
  'icon' => [
741
  'title' => __('Icon', 'essential-addons-for-elementor-lite'),
1157
  'options' => [
1158
  'left' => [
1159
  'title' => __('Left', 'essential-addons-elementor'),
1160
+ 'icon' => 'eicon-text-align-left',
1161
  ],
1162
  'center' => [
1163
  'title' => __('Center', 'essential-addons-elementor'),
1164
+ 'icon' => 'eicon-text-align-center',
1165
  ],
1166
  'right' => [
1167
  'title' => __('Right', 'essential-addons-elementor'),
1168
+ 'icon' => 'eicon-text-align-right',
1169
  ],
1170
  ],
1171
  'selectors' => [
1529
  'options' => [
1530
  'flex-start' => [
1531
  'title' => __('Left', 'essential-addons-for-elementor-lite'),
1532
+ 'icon' => 'eicon-text-align-left',
1533
  ],
1534
  'center' => [
1535
  'title' => __('Center', 'essential-addons-for-elementor-lite'),
1536
+ 'icon' => 'eicon-text-align-center',
1537
  ],
1538
  'flex-end' => [
1539
  'title' => __('Right', 'essential-addons-for-elementor-lite'),
1540
+ 'icon' => 'eicon-text-align-right',
1541
  ],
1542
  ],
1543
  'default' => 'center',
1903
  'options' => [
1904
  'left' => [
1905
  'title' => __( 'Left', 'essential-addons-for-elementor-lite' ),
1906
+ 'icon' => 'eicon-text-align-left',
1907
  ],
1908
  'center' => [
1909
  'title' => __( 'Center', 'essential-addons-for-elementor-lite' ),
1910
+ 'icon' => 'eicon-text-align-center',
1911
  ],
1912
  'right' => [
1913
  'title' => __( 'Right', 'essential-addons-for-elementor-lite' ),
1914
+ 'icon' => 'eicon-text-align-right',
1915
  ],
1916
  ],
1917
  'default' => 'center',
includes/Traits/Generator.php CHANGED
@@ -96,7 +96,11 @@ trait Generator
96
  update_option('eael_editor_updated_at', strtotime('now'));
97
  }
98
 
99
- if ($elements === false) {
 
 
 
 
100
  return true;
101
  }
102
 
@@ -104,13 +108,14 @@ trait Generator
104
  return true;
105
  }
106
 
107
- if ($post_updated_at === false) {
108
  return true;
109
  }
110
 
111
- if ($editor_updated_at != $post_updated_at) {
112
- return true;
113
- }
 
114
  return false;
115
  }
116
 
@@ -197,8 +202,6 @@ trait Generator
197
  return;
198
  }
199
 
200
-
201
-
202
  if ($this->is_running_background()) {
203
  return;
204
  }
@@ -228,12 +231,6 @@ trait Generator
228
  $this->loaded_elements[] = 'custom-js';
229
  }
230
 
231
- if ((get_the_ID() > 0 && !Plugin::$instance->documents->get(get_the_ID())->is_built_with_elementor())) {
232
- if (empty($this->loaded_elements)) {
233
- return;
234
- }
235
- }
236
-
237
  // update page data
238
  update_option($this->uid . '_eael_elements', $this->loaded_elements,false);
239
  update_option($this->uid . '_eael_custom_js', $this->custom_js_strings,false);
@@ -377,7 +374,7 @@ trait Generator
377
  */
378
  public function check_password_protected_post() {
379
  if ( $this->is_preview_mode() ) {
380
- if ( $this->check_third_party_cookie_status() || isset( $_COOKIE[ 'wp-postpass_' . COOKIEHASH ] ) ) {
381
  update_option( $this->uid . '_eael_updated_at', strtotime('now'), false );
382
  return true;
383
  }
96
  update_option('eael_editor_updated_at', strtotime('now'));
97
  }
98
 
99
+ if ( !empty( $editor_updated_at ) && strtotime( 'now' ) > strtotime( '+120 seconds', $editor_updated_at ) ) {
100
+ update_option('eael_editor_updated_at', strtotime('now'));
101
+ }
102
+
103
+ if ($elements===false) {
104
  return true;
105
  }
106
 
108
  return true;
109
  }
110
 
111
+ if ($post_updated_at===false) {
112
  return true;
113
  }
114
 
115
+ if ( $editor_updated_at != $post_updated_at ) {
116
+ return true;
117
+ }
118
+
119
  return false;
120
  }
121
 
202
  return;
203
  }
204
 
 
 
205
  if ($this->is_running_background()) {
206
  return;
207
  }
231
  $this->loaded_elements[] = 'custom-js';
232
  }
233
 
 
 
 
 
 
 
234
  // update page data
235
  update_option($this->uid . '_eael_elements', $this->loaded_elements,false);
236
  update_option($this->uid . '_eael_custom_js', $this->custom_js_strings,false);
374
  */
375
  public function check_password_protected_post() {
376
  if ( $this->is_preview_mode() ) {
377
+ if ( $this->check_third_party_cookie_status() || isset( $_COOKIE[ 'wp-postpass_' . COOKIEHASH ] ) || $this->check_protected_content_status() ) {
378
  update_option( $this->uid . '_eael_updated_at', strtotime('now'), false );
379
  return true;
380
  }
includes/Traits/Helper.php CHANGED
@@ -439,6 +439,11 @@ trait Helper
439
  }
440
 
441
  public function select2_ajax_get_posts_value_titles() {
 
 
 
 
 
442
  if ( empty( array_filter($_POST[ 'id' ]) ) ) {
443
  wp_send_json_error( [] );
444
  }
439
  }
440
 
441
  public function select2_ajax_get_posts_value_titles() {
442
+
443
+ if ( empty( $_POST[ 'id' ] ) ) {
444
+ wp_send_json_error( [] );
445
+ }
446
+
447
  if ( empty( array_filter($_POST[ 'id' ]) ) ) {
448
  wp_send_json_error( [] );
449
  }
includes/Traits/Library.php CHANGED
@@ -2,12 +2,15 @@
2
 
3
  namespace Essential_Addons_Elementor\Traits;
4
 
 
 
5
  if (!defined('ABSPATH')) {
6
  exit;
7
  } // Exit if accessed directly
8
 
9
  trait Library
10
  {
 
11
  /**
12
  * Return array of registered elements.
13
  *
@@ -219,6 +222,7 @@ trait Library
219
  return false;
220
  }
221
 
 
222
  return true;
223
  }
224
 
@@ -333,11 +337,27 @@ trait Library
333
  /*
334
  * Check some other cookie for solve asset loading issue
335
  */
336
- public function check_third_party_cookie_status() {
337
  global $Password_Protected;
338
  if ( is_object( $Password_Protected ) && method_exists( $Password_Protected, 'cookie_name' ) && isset( $_COOKIE[ $Password_Protected->cookie_name() ] ) ) {
339
  return true;
340
  }
341
  return false;
342
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
343
  }
2
 
3
  namespace Essential_Addons_Elementor\Traits;
4
 
5
+ use Elementor\Plugin;
6
+
7
  if (!defined('ABSPATH')) {
8
  exit;
9
  } // Exit if accessed directly
10
 
11
  trait Library
12
  {
13
+ public $a;
14
  /**
15
  * Return array of registered elements.
16
  *
222
  return false;
223
  }
224
 
225
+
226
  return true;
227
  }
228
 
337
  /*
338
  * Check some other cookie for solve asset loading issue
339
  */
340
+ public function check_third_party_cookie_status($id='') {
341
  global $Password_Protected;
342
  if ( is_object( $Password_Protected ) && method_exists( $Password_Protected, 'cookie_name' ) && isset( $_COOKIE[ $Password_Protected->cookie_name() ] ) ) {
343
  return true;
344
  }
345
  return false;
346
  }
347
+
348
+ /**
349
+ * check_protected_content_status
350
+ *
351
+ * check EaeL Protected content cookie set or not
352
+ *
353
+ * @return bool
354
+ */
355
+ public function check_protected_content_status(){
356
+ if(!empty($_POST['eael_protected_content_id'])){
357
+ if(!empty($_POST['protection_password_'.$_POST['eael_protected_content_id']])){
358
+ return true;
359
+ }
360
+ }
361
+ return false;
362
+ }
363
  }
includes/templates/admin/elements.php CHANGED
@@ -387,7 +387,7 @@ $elements = [
387
  ],
388
  [
389
  'key' => 'fluentform',
390
- 'title' => __( 'FluentForm', 'essential-addons-for-elementor-lite'),
391
  'demo_link' => 'https://essential-addons.com/elementor/fluent-forms/',
392
  'doc_link' => 'https://essential-addons.com/elementor/docs/fluent-form/',
393
  ],
387
  ],
388
  [
389
  'key' => 'fluentform',
390
+ 'title' => __( 'Fluent Forms', 'essential-addons-for-elementor-lite'),
391
  'demo_link' => 'https://essential-addons.com/elementor/fluent-forms/',
392
  'doc_link' => 'https://essential-addons.com/elementor/docs/fluent-form/',
393
  ],
languages/essential-addons-for-elementor-lite.pot CHANGED
@@ -13,11 +13,11 @@ msgstr ""
13
  "X-Poedit-SourceCharset: UTF-8\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
 
16
- #: ../includes/Classes/Helper.php:205, ../includes/Elements/Adv_Accordion.php:323, ../includes/Elements/Adv_Tabs.php:296, ../includes/Elements/Contact_Form_7.php:270, ../includes/Elements/Content_Ticker.php:306, ../includes/Elements/Countdown.php:467, ../includes/Elements/Creative_Button.php:188, ../includes/Elements/Cta_Box.php:346, ../includes/Elements/Data_Table.php:482, ../includes/Elements/Dual_Color_Header.php:214, ../includes/Elements/Fancy_Text.php:269, ../includes/Elements/Filterable_Gallery.php:796, ../includes/Elements/Flip_Box.php:727, ../includes/Elements/Info_Box.php:495, ../includes/Elements/Login_Register.php:1038, ../includes/Elements/Pricing_Table.php:697, ../includes/Elements/Progress_Bar.php:271, ../includes/Elements/Team_Member.php:237, ../includes/Elements/Testimonial.php:214, ../includes/Elements/Tooltip.php:513, ../includes/Elements/Twitter_Feed.php:308, ../includes/Elements/WeForms.php:110
17
  msgid "Go Premium for More Features"
18
  msgstr ""
19
 
20
- #: ../includes/Classes/Helper.php:212, ../includes/Elements/Adv_Accordion.php:330, ../includes/Elements/Adv_Tabs.php:303, ../includes/Elements/Contact_Form_7.php:277, ../includes/Elements/Content_Ticker.php:313, ../includes/Elements/Countdown.php:474, ../includes/Elements/Creative_Button.php:195, ../includes/Elements/Cta_Box.php:353, ../includes/Elements/Data_Table.php:489, ../includes/Elements/Dual_Color_Header.php:221, ../includes/Elements/Fancy_Text.php:276, ../includes/Elements/Filterable_Gallery.php:803, ../includes/Elements/Flip_Box.php:734, ../includes/Elements/Info_Box.php:502, ../includes/Elements/Login_Register.php:1045, ../includes/Elements/Pricing_Table.php:704, ../includes/Elements/Progress_Bar.php:278, ../includes/Elements/Team_Member.php:244, ../includes/Elements/Testimonial.php:221, ../includes/Elements/Tooltip.php:520, ../includes/Elements/Twitter_Feed.php:315, ../includes/Elements/WeForms.php:117
21
  msgid "Unlock more possibilities"
22
  msgstr ""
23
 
@@ -61,7 +61,7 @@ msgstr ""
61
  msgid "Install Now!"
62
  msgstr ""
63
 
64
- #: ../includes/Classes/WPDeveloper_Plugin_Installer.php:151, ../includes/Classes/WPDeveloper_Plugin_Installer.php:169, ../includes/Classes/WPDeveloper_Plugin_Installer.php:187, ../includes/Classes/WPDeveloper_Setup_Wizard.php:481, ../includes/Classes/WPDeveloper_Setup_Wizard.php:507, ../includes/Traits/Admin.php:165, ../includes/Traits/Helper.php:828, ../includes/Traits/Library.php:154
65
  msgid "you are not allowed to do this action"
66
  msgstr ""
67
 
@@ -126,7 +126,7 @@ msgid ""
126
  " option."
127
  msgstr ""
128
 
129
- #: ../includes/Classes/WPDeveloper_Setup_Wizard.php:215, ../includes/Elements/Caldera_Forms.php:1164, ../includes/Elements/Contact_Form_7.php:1190, ../includes/Elements/Content_Ticker.php:92, ../includes/Elements/FluentForm.php:1514, ../includes/Elements/Formstack.php:1400, ../includes/Elements/GravityForms.php:1752, ../includes/Elements/Login_Register.php:301, ../includes/Elements/Login_Register.php:461, ../includes/Elements/Login_Register.php:567, ../includes/Elements/Login_Register.php:876, ../includes/Elements/Login_Register.php:1319, ../includes/Elements/Login_Register.php:1425, ../includes/Elements/Login_Register.php:1493, ../includes/Elements/Login_Register.php:1619, ../includes/Elements/Login_Register.php:1876, ../includes/Elements/Login_Register.php:2020, ../includes/Elements/Login_Register.php:2170, ../includes/Elements/Login_Register.php:2313, ../includes/Elements/Login_Register.php:2404, ../includes/Elements/Login_Register.php:2502, ../includes/Elements/Login_Register.php:2704, ../includes/Elements/Login_Register.php:2749, ../includes/Elements/Login_Register.php:2781, ../includes/Elements/Login_Register.php:3015, ../includes/Elements/Login_Register.php:3177, ../includes/Elements/Login_Register.php:3476, ../includes/Elements/NinjaForms.php:1328, ../includes/Elements/WpForms.php:1168, ../includes/Traits/Woo_Product_Comparable.php:420, ../includes/Traits/Woo_Product_Comparable.php:534, ../includes/Traits/Woo_Product_Comparable.php:625, ../includes/Traits/Woo_Product_Comparable.php:694
130
  msgid "Custom"
131
  msgstr ""
132
 
@@ -263,7 +263,7 @@ msgstr ""
263
  msgid "Dual Color Heading"
264
  msgstr ""
265
 
266
- #: ../includes/Classes/WPDeveloper_Setup_Wizard.php:583, ../includes/Elements/Pricing_Table.php:1463, ../includes/Elements/Tooltip.php:25, ../includes/templates/admin/elements.php:45
267
  msgid "Tooltip"
268
  msgstr ""
269
 
@@ -275,7 +275,7 @@ msgstr ""
275
  msgid "Advanced Tabs"
276
  msgstr ""
277
 
278
- #: ../includes/Classes/WPDeveloper_Setup_Wizard.php:598, ../includes/Elements/Feature_List.php:28, ../includes/Elements/Pricing_Table.php:1204, ../includes/templates/admin/elements.php:63
279
  msgid "Feature List"
280
  msgstr ""
281
 
@@ -347,7 +347,7 @@ msgstr ""
347
  msgid "Call To Action"
348
  msgstr ""
349
 
350
- #: ../includes/Classes/WPDeveloper_Setup_Wizard.php:687, ../includes/Elements/Pricing_Table.php:32, ../includes/templates/admin/elements.php:336
351
  msgid "Pricing Table"
352
  msgstr ""
353
 
@@ -387,8 +387,8 @@ msgstr ""
387
  msgid "WPForms"
388
  msgstr ""
389
 
390
- #: ../includes/Classes/WPDeveloper_Setup_Wizard.php:733, ../includes/templates/admin/elements.php:390
391
- msgid "FluentForm"
392
  msgstr ""
393
 
394
  #: ../includes/Classes/WPDeveloper_Setup_Wizard.php:737, ../includes/Elements/Formstack.php:28, ../includes/Elements/Formstack.php:169, ../includes/templates/admin/elements.php:396
@@ -511,7 +511,7 @@ msgstr ""
511
  msgid "Sort"
512
  msgstr ""
513
 
514
- #: ../includes/Elements/Advanced_Data_Table.php:165, ../includes/Elements/Caldera_Forms.php:162, ../includes/Elements/Caldera_Forms.php:895, ../includes/Elements/Contact_Form_7.php:900, ../includes/Elements/Filterable_Gallery.php:2292, ../includes/Elements/FluentForm.php:203, ../includes/Elements/FluentForm.php:891, ../includes/Elements/Formstack.php:244, ../includes/Elements/Formstack.php:1090, ../includes/Elements/GravityForms.php:231, ../includes/Elements/GravityForms.php:1165, ../includes/Elements/Login_Register.php:1092, ../includes/Elements/NinjaForms.php:183, ../includes/Elements/NinjaForms.php:939, ../includes/Elements/WpForms.php:190, ../includes/Elements/WpForms.php:896
515
  msgid "Placeholder"
516
  msgstr ""
517
 
@@ -523,7 +523,7 @@ msgstr ""
523
  msgid "Pagination Type"
524
  msgstr ""
525
 
526
- #: ../includes/Elements/Advanced_Data_Table.php:193, ../includes/Elements/Advanced_Data_Table.php:1345, ../includes/Elements/Betterdocs_Category_Grid.php:1290, ../includes/Elements/Event_Calendar.php:759, ../includes/Elements/Flip_Box.php:651, ../includes/Elements/FluentForm.php:1965, ../includes/Elements/Formstack.php:1773, ../includes/Elements/Info_Box.php:352, ../includes/Elements/Pricing_Table.php:501, ../includes/Elements/Pricing_Table.php:1810, ../includes/Elements/Product_Grid.php:1832, ../includes/Elements/Woo_Checkout.php:1291, ../includes/Elements/Woo_Checkout.php:1589, ../includes/Elements/Woo_Checkout.php:2448, ../includes/Elements/Woo_Product_Carousel.php:1295, ../includes/Elements/Woo_Product_Gallery.php:1642, ../includes/Traits/Woo_Product_Comparable.php:1211, ../includes/Traits/Woo_Product_Comparable.php:1261
527
  msgid "Button"
528
  msgstr ""
529
 
@@ -571,15 +571,15 @@ msgstr ""
571
  msgid "Table"
572
  msgstr ""
573
 
574
- #: ../includes/Elements/Advanced_Data_Table.php:324, ../includes/Elements/Advanced_Data_Table.php:885, ../includes/Elements/Advanced_Data_Table.php:1080, ../includes/Elements/Betterdocs_Search_Form.php:311, ../includes/Elements/Caldera_Forms.php:1159, ../includes/Elements/Caldera_Forms.php:1173, ../includes/Elements/Contact_Form_7.php:1185, ../includes/Elements/Contact_Form_7.php:1199, ../includes/Elements/Creative_Button.php:467, ../includes/Elements/Data_Table.php:521, ../includes/Elements/Data_Table.php:1150, ../includes/Elements/Dual_Color_Header.php:749, ../includes/Elements/Dual_Color_Header.php:829, ../includes/Elements/Filterable_Gallery.php:2157, ../includes/Elements/Filterable_Gallery.php:2315, ../includes/Elements/FluentForm.php:1509, ../includes/Elements/FluentForm.php:1523, ../includes/Elements/Formstack.php:1395, ../includes/Elements/Formstack.php:1409, ../includes/Elements/GravityForms.php:1631, ../includes/Elements/GravityForms.php:1747, ../includes/Elements/GravityForms.php:1761, ../includes/Elements/GravityForms.php:1994, ../includes/Elements/Login_Register.php:1498, ../includes/Elements/Login_Register.php:2026, ../includes/Elements/NinjaForms.php:1323, ../includes/Elements/NinjaForms.php:1337, ../includes/Elements/Progress_Bar.php:356, ../includes/Elements/Sticky_Video.php:441, ../includes/Elements/Sticky_Video.php:525, ../includes/Elements/Twitter_Feed.php:804, ../includes/Elements/Woo_Product_Carousel.php:1303, ../includes/Elements/Woo_Product_Carousel.php:2133, ../includes/Elements/Woo_Product_Carousel.php:2336, ../includes/Elements/Woo_Product_Carousel.php:2416, ../includes/Elements/Woo_Product_Gallery.php:1163, ../includes/Elements/WpForms.php:1163, ../includes/Elements/WpForms.php:1177, ../includes/Extensions/Table_of_Content.php:431, ../includes/Traits/Woo_Product_Comparable.php:307, ../includes/Traits/Woo_Product_Comparable.php:969, ../includes/Traits/Woo_Product_Comparable.php:1118
575
  msgid "Width"
576
  msgstr ""
577
 
578
- #: ../includes/Elements/Advanced_Data_Table.php:361, ../includes/Elements/Advanced_Data_Table.php:1029, ../includes/Elements/Advanced_Data_Table.php:1227, ../includes/Elements/Advanced_Data_Table.php:1299, ../includes/Elements/Advanced_Data_Table.php:1427, ../includes/Elements/Adv_Accordion.php:382, ../includes/Elements/Adv_Accordion.php:571, ../includes/Elements/Adv_Accordion.php:631, ../includes/Elements/Adv_Accordion.php:692, ../includes/Elements/Adv_Accordion.php:775, ../includes/Elements/Adv_Accordion.php:897, ../includes/Elements/Adv_Accordion.php:943, ../includes/Elements/Adv_Accordion.php:989, ../includes/Elements/Adv_Tabs.php:358, ../includes/Elements/Adv_Tabs.php:552, ../includes/Elements/Adv_Tabs.php:619, ../includes/Elements/Adv_Tabs.php:688, ../includes/Elements/Adv_Tabs.php:782, ../includes/Elements/Betterdocs_Category_Box.php:300, ../includes/Elements/Betterdocs_Category_Box.php:368, ../includes/Elements/Betterdocs_Category_Box.php:489, ../includes/Elements/Betterdocs_Category_Box.php:565, ../includes/Elements/Betterdocs_Category_Box.php:885, ../includes/Elements/Betterdocs_Category_Box.php:990, ../includes/Elements/Betterdocs_Category_Grid.php:341, ../includes/Elements/Betterdocs_Category_Grid.php:389, ../includes/Elements/Betterdocs_Category_Grid.php:474, ../includes/Elements/Betterdocs_Category_Grid.php:515, ../includes/Elements/Betterdocs_Category_Grid.php:640, ../includes/Elements/Betterdocs_Category_Grid.php:694, ../includes/Elements/Betterdocs_Category_Grid.php:844, ../includes/Elements/Betterdocs_Category_Grid.php:941, ../includes/Elements/Betterdocs_Category_Grid.php:1186, ../includes/Elements/Betterdocs_Category_Grid.php:1386, ../includes/Elements/Betterdocs_Category_Grid.php:1485, ../includes/Elements/Betterdocs_Search_Form.php:210, ../includes/Elements/Betterdocs_Search_Form.php:365, ../includes/Elements/Betterdocs_Search_Form.php:423, ../includes/Elements/Betterdocs_Search_Form.php:533, ../includes/Elements/Caldera_Forms.php:617, ../includes/Elements/Caldera_Forms.php:813, ../includes/Elements/Caldera_Forms.php:1229, ../includes/Elements/Caldera_Forms.php:1387, ../includes/Elements/Contact_Form_7.php:711, ../includes/Elements/Contact_Form_7.php:776, ../includes/Elements/Contact_Form_7.php:1255, ../includes/Elements/Contact_Form_7.php:1457, ../includes/Elements/Contact_Form_7.php:1551, ../includes/Elements/Contact_Form_7.php:1618, ../includes/Elements/Content_Ticker.php:622, ../includes/Elements/Countdown.php:619, ../includes/Elements/Cta_Box.php:463, ../includes/Elements/Cta_Box.php:740, ../includes/Elements/Cta_Box.php:927, ../includes/Elements/Data_Table.php:652, ../includes/Elements/Data_Table.php:691, ../includes/Elements/Data_Table.php:883, ../includes/Elements/Data_Table.php:1217, ../includes/Elements/Dual_Color_Header.php:347, ../includes/Elements/Event_Calendar.php:810, ../includes/Elements/Event_Calendar.php:877, ../includes/Elements/Event_Calendar.php:931, ../includes/Elements/Event_Calendar.php:1603, ../includes/Elements/Event_Calendar.php:1674, ../includes/Elements/Facebook_Feed.php:451, ../includes/Elements/Filterable_Gallery.php:872, ../includes/Elements/Filterable_Gallery.php:985, ../includes/Elements/Filterable_Gallery.php:1051, ../includes/Elements/Filterable_Gallery.php:1131, ../includes/Elements/Filterable_Gallery.php:1278, ../includes/Elements/Filterable_Gallery.php:1335, ../includes/Elements/Filterable_Gallery.php:1554, ../includes/Elements/Filterable_Gallery.php:1829, ../includes/Elements/Filterable_Gallery.php:1890, ../includes/Elements/Filterable_Gallery.php:2411, ../includes/Elements/Filterable_Gallery.php:2528, ../includes/Elements/Flip_Box.php:988, ../includes/Elements/Flip_Box.php:1101, ../includes/Elements/FluentForm.php:666, ../includes/Elements/FluentForm.php:862, ../includes/Elements/FluentForm.php:1580, ../includes/Elements/FluentForm.php:1878, ../includes/Elements/FluentForm.php:2005, ../includes/Elements/FluentForm.php:2123, ../includes/Elements/Formstack.php:865, ../includes/Elements/Formstack.php:1061, ../includes/Elements/Formstack.php:1465, ../includes/Elements/Formstack.php:1686, ../includes/Elements/Formstack.php:1815, ../includes/Elements/GravityForms.php:835, ../includes/Elements/GravityForms.php:899, ../includes/Elements/GravityForms.php:1655, ../includes/Elements/GravityForms.php:1824, ../includes/Elements/GravityForms.php:2051, ../includes/Elements/Image_Accordion.php:354, ../includes/Elements/Image_Accordion.php:464, ../includes/Elements/Info_Box.php:571, ../includes/Elements/Info_Box.php:626, ../includes/Elements/Info_Box.php:820, ../includes/Elements/Info_Box.php:900, ../includes/Elements/Info_Box.php:1053, ../includes/Elements/Info_Box.php:1134, ../includes/Elements/Login_Register.php:2778, ../includes/Elements/NinjaForms.php:659, ../includes/Elements/NinjaForms.php:857, ../includes/Elements/NinjaForms.php:1397, ../includes/Elements/Post_Grid.php:303, ../includes/Elements/Pricing_Table.php:1761, ../includes/Elements/Pricing_Table.php:1927, ../includes/Elements/Product_Grid.php:2275, ../includes/Elements/Simple_Menu.php:621, ../includes/Elements/Simple_Menu.php:694, ../includes/Elements/Team_Member.php:413, ../includes/Elements/Team_Member.php:501, ../includes/Elements/Testimonial.php:435, ../includes/Elements/Tooltip.php:439, ../includes/Elements/Tooltip.php:482, ../includes/Elements/Twitter_Feed.php:461, ../includes/Elements/Twitter_Feed.php:551, ../includes/Elements/Twitter_Feed.php:868, ../includes/Elements/Woo_Checkout.php:1511, ../includes/Elements/Woo_Checkout.php:1757, ../includes/Elements/Woo_Product_Carousel.php:2241, ../includes/Elements/Woo_Product_Carousel.php:2675, ../includes/Elements/WpForms.php:628, ../includes/Elements/WpForms.php:814, ../includes/Elements/WpForms.php:1233, ../includes/Extensions/Table_of_Content.php:545, ../includes/Traits/Controls.php:1258, ../includes/Traits/Controls.php:1312, ../includes/Traits/Controls.php:1442
579
  msgid "Border"
580
  msgstr ""
581
 
582
- #: ../includes/Elements/Advanced_Data_Table.php:387, ../includes/Elements/Advanced_Data_Table.php:1055, ../includes/Elements/Advanced_Data_Table.php:1253, ../includes/Elements/Advanced_Data_Table.php:1325, ../includes/Elements/Advanced_Data_Table.php:1449, ../includes/Elements/Adv_Accordion.php:389, ../includes/Elements/Adv_Accordion.php:578, ../includes/Elements/Adv_Accordion.php:638, ../includes/Elements/Adv_Accordion.php:699, ../includes/Elements/Adv_Tabs.php:366, ../includes/Elements/Adv_Tabs.php:559, ../includes/Elements/Adv_Tabs.php:626, ../includes/Elements/Adv_Tabs.php:695, ../includes/Elements/Adv_Tabs.php:789, ../includes/Elements/Betterdocs_Category_Box.php:308, ../includes/Elements/Betterdocs_Category_Box.php:376, ../includes/Elements/Betterdocs_Category_Box.php:497, ../includes/Elements/Betterdocs_Category_Box.php:574, ../includes/Elements/Betterdocs_Category_Box.php:896, ../includes/Elements/Betterdocs_Category_Box.php:1001, ../includes/Elements/Betterdocs_Category_Grid.php:349, ../includes/Elements/Betterdocs_Category_Grid.php:397, ../includes/Elements/Betterdocs_Category_Grid.php:482, ../includes/Elements/Betterdocs_Category_Grid.php:523, ../includes/Elements/Betterdocs_Category_Grid.php:648, ../includes/Elements/Betterdocs_Category_Grid.php:702, ../includes/Elements/Betterdocs_Category_Grid.php:855, ../includes/Elements/Betterdocs_Category_Grid.php:952, ../includes/Elements/Betterdocs_Category_Grid.php:1394, ../includes/Elements/Betterdocs_Category_Grid.php:1493, ../includes/Elements/Betterdocs_Search_Form.php:197, ../includes/Elements/Caldera_Forms.php:480, ../includes/Elements/Caldera_Forms.php:628, ../includes/Elements/Caldera_Forms.php:1046, ../includes/Elements/Caldera_Forms.php:1072, ../includes/Elements/Caldera_Forms.php:1239, ../includes/Elements/Contact_Form_7.php:396, ../includes/Elements/Contact_Form_7.php:722, ../includes/Elements/Contact_Form_7.php:1073, ../includes/Elements/Contact_Form_7.php:1099, ../includes/Elements/Contact_Form_7.php:1264, ../includes/Elements/Content_Ticker.php:401, ../includes/Elements/Content_Ticker.php:475, ../includes/Elements/Content_Ticker.php:632, ../includes/Elements/Countdown.php:627, ../includes/Elements/Creative_Button.php:336, ../includes/Elements/Cta_Box.php:471, ../includes/Elements/Cta_Box.php:748, ../includes/Elements/Cta_Box.php:935, ../includes/Elements/Dual_Color_Header.php:355, ../includes/Elements/Event_Calendar.php:818, ../includes/Elements/Event_Calendar.php:885, ../includes/Elements/Event_Calendar.php:939, ../includes/Elements/Event_Calendar.php:1175, ../includes/Elements/Event_Calendar.php:1343, ../includes/Elements/Event_Calendar.php:1611, ../includes/Elements/Event_Calendar.php:1682, ../includes/Elements/Facebook_Feed.php:476, ../includes/Elements/Facebook_Feed.php:536, ../includes/Elements/Fancy_Text.php:515, ../includes/Elements/Feature_List.php:640, ../includes/Elements/Filterable_Gallery.php:880, ../includes/Elements/Filterable_Gallery.php:993, ../includes/Elements/Filterable_Gallery.php:1059, ../includes/Elements/Filterable_Gallery.php:1139, ../includes/Elements/Filterable_Gallery.php:1343, ../includes/Elements/Filterable_Gallery.php:1837, ../includes/Elements/Filterable_Gallery.php:1898, ../includes/Elements/Filterable_Gallery.php:2069, ../includes/Elements/Filterable_Gallery.php:2200, ../includes/Elements/Filterable_Gallery.php:2335, ../includes/Elements/Filterable_Gallery.php:2433, ../includes/Elements/Filterable_Gallery.php:2542, ../includes/Elements/Flip_Box.php:826, ../includes/Elements/Flip_Box.php:887, ../includes/Elements/Flip_Box.php:1011, ../includes/Elements/Flip_Box.php:1124, ../includes/Elements/Flip_Box.php:1385, ../includes/Elements/FluentForm.php:527, ../includes/Elements/FluentForm.php:677, ../includes/Elements/FluentForm.php:1042, ../includes/Elements/FluentForm.php:1068, ../includes/Elements/FluentForm.php:1590, ../includes/Elements/FluentForm.php:1889, ../includes/Elements/FluentForm.php:2013, ../includes/Elements/FluentForm.php:2067, ../includes/Elements/Formstack.php:399, ../includes/Elements/Formstack.php:876, ../includes/Elements/Formstack.php:1202, ../includes/Elements/Formstack.php:1228, ../includes/Elements/Formstack.php:1475, ../includes/Elements/Formstack.php:1697, ../includes/Elements/Formstack.php:1823, ../includes/Elements/Formstack.php:1879, ../includes/Elements/GravityForms.php:436, ../includes/Elements/GravityForms.php:846, ../includes/Elements/GravityForms.php:1316, ../includes/Elements/GravityForms.php:1512, ../includes/Elements/GravityForms.php:1665, ../includes/Elements/GravityForms.php:1834, ../includes/Elements/GravityForms.php:2061, ../includes/Elements/Image_Accordion.php:362, ../includes/Elements/Image_Accordion.php:452, ../includes/Elements/Info_Box.php:1216, ../includes/Elements/Login_Register.php:1579, ../includes/Elements/Login_Register.php:1814, ../includes/Elements/Login_Register.php:1988, ../includes/Elements/Login_Register.php:2144, ../includes/Elements/Login_Register.php:2284, ../includes/Elements/Login_Register.php:2378, ../includes/Elements/Login_Register.php:2469, ../includes/Elements/Login_Register.php:2643, ../includes/Elements/Login_Register.php:2680, ../includes/Elements/Login_Register.php:2794, ../includes/Elements/Login_Register.php:3304, ../includes/Elements/Login_Register.php:3341, ../includes/Elements/Login_Register.php:3625, ../includes/Elements/Login_Register.php:3662, ../includes/Elements/NinjaForms.php:369, ../includes/Elements/NinjaForms.php:670, ../includes/Elements/NinjaForms.php:1094, ../includes/Elements/NinjaForms.php:1121, ../includes/Elements/NinjaForms.php:1407, ../includes/Elements/Post_Grid.php:311, ../includes/Elements/Pricing_Table.php:781, ../includes/Elements/Pricing_Table.php:1535, ../includes/Elements/Pricing_Table.php:1784, ../includes/Elements/Pricing_Table.php:1935, ../includes/Elements/Product_Grid.php:943, ../includes/Elements/Product_Grid.php:2019, ../includes/Elements/Product_Grid.php:2375, ../includes/Elements/Product_Grid.php:2715, ../includes/Elements/Product_Grid.php:2914, ../includes/Elements/Product_Grid.php:2946, ../includes/Elements/Simple_Menu.php:629, ../includes/Elements/Sticky_Video.php:591, ../includes/Elements/Team_Member.php:421, ../includes/Elements/Team_Member.php:520, ../includes/Elements/Team_Member.php:767, ../includes/Elements/Testimonial.php:454, ../includes/Elements/Tooltip.php:499, ../includes/Elements/Twitter_Feed.php:469, ../includes/Elements/Twitter_Feed.php:562, ../includes/Elements/TypeForm.php:310, ../includes/Elements/WeForms.php:253, ../includes/Elements/WeForms.php:394, ../includes/Elements/WeForms.php:722, ../includes/Elements/Woo_Checkout.php:651, ../includes/Elements/Woo_Checkout.php:800, ../includes/Elements/Woo_Checkout.php:996, ../includes/Elements/Woo_Checkout.php:1244, ../includes/Elements/Woo_Checkout.php:1397, ../includes/Elements/Woo_Checkout.php:1520, ../includes/Elements/Woo_Checkout.php:1695, ../includes/Elements/Woo_Checkout.php:1903, ../includes/Elements/Woo_Checkout.php:2105, ../includes/Elements/Woo_Checkout.php:2285, ../includes/Elements/Woo_Checkout.php:2565, ../includes/Elements/Woo_Product_Carousel.php:1008, ../includes/Elements/Woo_Product_Carousel.php:1410, ../includes/Elements/Woo_Product_Carousel.php:1813, ../includes/Elements/Woo_Product_Carousel.php:2009, ../includes/Elements/Woo_Product_Carousel.php:2041, ../includes/Elements/Woo_Product_Carousel.php:2251, ../includes/Elements/Woo_Product_Carousel.php:2374, ../includes/Elements/Woo_Product_Carousel.php:2498, ../includes/Elements/Woo_Product_Carousel.php:2685, ../includes/Elements/Woo_Product_Gallery.php:675, ../includes/Elements/Woo_Product_Gallery.php:1693, ../includes/Elements/Woo_Product_Gallery.php:2053, ../includes/Elements/Woo_Product_Gallery.php:2252, ../includes/Elements/Woo_Product_Gallery.php:2284, ../includes/Elements/WpForms.php:338, ../includes/Elements/WpForms.php:639, ../includes/Elements/WpForms.php:1047, ../includes/Elements/WpForms.php:1073, ../includes/Elements/WpForms.php:1243, ../includes/Extensions/Table_of_Content.php:568, ../includes/Extensions/Table_of_Content.php:783, ../includes/Traits/Controls.php:1266, ../includes/Traits/Controls.php:1320, ../includes/Traits/Controls.php:1450, ../includes/Traits/Woo_Product_Comparable.php:368, ../includes/Traits/Woo_Product_Comparable.php:513, ../includes/Traits/Woo_Product_Comparable.php:1394
583
  msgid "Border Radius"
584
  msgstr ""
585
 
@@ -591,7 +591,7 @@ msgstr ""
591
  msgid "Head"
592
  msgstr ""
593
 
594
- #: ../includes/Elements/Advanced_Data_Table.php:419, ../includes/Elements/Advanced_Data_Table.php:538, ../includes/Elements/Advanced_Data_Table.php:996, ../includes/Elements/Advanced_Data_Table.php:1146, ../includes/Elements/Advanced_Data_Table.php:1354, ../includes/Elements/Caldera_Forms.php:286, ../includes/Elements/Caldera_Forms.php:347, ../includes/Elements/Caldera_Forms.php:535, ../includes/Elements/Caldera_Forms.php:773, ../includes/Elements/Caldera_Forms.php:862, ../includes/Elements/Caldera_Forms.php:1283, ../includes/Elements/Caldera_Forms.php:1398, ../includes/Elements/Contact_Form_7.php:487, ../includes/Elements/Contact_Form_7.php:518, ../includes/Elements/Contact_Form_7.php:735, ../includes/Elements/Contact_Form_7.php:883, ../includes/Elements/Contact_Form_7.php:935, ../includes/Elements/Contact_Form_7.php:1308, ../includes/Elements/Contact_Form_7.php:1443, ../includes/Elements/Contact_Form_7.php:1583, ../includes/Elements/Event_Calendar.php:739, ../includes/Elements/Event_Calendar.php:769, ../includes/Elements/Event_Calendar.php:983, ../includes/Elements/Event_Calendar.php:1058, ../includes/Elements/Event_Calendar.php:1092, ../includes/Elements/Event_Calendar.php:1335, ../includes/Elements/Event_Calendar.php:1398, ../includes/Elements/Event_Calendar.php:1427, ../includes/Elements/Event_Calendar.php:1495, ../includes/Elements/Event_Calendar.php:1653, ../includes/Elements/Filterable_Gallery.php:1965, ../includes/Elements/Filterable_Gallery.php:2012, ../includes/Elements/Filterable_Gallery.php:2048, ../includes/Elements/Filterable_Gallery.php:2105, ../includes/Elements/Filterable_Gallery.php:2399, ../includes/Elements/Filterable_Gallery.php:2559, ../includes/Elements/FluentForm.php:321, ../includes/Elements/FluentForm.php:382, ../includes/Elements/FluentForm.php:582, ../includes/Elements/FluentForm.php:822, ../includes/Elements/FluentForm.php:1149, ../includes/Elements/FluentForm.php:1204, ../includes/Elements/FluentForm.php:1308, ../includes/Elements/FluentForm.php:1394, ../includes/Elements/FluentForm.php:1460, ../includes/Elements/FluentForm.php:1655, ../includes/Elements/FluentForm.php:1788, ../includes/Elements/FluentForm.php:1985, ../includes/Elements/FluentForm.php:2134, ../includes/Elements/FluentForm.php:2183, ../includes/Elements/Formstack.php:494, ../includes/Elements/Formstack.php:543, ../includes/Elements/Formstack.php:597, ../includes/Elements/Formstack.php:671, ../includes/Elements/Formstack.php:726, ../includes/Elements/Formstack.php:809, ../includes/Elements/Formstack.php:1021, ../includes/Elements/Formstack.php:1519, ../includes/Elements/Formstack.php:1652, ../includes/Elements/Formstack.php:1793, ../includes/Elements/Formstack.php:1953, ../includes/Elements/GravityForms.php:528, ../includes/Elements/GravityForms.php:559, ../includes/Elements/GravityForms.php:600, ../includes/Elements/GravityForms.php:859, ../includes/Elements/GravityForms.php:948, ../includes/Elements/GravityForms.php:1002, ../includes/Elements/GravityForms.php:1138, ../includes/Elements/GravityForms.php:1598, ../includes/Elements/GravityForms.php:1933, ../includes/Elements/GravityForms.php:2154, ../includes/Elements/GravityForms.php:2347, ../includes/Elements/NinjaForms.php:465, ../includes/Elements/NinjaForms.php:514, ../includes/Elements/NinjaForms.php:574, ../includes/Elements/NinjaForms.php:817, ../includes/Elements/NinjaForms.php:906, ../includes/Elements/NinjaForms.php:1500, ../includes/Elements/NinjaForms.php:1545, ../includes/Elements/NinjaForms.php:1599, ../includes/Elements/Post_Grid.php:392, ../includes/Elements/Post_Grid.php:510, ../includes/Elements/Post_Grid.php:522, ../includes/Elements/Post_Grid.php:664, ../includes/Elements/Post_Grid.php:876, ../includes/Elements/Post_Timeline.php:323, ../includes/Elements/Product_Grid.php:2435, ../includes/Elements/Product_Grid.php:2466, ../includes/Elements/Product_Grid.php:2508, ../includes/Elements/Product_Grid.php:2574, ../includes/Elements/Product_Grid.php:2615, ../includes/Elements/Product_Grid.php:2672, ../includes/Elements/Product_Grid.php:2789, ../includes/Elements/Progress_Bar.php:672, ../includes/Elements/Simple_Menu.php:831, ../includes/Elements/Simple_Menu.php:1142, ../includes/Elements/Woo_Checkout.php:1300, ../includes/Elements/Woo_Checkout.php:1598, ../includes/Elements/Woo_Product_Carousel.php:1521, ../includes/Elements/Woo_Product_Carousel.php:1551, ../includes/Elements/Woo_Product_Carousel.php:1593, ../includes/Elements/Woo_Product_Carousel.php:1672, ../includes/Elements/Woo_Product_Carousel.php:1712, ../includes/Elements/Woo_Product_Carousel.php:1769, ../includes/Elements/Woo_Product_Carousel.php:1888, ../includes/Elements/Woo_Product_Gallery.php:1774, ../includes/Elements/Woo_Product_Gallery.php:1804, ../includes/Elements/Woo_Product_Gallery.php:1846, ../includes/Elements/Woo_Product_Gallery.php:1912, ../includes/Elements/Woo_Product_Gallery.php:1953, ../includes/Elements/Woo_Product_Gallery.php:2010, ../includes/Elements/Woo_Product_Gallery.php:2127, ../includes/Elements/WpForms.php:432, ../includes/Elements/WpForms.php:481, ../includes/Elements/WpForms.php:545, ../includes/Elements/WpForms.php:785, ../includes/Elements/WpForms.php:863, ../includes/Elements/WpForms.php:1287, ../includes/Traits/Woo_Product_Comparable.php:1077, ../includes/Traits/Woo_Product_Comparable.php:1195
595
  msgid "Typography"
596
  msgstr ""
597
 
@@ -599,23 +599,23 @@ msgstr ""
599
  msgid "Text Alignment"
600
  msgstr ""
601
 
602
- #: ../includes/Elements/Advanced_Data_Table.php:431, ../includes/Elements/Advanced_Data_Table.php:550, ../includes/Elements/Advanced_Data_Table.php:976, ../includes/Elements/Advanced_Data_Table.php:1123, ../includes/Elements/Adv_Accordion.php:154, ../includes/Elements/Betterdocs_Category_Box.php:767, ../includes/Elements/Betterdocs_Category_Grid.php:1513, ../includes/Elements/Betterdocs_Category_Grid.php:1538, ../includes/Elements/Caldera_Forms.php:233, ../includes/Elements/Caldera_Forms.php:415, ../includes/Elements/Caldera_Forms.php:561, ../includes/Elements/Caldera_Forms.php:1136, ../includes/Elements/Contact_Form_7.php:331, ../includes/Elements/Contact_Form_7.php:443, ../includes/Elements/Contact_Form_7.php:1163, ../includes/Elements/Content_Ticker.php:290, ../includes/Elements/Countdown.php:118, ../includes/Elements/Countdown.php:1030, ../includes/Elements/Creative_Button.php:445, ../includes/Elements/Cta_Box.php:102, ../includes/Elements/Data_Table.php:553, ../includes/Elements/Data_Table.php:778, ../includes/Elements/Data_Table.php:1027, ../includes/Elements/Dual_Color_Header.php:191, ../includes/Elements/Event_Calendar.php:1007, ../includes/Elements/Event_Calendar.php:1139, ../includes/Elements/Fancy_Text.php:174, ../includes/Elements/Feature_List.php:303, ../includes/Elements/Filterable_Gallery.php:768, ../includes/Elements/Filterable_Gallery.php:1300, ../includes/Elements/Filterable_Gallery.php:1683, ../includes/Elements/Flip_Box.php:369, ../includes/Elements/Flip_Box.php:598, ../includes/Elements/FluentForm.php:267, ../includes/Elements/FluentForm.php:462, ../includes/Elements/FluentForm.php:608, ../includes/Elements/FluentForm.php:1241, ../includes/Elements/FluentForm.php:1486, ../includes/Elements/Formstack.php:334, ../includes/Elements/Formstack.php:449, ../includes/Elements/Formstack.php:763, ../includes/Elements/Formstack.php:1372, ../includes/Elements/GravityForms.php:347, ../includes/Elements/GravityForms.php:484, ../includes/Elements/GravityForms.php:629, ../includes/Elements/GravityForms.php:1721, ../includes/Elements/GravityForms.php:1971, ../includes/Elements/Image_Accordion.php:109, ../includes/Elements/Info_Box.php:306, ../includes/Elements/Login_Register.php:712, ../includes/Elements/Login_Register.php:745, ../includes/Elements/Login_Register.php:2587, ../includes/Elements/Login_Register.php:3255, ../includes/Elements/Login_Register.php:3575, ../includes/Elements/NinjaForms.php:282, ../includes/Elements/NinjaForms.php:421, ../includes/Elements/NinjaForms.php:603, ../includes/Elements/NinjaForms.php:1298, ../includes/Elements/Post_Grid.php:487, ../includes/Elements/Post_Grid.php:642, ../includes/Elements/Post_Grid.php:710, ../includes/Elements/Post_Grid.php:805, ../includes/Elements/Post_Grid.php:888, ../includes/Elements/Post_Timeline.php:357, ../includes/Elements/Post_Timeline.php:415, ../includes/Elements/Pricing_Table.php:256, ../includes/Elements/Pricing_Table.php:373, ../includes/Elements/Pricing_Table.php:675, ../includes/Elements/Pricing_Table.php:815, ../includes/Elements/Pricing_Table.php:840, ../includes/Elements/Product_Grid.php:695, ../includes/Elements/Product_Grid.php:1013, ../includes/Elements/Product_Grid.php:1711, ../includes/Elements/Product_Grid.php:2196, ../includes/Elements/Progress_Bar.php:321, ../includes/Elements/Progress_Bar.php:532, ../includes/Elements/Simple_Menu.php:188, ../includes/Elements/Simple_Menu.php:333, ../includes/Elements/Simple_Menu.php:740, ../includes/Elements/Simple_Menu.php:766, ../includes/Elements/Simple_Menu.php:791, ../includes/Elements/Simple_Menu.php:1086, ../includes/Elements/Team_Member.php:380, ../includes/Elements/Testimonial.php:314, ../includes/Elements/Tooltip.php:209, ../includes/Elements/Tooltip.php:288, ../includes/Elements/Tooltip.php:377, ../includes/Elements/TypeForm.php:200, ../includes/Elements/WeForms.php:165, ../includes/Elements/WeForms.php:635, ../includes/Elements/Woo_Product_Carousel.php:704, ../includes/Elements/Woo_Product_Carousel.php:820, ../includes/Elements/Woo_Product_Carousel.php:869, ../includes/Elements/Woo_Product_Gallery.php:193, ../includes/Elements/Woo_Product_Gallery.php:223, ../includes/Elements/Woo_Product_Gallery.php:552, ../includes/Elements/Woo_Product_Gallery.php:1519, ../includes/Elements/WpForms.php:271, ../includes/Elements/WpForms.php:388, ../includes/Elements/WpForms.php:572, ../includes/Elements/WpForms.php:1137, ../includes/Extensions/Table_of_Content.php:462, ../includes/Traits/Controls.php:602, ../includes/Traits/Controls.php:1531, ../includes/Traits/Controls.php:1582, ../includes/Traits/Controls.php:1583, ../includes/Traits/Controls.php:1905
603
  msgid "Left"
604
  msgstr ""
605
 
606
- #: ../includes/Elements/Advanced_Data_Table.php:435, ../includes/Elements/Advanced_Data_Table.php:554, ../includes/Elements/Advanced_Data_Table.php:980, ../includes/Elements/Advanced_Data_Table.php:1127, ../includes/Elements/Betterdocs_Category_Box.php:771, ../includes/Elements/Betterdocs_Category_Grid.php:1517, ../includes/Elements/Betterdocs_Category_Grid.php:1542, ../includes/Elements/Caldera_Forms.php:237, ../includes/Elements/Caldera_Forms.php:419, ../includes/Elements/Caldera_Forms.php:565, ../includes/Elements/Caldera_Forms.php:1140, ../includes/Elements/Contact_Form_7.php:335, ../includes/Elements/Contact_Form_7.php:447, ../includes/Elements/Contact_Form_7.php:1167, ../includes/Elements/Countdown.php:122, ../includes/Elements/Countdown.php:1034, ../includes/Elements/Creative_Button.php:449, ../includes/Elements/Cta_Box.php:103, ../includes/Elements/Data_Table.php:557, ../includes/Elements/Data_Table.php:782, ../includes/Elements/Data_Table.php:1031, ../includes/Elements/Dual_Color_Header.php:195, ../includes/Elements/Dual_Color_Header.php:658, ../includes/Elements/Event_Calendar.php:1011, ../includes/Elements/Event_Calendar.php:1143, ../includes/Elements/Fancy_Text.php:178, ../includes/Elements/Filterable_Gallery.php:772, ../includes/Elements/Filterable_Gallery.php:1304, ../includes/Elements/Filterable_Gallery.php:1687, ../includes/Elements/Flip_Box.php:373, ../includes/Elements/Flip_Box.php:602, ../includes/Elements/FluentForm.php:271, ../includes/Elements/FluentForm.php:466, ../includes/Elements/FluentForm.php:612, ../includes/Elements/FluentForm.php:1245, ../includes/Elements/FluentForm.php:1490, ../includes/Elements/Formstack.php:338, ../includes/Elements/Formstack.php:453, ../includes/Elements/Formstack.php:767, ../includes/Elements/Formstack.php:1376, ../includes/Elements/GravityForms.php:351, ../includes/Elements/GravityForms.php:488, ../includes/Elements/GravityForms.php:633, ../includes/Elements/GravityForms.php:1725, ../includes/Elements/GravityForms.php:1975, ../includes/Elements/Image_Accordion.php:113, ../includes/Elements/Image_Accordion.php:136, ../includes/Elements/Info_Box.php:310, ../includes/Elements/Login_Register.php:2591, ../includes/Elements/Login_Register.php:3237, ../includes/Elements/Login_Register.php:3259, ../includes/Elements/Login_Register.php:3536, ../includes/Elements/Login_Register.php:3556, ../includes/Elements/Login_Register.php:3579, ../includes/Elements/NinjaForms.php:286, ../includes/Elements/NinjaForms.php:425, ../includes/Elements/NinjaForms.php:607, ../includes/Elements/NinjaForms.php:1302, ../includes/Elements/Post_Grid.php:491, ../includes/Elements/Post_Grid.php:646, ../includes/Elements/Post_Grid.php:714, ../includes/Elements/Post_Grid.php:809, ../includes/Elements/Post_Grid.php:892, ../includes/Elements/Post_Timeline.php:361, ../includes/Elements/Post_Timeline.php:419, ../includes/Elements/Pricing_Table.php:819, ../includes/Elements/Pricing_Table.php:844, ../includes/Elements/Product_Grid.php:699, ../includes/Elements/Product_Grid.php:1017, ../includes/Elements/Product_Grid.php:2200, ../includes/Elements/Progress_Bar.php:325, ../includes/Elements/Progress_Bar.php:536, ../includes/Elements/Simple_Menu.php:192, ../includes/Elements/Simple_Menu.php:337, ../includes/Elements/Simple_Menu.php:744, ../includes/Elements/Simple_Menu.php:770, ../includes/Elements/Simple_Menu.php:795, ../includes/Elements/Simple_Menu.php:1090, ../includes/Elements/Team_Member.php:384, ../includes/Elements/Testimonial.php:318, ../includes/Elements/Tooltip.php:213, ../includes/Elements/Tooltip.php:381, ../includes/Elements/TypeForm.php:204, ../includes/Elements/WeForms.php:169, ../includes/Elements/WeForms.php:639, ../includes/Elements/Woo_Product_Carousel.php:873, ../includes/Elements/Woo_Product_Gallery.php:197, ../includes/Elements/Woo_Product_Gallery.php:556, ../includes/Elements/WpForms.php:275, ../includes/Elements/WpForms.php:392, ../includes/Elements/WpForms.php:576, ../includes/Elements/WpForms.php:1141, ../includes/Traits/Controls.php:601, ../includes/Traits/Controls.php:1535, ../includes/Traits/Controls.php:1909
607
  msgid "Center"
608
  msgstr ""
609
 
610
- #: ../includes/Elements/Advanced_Data_Table.php:439, ../includes/Elements/Advanced_Data_Table.php:558, ../includes/Elements/Advanced_Data_Table.php:984, ../includes/Elements/Advanced_Data_Table.php:1131, ../includes/Elements/Adv_Accordion.php:153, ../includes/Elements/Betterdocs_Category_Box.php:775, ../includes/Elements/Betterdocs_Category_Grid.php:1521, ../includes/Elements/Betterdocs_Category_Grid.php:1546, ../includes/Elements/Caldera_Forms.php:241, ../includes/Elements/Caldera_Forms.php:423, ../includes/Elements/Caldera_Forms.php:569, ../includes/Elements/Caldera_Forms.php:1144, ../includes/Elements/Contact_Form_7.php:339, ../includes/Elements/Contact_Form_7.php:451, ../includes/Elements/Contact_Form_7.php:1171, ../includes/Elements/Content_Ticker.php:291, ../includes/Elements/Countdown.php:126, ../includes/Elements/Countdown.php:1038, ../includes/Elements/Creative_Button.php:453, ../includes/Elements/Cta_Box.php:104, ../includes/Elements/Data_Table.php:561, ../includes/Elements/Data_Table.php:786, ../includes/Elements/Data_Table.php:1035, ../includes/Elements/Dual_Color_Header.php:199, ../includes/Elements/Event_Calendar.php:1015, ../includes/Elements/Event_Calendar.php:1147, ../includes/Elements/Fancy_Text.php:182, ../includes/Elements/Feature_List.php:311, ../includes/Elements/Filterable_Gallery.php:776, ../includes/Elements/Filterable_Gallery.php:1308, ../includes/Elements/Filterable_Gallery.php:1691, ../includes/Elements/Flip_Box.php:377, ../includes/Elements/Flip_Box.php:606, ../includes/Elements/FluentForm.php:275, ../includes/Elements/FluentForm.php:470, ../includes/Elements/FluentForm.php:616, ../includes/Elements/FluentForm.php:1249, ../includes/Elements/FluentForm.php:1494, ../includes/Elements/Formstack.php:342, ../includes/Elements/Formstack.php:457, ../includes/Elements/Formstack.php:771, ../includes/Elements/Formstack.php:1380, ../includes/Elements/GravityForms.php:355, ../includes/Elements/GravityForms.php:492, ../includes/Elements/GravityForms.php:637, ../includes/Elements/GravityForms.php:1729, ../includes/Elements/GravityForms.php:1979, ../includes/Elements/Image_Accordion.php:117, ../includes/Elements/Info_Box.php:314, ../includes/Elements/Login_Register.php:716, ../includes/Elements/Login_Register.php:2595, ../includes/Elements/Login_Register.php:3263, ../includes/Elements/Login_Register.php:3583, ../includes/Elements/NinjaForms.php:290, ../includes/Elements/NinjaForms.php:429, ../includes/Elements/NinjaForms.php:611, ../includes/Elements/NinjaForms.php:1306, ../includes/Elements/Post_Grid.php:495, ../includes/Elements/Post_Grid.php:650, ../includes/Elements/Post_Grid.php:718, ../includes/Elements/Post_Grid.php:813, ../includes/Elements/Post_Grid.php:896, ../includes/Elements/Post_Timeline.php:365, ../includes/Elements/Post_Timeline.php:423, ../includes/Elements/Pricing_Table.php:257, ../includes/Elements/Pricing_Table.php:381, ../includes/Elements/Pricing_Table.php:679, ../includes/Elements/Pricing_Table.php:823, ../includes/Elements/Pricing_Table.php:848, ../includes/Elements/Product_Grid.php:703, ../includes/Elements/Product_Grid.php:1021, ../includes/Elements/Product_Grid.php:1715, ../includes/Elements/Product_Grid.php:2204, ../includes/Elements/Progress_Bar.php:329, ../includes/Elements/Progress_Bar.php:540, ../includes/Elements/Simple_Menu.php:196, ../includes/Elements/Simple_Menu.php:341, ../includes/Elements/Simple_Menu.php:748, ../includes/Elements/Simple_Menu.php:774, ../includes/Elements/Simple_Menu.php:799, ../includes/Elements/Simple_Menu.php:1094, ../includes/Elements/Team_Member.php:388, ../includes/Elements/Testimonial.php:322, ../includes/Elements/Tooltip.php:217, ../includes/Elements/Tooltip.php:289, ../includes/Elements/Tooltip.php:385, ../includes/Elements/TypeForm.php:208, ../includes/Elements/WeForms.php:173, ../includes/Elements/WeForms.php:643, ../includes/Elements/Woo_Product_Carousel.php:705, ../includes/Elements/Woo_Product_Carousel.php:824, ../includes/Elements/Woo_Product_Carousel.php:877, ../includes/Elements/Woo_Product_Gallery.php:201, ../includes/Elements/Woo_Product_Gallery.php:227, ../includes/Elements/Woo_Product_Gallery.php:560, ../includes/Elements/Woo_Product_Gallery.php:1523, ../includes/Elements/WpForms.php:279, ../includes/Elements/WpForms.php:396, ../includes/Elements/WpForms.php:580, ../includes/Elements/WpForms.php:1145, ../includes/Extensions/Table_of_Content.php:463, ../includes/Traits/Controls.php:600, ../includes/Traits/Controls.php:1539, ../includes/Traits/Controls.php:1582, ../includes/Traits/Controls.php:1583, ../includes/Traits/Controls.php:1913
611
  msgid "Right"
612
  msgstr ""
613
 
614
- #: ../includes/Elements/Advanced_Data_Table.php:454, ../includes/Elements/Advanced_Data_Table.php:573, ../includes/Elements/Advanced_Data_Table.php:667, ../includes/Elements/Advanced_Data_Table.php:698, ../includes/Elements/Advanced_Data_Table.php:729, ../includes/Elements/Advanced_Data_Table.php:760, ../includes/Elements/Advanced_Data_Table.php:791, ../includes/Elements/Advanced_Data_Table.php:822, ../includes/Elements/Advanced_Data_Table.php:1004, ../includes/Elements/Advanced_Data_Table.php:1200, ../includes/Elements/Advanced_Data_Table.php:1270, ../includes/Elements/Adv_Accordion.php:547, ../includes/Elements/Adv_Accordion.php:607, ../includes/Elements/Adv_Accordion.php:667, ../includes/Elements/Adv_Accordion.php:734, ../includes/Elements/Adv_Tabs.php:525, ../includes/Elements/Adv_Tabs.php:592, ../includes/Elements/Adv_Tabs.php:659, ../includes/Elements/Adv_Tabs.php:741, ../includes/Elements/Caldera_Forms.php:270, ../includes/Elements/Caldera_Forms.php:331, ../includes/Elements/Caldera_Forms.php:523, ../includes/Elements/Caldera_Forms.php:604, ../includes/Elements/Caldera_Forms.php:850, ../includes/Elements/Caldera_Forms.php:906, ../includes/Elements/Caldera_Forms.php:1216, ../includes/Elements/Caldera_Forms.php:1322, ../includes/Elements/Caldera_Forms.php:1375, ../includes/Elements/Contact_Form_7.php:474, ../includes/Elements/Contact_Form_7.php:505, ../includes/Elements/Contact_Form_7.php:562, ../includes/Elements/Contact_Form_7.php:845, ../includes/Elements/Contact_Form_7.php:920, ../includes/Elements/Contact_Form_7.php:1242, ../includes/Elements/Contact_Form_7.php:1348, ../includes/Elements/Contact_Form_7.php:1412, ../includes/Elements/Contact_Form_7.php:1535, ../includes/Elements/Contact_Form_7.php:1592, ../includes/Elements/Content_Ticker.php:357, ../includes/Elements/Content_Ticker.php:433, ../includes/Elements/Countdown.php:1109, ../includes/Elements/Creative_Button.php:277, ../includes/Elements/Creative_Button.php:370, ../includes/Elements/Cta_Box.php:698, ../includes/Elements/Cta_Box.php:769, ../includes/Elements/Cta_Box.php:904, ../includes/Elements/Cta_Box.php:956, ../includes/Elements/Data_Table.php:989, ../includes/Elements/Data_Table.php:1006, ../includes/Elements/Event_Calendar.php:1253, ../includes/Elements/Event_Calendar.php:1286, ../includes/Elements/Filterable_Gallery.php:960, ../includes/Elements/Filterable_Gallery.php:1026, ../includes/Elements/Filterable_Gallery.php:2511, ../includes/Elements/Filterable_Gallery.php:2706, ../includes/Elements/FluentForm.php:305, ../includes/Elements/FluentForm.php:366, ../includes/Elements/FluentForm.php:570, ../includes/Elements/FluentForm.php:653, ../includes/Elements/FluentForm.php:902, ../includes/Elements/FluentForm.php:1567, ../includes/Elements/FluentForm.php:1694, ../includes/Elements/FluentForm.php:2111, ../includes/Elements/Formstack.php:481, ../includes/Elements/Formstack.php:530, ../includes/Elements/Formstack.php:585, ../includes/Elements/Formstack.php:797, ../includes/Elements/Formstack.php:852, ../includes/Elements/Formstack.php:1101, ../includes/Elements/Formstack.php:1452, ../includes/Elements/Formstack.php:1558, ../includes/Elements/Formstack.php:1781, ../includes/Elements/Formstack.php:2020, ../includes/Elements/GravityForms.php:515, ../includes/Elements/GravityForms.php:546, ../includes/Elements/GravityForms.php:585, ../includes/Elements/GravityForms.php:672, ../includes/Elements/GravityForms.php:936, ../includes/Elements/GravityForms.php:989, ../includes/Elements/GravityForms.php:1176, ../includes/Elements/GravityForms.php:1810, ../includes/Elements/GravityForms.php:1902, ../includes/Elements/GravityForms.php:2038, ../includes/Elements/GravityForms.php:2125, ../includes/Elements/GravityForms.php:2199, ../includes/Elements/GravityForms.php:2334, ../includes/Elements/Info_Box.php:1238, ../includes/Elements/Info_Box.php:1284, ../includes/Elements/Login_Register.php:2616, ../includes/Elements/Login_Register.php:2755, ../includes/Elements/Login_Register.php:3099, ../includes/Elements/Login_Register.php:3284, ../includes/Elements/Login_Register.php:3321, ../includes/Elements/Login_Register.php:3605, ../includes/Elements/Login_Register.php:3642, ../includes/Elements/NinjaForms.php:452, ../includes/Elements/NinjaForms.php:501, ../includes/Elements/NinjaForms.php:559, ../includes/Elements/NinjaForms.php:646, ../includes/Elements/NinjaForms.php:894, ../includes/Elements/NinjaForms.php:950, ../includes/Elements/NinjaForms.php:1384, ../includes/Elements/NinjaForms.php:1471, ../includes/Elements/NinjaForms.php:1533, ../includes/Elements/NinjaForms.php:1633, ../includes/Elements/Pricing_Table.php:1887, ../includes/Elements/Pricing_Table.php:1956, ../includes/Elements/Product_Grid.php:2250, ../includes/Elements/Product_Grid.php:2288, ../includes/Elements/Product_Grid.php:2332, ../includes/Elements/Simple_Menu.php:363, ../includes/Elements/Simple_Menu.php:397, ../includes/Elements/Simple_Menu.php:431, ../includes/Elements/Simple_Menu.php:489, ../includes/Elements/Simple_Menu.php:523, ../includes/Elements/Simple_Menu.php:849, ../includes/Elements/Simple_Menu.php:976, ../includes/Elements/Simple_Menu.php:1160, ../includes/Elements/Simple_Menu.php:1285, ../includes/Elements/Tooltip.php:418, ../includes/Elements/Tooltip.php:461, ../includes/Elements/Tooltip.php:634, ../includes/Elements/WeForms.php:692, ../includes/Elements/WeForms.php:742, ../includes/Elements/WpForms.php:419, ../includes/Elements/WpForms.php:468, ../includes/Elements/WpForms.php:533, ../includes/Elements/WpForms.php:615, ../includes/Elements/WpForms.php:851, ../includes/Elements/WpForms.php:907, ../includes/Elements/WpForms.php:1220, ../includes/Elements/WpForms.php:1327, ../includes/Elements/WpForms.php:1372, ../includes/Extensions/Table_of_Content.php:626, ../includes/Extensions/Table_of_Content.php:941, ../includes/Extensions/Table_of_Content.php:964, ../includes/Extensions/Table_of_Content.php:990, ../includes/Traits/Controls.php:1232, ../includes/Traits/Controls.php:1287, ../includes/Traits/Controls.php:1417, ../includes/Traits/Controls.php:1479, ../includes/Traits/Controls.php:1862
615
  msgid "Text Color"
616
  msgstr ""
617
 
618
- #: ../includes/Elements/Advanced_Data_Table.php:468, ../includes/Elements/Advanced_Data_Table.php:609, ../includes/Elements/Advanced_Data_Table.php:682, ../includes/Elements/Advanced_Data_Table.php:713, ../includes/Elements/Advanced_Data_Table.php:744, ../includes/Elements/Advanced_Data_Table.php:775, ../includes/Elements/Advanced_Data_Table.php:806, ../includes/Elements/Advanced_Data_Table.php:837, ../includes/Elements/Advanced_Data_Table.php:1016, ../includes/Elements/Advanced_Data_Table.php:1213, ../includes/Elements/Advanced_Data_Table.php:1284, ../includes/Elements/Advanced_Data_Table.php:1379, ../includes/Elements/Advanced_Data_Table.php:1409, ../includes/Elements/Adv_Accordion.php:883, ../includes/Elements/Adv_Accordion.php:929, ../includes/Elements/Adv_Accordion.php:975, ../includes/Elements/Adv_Tabs.php:506, ../includes/Elements/Adv_Tabs.php:722, ../includes/Elements/Caldera_Forms.php:592, ../includes/Elements/Caldera_Forms.php:800, ../includes/Elements/Caldera_Forms.php:1204, ../includes/Elements/Caldera_Forms.php:1310, ../includes/Elements/Caldera_Forms.php:1364, ../includes/Elements/Contact_Form_7.php:550, ../includes/Elements/Contact_Form_7.php:763, ../includes/Elements/Contact_Form_7.php:1230, ../includes/Elements/Contact_Form_7.php:1336, ../includes/Elements/Contact_Form_7.php:1427, ../includes/Elements/Contact_Form_7.php:1520, ../includes/Elements/Content_Ticker.php:345, ../includes/Elements/Content_Ticker.php:422, ../includes/Elements/Content_Ticker.php:597, ../includes/Elements/Content_Ticker.php:653, ../includes/Elements/Countdown.php:733, ../includes/Elements/Countdown.php:745, ../includes/Elements/Countdown.php:805, ../includes/Elements/Countdown.php:817, ../includes/Elements/Countdown.php:877, ../includes/Elements/Countdown.php:889, ../includes/Elements/Countdown.php:949, ../includes/Elements/Countdown.php:961, ../includes/Elements/Creative_Button.php:291, ../includes/Elements/Creative_Button.php:383, ../includes/Elements/Cta_Box.php:122, ../includes/Elements/Cta_Box.php:426, ../includes/Elements/Cta_Box.php:712, ../includes/Elements/Cta_Box.php:781, ../includes/Elements/Data_Table.php:639, ../includes/Elements/Data_Table.php:679, ../includes/Elements/Data_Table.php:1190, ../includes/Elements/Dual_Color_Header.php:310, ../includes/Elements/Event_Calendar.php:1265, ../includes/Elements/Filterable_Gallery.php:835, ../includes/Elements/Filterable_Gallery.php:972, ../includes/Elements/Filterable_Gallery.php:1038, ../includes/Elements/Filterable_Gallery.php:1184, ../includes/Elements/Filterable_Gallery.php:1374, ../includes/Elements/Filterable_Gallery.php:1404, ../includes/Elements/Filterable_Gallery.php:1509, ../includes/Elements/Filterable_Gallery.php:1525, ../includes/Elements/Filterable_Gallery.php:1727, ../includes/Elements/Filterable_Gallery.php:1865, ../includes/Elements/Filterable_Gallery.php:2495, ../includes/Elements/Filterable_Gallery.php:2690, ../includes/Elements/FluentForm.php:641, ../includes/Elements/FluentForm.php:849, ../includes/Elements/FluentForm.php:1283, ../includes/Elements/FluentForm.php:1369, ../includes/Elements/FluentForm.php:1555, ../includes/Elements/FluentForm.php:1682, ../includes/Elements/FluentForm.php:2100, ../includes/Elements/Formstack.php:840, ../includes/Elements/Formstack.php:1048, ../includes/Elements/Formstack.php:1440, ../includes/Elements/Formstack.php:1546, ../includes/Elements/GravityForms.php:660, ../includes/Elements/GravityForms.php:886, ../includes/Elements/GravityForms.php:1619, ../includes/Elements/GravityForms.php:1797, ../includes/Elements/GravityForms.php:1889, ../includes/Elements/GravityForms.php:2026, ../includes/Elements/GravityForms.php:2113, ../includes/Elements/Image_Accordion.php:317, ../includes/Elements/Info_Box.php:546, ../includes/Elements/Info_Box.php:787, ../includes/Elements/Info_Box.php:866, ../includes/Elements/Info_Box.php:1037, ../includes/Elements/Info_Box.php:1100, ../includes/Elements/Info_Box.php:1250, ../includes/Elements/Info_Box.php:1296, ../includes/Elements/Login_Register.php:1594, ../includes/Elements/Login_Register.php:1727, ../includes/Elements/Login_Register.php:1829, ../includes/Elements/Login_Register.php:2003, ../includes/Elements/Login_Register.php:2359, ../includes/Elements/Login_Register.php:2450, ../includes/Elements/Login_Register.php:2630, ../includes/Elements/Login_Register.php:2668, ../includes/Elements/Login_Register.php:2765, ../includes/Elements/Login_Register.php:3292, ../includes/Elements/Login_Register.php:3329, ../includes/Elements/Login_Register.php:3613, ../includes/Elements/Login_Register.php:3650, ../includes/Elements/NinjaForms.php:634, ../includes/Elements/NinjaForms.php:844, ../includes/Elements/NinjaForms.php:1372, ../includes/Elements/NinjaForms.php:1459, ../includes/Elements/Post_Grid.php:962, ../includes/Elements/Pricing_Table.php:736, ../includes/Elements/Pricing_Table.php:896, ../includes/Elements/Pricing_Table.php:1402, ../includes/Elements/Pricing_Table.php:1471, ../includes/Elements/Pricing_Table.php:1637, ../includes/Elements/Pricing_Table.php:1899, ../includes/Elements/Pricing_Table.php:1968, ../includes/Elements/Product_Grid.php:1860, ../includes/Elements/Product_Grid.php:1968, ../includes/Elements/Product_Grid.php:2076, ../includes/Elements/Product_Grid.php:2262, ../includes/Elements/Product_Grid.php:2300, ../includes/Elements/Product_Grid.php:2344, ../includes/Elements/Product_Grid.php:2592, ../includes/Elements/Product_Grid.php:2635, ../includes/Elements/Product_Grid.php:2696, ../includes/Elements/Product_Grid.php:2747, ../includes/Elements/Progress_Bar.php:578, ../includes/Elements/Simple_Menu.php:267, ../includes/Elements/Simple_Menu.php:376, ../includes/Elements/Simple_Menu.php:410, ../includes/Elements/Simple_Menu.php:444, ../includes/Elements/Simple_Menu.php:502, ../includes/Elements/Simple_Menu.php:536, ../includes/Elements/Simple_Menu.php:608, ../includes/Elements/Simple_Menu.php:680, ../includes/Elements/Simple_Menu.php:863, ../includes/Elements/Simple_Menu.php:943, ../includes/Elements/Simple_Menu.php:991, ../includes/Elements/Simple_Menu.php:1038, ../includes/Elements/Simple_Menu.php:1172, ../includes/Elements/Simple_Menu.php:1252, ../includes/Elements/Simple_Menu.php:1299, ../includes/Elements/Simple_Menu.php:1346, ../includes/Elements/Team_Member.php:731, ../includes/Elements/Tooltip.php:407, ../includes/Elements/Tooltip.php:450, ../includes/Elements/Tooltip.php:623, ../includes/Elements/Twitter_Feed.php:414, ../includes/Elements/WeForms.php:703, ../includes/Elements/WeForms.php:753, ../includes/Elements/Woo_Checkout.php:621, ../includes/Elements/Woo_Checkout.php:736, ../includes/Elements/Woo_Checkout.php:858, ../includes/Elements/Woo_Checkout.php:1316, ../includes/Elements/Woo_Checkout.php:1356, ../includes/Elements/Woo_Checkout.php:1614, ../includes/Elements/Woo_Checkout.php:1654, ../includes/Elements/Woo_Checkout.php:2244, ../includes/Elements/Woo_Checkout.php:2374, ../includes/Elements/Woo_Checkout.php:2484, ../includes/Elements/Woo_Checkout.php:2524, ../includes/Elements/Woo_Product_Carousel.php:895, ../includes/Elements/Woo_Product_Carousel.php:1388, ../includes/Elements/Woo_Product_Carousel.php:1470, ../includes/Elements/Woo_Product_Carousel.php:1689, ../includes/Elements/Woo_Product_Carousel.php:1732, ../includes/Elements/Woo_Product_Carousel.php:1794, ../includes/Elements/Woo_Product_Carousel.php:1846, ../includes/Elements/Woo_Product_Carousel.php:2650, ../includes/Elements/Woo_Product_Carousel.php:2706, ../includes/Elements/Woo_Product_Gallery.php:1681, ../includes/Elements/Woo_Product_Gallery.php:1731, ../includes/Elements/Woo_Product_Gallery.php:1930, ../includes/Elements/Woo_Product_Gallery.php:1973, ../includes/Elements/Woo_Product_Gallery.php:2034, ../includes/Elements/Woo_Product_Gallery.php:2085, ../includes/Elements/WpForms.php:603, ../includes/Elements/WpForms.php:1208, ../includes/Elements/WpForms.php:1315, ../includes/Extensions/Reading_Progress.php:156, ../includes/Extensions/Table_of_Content.php:613, ../includes/Extensions/Table_of_Content.php:759, ../includes/Extensions/Table_of_Content.php:823, ../includes/Traits/Controls.php:1429, ../includes/Traits/Controls.php:1491, ../includes/Traits/Controls.php:1872, ../includes/Traits/Woo_Product_Comparable.php:380, ../includes/Traits/Woo_Product_Comparable.php:486
619
  msgid "Background Color"
620
  msgstr ""
621
 
@@ -623,7 +623,7 @@ msgstr ""
623
  msgid "Cell Border"
624
  msgstr ""
625
 
626
- #: ../includes/Elements/Advanced_Data_Table.php:507, ../includes/Elements/Advanced_Data_Table.php:852, ../includes/Elements/Advanced_Data_Table.php:936, ../includes/Elements/Advanced_Data_Table.php:1154, ../includes/Elements/Advanced_Data_Table.php:1471, ../includes/Elements/Adv_Accordion.php:359, ../includes/Elements/Adv_Accordion.php:512, ../includes/Elements/Adv_Accordion.php:752, ../includes/Elements/Adv_Tabs.php:335, ../includes/Elements/Adv_Tabs.php:480, ../includes/Elements/Adv_Tabs.php:759, ../includes/Elements/Betterdocs_Category_Box.php:512, ../includes/Elements/Betterdocs_Category_Grid.php:558, ../includes/Elements/Betterdocs_Category_Grid.php:722, ../includes/Elements/Betterdocs_Category_Grid.php:1406, ../includes/Elements/Betterdocs_Search_Form.php:123, ../includes/Elements/Betterdocs_Search_Form.php:431, ../includes/Elements/Caldera_Forms.php:741, ../includes/Elements/Caldera_Forms.php:1251, ../includes/Elements/Contact_Form_7.php:598, ../includes/Elements/Contact_Form_7.php:1276, ../includes/Elements/Contact_Form_7.php:1471, ../includes/Elements/Contact_Form_7.php:1668, ../includes/Elements/Content_Ticker.php:389, ../includes/Elements/Content_Ticker.php:452, ../includes/Elements/Content_Ticker.php:693, ../includes/Elements/Countdown.php:606, ../includes/Elements/Countdown.php:1136, ../includes/Elements/Cta_Box.php:438, ../includes/Elements/Cta_Box.php:651, ../includes/Elements/Cta_Box.php:868, ../includes/Elements/Data_Table.php:607, ../includes/Elements/Data_Table.php:892, ../includes/Elements/Dual_Color_Header.php:322, ../includes/Elements/Facebook_Feed.php:605, ../includes/Elements/Facebook_Feed.php:631, ../includes/Elements/Facebook_Feed.php:703, ../includes/Elements/Fancy_Text.php:480, ../includes/Elements/Feature_List.php:597, ../includes/Elements/Filterable_Gallery.php:847, ../includes/Elements/Filterable_Gallery.php:924, ../includes/Elements/Filterable_Gallery.php:1106, ../includes/Elements/Filterable_Gallery.php:1196, ../includes/Elements/Filterable_Gallery.php:1540, ../includes/Elements/Filterable_Gallery.php:1751, ../includes/Elements/Filterable_Gallery.php:2614, ../includes/Elements/Flip_Box.php:999, ../includes/Elements/Flip_Box.php:1112, ../includes/Elements/Flip_Box.php:1348, ../includes/Elements/FluentForm.php:790, ../includes/Elements/FluentForm.php:1158, ../includes/Elements/FluentForm.php:1213, ../includes/Elements/FluentForm.php:1336, ../includes/Elements/FluentForm.php:1421, ../includes/Elements/FluentForm.php:1602, ../includes/Elements/FluentForm.php:2025, ../includes/Elements/FluentForm.php:2191, ../includes/Elements/Formstack.php:680, ../includes/Elements/Formstack.php:735, ../includes/Elements/Formstack.php:989, ../includes/Elements/Formstack.php:1322, ../includes/Elements/Formstack.php:1487, ../includes/Elements/Formstack.php:1835, ../includes/Elements/Formstack.php:1964, ../includes/Elements/GravityForms.php:722, ../includes/Elements/GravityForms.php:1343, ../includes/Elements/GravityForms.php:1539, ../includes/Elements/GravityForms.php:1677, ../includes/Elements/GravityForms.php:1847, ../includes/Elements/GravityForms.php:2073, ../includes/Elements/Image_Accordion.php:329, ../includes/Elements/Image_Accordion.php:441, ../includes/Elements/Info_Box.php:558, ../includes/Elements/Login_Register.php:1557, ../includes/Elements/Login_Register.php:2122, ../includes/Elements/Login_Register.php:2261, ../includes/Elements/Login_Register.php:2334, ../includes/Elements/Login_Register.php:2425, ../includes/Elements/Login_Register.php:2527, ../includes/Elements/Login_Register.php:2563, ../includes/Elements/Login_Register.php:2725, ../includes/Elements/Login_Register.php:3197, ../includes/Elements/Login_Register.php:3496, ../includes/Elements/NinjaForms.php:784, ../includes/Elements/NinjaForms.php:1419, ../includes/Elements/Pricing_Table.php:748, ../includes/Elements/Pricing_Table.php:1513, ../includes/Elements/Pricing_Table.php:1818, ../includes/Elements/Product_Grid.php:806, ../includes/Elements/Product_Grid.php:1057, ../includes/Elements/Product_Grid.php:1469, ../includes/Elements/Simple_Menu.php:308, ../includes/Elements/Simple_Menu.php:468, ../includes/Elements/Simple_Menu.php:641, ../includes/Elements/Simple_Menu.php:1105, ../includes/Elements/Team_Member.php:487, ../includes/Elements/Testimonial.php:421, ../includes/Elements/Tooltip.php:349, ../includes/Elements/Tooltip.php:601, ../includes/Elements/Twitter_Feed.php:444, ../includes/Elements/Twitter_Feed.php:503, ../includes/Elements/Twitter_Feed.php:536, ../includes/Elements/WeForms.php:676, ../includes/Elements/Woo_Checkout.php:632, ../includes/Elements/Woo_Checkout.php:1224, ../includes/Elements/Woo_Checkout.php:1417, ../includes/Elements/Woo_Checkout.php:1547, ../includes/Elements/Woo_Checkout.php:1715, ../includes/Elements/Woo_Checkout.php:1930, ../includes/Elements/Woo_Checkout.php:2266, ../includes/Elements/Woo_Checkout.php:2597, ../includes/Elements/Woo_Product_Carousel.php:1030, ../includes/Elements/Woo_Product_Carousel.php:2263, ../includes/Elements/Woo_Product_Gallery.php:590, ../includes/Elements/Woo_Product_Gallery.php:694, ../includes/Elements/Woo_Product_Gallery.php:973, ../includes/Elements/Woo_Product_Gallery.php:1218, ../includes/Elements/Woo_Product_Gallery.php:1280, ../includes/Elements/WpForms.php:752, ../includes/Elements/WpForms.php:1255, ../includes/Extensions/Table_of_Content.php:648, ../includes/Extensions/Table_of_Content.php:836, ../includes/Traits/Controls.php:1336, ../includes/Traits/Controls.php:1381, ../includes/Traits/Controls.php:1882, ../includes/Traits/Woo_Product_Comparable.php:352, ../includes/Traits/Woo_Product_Comparable.php:997, ../includes/Traits/Woo_Product_Comparable.php:1146, ../includes/Traits/Woo_Product_Comparable.php:1614
627
  msgid "Padding"
628
  msgstr ""
629
 
@@ -643,7 +643,7 @@ msgstr ""
643
  msgid "Highlight"
644
  msgstr ""
645
 
646
- #: ../includes/Elements/Advanced_Data_Table.php:651, ../includes/Elements/Adv_Tabs.php:171, ../includes/Elements/Countdown.php:402, ../includes/Elements/Data_Table.php:148, ../includes/Elements/Filterable_Gallery.php:189, ../includes/Elements/Filterable_Gallery.php:229, ../includes/Elements/Flip_Box.php:200, ../includes/Elements/Flip_Box.php:429, ../includes/Elements/Flip_Box.php:648, ../includes/Elements/GravityForms.php:1016, ../includes/Elements/Info_Box.php:99, ../includes/Elements/Info_Box.php:807, ../includes/Elements/Info_Box.php:887, ../includes/Elements/Info_Box.php:1025, ../includes/Elements/Info_Box.php:1121, ../includes/Elements/Post_Grid.php:936, ../includes/Elements/Sticky_Video.php:552, ../includes/Extensions/Table_of_Content.php:861, ../includes/Extensions/Table_of_Content.php:1082
647
  msgid "None"
648
  msgstr ""
649
 
@@ -679,23 +679,23 @@ msgstr ""
679
  msgid "Margin Bottom"
680
  msgstr ""
681
 
682
- #: ../includes/Elements/Advanced_Data_Table.php:971, ../includes/Elements/Advanced_Data_Table.php:1119, ../includes/Elements/Caldera_Forms.php:229, ../includes/Elements/Caldera_Forms.php:557, ../includes/Elements/Caldera_Forms.php:1132, ../includes/Elements/Contact_Form_7.php:439, ../includes/Elements/Contact_Form_7.php:1158, ../includes/Elements/Countdown.php:114, ../includes/Elements/Cta_Box.php:97, ../includes/Elements/Data_Table.php:547, ../includes/Elements/Dual_Color_Header.php:186, ../includes/Elements/Dual_Color_Header.php:650, ../includes/Elements/Event_Calendar.php:1003, ../includes/Elements/Event_Calendar.php:1135, ../includes/Elements/Fancy_Text.php:170, ../includes/Elements/Filterable_Gallery.php:764, ../includes/Elements/FluentForm.php:263, ../includes/Elements/FluentForm.php:604, ../includes/Elements/FluentForm.php:1237, ../includes/Elements/FluentForm.php:1482, ../includes/Elements/Formstack.php:445, ../includes/Elements/Formstack.php:759, ../includes/Elements/Formstack.php:1368, ../includes/Elements/GravityForms.php:480, ../includes/Elements/GravityForms.php:625, ../includes/Elements/GravityForms.php:1717, ../includes/Elements/GravityForms.php:1967, ../includes/Elements/Login_Register.php:3251, ../includes/Elements/Login_Register.php:3571, ../includes/Elements/NinjaForms.php:417, ../includes/Elements/NinjaForms.php:599, ../includes/Elements/NinjaForms.php:1294, ../includes/Elements/Post_Grid.php:483, ../includes/Elements/Post_Grid.php:801, ../includes/Elements/Post_Grid.php:884, ../includes/Elements/Product_Grid.php:691, ../includes/Elements/Product_Grid.php:1009, ../includes/Elements/Product_Grid.php:1707, ../includes/Elements/Product_Grid.php:2192, ../includes/Elements/Progress_Bar.php:317, ../includes/Elements/Progress_Bar.php:528, ../includes/Elements/Simple_Menu.php:329, ../includes/Elements/Simple_Menu.php:736, ../includes/Elements/Simple_Menu.php:762, ../includes/Elements/Simple_Menu.php:787, ../includes/Elements/Simple_Menu.php:1082, ../includes/Elements/Tooltip.php:204, ../includes/Elements/Woo_Product_Carousel.php:816, ../includes/Elements/Woo_Product_Carousel.php:865, ../includes/Elements/Woo_Product_Gallery.php:189, ../includes/Elements/Woo_Product_Gallery.php:219, ../includes/Elements/Woo_Product_Gallery.php:548, ../includes/Elements/Woo_Product_Gallery.php:1515, ../includes/Elements/WpForms.php:384, ../includes/Elements/WpForms.php:568, ../includes/Elements/WpForms.php:1133, ../includes/Traits/Controls.php:1901
683
  msgid "Alignment"
684
  msgstr ""
685
 
686
- #: ../includes/Elements/Advanced_Data_Table.php:1175, ../includes/Elements/Adv_Accordion.php:370, ../includes/Elements/Adv_Accordion.php:523, ../includes/Elements/Adv_Accordion.php:763, ../includes/Elements/Adv_Tabs.php:346, ../includes/Elements/Adv_Tabs.php:491, ../includes/Elements/Adv_Tabs.php:770, ../includes/Elements/Betterdocs_Category_Grid.php:570, ../includes/Elements/Betterdocs_Category_Grid.php:736, ../includes/Elements/Caldera_Forms.php:297, ../includes/Elements/Caldera_Forms.php:359, ../includes/Elements/Contact_Form_7.php:372, ../includes/Elements/Contact_Form_7.php:1653, ../includes/Elements/Content_Ticker.php:464, ../includes/Elements/Countdown.php:1088, ../includes/Elements/Cta_Box.php:450, ../includes/Elements/Cta_Box.php:663, ../includes/Elements/Cta_Box.php:880, ../includes/Elements/Dual_Color_Header.php:334, ../includes/Elements/Dual_Color_Header.php:702, ../includes/Elements/Fancy_Text.php:492, ../includes/Elements/Filterable_Gallery.php:859, ../includes/Elements/Filterable_Gallery.php:936, ../includes/Elements/Filterable_Gallery.php:1118, ../includes/Elements/Filterable_Gallery.php:1763, ../includes/Elements/Filterable_Gallery.php:2212, ../includes/Elements/Filterable_Gallery.php:2655, ../includes/Elements/Flip_Box.php:1336, ../includes/Elements/FluentForm.php:332, ../includes/Elements/FluentForm.php:394, ../includes/Elements/FluentForm.php:1170, ../includes/Elements/FluentForm.php:1225, ../includes/Elements/FluentForm.php:2203, ../includes/Elements/Formstack.php:502, ../includes/Elements/Formstack.php:552, ../includes/Elements/Formstack.php:692, ../includes/Elements/Formstack.php:747, ../includes/Elements/Formstack.php:1979, ../includes/Elements/GravityForms.php:1072, ../includes/Elements/GravityForms.php:1331, ../includes/Elements/GravityForms.php:1527, ../includes/Elements/GravityForms.php:1691, ../includes/Elements/Image_Accordion.php:341, ../includes/Elements/Image_Accordion.php:430, ../includes/Elements/Info_Box.php:691, ../includes/Elements/Info_Box.php:753, ../includes/Elements/Info_Box.php:985, ../includes/Elements/Info_Box.php:1377, ../includes/Elements/Login_Register.php:1542, ../includes/Elements/Login_Register.php:2107, ../includes/Elements/Login_Register.php:2246, ../includes/Elements/Login_Register.php:2319, ../includes/Elements/Login_Register.php:2410, ../includes/Elements/Login_Register.php:2512, ../includes/Elements/Login_Register.php:2548, ../includes/Elements/Login_Register.php:2710, ../includes/Elements/Login_Register.php:3182, ../includes/Elements/Login_Register.php:3417, ../includes/Elements/Login_Register.php:3481, ../includes/Elements/NinjaForms.php:473, ../includes/Elements/NinjaForms.php:523, ../includes/Elements/Post_Grid.php:401, ../includes/Elements/Post_Grid.php:534, ../includes/Elements/Post_Grid.php:549, ../includes/Elements/Post_Grid.php:673, ../includes/Elements/Post_Grid.php:761, ../includes/Elements/Post_Grid.php:837, ../includes/Elements/Pricing_Table.php:760, ../includes/Elements/Pricing_Table.php:1086, ../includes/Elements/Pricing_Table.php:1156, ../includes/Elements/Pricing_Table.php:1830, ../includes/Elements/Team_Member.php:475, ../includes/Elements/Testimonial.php:409, ../includes/Elements/Testimonial.php:507, ../includes/Elements/Testimonial.php:548, ../includes/Elements/Testimonial.php:589, ../includes/Elements/Testimonial.php:622, ../includes/Elements/Tooltip.php:360, ../includes/Elements/Tooltip.php:612, ../includes/Elements/WeForms.php:490, ../includes/Elements/WeForms.php:664, ../includes/Elements/Woo_Product_Carousel.php:924, ../includes/Elements/Woo_Product_Gallery.php:1206, ../includes/Elements/Woo_Product_Gallery.php:1268, ../includes/Elements/WpForms.php:440, ../includes/Elements/WpForms.php:490, ../includes/Elements/WpForms.php:522, ../includes/Traits/Controls.php:1348, ../includes/Traits/Controls.php:1393, ../includes/Traits/Woo_Product_Comparable.php:340, ../includes/Traits/Woo_Product_Comparable.php:1462
687
  msgid "Margin"
688
  msgstr ""
689
 
690
- #: ../includes/Elements/Advanced_Data_Table.php:1195, ../includes/Elements/Advanced_Data_Table.php:1361, ../includes/Elements/Adv_Accordion.php:534, ../includes/Elements/Adv_Accordion.php:862, ../includes/Elements/Adv_Tabs.php:502, ../includes/Elements/Betterdocs_Category_Box.php:284, ../includes/Elements/Betterdocs_Category_Box.php:452, ../includes/Elements/Betterdocs_Category_Box.php:677, ../includes/Elements/Betterdocs_Category_Box.php:846, ../includes/Elements/Betterdocs_Category_Grid.php:315, ../includes/Elements/Betterdocs_Category_Grid.php:455, ../includes/Elements/Betterdocs_Category_Grid.php:610, ../includes/Elements/Betterdocs_Category_Grid.php:800, ../includes/Elements/Betterdocs_Category_Grid.php:1348, ../includes/Elements/Betterdocs_Search_Form.php:389, ../includes/Elements/Caldera_Forms.php:585, ../includes/Elements/Caldera_Forms.php:973, ../includes/Elements/Caldera_Forms.php:1197, ../includes/Elements/Contact_Form_7.php:543, ../includes/Elements/Contact_Form_7.php:1000, ../includes/Elements/Contact_Form_7.php:1223, ../includes/Elements/Content_Ticker.php:590, ../includes/Elements/Creative_Button.php:260, ../includes/Elements/Cta_Box.php:693, ../includes/Elements/Cta_Box.php:899, ../includes/Elements/Data_Table.php:619, ../includes/Elements/Data_Table.php:812, ../includes/Elements/Data_Table.php:984, ../includes/Elements/Data_Table.php:1082, ../includes/Elements/Event_Calendar.php:780, ../includes/Elements/Filterable_Gallery.php:955, ../includes/Elements/Filterable_Gallery.php:1720, ../includes/Elements/Filterable_Gallery.php:2484, ../includes/Elements/Flip_Box.php:1330, ../includes/Elements/FluentForm.php:634, ../includes/Elements/FluentForm.php:969, ../includes/Elements/FluentForm.php:1548, ../includes/Elements/FluentForm.php:1741, ../includes/Elements/FluentForm.php:1958, ../includes/Elements/Formstack.php:833, ../includes/Elements/Formstack.php:1165, ../includes/Elements/Formstack.php:1433, ../includes/Elements/Formstack.php:1603, ../includes/Elements/Formstack.php:1766, ../includes/Elements/GravityForms.php:653, ../includes/Elements/GravityForms.php:1243, ../includes/Elements/GravityForms.php:1439, ../includes/Elements/GravityForms.php:1790, ../includes/Elements/GravityForms.php:2019, ../includes/Elements/Info_Box.php:539, ../includes/Elements/Info_Box.php:767, ../includes/Elements/Info_Box.php:999, ../includes/Elements/Info_Box.php:1232, ../includes/Elements/Info_Box.php:1343, ../includes/Elements/Login_Register.php:2613, ../includes/Elements/Login_Register.php:3281, ../includes/Elements/Login_Register.php:3444, ../includes/Elements/Login_Register.php:3602, ../includes/Elements/NinjaForms.php:627, ../includes/Elements/NinjaForms.php:1020, ../includes/Elements/NinjaForms.php:1365, ../includes/Elements/Pricing_Table.php:1882, ../includes/Elements/Product_Grid.php:861, ../includes/Elements/Product_Grid.php:1508, ../includes/Elements/Product_Grid.php:1950, ../includes/Elements/Product_Grid.php:2245, ../includes/Elements/Product_Grid.php:2679, ../includes/Elements/Team_Member.php:714, ../includes/Elements/Tooltip.php:403, ../includes/Elements/WeForms.php:687, ../includes/Elements/Woo_Checkout.php:904, ../includes/Elements/Woo_Checkout.php:947, ../includes/Elements/Woo_Checkout.php:1090, ../includes/Elements/Woo_Checkout.php:1309, ../includes/Elements/Woo_Checkout.php:1607, ../includes/Elements/Woo_Checkout.php:2067, ../includes/Elements/Woo_Checkout.php:2323, ../includes/Elements/Woo_Checkout.php:2477, ../includes/Elements/Woo_Product_Carousel.php:936, ../includes/Elements/Woo_Product_Carousel.php:1372, ../includes/Elements/Woo_Product_Carousel.php:1777, ../includes/Elements/Woo_Product_Carousel.php:2221, ../includes/Elements/Woo_Product_Carousel.php:2643, ../includes/Elements/Woo_Product_Gallery.php:604, ../includes/Elements/Woo_Product_Gallery.php:1008, ../includes/Elements/Woo_Product_Gallery.php:1303, ../includes/Elements/Woo_Product_Gallery.php:1664, ../includes/Elements/Woo_Product_Gallery.php:2017, ../includes/Elements/WpForms.php:596, ../includes/Elements/WpForms.php:974, ../includes/Elements/WpForms.php:1201, ../includes/Extensions/Table_of_Content.php:934, ../includes/Traits/Controls.php:1225, ../includes/Traits/Controls.php:1412, ../includes/Traits/Woo_Product_Comparable.php:838, ../includes/Traits/Woo_Product_Comparable.php:1224, ../includes/Traits/Woo_Product_Comparable.php:1642
691
  msgid "Normal"
692
  msgstr ""
693
 
694
- #: ../includes/Elements/Advanced_Data_Table.php:1265, ../includes/Elements/Advanced_Data_Table.php:1391, ../includes/Elements/Adv_Accordion.php:592, ../includes/Elements/Adv_Accordion.php:909, ../includes/Elements/Adv_Tabs.php:569, ../includes/Elements/Betterdocs_Category_Box.php:330, ../includes/Elements/Betterdocs_Category_Box.php:548, ../includes/Elements/Betterdocs_Category_Box.php:710, ../includes/Elements/Betterdocs_Category_Box.php:959, ../includes/Elements/Betterdocs_Category_Grid.php:363, ../includes/Elements/Betterdocs_Category_Grid.php:496, ../includes/Elements/Betterdocs_Category_Grid.php:664, ../includes/Elements/Betterdocs_Category_Grid.php:872, ../includes/Elements/Betterdocs_Category_Grid.php:1432, ../includes/Elements/Betterdocs_Search_Form.php:473, ../includes/Elements/Caldera_Forms.php:1303, ../includes/Elements/Contact_Form_7.php:1329, ../includes/Elements/Content_Ticker.php:646, ../includes/Elements/Creative_Button.php:353, ../includes/Elements/Cta_Box.php:764, ../includes/Elements/Cta_Box.php:951, ../includes/Elements/Data_Table.php:659, ../includes/Elements/Data_Table.php:903, ../includes/Elements/Data_Table.php:1001, ../includes/Elements/Data_Table.php:1100, ../includes/Elements/Event_Calendar.php:847, ../includes/Elements/Filterable_Gallery.php:1858, ../includes/Elements/Filterable_Gallery.php:2679, ../includes/Elements/Flip_Box.php:1413, ../includes/Elements/FluentForm.php:1675, ../includes/Elements/FluentForm.php:2039, ../includes/Elements/Formstack.php:1539, ../includes/Elements/Formstack.php:1849, ../includes/Elements/GravityForms.php:1882, ../includes/Elements/GravityForms.php:2106, ../includes/Elements/Info_Box.php:600, ../includes/Elements/Info_Box.php:838, ../includes/Elements/Info_Box.php:1071, ../includes/Elements/Info_Box.php:1278, ../includes/Elements/Info_Box.php:1453, ../includes/Elements/Login_Register.php:3318, ../includes/Elements/Login_Register.php:3639, ../includes/Elements/NinjaForms.php:1452, ../includes/Elements/Pricing_Table.php:402, ../includes/Elements/Pricing_Table.php:1951, ../includes/Elements/Product_Grid.php:911, ../includes/Elements/Product_Grid.php:1584, ../includes/Elements/Product_Grid.php:2059, ../includes/Elements/Product_Grid.php:2283, ../includes/Elements/Product_Grid.php:2730, ../includes/Elements/Simple_Menu.php:390, ../includes/Elements/Simple_Menu.php:516, ../includes/Elements/Simple_Menu.php:969, ../includes/Elements/Simple_Menu.php:1278, ../includes/Elements/Team_Member.php:791, ../includes/Elements/Tooltip.php:446, ../includes/Elements/WeForms.php:737, ../includes/Elements/Woo_Checkout.php:920, ../includes/Elements/Woo_Checkout.php:964, ../includes/Elements/Woo_Checkout.php:1106, ../includes/Elements/Woo_Checkout.php:1349, ../includes/Elements/Woo_Checkout.php:1647, ../includes/Elements/Woo_Checkout.php:2083, ../includes/Elements/Woo_Checkout.php:2517, ../includes/Elements/Woo_Product_Carousel.php:976, ../includes/Elements/Woo_Product_Carousel.php:1454, ../includes/Elements/Woo_Product_Carousel.php:1829, ../includes/Elements/Woo_Product_Carousel.php:2284, ../includes/Elements/Woo_Product_Carousel.php:2699, ../includes/Elements/Woo_Product_Gallery.php:643, ../includes/Elements/Woo_Product_Gallery.php:1076, ../includes/Elements/Woo_Product_Gallery.php:1337, ../includes/Elements/Woo_Product_Gallery.php:1714, ../includes/Elements/Woo_Product_Gallery.php:2068, ../includes/Elements/WpForms.php:1308, ../includes/Extensions/Table_of_Content.php:957, ../includes/Traits/Controls.php:1280, ../includes/Traits/Controls.php:1474, ../includes/Traits/Woo_Product_Comparable.php:938, ../includes/Traits/Woo_Product_Comparable.php:1305, ../includes/Traits/Woo_Product_Comparable.php:1692
695
  msgid "Hover"
696
  msgstr ""
697
 
698
- #: ../includes/Elements/Advanced_Data_Table.php:1366, ../includes/Elements/Advanced_Data_Table.php:1396, ../includes/Elements/Betterdocs_Category_Box.php:683, ../includes/Elements/Betterdocs_Category_Box.php:716, ../includes/Elements/Betterdocs_Category_Box.php:860, ../includes/Elements/Betterdocs_Category_Box.php:965, ../includes/Elements/Betterdocs_Category_Grid.php:616, ../includes/Elements/Betterdocs_Category_Grid.php:670, ../includes/Elements/Betterdocs_Category_Grid.php:806, ../includes/Elements/Betterdocs_Category_Grid.php:903, ../includes/Elements/Betterdocs_Category_Grid.php:1006, ../includes/Elements/Betterdocs_Category_Grid.php:1086, ../includes/Elements/Betterdocs_Category_Grid.php:1162, ../includes/Elements/Betterdocs_Category_Grid.php:1239, ../includes/Elements/Betterdocs_Category_Grid.php:1362, ../includes/Elements/Betterdocs_Category_Grid.php:1461, ../includes/Elements/Betterdocs_Search_Form.php:237, ../includes/Elements/Betterdocs_Search_Form.php:274, ../includes/Elements/Caldera_Forms.php:983, ../includes/Elements/Caldera_Forms.php:1099, ../includes/Elements/Caldera_Forms.php:1431, ../includes/Elements/Contact_Form_7.php:1010, ../includes/Elements/Contact_Form_7.php:1126, ../includes/Elements/Content_Ticker.php:609, ../includes/Elements/Content_Ticker.php:665, ../includes/Elements/Cta_Box.php:518, ../includes/Elements/Cta_Box.php:559, ../includes/Elements/Cta_Box.php:601, ../includes/Elements/Cta_Box.php:1042, ../includes/Elements/Data_Table.php:624, ../includes/Elements/Data_Table.php:664, ../includes/Elements/Data_Table.php:1175, ../includes/Elements/Dual_Color_Header.php:473, ../includes/Elements/Dual_Color_Header.php:570, ../includes/Elements/Dual_Color_Header.php:713, ../includes/Elements/Event_Calendar.php:747, ../includes/Elements/Event_Calendar.php:787, ../includes/Elements/Event_Calendar.php:854, ../includes/Elements/Event_Calendar.php:908, ../includes/Elements/Event_Calendar.php:991, ../includes/Elements/Event_Calendar.php:1066, ../includes/Elements/Event_Calendar.php:1100, ../includes/Elements/Event_Calendar.php:1209, ../includes/Elements/Event_Calendar.php:1575, ../includes/Elements/Facebook_Feed.php:769, ../includes/Elements/Facebook_Feed.php:807, ../includes/Elements/Facebook_Feed.php:847, ../includes/Elements/Facebook_Feed.php:895, ../includes/Elements/Facebook_Feed.php:933, ../includes/Elements/Facebook_Feed.php:971, ../includes/Elements/Facebook_Feed.php:1024, ../includes/Elements/Facebook_Feed.php:1062, ../includes/Elements/Facebook_Feed.php:1100, ../includes/Elements/Facebook_Feed.php:1132, ../includes/Elements/Fancy_Text.php:346, ../includes/Elements/Feature_List.php:541, ../includes/Elements/Feature_List.php:763, ../includes/Elements/Feature_List.php:797, ../includes/Elements/Filterable_Gallery.php:1217, ../includes/Elements/Filterable_Gallery.php:1257, ../includes/Elements/Filterable_Gallery.php:1579, ../includes/Elements/Filterable_Gallery.php:1594, ../includes/Elements/Filterable_Gallery.php:1639, ../includes/Elements/Filterable_Gallery.php:1654, ../includes/Elements/Filterable_Gallery.php:1739, ../includes/Elements/Filterable_Gallery.php:1877, ../includes/Elements/Filterable_Gallery.php:1953, ../includes/Elements/Filterable_Gallery.php:1989, ../includes/Elements/Filterable_Gallery.php:2036, ../includes/Elements/Filterable_Gallery.php:2177, ../includes/Elements/Filterable_Gallery.php:2364, ../includes/Elements/Flip_Box.php:945, ../includes/Elements/Flip_Box.php:1058, ../includes/Elements/Flip_Box.php:1185, ../includes/Elements/Flip_Box.php:1216, ../includes/Elements/Flip_Box.php:1254, ../includes/Elements/Flip_Box.php:1286, ../includes/Elements/Flip_Box.php:1360, ../includes/Elements/Flip_Box.php:1419, ../includes/Elements/FluentForm.php:441, ../includes/Elements/FluentForm.php:979, ../includes/Elements/FluentForm.php:1095, ../includes/Elements/FluentForm.php:1136, ../includes/Elements/FluentForm.php:1191, ../includes/Elements/FluentForm.php:1295, ../includes/Elements/FluentForm.php:1357, ../includes/Elements/FluentForm.php:1973, ../includes/Elements/FluentForm.php:2046, ../includes/Elements/FluentForm.php:2167, ../includes/Elements/Formstack.php:658, ../includes/Elements/Formstack.php:713, ../includes/Elements/Formstack.php:1175, ../includes/Elements/Formstack.php:1255, ../includes/Elements/Formstack.php:1309, ../includes/Elements/Formstack.php:1856, ../includes/Elements/Formstack.php:1937, ../includes/Elements/GravityForms.php:1147, ../includes/Elements/GravityForms.php:1253, ../includes/Elements/GravityForms.php:1367, ../includes/Elements/GravityForms.php:1449, ../includes/Elements/GravityForms.php:1563, ../includes/Elements/GravityForms.php:1607, ../includes/Elements/Image_Accordion.php:496, ../includes/Elements/Image_Accordion.php:525, ../includes/Elements/Info_Box.php:1357, ../includes/Elements/Info_Box.php:1433, ../includes/Elements/Login_Register.php:2349, ../includes/Elements/Login_Register.php:2440, ../includes/Elements/Login_Register.php:2854, ../includes/Elements/NinjaForms.php:1030, ../includes/Elements/NinjaForms.php:1148, ../includes/Elements/NinjaForms.php:1567, ../includes/Elements/Post_Grid.php:380, ../includes/Elements/Post_Grid.php:453, ../includes/Elements/Post_Grid.php:863, ../includes/Elements/Pricing_Table.php:883, ../includes/Elements/Pricing_Table.php:947, ../includes/Elements/Pricing_Table.php:1038, ../includes/Elements/Pricing_Table.php:1067, ../includes/Elements/Pricing_Table.php:1108, ../includes/Elements/Pricing_Table.php:1137, ../includes/Elements/Pricing_Table.php:1177, ../includes/Elements/Pricing_Table.php:1212, ../includes/Elements/Pricing_Table.php:1369, ../includes/Elements/Pricing_Table.php:1501, ../includes/Elements/Product_Grid.php:1331, ../includes/Elements/Product_Grid.php:1955, ../includes/Elements/Product_Grid.php:2064, ../includes/Elements/Product_Grid.php:2401, ../includes/Elements/Product_Grid.php:2582, ../includes/Elements/Product_Grid.php:2623, ../includes/Elements/Product_Grid.php:2684, ../includes/Elements/Product_Grid.php:2735, ../includes/Elements/Product_Grid.php:2892, ../includes/Elements/Progress_Bar.php:407, ../includes/Elements/Progress_Bar.php:467, ../includes/Elements/Simple_Menu.php:931, ../includes/Elements/Simple_Menu.php:1025, ../includes/Elements/Simple_Menu.php:1240, ../includes/Elements/Simple_Menu.php:1333, ../includes/Elements/Twitter_Feed.php:695, ../includes/Elements/Twitter_Feed.php:724, ../includes/Elements/Twitter_Feed.php:754, ../includes/Elements/Twitter_Feed.php:924, ../includes/Elements/Woo_Checkout.php:576, ../includes/Elements/Woo_Checkout.php:750, ../includes/Elements/Woo_Checkout.php:764, ../includes/Elements/Woo_Checkout.php:872, ../includes/Elements/Woo_Checkout.php:886, ../includes/Elements/Woo_Checkout.php:1059, ../includes/Elements/Woo_Checkout.php:1095, ../includes/Elements/Woo_Checkout.php:1111, ../includes/Elements/Woo_Checkout.php:1179, ../includes/Elements/Woo_Checkout.php:1278, ../includes/Elements/Woo_Checkout.php:1328, ../includes/Elements/Woo_Checkout.php:1368, ../includes/Elements/Woo_Checkout.php:1465, ../includes/Elements/Woo_Checkout.php:1626, ../includes/Elements/Woo_Checkout.php:1666, ../includes/Elements/Woo_Checkout.php:1784, ../includes/Elements/Woo_Checkout.php:1828, ../includes/Elements/Woo_Checkout.php:1872, ../includes/Elements/Woo_Checkout.php:1978, ../includes/Elements/Woo_Checkout.php:2017, ../includes/Elements/Woo_Checkout.php:2057, ../includes/Elements/Woo_Checkout.php:2330, ../includes/Elements/Woo_Checkout.php:2351, ../includes/Elements/Woo_Checkout.php:2386, ../includes/Elements/Woo_Checkout.php:2407, ../includes/Elements/Woo_Checkout.php:2496, ../includes/Elements/Woo_Checkout.php:2536, ../includes/Elements/Woo_Product_Carousel.php:1182, ../includes/Elements/Woo_Product_Carousel.php:1377, ../includes/Elements/Woo_Product_Carousel.php:1459, ../includes/Elements/Woo_Product_Carousel.php:1679, ../includes/Elements/Woo_Product_Carousel.php:1720, ../includes/Elements/Woo_Product_Carousel.php:1782, ../includes/Elements/Woo_Product_Carousel.php:1834, ../includes/Elements/Woo_Product_Carousel.php:1987, ../includes/Elements/Woo_Product_Carousel.php:2228, ../includes/Elements/Woo_Product_Carousel.php:2291, ../includes/Elements/Woo_Product_Carousel.php:2324, ../includes/Elements/Woo_Product_Carousel.php:2662, ../includes/Elements/Woo_Product_Carousel.php:2718, ../includes/Elements/Woo_Product_Gallery.php:1308, ../includes/Elements/Woo_Product_Gallery.php:1342, ../includes/Elements/Woo_Product_Gallery.php:1380, ../includes/Elements/Woo_Product_Gallery.php:1669, ../includes/Elements/Woo_Product_Gallery.php:1719, ../includes/Elements/Woo_Product_Gallery.php:1920, ../includes/Elements/Woo_Product_Gallery.php:1961, ../includes/Elements/Woo_Product_Gallery.php:2022, ../includes/Elements/Woo_Product_Gallery.php:2073, ../includes/Elements/Woo_Product_Gallery.php:2230, ../includes/Elements/WpForms.php:984, ../includes/Elements/WpForms.php:1100, ../includes/Extensions/Table_of_Content.php:1093, ../includes/Traits/Woo_Product_Comparable.php:107, ../includes/Traits/Woo_Product_Comparable.php:1372, ../includes/Traits/Woo_Product_Comparable.php:1484
699
  msgid "Color"
700
  msgstr ""
701
 
@@ -723,39 +723,39 @@ msgstr ""
723
  msgid "Select Accordion Tab Title Tag"
724
  msgstr ""
725
 
726
- #: ../includes/Elements/Adv_Accordion.php:127, ../includes/Elements/Betterdocs_Category_Box.php:184, ../includes/Elements/Betterdocs_Category_Grid.php:222, ../includes/Elements/Cta_Box.php:198, ../includes/Elements/Dual_Color_Header.php:138, ../includes/Elements/Filterable_Gallery.php:368, ../includes/Elements/Flip_Box.php:298, ../includes/Elements/Flip_Box.php:527, ../includes/Elements/Image_Accordion.php:156, ../includes/Elements/Info_Box.php:236, ../includes/Elements/Product_Grid.php:440, ../includes/Elements/Product_Grid.php:1792, ../includes/Elements/Progress_Bar.php:138, ../includes/Elements/Tooltip.php:158, ../includes/Elements/Woo_Product_Carousel.php:235, ../includes/Elements/Woo_Product_Carousel.php:395, ../includes/Elements/Woo_Product_Gallery.php:459, ../includes/Elements/Woo_Product_Gallery.php:1580, ../includes/Extensions/Table_of_Content.php:147, ../includes/Traits/Controls.php:829
727
  msgid "H1"
728
  msgstr ""
729
 
730
- #: ../includes/Elements/Adv_Accordion.php:128, ../includes/Elements/Betterdocs_Category_Box.php:185, ../includes/Elements/Betterdocs_Category_Grid.php:223, ../includes/Elements/Cta_Box.php:199, ../includes/Elements/Dual_Color_Header.php:139, ../includes/Elements/Filterable_Gallery.php:369, ../includes/Elements/Flip_Box.php:299, ../includes/Elements/Flip_Box.php:528, ../includes/Elements/Image_Accordion.php:157, ../includes/Elements/Info_Box.php:237, ../includes/Elements/Product_Grid.php:441, ../includes/Elements/Product_Grid.php:1793, ../includes/Elements/Progress_Bar.php:139, ../includes/Elements/Tooltip.php:159, ../includes/Elements/Woo_Product_Carousel.php:236, ../includes/Elements/Woo_Product_Carousel.php:396, ../includes/Elements/Woo_Product_Gallery.php:460, ../includes/Elements/Woo_Product_Gallery.php:1581, ../includes/Extensions/Table_of_Content.php:148, ../includes/Traits/Controls.php:830
731
  msgid "H2"
732
  msgstr ""
733
 
734
- #: ../includes/Elements/Adv_Accordion.php:129, ../includes/Elements/Betterdocs_Category_Box.php:186, ../includes/Elements/Betterdocs_Category_Grid.php:224, ../includes/Elements/Cta_Box.php:200, ../includes/Elements/Dual_Color_Header.php:140, ../includes/Elements/Filterable_Gallery.php:370, ../includes/Elements/Flip_Box.php:300, ../includes/Elements/Flip_Box.php:529, ../includes/Elements/Image_Accordion.php:158, ../includes/Elements/Info_Box.php:238, ../includes/Elements/Product_Grid.php:442, ../includes/Elements/Product_Grid.php:1794, ../includes/Elements/Progress_Bar.php:140, ../includes/Elements/Tooltip.php:160, ../includes/Elements/Woo_Product_Carousel.php:237, ../includes/Elements/Woo_Product_Carousel.php:397, ../includes/Elements/Woo_Product_Gallery.php:461, ../includes/Elements/Woo_Product_Gallery.php:1582, ../includes/Extensions/Table_of_Content.php:149, ../includes/Traits/Controls.php:831
735
  msgid "H3"
736
  msgstr ""
737
 
738
- #: ../includes/Elements/Adv_Accordion.php:130, ../includes/Elements/Betterdocs_Category_Box.php:187, ../includes/Elements/Betterdocs_Category_Grid.php:225, ../includes/Elements/Cta_Box.php:201, ../includes/Elements/Dual_Color_Header.php:141, ../includes/Elements/Filterable_Gallery.php:371, ../includes/Elements/Flip_Box.php:301, ../includes/Elements/Flip_Box.php:530, ../includes/Elements/Image_Accordion.php:159, ../includes/Elements/Info_Box.php:239, ../includes/Elements/Product_Grid.php:443, ../includes/Elements/Product_Grid.php:1795, ../includes/Elements/Progress_Bar.php:141, ../includes/Elements/Tooltip.php:161, ../includes/Elements/Woo_Product_Carousel.php:238, ../includes/Elements/Woo_Product_Carousel.php:398, ../includes/Elements/Woo_Product_Gallery.php:462, ../includes/Elements/Woo_Product_Gallery.php:1583, ../includes/Extensions/Table_of_Content.php:150, ../includes/Traits/Controls.php:832
739
  msgid "H4"
740
  msgstr ""
741
 
742
- #: ../includes/Elements/Adv_Accordion.php:131, ../includes/Elements/Betterdocs_Category_Box.php:188, ../includes/Elements/Betterdocs_Category_Grid.php:226, ../includes/Elements/Cta_Box.php:202, ../includes/Elements/Dual_Color_Header.php:142, ../includes/Elements/Filterable_Gallery.php:372, ../includes/Elements/Flip_Box.php:302, ../includes/Elements/Flip_Box.php:531, ../includes/Elements/Image_Accordion.php:160, ../includes/Elements/Info_Box.php:240, ../includes/Elements/Product_Grid.php:444, ../includes/Elements/Product_Grid.php:1796, ../includes/Elements/Progress_Bar.php:142, ../includes/Elements/Tooltip.php:162, ../includes/Elements/Woo_Product_Carousel.php:239, ../includes/Elements/Woo_Product_Carousel.php:399, ../includes/Elements/Woo_Product_Gallery.php:463, ../includes/Elements/Woo_Product_Gallery.php:1584, ../includes/Extensions/Table_of_Content.php:151, ../includes/Traits/Controls.php:833
743
  msgid "H5"
744
  msgstr ""
745
 
746
- #: ../includes/Elements/Adv_Accordion.php:132, ../includes/Elements/Betterdocs_Category_Box.php:189, ../includes/Elements/Betterdocs_Category_Grid.php:227, ../includes/Elements/Cta_Box.php:203, ../includes/Elements/Dual_Color_Header.php:143, ../includes/Elements/Filterable_Gallery.php:373, ../includes/Elements/Flip_Box.php:303, ../includes/Elements/Flip_Box.php:532, ../includes/Elements/Image_Accordion.php:161, ../includes/Elements/Info_Box.php:241, ../includes/Elements/Product_Grid.php:445, ../includes/Elements/Product_Grid.php:1797, ../includes/Elements/Progress_Bar.php:143, ../includes/Elements/Tooltip.php:163, ../includes/Elements/Woo_Product_Carousel.php:240, ../includes/Elements/Woo_Product_Carousel.php:400, ../includes/Elements/Woo_Product_Gallery.php:464, ../includes/Elements/Woo_Product_Gallery.php:1585, ../includes/Extensions/Table_of_Content.php:152, ../includes/Traits/Controls.php:834
747
  msgid "H6"
748
  msgstr ""
749
 
750
- #: ../includes/Elements/Adv_Accordion.php:133, ../includes/Elements/Betterdocs_Category_Box.php:190, ../includes/Elements/Betterdocs_Category_Grid.php:228, ../includes/Elements/Cta_Box.php:204, ../includes/Elements/Dual_Color_Header.php:144, ../includes/Elements/Filterable_Gallery.php:374, ../includes/Elements/Flip_Box.php:304, ../includes/Elements/Flip_Box.php:533, ../includes/Elements/Image_Accordion.php:162, ../includes/Elements/Info_Box.php:242, ../includes/Elements/Product_Grid.php:1798, ../includes/Elements/Woo_Product_Carousel.php:241, ../includes/Elements/Woo_Product_Carousel.php:401, ../includes/Elements/Woo_Product_Gallery.php:1586, ../includes/Traits/Controls.php:835
751
  msgid "Span"
752
  msgstr ""
753
 
754
- #: ../includes/Elements/Adv_Accordion.php:134, ../includes/Elements/Betterdocs_Category_Box.php:191, ../includes/Elements/Betterdocs_Category_Grid.php:229, ../includes/Elements/Cta_Box.php:205, ../includes/Elements/Dual_Color_Header.php:145, ../includes/Elements/Filterable_Gallery.php:375, ../includes/Elements/Flip_Box.php:305, ../includes/Elements/Flip_Box.php:534, ../includes/Elements/Image_Accordion.php:163, ../includes/Elements/Info_Box.php:243, ../includes/Elements/Product_Grid.php:1799, ../includes/Elements/Tooltip.php:166, ../includes/Elements/Woo_Product_Carousel.php:242, ../includes/Elements/Woo_Product_Carousel.php:402, ../includes/Elements/Woo_Product_Gallery.php:1587, ../includes/Traits/Controls.php:836
755
  msgid "P"
756
  msgstr ""
757
 
758
- #: ../includes/Elements/Adv_Accordion.php:135, ../includes/Elements/Betterdocs_Category_Box.php:192, ../includes/Elements/Betterdocs_Category_Grid.php:230, ../includes/Elements/Cta_Box.php:206, ../includes/Elements/Dual_Color_Header.php:146, ../includes/Elements/Filterable_Gallery.php:376, ../includes/Elements/Flip_Box.php:306, ../includes/Elements/Flip_Box.php:535, ../includes/Elements/Image_Accordion.php:164, ../includes/Elements/Info_Box.php:244, ../includes/Elements/Product_Grid.php:1800, ../includes/Elements/Woo_Product_Carousel.php:243, ../includes/Elements/Woo_Product_Carousel.php:403, ../includes/Elements/Woo_Product_Gallery.php:1588, ../includes/Traits/Controls.php:837
759
  msgid "Div"
760
  msgstr ""
761
 
@@ -787,103 +787,103 @@ msgstr ""
787
  msgid "Enable Tab Icon"
788
  msgstr ""
789
 
790
- #: ../includes/Elements/Adv_Accordion.php:224, ../includes/Elements/Adv_Tabs.php:175, ../includes/Elements/Adv_Tabs.php:190, ../includes/Elements/Betterdocs_Category_Box.php:407, ../includes/Elements/Betterdocs_Category_Box.php:441, ../includes/Elements/Betterdocs_Category_Grid.php:441, ../includes/Elements/Betterdocs_Category_Grid.php:1065, ../includes/Elements/Betterdocs_Category_Grid.php:1074, ../includes/Elements/Betterdocs_Category_Grid.php:1206, ../includes/Elements/Betterdocs_Category_Grid.php:1313, ../includes/Elements/Creative_Button.php:131, ../includes/Elements/Cta_Box.php:151, ../includes/Elements/Data_Table.php:152, ../includes/Elements/Data_Table.php:171, ../includes/Elements/Data_Table.php:298, ../includes/Elements/Data_Table.php:351, ../includes/Elements/Dual_Color_Header.php:118, ../includes/Elements/Dual_Color_Header.php:273, ../includes/Elements/Feature_List.php:78, ../includes/Elements/Feature_List.php:94, ../includes/Elements/Feature_List.php:502, ../includes/Elements/Flip_Box.php:202, ../includes/Elements/Flip_Box.php:228, ../includes/Elements/Flip_Box.php:431, ../includes/Elements/Flip_Box.php:457, ../includes/Elements/Info_Box.php:108, ../includes/Elements/Info_Box.php:178, ../includes/Elements/Info_Box.php:443, ../includes/Elements/Pricing_Table.php:172, ../includes/Elements/Simple_Menu.php:884, ../includes/Elements/Simple_Menu.php:1193, ../includes/Elements/Team_Member.php:166, ../includes/Elements/Tooltip.php:74, ../includes/Elements/Tooltip.php:97, ../includes/Elements/Twitter_Feed.php:890, ../includes/Extensions/Table_of_Content.php:669, ../includes/Traits/Controls.php:741, ../includes/Traits/Controls.php:794
791
  msgid "Icon"
792
  msgstr ""
793
 
794
- #: ../includes/Elements/Adv_Accordion.php:240, ../includes/Elements/Adv_Accordion.php:243, ../includes/Elements/Adv_Tabs.php:221, ../includes/Elements/Adv_Tabs.php:223, ../includes/Elements/Adv_Tabs.php:391
795
  msgid "Tab Title"
796
  msgstr ""
797
 
798
- #: ../includes/Elements/Adv_Accordion.php:252, ../includes/Elements/Adv_Tabs.php:231, ../includes/Elements/Cta_Box.php:214, ../includes/Elements/Data_Table.php:294, ../includes/Elements/Info_Box.php:251, ../includes/Elements/Tooltip.php:69
799
  msgid "Content Type"
800
  msgstr ""
801
 
802
- #: ../includes/Elements/Adv_Accordion.php:255, ../includes/Elements/Adv_Tabs.php:147, ../includes/Elements/Adv_Tabs.php:234, ../includes/Elements/Adv_Tabs.php:715, ../includes/Elements/Cta_Box.php:217, ../includes/Elements/Cta_Box.php:238, ../includes/Elements/Data_Table.php:256, ../includes/Elements/Data_Table.php:371, ../includes/Elements/Data_Table.php:385, ../includes/Elements/Event_Calendar.php:258, ../includes/Elements/Event_Calendar.php:1485, ../includes/Elements/Facebook_Feed.php:948, ../includes/Elements/Feature_List.php:191, ../includes/Elements/Feature_List.php:695, ../includes/Elements/Flip_Box.php:157, ../includes/Elements/Image_Accordion.php:97, ../includes/Elements/Image_Accordion.php:208, ../includes/Elements/Image_Accordion.php:516, ../includes/Elements/Info_Box.php:254, ../includes/Elements/Product_Grid.php:2498, ../includes/Elements/Tooltip.php:140, ../includes/Elements/Tooltip.php:273, ../includes/Elements/Woo_Product_Carousel.php:1583, ../includes/Elements/Woo_Product_Gallery.php:1836
803
  msgid "Content"
804
  msgstr ""
805
 
806
- #: ../includes/Elements/Adv_Accordion.php:256, ../includes/Elements/Adv_Tabs.php:235, ../includes/Elements/Countdown.php:405, ../includes/Elements/Cta_Box.php:218, ../includes/Elements/Info_Box.php:255
807
  msgid "Saved Templates"
808
  msgstr ""
809
 
810
- #: ../includes/Elements/Adv_Accordion.php:266, ../includes/Elements/Adv_Tabs.php:244, ../includes/Elements/Countdown.php:452, ../includes/Elements/Cta_Box.php:227, ../includes/Elements/Data_Table.php:339, ../includes/Elements/Info_Box.php:264
811
  msgid "Choose Template"
812
  msgstr ""
813
 
814
- #: ../includes/Elements/Adv_Accordion.php:279, ../includes/Elements/Adv_Tabs.php:256
815
  msgid "Tab Content"
816
  msgstr ""
817
 
818
- #: ../includes/Elements/Adv_Accordion.php:281, ../includes/Elements/Adv_Tabs.php:258, ../includes/Elements/Feature_List.php:193
819
  msgid "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Optio, neque qui velit. Magni dolorum quidem ipsam eligendi, totam, facilis laudantium cum accusamus ullam voluptatibus commodi numquam, error, est. Ea, consequatur."
820
  msgstr ""
821
 
822
- #: ../includes/Elements/Adv_Accordion.php:292, ../includes/Elements/Adv_Tabs.php:269
823
  msgid "Custom ID"
824
  msgstr ""
825
 
826
- #: ../includes/Elements/Adv_Accordion.php:294, ../includes/Elements/Adv_Tabs.php:271
827
  msgid "Custom ID will be added as an anchor tag. For example, if you add ‘test’ as your custom ID, the link will become like the following: https://www.example.com/#test and it will open the respective tab directly."
828
  msgstr ""
829
 
830
- #: ../includes/Elements/Adv_Accordion.php:305
831
  msgid "Accordion Tab Title 1"
832
  msgstr ""
833
 
834
- #: ../includes/Elements/Adv_Accordion.php:306
835
  msgid "Accordion Tab Title 2"
836
  msgstr ""
837
 
838
- #: ../includes/Elements/Adv_Accordion.php:307
839
  msgid "Accordion Tab Title 3"
840
  msgstr ""
841
 
842
- #: ../includes/Elements/Adv_Accordion.php:352, ../includes/Elements/Data_Table.php:513, ../includes/Elements/Filterable_Gallery.php:827
843
  msgid "General Style"
844
  msgstr ""
845
 
846
- #: ../includes/Elements/Adv_Accordion.php:412
847
  msgid "Tab Style"
848
  msgstr ""
849
 
850
- #: ../includes/Elements/Adv_Accordion.php:426, ../includes/Elements/Adv_Accordion.php:803, ../includes/Elements/Adv_Tabs.php:431, ../includes/Elements/Creative_Button.php:499, ../includes/Elements/Data_Table.php:711, ../includes/Elements/Data_Table.php:1059, ../includes/Elements/Dual_Color_Header.php:397, ../includes/Elements/Dual_Color_Header.php:608, ../includes/Elements/Event_Calendar.php:1456, ../includes/Elements/Event_Calendar.php:1523, ../includes/Elements/Feature_List.php:575, ../includes/Elements/Filterable_Gallery.php:1775, ../includes/Elements/Filterable_Gallery.php:2137, ../includes/Elements/Filterable_Gallery.php:2574, ../includes/Elements/Flip_Box.php:961, ../includes/Elements/Flip_Box.php:1074, ../includes/Elements/Info_Box.php:938, ../includes/Elements/Info_Box.php:1180, ../includes/Elements/Login_Register.php:2918, ../includes/Elements/Pricing_Table.php:1236, ../includes/Elements/Pricing_Table.php:1671, ../includes/Elements/Pricing_Table.php:1842, ../includes/Elements/Product_Grid.php:1281, ../includes/Elements/Product_Grid.php:2840, ../includes/Elements/Team_Member.php:643, ../includes/Elements/Tooltip.php:113, ../includes/Elements/Woo_Product_Carousel.php:1151, ../includes/Elements/Woo_Product_Carousel.php:1935, ../includes/Elements/Woo_Product_Carousel.php:2583, ../includes/Elements/Woo_Product_Gallery.php:844, ../includes/Elements/Woo_Product_Gallery.php:2178, ../includes/Extensions/Table_of_Content.php:705, ../includes/Traits/Woo_Product_Comparable.php:1345
851
  msgid "Icon Size"
852
  msgstr ""
853
 
854
- #: ../includes/Elements/Adv_Accordion.php:448, ../includes/Elements/Adv_Accordion.php:474, ../includes/Elements/Adv_Tabs.php:455
855
  msgid "Icon Gap"
856
  msgstr ""
857
 
858
- #: ../includes/Elements/Adv_Accordion.php:500
859
  msgid "Distance"
860
  msgstr ""
861
 
862
- #: ../includes/Elements/Adv_Accordion.php:558, ../includes/Elements/Adv_Accordion.php:618, ../includes/Elements/Adv_Accordion.php:679, ../includes/Elements/Adv_Tabs.php:536, ../includes/Elements/Adv_Tabs.php:603, ../includes/Elements/Adv_Tabs.php:670, ../includes/Elements/Data_Table.php:1087, ../includes/Elements/Data_Table.php:1105, ../includes/Elements/Dual_Color_Header.php:421, ../includes/Elements/Dual_Color_Header.php:634, ../includes/Elements/Event_Calendar.php:1474, ../includes/Elements/Feature_List.php:122, ../includes/Elements/Info_Box.php:774, ../includes/Elements/Info_Box.php:853, ../includes/Elements/Info_Box.php:1006, ../includes/Elements/Info_Box.php:1086, ../includes/Elements/Post_Grid.php:986, ../includes/Elements/Pricing_Table.php:337, ../includes/Elements/Pricing_Table.php:1735, ../includes/Elements/Simple_Menu.php:295, ../includes/Elements/Team_Member.php:719, ../includes/Elements/Twitter_Feed.php:631, ../includes/Elements/Woo_Checkout.php:1190, ../includes/Elements/Woo_Checkout.php:1476
863
  msgid "Icon Color"
864
  msgstr ""
865
 
866
- #: ../includes/Elements/Adv_Accordion.php:652, ../includes/Elements/Adv_Accordion.php:954, ../includes/Elements/Adv_Tabs.php:636, ../includes/Elements/Event_Calendar.php:901, ../includes/Elements/Filterable_Gallery.php:1021, ../includes/Elements/Product_Grid.php:2327, ../includes/Elements/Simple_Menu.php:424, ../includes/Elements/Woo_Product_Carousel.php:2317, ../includes/Elements/Woo_Product_Gallery.php:1375, ../includes/Extensions/Table_of_Content.php:983
867
  msgid "Active"
868
  msgstr ""
869
 
870
- #: ../includes/Elements/Adv_Accordion.php:717, ../includes/Elements/Countdown.php:1100, ../includes/Elements/Cta_Box.php:79, ../includes/Elements/Cta_Box.php:592, ../includes/Elements/Data_Table.php:805, ../includes/Elements/Dual_Color_Header.php:76, ../includes/Elements/Facebook_Feed.php:620, ../includes/Elements/Facebook_Feed.php:784, ../includes/Elements/Flip_Box.php:1208, ../includes/Elements/Flip_Box.php:1277, ../includes/Elements/Info_Box.php:1388, ../includes/Elements/Tooltip.php:320, ../includes/Elements/Twitter_Feed.php:715
871
  msgid "Content Style"
872
  msgstr ""
873
 
874
- #: ../includes/Elements/Adv_Accordion.php:795
875
  msgid "Toggle Caret Style"
876
  msgstr ""
877
 
878
- #: ../includes/Elements/Adv_Accordion.php:828
879
  msgid "Icon Padding"
880
  msgstr ""
881
 
882
- #: ../includes/Elements/Adv_Accordion.php:842
883
  msgid "Icon Radius"
884
  msgstr ""
885
 
886
- #: ../includes/Elements/Adv_Accordion.php:868, ../includes/Elements/Adv_Accordion.php:915, ../includes/Elements/Adv_Accordion.php:960, ../includes/Elements/Adv_Tabs.php:854
887
  msgid "Caret Color"
888
  msgstr ""
889
 
@@ -903,7 +903,7 @@ msgstr ""
903
  msgid "Enable Icon"
904
  msgstr ""
905
 
906
- #: ../includes/Elements/Adv_Tabs.php:102, ../includes/Elements/Betterdocs_Category_Grid.php:1328, ../includes/Elements/Creative_Button.php:143, ../includes/Elements/Data_Table.php:733, ../includes/Elements/Feature_List.php:299, ../includes/Elements/Filterable_Gallery.php:748, ../includes/Elements/Flip_Box.php:708, ../includes/Elements/Info_Box.php:124, ../includes/Elements/Info_Box.php:455, ../includes/Elements/Pricing_Table.php:535
907
  msgid "Icon Position"
908
  msgstr ""
909
 
@@ -923,63 +923,63 @@ msgstr ""
923
  msgid "Set icon position before/after the tab title."
924
  msgstr ""
925
 
926
- #: ../includes/Elements/Adv_Tabs.php:125, ../includes/Elements/Betterdocs_Category_Grid.php:1332, ../includes/Elements/Creative_Button.php:147, ../includes/Elements/Filterable_Gallery.php:753, ../includes/Elements/Flip_Box.php:713, ../includes/Elements/Info_Box.php:459, ../includes/Elements/Pricing_Table.php:539
927
  msgid "Before"
928
  msgstr ""
929
 
930
- #: ../includes/Elements/Adv_Tabs.php:129, ../includes/Elements/Betterdocs_Category_Grid.php:1333, ../includes/Elements/Creative_Button.php:148, ../includes/Elements/Filterable_Gallery.php:752, ../includes/Elements/Flip_Box.php:712, ../includes/Elements/Info_Box.php:460, ../includes/Elements/Pricing_Table.php:540
931
  msgid "After"
932
  msgstr ""
933
 
934
- #: ../includes/Elements/Adv_Tabs.php:166, ../includes/Elements/Feature_List.php:74, ../includes/Elements/Flip_Box.php:197, ../includes/Elements/Flip_Box.php:426
935
  msgid "Icon Type"
936
  msgstr ""
937
 
938
- #: ../includes/Elements/Adv_Tabs.php:179, ../includes/Elements/Adv_Tabs.php:206, ../includes/Elements/Data_Table.php:156, ../includes/Elements/Data_Table.php:188, ../includes/Elements/Feature_List.php:82, ../includes/Elements/Feature_List.php:167, ../includes/Elements/Filterable_Gallery.php:564, ../includes/Elements/Flip_Box.php:201, ../includes/Elements/Flip_Box.php:430, ../includes/Elements/Info_Box.php:112, ../includes/Elements/Post_Grid.php:120, ../includes/Elements/Tooltip.php:82, ../includes/Elements/Tooltip.php:177, ../includes/Traits/Controls.php:576, ../includes/Traits/Controls.php:737, ../includes/Traits/Woo_Product_Comparable.php:40, ../includes/Traits/Woo_Product_Comparable.php:71
939
  msgid "Image"
940
  msgstr ""
941
 
942
- #: ../includes/Elements/Adv_Tabs.php:282
943
  msgid "Tab Title 1"
944
  msgstr ""
945
 
946
- #: ../includes/Elements/Adv_Tabs.php:283
947
  msgid "Tab Title 2"
948
  msgstr ""
949
 
950
- #: ../includes/Elements/Adv_Tabs.php:284
951
  msgid "Tab Title 3"
952
  msgstr ""
953
 
954
- #: ../includes/Elements/Adv_Tabs.php:327, ../includes/Elements/Event_Calendar.php:141, ../includes/Elements/Image_Accordion.php:61, ../includes/Elements/Image_Accordion.php:296, ../includes/Elements/Login_Register.php:245, ../includes/Elements/Login_Register.php:1485, ../includes/Elements/Progress_Bar.php:306, ../includes/Elements/Progress_Bar.php:517, ../includes/Elements/Simple_Menu.php:99, ../includes/Traits/Admin.php:113
955
  msgid "General"
956
  msgstr ""
957
 
958
- #: ../includes/Elements/Adv_Tabs.php:405
959
  msgid "Title Min Width"
960
  msgstr ""
961
 
962
- #: ../includes/Elements/Adv_Tabs.php:573, ../includes/Elements/Adv_Tabs.php:640
963
  msgid "Tab Background Color"
964
  msgstr ""
965
 
966
- #: ../includes/Elements/Adv_Tabs.php:815, ../includes/Elements/Woo_Product_Carousel.php:2550
967
  msgid "Caret"
968
  msgstr ""
969
 
970
- #: ../includes/Elements/Adv_Tabs.php:822
971
  msgid "Show Caret on Active Tab"
972
  msgstr ""
973
 
974
- #: ../includes/Elements/Adv_Tabs.php:831
975
  msgid "Caret Size"
976
  msgstr ""
977
 
978
- #: ../includes/Elements/Adv_Tabs.php:886, ../includes/Elements/Caldera_Forms.php:109, ../includes/Elements/Caldera_Forms.php:936, ../includes/Elements/Contact_Form_7.php:911, ../includes/Elements/Contact_Form_7.php:963, ../includes/Elements/Content_Ticker.php:194, ../includes/Elements/Content_Ticker.php:227, ../includes/Elements/Content_Ticker.php:242, ../includes/Elements/Content_Ticker.php:277, ../includes/Elements/Data_Table.php:87, ../includes/Elements/Data_Table.php:1141, ../includes/Elements/Facebook_Feed.php:388, ../includes/Elements/Filterable_Gallery.php:288, ../includes/Elements/Filterable_Gallery.php:433, ../includes/Elements/Filterable_Gallery.php:482, ../includes/Elements/Filterable_Gallery.php:507, ../includes/Elements/Filterable_Gallery.php:532, ../includes/Elements/Filterable_Gallery.php:592, ../includes/Elements/Filterable_Gallery.php:607, ../includes/Elements/FluentForm.php:151, ../includes/Elements/FluentForm.php:932, ../includes/Elements/Formstack.php:192, ../includes/Elements/Formstack.php:1128, ../includes/Elements/GravityForms.php:149, ../includes/Elements/GravityForms.php:246, ../includes/Elements/GravityForms.php:1206, ../includes/Elements/GravityForms.php:1402, ../includes/Elements/Image_Accordion.php:176, ../includes/Elements/Info_Box.php:361, ../includes/Elements/Info_Box.php:375, ../includes/Elements/Login_Register.php:438, ../includes/Elements/Login_Register.php:516, ../includes/Elements/Login_Register.php:851, ../includes/Elements/NinjaForms.php:114, ../includes/Elements/NinjaForms.php:983, ../includes/Elements/Post_Grid.php:133, ../includes/Elements/Post_Grid.php:147, ../includes/Elements/Post_Grid.php:173, ../includes/Elements/Post_Grid.php:187, ../includes/Elements/Post_Grid.php:213, ../includes/Elements/Post_Grid.php:227, ../includes/Elements/Post_Timeline.php:83, ../includes/Elements/Post_Timeline.php:94, ../includes/Elements/Pricing_Table.php:217, ../includes/Elements/Pricing_Table.php:1873, ../includes/Elements/Simple_Menu.php:173, ../includes/Elements/Simple_Menu.php:214, ../includes/Elements/Team_Member.php:705, ../includes/Elements/Woo_Product_Carousel.php:327, ../includes/Elements/Woo_Product_Carousel.php:566, ../includes/Elements/Woo_Product_Carousel.php:598, ../includes/Elements/Woo_Product_Carousel.php:613, ../includes/Elements/Woo_Product_Carousel.php:648, ../includes/Elements/Woo_Product_Carousel.php:660, ../includes/Elements/Woo_Product_Carousel.php:671, ../includes/Elements/Woo_Product_Carousel.php:2124, ../includes/Elements/Woo_Product_Gallery.php:248, ../includes/Elements/Woo_Product_Gallery.php:274, ../includes/Elements/WpForms.php:107, ../includes/Elements/WpForms.php:937, ../includes/Extensions/Reading_Progress.php:41, ../includes/Extensions/Reading_Progress.php:77, ../includes/Extensions/Table_of_Content.php:45, ../includes/Extensions/Table_of_Content.php:79, ../includes/Extensions/Table_of_Content.php:211, ../includes/Extensions/Table_of_Content.php:226, ../includes/Extensions/Table_of_Content.php:241, ../includes/Extensions/Table_of_Content.php:256, ../includes/Extensions/Table_of_Content.php:271, ../includes/Traits/Controls.php:379
979
  msgid "Yes"
980
  msgstr ""
981
 
982
- #: ../includes/Elements/Adv_Tabs.php:887, ../includes/Elements/Caldera_Forms.php:110, ../includes/Elements/Caldera_Forms.php:937, ../includes/Elements/Contact_Form_7.php:912, ../includes/Elements/Contact_Form_7.php:964, ../includes/Elements/Content_Ticker.php:195, ../includes/Elements/Content_Ticker.php:228, ../includes/Elements/Content_Ticker.php:243, ../includes/Elements/Content_Ticker.php:278, ../includes/Elements/Cta_Box.php:685, ../includes/Elements/Data_Table.php:88, ../includes/Elements/Data_Table.php:1142, ../includes/Elements/Facebook_Feed.php:392, ../includes/Elements/Feature_List.php:361, ../includes/Elements/Filterable_Gallery.php:289, ../includes/Elements/Filterable_Gallery.php:434, ../includes/Elements/Filterable_Gallery.php:483, ../includes/Elements/Filterable_Gallery.php:508, ../includes/Elements/Filterable_Gallery.php:533, ../includes/Elements/Filterable_Gallery.php:593, ../includes/Elements/Filterable_Gallery.php:608, ../includes/Elements/FluentForm.php:152, ../includes/Elements/FluentForm.php:933, ../includes/Elements/Formstack.php:193, ../includes/Elements/Formstack.php:1129, ../includes/Elements/GravityForms.php:150, ../includes/Elements/GravityForms.php:247, ../includes/Elements/GravityForms.php:1207, ../includes/Elements/GravityForms.php:1403, ../includes/Elements/Image_Accordion.php:177, ../includes/Elements/Info_Box.php:362, ../includes/Elements/Info_Box.php:376, ../includes/Elements/Login_Register.php:439, ../includes/Elements/Login_Register.php:517, ../includes/Elements/Login_Register.php:852, ../includes/Elements/NinjaForms.php:115, ../includes/Elements/NinjaForms.php:984, ../includes/Elements/Post_Grid.php:134, ../includes/Elements/Post_Grid.php:148, ../includes/Elements/Post_Grid.php:174, ../includes/Elements/Post_Grid.php:188, ../includes/Elements/Post_Grid.php:214, ../includes/Elements/Post_Grid.php:228, ../includes/Elements/Post_Timeline.php:84, ../includes/Elements/Post_Timeline.php:95, ../includes/Elements/Pricing_Table.php:218, ../includes/Elements/Pricing_Table.php:1874, ../includes/Elements/Simple_Menu.php:174, ../includes/Elements/Simple_Menu.php:215, ../includes/Elements/Team_Member.php:706, ../includes/Elements/Woo_Product_Carousel.php:328, ../includes/Elements/Woo_Product_Carousel.php:567, ../includes/Elements/Woo_Product_Carousel.php:599, ../includes/Elements/Woo_Product_Carousel.php:614, ../includes/Elements/Woo_Product_Carousel.php:649, ../includes/Elements/Woo_Product_Carousel.php:661, ../includes/Elements/Woo_Product_Carousel.php:672, ../includes/Elements/Woo_Product_Carousel.php:2125, ../includes/Elements/Woo_Product_Gallery.php:249, ../includes/Elements/Woo_Product_Gallery.php:275, ../includes/Elements/WpForms.php:108, ../includes/Elements/WpForms.php:938, ../includes/Extensions/Reading_Progress.php:42, ../includes/Extensions/Reading_Progress.php:78, ../includes/Extensions/Table_of_Content.php:46, ../includes/Extensions/Table_of_Content.php:80, ../includes/Extensions/Table_of_Content.php:212, ../includes/Extensions/Table_of_Content.php:227, ../includes/Extensions/Table_of_Content.php:242, ../includes/Extensions/Table_of_Content.php:257, ../includes/Extensions/Table_of_Content.php:272, ../includes/Traits/Controls.php:380
983
  msgid "No"
984
  msgstr ""
985
 
@@ -999,11 +999,11 @@ msgstr ""
999
  msgid "Show Icon"
1000
  msgstr ""
1001
 
1002
- #: ../includes/Elements/Betterdocs_Category_Box.php:158, ../includes/Elements/Betterdocs_Category_Box.php:170, ../includes/Elements/Betterdocs_Category_Box.php:205, ../includes/Elements/Betterdocs_Category_Grid.php:177, ../includes/Elements/Betterdocs_Category_Grid.php:190, ../includes/Elements/Betterdocs_Category_Grid.php:205, ../includes/Elements/Betterdocs_Category_Grid.php:244, ../includes/Elements/Betterdocs_Category_Grid.php:260, ../includes/Elements/Betterdocs_Category_Grid.php:272, ../includes/Elements/Betterdocs_Category_Grid.php:1303, ../includes/Elements/Caldera_Forms.php:152, ../includes/Elements/Caldera_Forms.php:165, ../includes/Elements/Caldera_Forms.php:191, ../includes/Elements/Contact_Form_7.php:205, ../includes/Elements/Contact_Form_7.php:231, ../includes/Elements/Contact_Form_7.php:251, ../includes/Elements/Content_Ticker.php:255, ../includes/Elements/Countdown.php:503, ../includes/Elements/Creative_Button.php:252, ../includes/Elements/Cta_Box.php:134, ../includes/Elements/Cta_Box.php:281, ../includes/Elements/Dual_Color_Header.php:95, ../includes/Elements/Dual_Color_Header.php:105, ../includes/Elements/Facebook_Feed.php:306, ../includes/Elements/Facebook_Feed.php:318, ../includes/Elements/Facebook_Feed.php:333, ../includes/Elements/Facebook_Feed.php:348, ../includes/Elements/Facebook_Feed.php:363, ../includes/Elements/Facebook_Feed.php:429, ../includes/Elements/Feature_List.php:360, ../includes/Elements/Filterable_Gallery.php:276, ../includes/Elements/FluentForm.php:194, ../includes/Elements/FluentForm.php:206, ../includes/Elements/FluentForm.php:232, ../includes/Elements/FluentForm.php:1758, ../includes/Elements/FluentForm.php:1826, ../includes/Elements/Formstack.php:235, ../includes/Elements/Formstack.php:247, ../includes/Elements/Formstack.php:273, ../includes/Elements/Formstack.php:286, ../includes/Elements/Formstack.php:1622, ../includes/Elements/GravityForms.php:161, ../includes/Elements/GravityForms.php:176, ../includes/Elements/GravityForms.php:222, ../includes/Elements/GravityForms.php:234, ../includes/Elements/GravityForms.php:272, ../includes/Elements/GravityForms.php:292, ../includes/Elements/Info_Box.php:293, ../includes/Elements/Login_Register.php:360, ../includes/Elements/Login_Register.php:660, ../includes/Elements/NinjaForms.php:126, ../includes/Elements/NinjaForms.php:173, ../includes/Elements/NinjaForms.php:186, ../includes/Elements/NinjaForms.php:212, ../includes/Elements/NinjaForms.php:232, ../includes/Elements/Post_Timeline.php:119, ../includes/Elements/Pricing_Table.php:510, ../includes/Elements/Pricing_Table.php:1625, ../includes/Elements/Product_Grid.php:557, ../includes/Elements/Product_Grid.php:659, ../includes/Elements/Product_Grid.php:1500, ../includes/Elements/Product_Grid.php:2143, ../includes/Elements/Sticky_Video.php:362, ../includes/Elements/Twitter_Feed.php:392, ../includes/Elements/Woo_Product_Carousel.php:221, ../includes/Elements/Woo_Product_Carousel.php:627, ../includes/Elements/Woo_Product_Carousel.php:686, ../includes/Elements/Woo_Product_Gallery.php:517, ../includes/Elements/Woo_Product_Gallery.php:1000, ../includes/Elements/WpForms.php:119, ../includes/Elements/WpForms.php:134, ../includes/Elements/WpForms.php:180, ../includes/Elements/WpForms.php:193, ../includes/Elements/WpForms.php:216, ../includes/Traits/Controls.php:567, ../includes/Traits/Controls.php:629, ../includes/Traits/Controls.php:659, ../includes/Traits/Controls.php:815, ../includes/Traits/Controls.php:863, ../includes/Traits/Controls.php:931, ../includes/Traits/Controls.php:966, ../includes/Traits/Controls.php:997, ../includes/Traits/Controls.php:1044, ../includes/Traits/Controls.php:1072, ../includes/Traits/Controls.php:1088, ../includes/Traits/Controls.php:1103
1003
  msgid "Show"
1004
  msgstr ""
1005
 
1006
- #: ../includes/Elements/Betterdocs_Category_Box.php:159, ../includes/Elements/Betterdocs_Category_Box.php:171, ../includes/Elements/Betterdocs_Category_Box.php:206, ../includes/Elements/Betterdocs_Category_Grid.php:178, ../includes/Elements/Betterdocs_Category_Grid.php:191, ../includes/Elements/Betterdocs_Category_Grid.php:206, ../includes/Elements/Betterdocs_Category_Grid.php:245, ../includes/Elements/Betterdocs_Category_Grid.php:261, ../includes/Elements/Betterdocs_Category_Grid.php:273, ../includes/Elements/Betterdocs_Category_Grid.php:1304, ../includes/Elements/Caldera_Forms.php:153, ../includes/Elements/Caldera_Forms.php:166, ../includes/Elements/Caldera_Forms.php:192, ../includes/Elements/Contact_Form_7.php:206, ../includes/Elements/Contact_Form_7.php:232, ../includes/Elements/Contact_Form_7.php:252, ../includes/Elements/Content_Ticker.php:256, ../includes/Elements/Countdown.php:504, ../includes/Elements/Creative_Button.php:253, ../includes/Elements/Cta_Box.php:135, ../includes/Elements/Cta_Box.php:282, ../includes/Elements/Dual_Color_Header.php:96, ../includes/Elements/Dual_Color_Header.php:106, ../includes/Elements/Facebook_Feed.php:307, ../includes/Elements/Facebook_Feed.php:319, ../includes/Elements/Facebook_Feed.php:334, ../includes/Elements/Facebook_Feed.php:349, ../includes/Elements/Facebook_Feed.php:364, ../includes/Elements/Facebook_Feed.php:430, ../includes/Elements/Filterable_Gallery.php:277, ../includes/Elements/FluentForm.php:195, ../includes/Elements/FluentForm.php:207, ../includes/Elements/FluentForm.php:233, ../includes/Elements/FluentForm.php:1759, ../includes/Elements/FluentForm.php:1827, ../includes/Elements/Formstack.php:236, ../includes/Elements/Formstack.php:248, ../includes/Elements/Formstack.php:274, ../includes/Elements/Formstack.php:287, ../includes/Elements/Formstack.php:1623, ../includes/Elements/GravityForms.php:162, ../includes/Elements/GravityForms.php:177, ../includes/Elements/GravityForms.php:223, ../includes/Elements/GravityForms.php:235, ../includes/Elements/GravityForms.php:273, ../includes/Elements/GravityForms.php:293, ../includes/Elements/Info_Box.php:294, ../includes/Elements/Login_Register.php:359, ../includes/Elements/Login_Register.php:568, ../includes/Elements/Login_Register.php:659, ../includes/Elements/NinjaForms.php:127, ../includes/Elements/NinjaForms.php:174, ../includes/Elements/NinjaForms.php:187, ../includes/Elements/NinjaForms.php:213, ../includes/Elements/NinjaForms.php:233, ../includes/Elements/Post_Timeline.php:120, ../includes/Elements/Pricing_Table.php:511, ../includes/Elements/Pricing_Table.php:1626, ../includes/Elements/Product_Grid.php:558, ../includes/Elements/Product_Grid.php:660, ../includes/Elements/Product_Grid.php:1501, ../includes/Elements/Product_Grid.php:2144, ../includes/Elements/Sticky_Video.php:363, ../includes/Elements/Twitter_Feed.php:393, ../includes/Elements/Woo_Product_Carousel.php:222, ../includes/Elements/Woo_Product_Carousel.php:628, ../includes/Elements/Woo_Product_Carousel.php:687, ../includes/Elements/Woo_Product_Gallery.php:518, ../includes/Elements/Woo_Product_Gallery.php:1001, ../includes/Elements/WpForms.php:120, ../includes/Elements/WpForms.php:135, ../includes/Elements/WpForms.php:181, ../includes/Elements/WpForms.php:194, ../includes/Elements/WpForms.php:217, ../includes/Traits/Controls.php:568, ../includes/Traits/Controls.php:630, ../includes/Traits/Controls.php:660, ../includes/Traits/Controls.php:816, ../includes/Traits/Controls.php:864, ../includes/Traits/Controls.php:932, ../includes/Traits/Controls.php:967, ../includes/Traits/Controls.php:998, ../includes/Traits/Controls.php:1045, ../includes/Traits/Controls.php:1073, ../includes/Traits/Controls.php:1089, ../includes/Traits/Controls.php:1104
1007
  msgid "Hide"
1008
  msgstr ""
1009
 
@@ -1031,7 +1031,7 @@ msgstr ""
1031
  msgid "articles"
1032
  msgstr ""
1033
 
1034
- #: ../includes/Elements/Betterdocs_Category_Box.php:250, ../includes/Elements/Flip_Box.php:649
1035
  msgid "Box"
1036
  msgstr ""
1037
 
@@ -1043,7 +1043,7 @@ msgstr ""
1043
  msgid "Box Padding"
1044
  msgstr ""
1045
 
1046
- #: ../includes/Elements/Betterdocs_Category_Box.php:336, ../includes/Elements/Betterdocs_Category_Box.php:589, ../includes/Elements/Betterdocs_Category_Box.php:728, ../includes/Elements/Betterdocs_Category_Box.php:1027, ../includes/Elements/Betterdocs_Search_Form.php:479, ../includes/Elements/Filterable_Gallery.php:1917, ../includes/Elements/Info_Box.php:1483
1047
  msgid "Transition"
1048
  msgstr ""
1049
 
@@ -1051,15 +1051,15 @@ msgstr ""
1051
  msgid "Area"
1052
  msgstr ""
1053
 
1054
- #: ../includes/Elements/Betterdocs_Category_Box.php:423, ../includes/Elements/Betterdocs_Category_Box.php:458, ../includes/Elements/Betterdocs_Category_Box.php:815, ../includes/Elements/Betterdocs_Category_Box.php:922, ../includes/Elements/Betterdocs_Category_Grid.php:539, ../includes/Elements/Betterdocs_Category_Grid.php:777, ../includes/Elements/Betterdocs_Category_Grid.php:1097, ../includes/Elements/Betterdocs_Category_Grid.php:1250, ../includes/Elements/Betterdocs_Search_Form.php:248, ../includes/Elements/Caldera_Forms.php:945, ../includes/Elements/Contact_Form_7.php:972, ../includes/Elements/Feature_List.php:555, ../includes/Elements/Filterable_Gallery.php:716, ../includes/Elements/FluentForm.php:941, ../includes/Elements/Formstack.php:1137, ../includes/Elements/Formstack.php:1290, ../includes/Elements/GravityForms.php:1215, ../includes/Elements/GravityForms.php:1411, ../includes/Elements/Login_Register.php:2832, ../includes/Elements/Login_Register.php:3441, ../includes/Elements/NinjaForms.php:992, ../includes/Elements/Progress_Bar.php:551, ../includes/Elements/Woo_Product_Carousel.php:2177, ../includes/Elements/WpForms.php:946, ../includes/Traits/Woo_Product_Comparable.php:111, ../includes/Traits/Woo_Product_Comparable.php:1437
1055
  msgid "Size"
1056
  msgstr ""
1057
 
1058
- #: ../includes/Elements/Betterdocs_Category_Box.php:527, ../includes/Elements/Betterdocs_Category_Box.php:695, ../includes/Elements/Betterdocs_Category_Box.php:942, ../includes/Elements/Betterdocs_Category_Grid.php:1116, ../includes/Elements/Betterdocs_Category_Grid.php:1194, ../includes/Elements/Caldera_Forms.php:753, ../includes/Elements/Caldera_Forms.php:870, ../includes/Elements/Contact_Form_7.php:575, ../includes/Elements/Contact_Form_7.php:860, ../includes/Elements/Contact_Form_7.php:1486, ../includes/Elements/Feature_List.php:656, ../includes/Elements/Filterable_Gallery.php:2420, ../includes/Elements/FluentForm.php:802, ../includes/Elements/FluentForm.php:1800, ../includes/Elements/Formstack.php:605, ../includes/Elements/Formstack.php:1001, ../includes/Elements/GravityForms.php:684, ../includes/Elements/GravityForms.php:956, ../includes/Elements/Login_Register.php:2499, ../includes/Elements/Login_Register.php:2701, ../includes/Elements/Login_Register.php:3174, ../includes/Elements/Login_Register.php:3473, ../includes/Elements/NinjaForms.php:797, ../includes/Elements/NinjaForms.php:914, ../includes/Elements/NinjaForms.php:1579, ../includes/Elements/Post_Grid.php:909, ../includes/Elements/Woo_Checkout.php:1989, ../includes/Elements/Woo_Product_Carousel.php:2200, ../includes/Elements/WpForms.php:765, ../includes/Elements/WpForms.php:871
1059
  msgid "Spacing"
1060
  msgstr ""
1061
 
1062
- #: ../includes/Elements/Betterdocs_Category_Box.php:627, ../includes/Elements/Betterdocs_Category_Box.php:666, ../includes/Elements/Betterdocs_Category_Grid.php:589, ../includes/Elements/Betterdocs_Category_Grid.php:1146, ../includes/Elements/Caldera_Forms.php:118, ../includes/Elements/Caldera_Forms.php:258, ../includes/Elements/Contact_Form_7.php:160, ../includes/Elements/Contact_Form_7.php:465, ../includes/Elements/Cta_Box.php:183, ../includes/Elements/Event_Calendar.php:148, ../includes/Elements/Event_Calendar.php:730, ../includes/Elements/Event_Calendar.php:1389, ../includes/Elements/Feature_List.php:181, ../includes/Elements/Feature_List.php:183, ../includes/Elements/Feature_List.php:735, ../includes/Elements/Flip_Box.php:650, ../includes/Elements/FluentForm.php:160, ../includes/Elements/FluentForm.php:293, ../includes/Elements/Formstack.php:201, ../includes/Elements/Formstack.php:472, ../includes/Elements/GravityForms.php:158, ../includes/Elements/GravityForms.php:188, ../includes/Elements/GravityForms.php:506, ../includes/Elements/Image_Accordion.php:197, ../includes/Elements/Image_Accordion.php:487, ../includes/Elements/Login_Register.php:2310, ../includes/Elements/NinjaForms.php:123, ../includes/Elements/NinjaForms.php:139, ../includes/Elements/NinjaForms.php:443, ../includes/Elements/Post_Grid.php:160, ../includes/Elements/Pricing_Table.php:136, ../includes/Elements/Product_Grid.php:2426, ../includes/Elements/Progress_Bar.php:122, ../includes/Elements/Progress_Bar.php:681, ../includes/Elements/Woo_Checkout.php:327, ../includes/Elements/Woo_Checkout.php:437, ../includes/Elements/Woo_Checkout.php:531, ../includes/Elements/Woo_Product_Carousel.php:1512, ../includes/Elements/Woo_Product_Gallery.php:1765, ../includes/Elements/WpForms.php:116, ../includes/Elements/WpForms.php:146, ../includes/Elements/WpForms.php:410, ../includes/Extensions/Table_of_Content.php:110, ../includes/Traits/Woo_Product_Comparable.php:41, ../includes/Traits/Woo_Product_Comparable.php:75, ../includes/Traits/Woo_Product_Comparable.php:1083, ../includes/Traits/Woo_Product_Comparable.php:1201
1063
  msgid "Title"
1064
  msgstr ""
1065
 
@@ -1119,7 +1119,7 @@ msgstr ""
1119
  msgid "Show Button"
1120
  msgstr ""
1121
 
1122
- #: ../includes/Elements/Betterdocs_Category_Grid.php:282, ../includes/Elements/Creative_Button.php:80, ../includes/Elements/Cta_Box.php:256, ../includes/Elements/Filterable_Gallery.php:690, ../includes/Elements/Flip_Box.php:681, ../includes/Elements/Info_Box.php:405, ../includes/Elements/Login_Register.php:674, ../includes/Elements/Login_Register.php:1200, ../includes/Elements/Pricing_Table.php:573, ../includes/Elements/Woo_Checkout.php:374, ../includes/Traits/Controls.php:976
1123
  msgid "Button Text"
1124
  msgstr ""
1125
 
@@ -1143,7 +1143,7 @@ msgstr ""
1143
  msgid "List"
1144
  msgstr ""
1145
 
1146
- #: ../includes/Elements/Betterdocs_Category_Grid.php:1017, ../includes/Elements/Filterable_Gallery.php:1229, ../includes/Elements/Filterable_Gallery.php:1609, ../includes/Elements/Filterable_Gallery.php:2375, ../includes/Elements/Pricing_Table.php:1769, ../includes/Elements/Product_Grid.php:2820, ../includes/Elements/Twitter_Feed.php:766, ../includes/Elements/Woo_Product_Carousel.php:1915, ../includes/Elements/Woo_Product_Gallery.php:2158
1147
  msgid "Hover Color"
1148
  msgstr ""
1149
 
@@ -1171,7 +1171,7 @@ msgstr ""
1171
  msgid "Area Spacing"
1172
  msgstr ""
1173
 
1174
- #: ../includes/Elements/Betterdocs_Category_Grid.php:1534, ../includes/Elements/Creative_Button.php:440, ../includes/Elements/Pricing_Table.php:835, ../includes/Elements/WeForms.php:626, ../includes/Traits/Controls.php:1527
1175
  msgid "Button Alignment"
1176
  msgstr ""
1177
 
@@ -1195,7 +1195,7 @@ msgstr ""
1195
  msgid "Field Padding"
1196
  msgstr ""
1197
 
1198
- #: ../includes/Elements/Betterdocs_Search_Form.php:219, ../includes/Elements/Facebook_Feed.php:518, ../includes/Elements/Post_Grid.php:413, ../includes/Elements/Pricing_Table.php:466, ../includes/Elements/Pricing_Table.php:1444, ../includes/Elements/Simple_Menu.php:654, ../includes/Elements/Simple_Menu.php:703, ../includes/Elements/Woo_Product_Carousel.php:2387
1199
  msgid "Shadow"
1200
  msgstr ""
1201
 
@@ -1207,7 +1207,7 @@ msgstr ""
1207
  msgid "Close Icon"
1208
  msgstr ""
1209
 
1210
- #: ../includes/Elements/Betterdocs_Search_Form.php:285, ../includes/Elements/Caldera_Forms.php:1020, ../includes/Elements/Caldera_Forms.php:1334, ../includes/Elements/Contact_Form_7.php:1047, ../includes/Elements/Contact_Form_7.php:1360, ../includes/Elements/Content_Ticker.php:677, ../includes/Elements/Countdown.php:784, ../includes/Elements/Countdown.php:856, ../includes/Elements/Countdown.php:928, ../includes/Elements/Countdown.php:1000, ../includes/Elements/Creative_Button.php:420, ../includes/Elements/Cta_Box.php:809, ../includes/Elements/Cta_Box.php:978, ../includes/Elements/Event_Calendar.php:678, ../includes/Elements/Facebook_Feed.php:728, ../includes/Elements/Filterable_Gallery.php:2722, ../includes/Elements/FluentForm.php:1016, ../includes/Elements/FluentForm.php:1706, ../includes/Elements/Formstack.php:1570, ../includes/Elements/GravityForms.php:1057, ../includes/Elements/GravityForms.php:1290, ../includes/Elements/GravityForms.php:1486, ../includes/Elements/GravityForms.php:1915, ../includes/Elements/GravityForms.php:2137, ../includes/Elements/NinjaForms.php:1067, ../includes/Elements/NinjaForms.php:1483, ../includes/Elements/Pricing_Table.php:1995, ../includes/Elements/Product_Grid.php:776, ../includes/Elements/Product_Grid.php:916, ../includes/Elements/Product_Grid.php:1636, ../includes/Elements/Product_Grid.php:1921, ../includes/Elements/Product_Grid.php:2103, ../includes/Elements/Product_Grid.php:2312, ../includes/Elements/Product_Grid.php:2356, ../includes/Elements/Product_Grid.php:2551, ../includes/Elements/Product_Grid.php:2647, ../includes/Elements/Product_Grid.php:2759, ../includes/Elements/Simple_Menu.php:955, ../includes/Elements/Simple_Menu.php:1051, ../includes/Elements/Simple_Menu.php:1264, ../includes/Elements/Simple_Menu.php:1359, ../includes/Elements/Sticky_Video.php:579, ../includes/Elements/Twitter_Feed.php:642, ../includes/Elements/WeForms.php:464, ../includes/Elements/WeForms.php:764, ../includes/Elements/Woo_Checkout.php:778, ../includes/Elements/Woo_Checkout.php:985, ../includes/Elements/Woo_Checkout.php:1380, ../includes/Elements/Woo_Checkout.php:1576, ../includes/Elements/Woo_Checkout.php:1678, ../includes/Elements/Woo_Checkout.php:1795, ../includes/Elements/Woo_Checkout.php:1839, ../includes/Elements/Woo_Checkout.php:1883, ../includes/Elements/Woo_Checkout.php:2072, ../includes/Elements/Woo_Checkout.php:2088, ../includes/Elements/Woo_Checkout.php:2436, ../includes/Elements/Woo_Checkout.php:2548, ../includes/Elements/Woo_Product_Carousel.php:981, ../includes/Elements/Woo_Product_Carousel.php:1357, ../includes/Elements/Woo_Product_Carousel.php:1481, ../includes/Elements/Woo_Product_Carousel.php:1649, ../includes/Elements/Woo_Product_Carousel.php:1744, ../includes/Elements/Woo_Product_Carousel.php:1858, ../includes/Elements/Woo_Product_Carousel.php:2303, ../includes/Elements/Woo_Product_Carousel.php:2730, ../includes/Elements/Woo_Product_Gallery.php:648, ../includes/Elements/Woo_Product_Gallery.php:1122, ../includes/Elements/Woo_Product_Gallery.php:1364, ../includes/Elements/Woo_Product_Gallery.php:1402, ../includes/Elements/Woo_Product_Gallery.php:1889, ../includes/Elements/Woo_Product_Gallery.php:1985, ../includes/Elements/Woo_Product_Gallery.php:2097, ../includes/Elements/WpForms.php:1021, ../includes/Elements/WpForms.php:1339, ../includes/Traits/Controls.php:1503, ../includes/Traits/Woo_Product_Comparable.php:1723
1211
  msgid "Border Color"
1212
  msgstr ""
1213
 
@@ -1247,11 +1247,11 @@ msgstr ""
1247
  msgid "Labels"
1248
  msgstr ""
1249
 
1250
- #: ../includes/Elements/Caldera_Forms.php:180, ../includes/Elements/Caldera_Forms.php:1412, ../includes/Elements/Contact_Form_7.php:220, ../includes/Elements/Contact_Form_7.php:1381, ../includes/Elements/FluentForm.php:221, ../includes/Elements/FluentForm.php:2148, ../includes/Elements/Formstack.php:262, ../includes/Elements/Formstack.php:1903, ../includes/Elements/GravityForms.php:261, ../includes/Elements/GravityForms.php:2180, ../includes/Elements/NinjaForms.php:201, ../includes/Elements/NinjaForms.php:1614, ../includes/Elements/WpForms.php:205, ../includes/Elements/WpForms.php:1361
1251
  msgid "Errors"
1252
  msgstr ""
1253
 
1254
- #: ../includes/Elements/Caldera_Forms.php:187, ../includes/Elements/Caldera_Forms.php:1420, ../includes/Elements/Contact_Form_7.php:227, ../includes/Elements/Contact_Form_7.php:1389, ../includes/Elements/FluentForm.php:228, ../includes/Elements/FluentForm.php:2156, ../includes/Elements/Formstack.php:269, ../includes/Elements/Formstack.php:1911, ../includes/Elements/GravityForms.php:268, ../includes/Elements/GravityForms.php:2188, ../includes/Elements/Login_Register.php:923, ../includes/Elements/NinjaForms.php:208, ../includes/Elements/NinjaForms.php:1622, ../includes/Elements/WpForms.php:212
1255
  msgid "Error Messages"
1256
  msgstr ""
1257
 
@@ -1275,7 +1275,7 @@ msgstr ""
1275
  msgid "Form Alignment"
1276
  msgstr ""
1277
 
1278
- #: ../includes/Elements/Caldera_Forms.php:411, ../includes/Elements/Contact_Form_7.php:327, ../includes/Elements/Contact_Form_7.php:828, ../includes/Elements/Creative_Button.php:227, ../includes/Elements/Cta_Box.php:641, ../includes/Elements/Cta_Box.php:858, ../includes/Elements/Dual_Color_Header.php:81, ../includes/Elements/Flip_Box.php:872, ../includes/Elements/FluentForm.php:458, ../includes/Elements/Formstack.php:330, ../includes/Elements/GravityForms.php:343, ../includes/Elements/Login_Register.php:460, ../includes/Elements/Login_Register.php:566, ../includes/Elements/Login_Register.php:1129, ../includes/Elements/Login_Register.php:1492, ../includes/Elements/Login_Register.php:1618, ../includes/Elements/Login_Register.php:1875, ../includes/Elements/Login_Register.php:2019, ../includes/Elements/Login_Register.php:2169, ../includes/Elements/Login_Register.php:2312, ../includes/Elements/Login_Register.php:2403, ../includes/Elements/Login_Register.php:2501, ../includes/Elements/Login_Register.php:2703, ../includes/Elements/Login_Register.php:2748, ../includes/Elements/Login_Register.php:2780, ../includes/Elements/Login_Register.php:3014, ../includes/Elements/Login_Register.php:3176, ../includes/Elements/Login_Register.php:3475, ../includes/Elements/NinjaForms.php:278, ../includes/Elements/Post_Grid.php:254, ../includes/Elements/Pricing_Table.php:86, ../includes/Elements/Pricing_Table.php:462, ../includes/Elements/Product_Grid.php:250, ../includes/Elements/Simple_Menu.php:356, ../includes/Elements/Simple_Menu.php:482, ../includes/Elements/Simple_Menu.php:842, ../includes/Elements/Simple_Menu.php:1153, ../includes/Elements/Team_Member.php:376, ../includes/Elements/Testimonial.php:253, ../includes/Elements/Testimonial.php:310, ../includes/Elements/TypeForm.php:196, ../includes/Elements/WeForms.php:161, ../includes/Elements/WeForms.php:631, ../includes/Elements/Woo_Checkout.php:122, ../includes/Elements/WpForms.php:267, ../includes/Traits/Controls.php:556, ../includes/Traits/Controls.php:1573, ../includes/Traits/Login_Registration.php:581, ../includes/Traits/Woo_Product_Comparable.php:419, ../includes/Traits/Woo_Product_Comparable.php:533, ../includes/Traits/Woo_Product_Comparable.php:624, ../includes/Traits/Woo_Product_Comparable.php:693, ../includes/Template/Betterdocs-Category-Box/Layout_Default.php:4, ../includes/Template/Betterdocs-Category-Grid/Layout_Default.php:4, ../includes/Template/Content-Ticker/default.php:3, ../includes/Template/Eicon-Woocommerce/default.php:3, ../includes/Template/Post-Grid/default.php:5, ../includes/Template/Post-Timeline/default.php:3, ../includes/Template/Woo-Product-Gallery/default.php:3
1279
  msgid "Default"
1280
  msgstr ""
1281
 
@@ -1291,35 +1291,35 @@ msgstr ""
1291
  msgid "Form Padding"
1292
  msgstr ""
1293
 
1294
- #: ../includes/Elements/Caldera_Forms.php:549, ../includes/Elements/Contact_Form_7.php:533, ../includes/Elements/FluentForm.php:596, ../includes/Elements/Formstack.php:823, ../includes/Elements/GravityForms.php:617, ../includes/Elements/NinjaForms.php:591, ../includes/Elements/WpForms.php:560
1295
  msgid "Input & Textarea"
1296
  msgstr ""
1297
 
1298
- #: ../includes/Elements/Caldera_Forms.php:640, ../includes/Elements/Contact_Form_7.php:610, ../includes/Elements/FluentForm.php:689, ../includes/Elements/Formstack.php:888, ../includes/Elements/GravityForms.php:734, ../includes/Elements/NinjaForms.php:682, ../includes/Elements/WpForms.php:651
1299
  msgid "Text Indent"
1300
  msgstr ""
1301
 
1302
- #: ../includes/Elements/Caldera_Forms.php:665, ../includes/Elements/Contact_Form_7.php:634, ../includes/Elements/FluentForm.php:714, ../includes/Elements/Formstack.php:913, ../includes/Elements/GravityForms.php:758, ../includes/Elements/NinjaForms.php:707, ../includes/Elements/WeForms.php:309, ../includes/Elements/WpForms.php:676
1303
  msgid "Input Width"
1304
  msgstr ""
1305
 
1306
- #: ../includes/Elements/Caldera_Forms.php:684, ../includes/Elements/Contact_Form_7.php:653, ../includes/Elements/FluentForm.php:733, ../includes/Elements/Formstack.php:932, ../includes/Elements/GravityForms.php:777, ../includes/Elements/NinjaForms.php:727, ../includes/Elements/Woo_Checkout.php:2037, ../includes/Elements/WpForms.php:695
1307
  msgid "Input Height"
1308
  msgstr ""
1309
 
1310
- #: ../includes/Elements/Caldera_Forms.php:703, ../includes/Elements/Contact_Form_7.php:672, ../includes/Elements/FluentForm.php:752, ../includes/Elements/Formstack.php:951, ../includes/Elements/GravityForms.php:796, ../includes/Elements/NinjaForms.php:746, ../includes/Elements/WeForms.php:336, ../includes/Elements/WpForms.php:714
1311
  msgid "Textarea Width"
1312
  msgstr ""
1313
 
1314
- #: ../includes/Elements/Caldera_Forms.php:722, ../includes/Elements/Contact_Form_7.php:691, ../includes/Elements/FluentForm.php:771, ../includes/Elements/Formstack.php:970, ../includes/Elements/GravityForms.php:815, ../includes/Elements/NinjaForms.php:765, ../includes/Elements/WpForms.php:733
1315
  msgid "Textarea Height"
1316
  msgstr ""
1317
 
1318
- #: ../includes/Elements/Caldera_Forms.php:793, ../includes/Elements/Contact_Form_7.php:756, ../includes/Elements/FluentForm.php:842, ../includes/Elements/Formstack.php:1041, ../includes/Elements/GravityForms.php:879, ../includes/Elements/Login_Register.php:2657, ../includes/Elements/NinjaForms.php:837, ../includes/Elements/WpForms.php:806
1319
  msgid "Focus"
1320
  msgstr ""
1321
 
1322
- #: ../includes/Elements/Caldera_Forms.php:842, ../includes/Elements/Formstack.php:577, ../includes/Elements/GravityForms.php:928, ../includes/Elements/NinjaForms.php:886, ../includes/Elements/WpForms.php:843
1323
  msgid "Field Description"
1324
  msgstr ""
1325
 
@@ -1327,35 +1327,35 @@ msgstr ""
1327
  msgid "Radio & Checkbox"
1328
  msgstr ""
1329
 
1330
- #: ../includes/Elements/Caldera_Forms.php:934, ../includes/Elements/Contact_Form_7.php:961, ../includes/Elements/FluentForm.php:930, ../includes/Elements/Formstack.php:1126, ../includes/Elements/GravityForms.php:1204, ../includes/Elements/GravityForms.php:1400, ../includes/Elements/NinjaForms.php:981, ../includes/Elements/WpForms.php:935
1331
  msgid "Custom Styles"
1332
  msgstr ""
1333
 
1334
- #: ../includes/Elements/Caldera_Forms.php:998, ../includes/Elements/Contact_Form_7.php:1025, ../includes/Elements/Feature_List.php:616, ../includes/Elements/FluentForm.php:994, ../includes/Elements/GravityForms.php:1268, ../includes/Elements/GravityForms.php:1464, ../includes/Elements/NinjaForms.php:1045, ../includes/Elements/Sticky_Video.php:567, ../includes/Elements/WpForms.php:999
1335
  msgid "Border Width"
1336
  msgstr ""
1337
 
1338
- #: ../includes/Elements/Caldera_Forms.php:1035, ../includes/Elements/Contact_Form_7.php:1062, ../includes/Elements/FluentForm.php:1031, ../includes/Elements/Formstack.php:1191, ../includes/Elements/GravityForms.php:1196, ../includes/Elements/GravityForms.php:1305, ../includes/Elements/Login_Register.php:3028, ../includes/Elements/NinjaForms.php:1082, ../includes/Elements/WpForms.php:1036
1339
  msgid "Checkbox"
1340
  msgstr ""
1341
 
1342
- #: ../includes/Elements/Caldera_Forms.php:1061, ../includes/Elements/Contact_Form_7.php:1088, ../includes/Elements/FluentForm.php:1057, ../includes/Elements/Formstack.php:1217, ../includes/Elements/GravityForms.php:1501, ../includes/Elements/NinjaForms.php:1109, ../includes/Elements/WpForms.php:1062
1343
  msgid "Radio Buttons"
1344
  msgstr ""
1345
 
1346
- #: ../includes/Elements/Caldera_Forms.php:1089, ../includes/Elements/Contact_Form_7.php:1116, ../includes/Elements/FluentForm.php:1085, ../includes/Elements/Formstack.php:1245, ../includes/Elements/GravityForms.php:1357, ../includes/Elements/GravityForms.php:1553, ../includes/Elements/NinjaForms.php:1138, ../includes/Elements/WpForms.php:1090
1347
  msgid "Checked"
1348
  msgstr ""
1349
 
1350
- #: ../includes/Elements/Caldera_Forms.php:1124, ../includes/Elements/Contact_Form_7.php:1150, ../includes/Elements/FluentForm.php:1474, ../includes/Elements/Formstack.php:1360, ../includes/Elements/GravityForms.php:1709, ../includes/Elements/NinjaForms.php:1286, ../includes/Elements/WpForms.php:1125
1351
  msgid "Submit Button"
1352
  msgstr ""
1353
 
1354
- #: ../includes/Elements/Caldera_Forms.php:1163, ../includes/Elements/Contact_Form_7.php:1189, ../includes/Elements/FluentForm.php:1513, ../includes/Elements/Formstack.php:1399, ../includes/Elements/GravityForms.php:1751, ../includes/Elements/NinjaForms.php:1327, ../includes/Elements/Simple_Menu.php:211, ../includes/Elements/WpForms.php:1167
1355
  msgid "Full Width"
1356
  msgstr ""
1357
 
1358
- #: ../includes/Elements/Caldera_Forms.php:1263, ../includes/Elements/Contact_Form_7.php:1288, ../includes/Elements/FluentForm.php:1614, ../includes/Elements/Formstack.php:1334, ../includes/Elements/Formstack.php:1499, ../includes/Elements/GravityForms.php:1860, ../includes/Elements/GravityForms.php:2085, ../includes/Elements/NinjaForms.php:1431, ../includes/Elements/WpForms.php:1267
1359
  msgid "Margin Top"
1360
  msgstr ""
1361
 
@@ -1407,7 +1407,7 @@ msgstr ""
1407
  msgid "Form Description"
1408
  msgstr ""
1409
 
1410
- #: ../includes/Elements/Contact_Form_7.php:247, ../includes/Elements/Formstack.php:282, ../includes/Elements/GravityForms.php:288, ../includes/Elements/GravityForms.php:2214, ../includes/Elements/NinjaForms.php:228, ../includes/Elements/NinjaForms.php:1648
1411
  msgid "Validation Errors"
1412
  msgstr ""
1413
 
@@ -1415,7 +1415,7 @@ msgstr ""
1415
  msgid "<strong>Contact Form 7</strong> is not installed/activated on your site. Please install and activate <strong>Contact Form 7</strong> first."
1416
  msgstr ""
1417
 
1418
- #: ../includes/Elements/Contact_Form_7.php:313, ../includes/Elements/Contact_Form_7.php:1607, ../includes/Elements/Cta_Box.php:727, ../includes/Elements/Cta_Box.php:797, ../includes/Elements/Cta_Box.php:917, ../includes/Elements/Cta_Box.php:969, ../includes/Elements/Dual_Color_Header.php:813, ../includes/Elements/Dual_Color_Header.php:893, ../includes/Elements/Event_Calendar.php:666, ../includes/Elements/Event_Calendar.php:798, ../includes/Elements/Event_Calendar.php:865, ../includes/Elements/Event_Calendar.php:919, ../includes/Elements/Event_Calendar.php:1031, ../includes/Elements/Event_Calendar.php:1123, ../includes/Elements/Event_Calendar.php:1221, ../includes/Elements/Event_Calendar.php:1587, ../includes/Elements/Event_Calendar.php:1696, ../includes/Elements/Facebook_Feed.php:488, ../includes/Elements/Facebook_Feed.php:501, ../includes/Elements/Facebook_Feed.php:576, ../includes/Elements/Facebook_Feed.php:589, ../includes/Elements/Facebook_Feed.php:674, ../includes/Elements/Facebook_Feed.php:687, ../includes/Elements/Facebook_Feed.php:758, ../includes/Elements/Facebook_Feed.php:796, ../includes/Elements/Facebook_Feed.php:836, ../includes/Elements/Fancy_Text.php:365, ../includes/Elements/Filterable_Gallery.php:2060, ../includes/Elements/Filterable_Gallery.php:2281, ../includes/Elements/Flip_Box.php:1373, ../includes/Elements/Flip_Box.php:1433, ../includes/Elements/FluentForm.php:1905, ../includes/Elements/FluentForm.php:1930, ../includes/Elements/FluentForm.php:1995, ../includes/Elements/FluentForm.php:2058, ../includes/Elements/Formstack.php:638, ../includes/Elements/Formstack.php:1713, ../includes/Elements/Formstack.php:1738, ../includes/Elements/Formstack.php:1802, ../includes/Elements/Formstack.php:1867, ../includes/Elements/Formstack.php:1922, ../includes/Elements/Formstack.php:2005, ../includes/Elements/Post_Grid.php:372, ../includes/Elements/Pricing_Table.php:1914, ../includes/Elements/Pricing_Table.php:1983, ../includes/Elements/Product_Grid.php:1529, ../includes/Elements/Product_Grid.php:1544, ../includes/Elements/Product_Grid.php:1604, ../includes/Elements/Product_Grid.php:1618, ../includes/Elements/Product_Grid.php:2903, ../includes/Elements/Product_Grid.php:2960, ../includes/Elements/Progress_Bar.php:345, ../includes/Elements/Team_Member.php:746, ../includes/Elements/Team_Member.php:823, ../includes/Elements/Twitter_Feed.php:402, ../includes/Elements/Twitter_Feed.php:654, ../includes/Elements/Woo_Checkout.php:1773, ../includes/Elements/Woo_Checkout.php:1817, ../includes/Elements/Woo_Checkout.php:1861, ../includes/Elements/Woo_Product_Carousel.php:1998, ../includes/Elements/Woo_Product_Carousel.php:2055, ../includes/Elements/Woo_Product_Gallery.php:1027, ../includes/Elements/Woo_Product_Gallery.php:1040, ../includes/Elements/Woo_Product_Gallery.php:1094, ../includes/Elements/Woo_Product_Gallery.php:1106, ../includes/Elements/Woo_Product_Gallery.php:1152, ../includes/Elements/Woo_Product_Gallery.php:1319, ../includes/Elements/Woo_Product_Gallery.php:1353, ../includes/Elements/Woo_Product_Gallery.php:1391, ../includes/Elements/Woo_Product_Gallery.php:2241, ../includes/Elements/Woo_Product_Gallery.php:2298, ../includes/Traits/Controls.php:1245, ../includes/Traits/Controls.php:1299, ../includes/Traits/Woo_Product_Comparable.php:1383, ../includes/Traits/Woo_Product_Comparable.php:1662, ../includes/Traits/Woo_Product_Comparable.php:1711
1419
  msgid "Background"
1420
  msgstr ""
1421
 
@@ -1463,7 +1463,7 @@ msgstr ""
1463
  msgid "After Submit Feedback"
1464
  msgstr ""
1465
 
1466
- #: ../includes/Elements/Contact_Form_7.php:1629, ../includes/Elements/Dual_Color_Header.php:801, ../includes/Elements/Dual_Color_Header.php:881, ../includes/Elements/Flip_Box.php:871, ../includes/Elements/Info_Box.php:586, ../includes/Elements/Info_Box.php:641, ../includes/Elements/Info_Box.php:809, ../includes/Elements/Info_Box.php:889, ../includes/Elements/Info_Box.php:1027, ../includes/Elements/Info_Box.php:1123, ../includes/Elements/Post_Grid.php:344, ../includes/Elements/Product_Grid.php:1484, ../includes/Elements/Woo_Product_Gallery.php:986, ../includes/Elements/Woo_Product_Gallery.php:1230, ../includes/Elements/Woo_Product_Gallery.php:1292, ../includes/Traits/Woo_Product_Comparable.php:1628
1467
  msgid "Radius"
1468
  msgstr ""
1469
 
@@ -1507,11 +1507,11 @@ msgstr ""
1507
  msgid "Sets transition effect"
1508
  msgstr ""
1509
 
1510
- #: ../includes/Elements/Content_Ticker.php:163, ../includes/Elements/Pricing_Table.php:421, ../includes/Elements/Woo_Product_Carousel.php:441
1511
  msgid "Slide"
1512
  msgstr ""
1513
 
1514
- #: ../includes/Elements/Content_Ticker.php:164, ../includes/Elements/Fancy_Text.php:201, ../includes/Elements/Pricing_Table.php:418, ../includes/Elements/Simple_Menu.php:593
1515
  msgid "Fade"
1516
  msgstr ""
1517
 
@@ -1695,11 +1695,11 @@ msgstr ""
1695
  msgid "Separator Style"
1696
  msgstr ""
1697
 
1698
- #: ../includes/Elements/Countdown.php:296, ../includes/Elements/Feature_List.php:431, ../includes/Elements/GravityForms.php:1017, ../includes/Elements/Sticky_Video.php:553, ../includes/Extensions/Table_of_Content.php:1079
1699
  msgid "Solid"
1700
  msgstr ""
1701
 
1702
- #: ../includes/Elements/Countdown.php:297, ../includes/Elements/Feature_List.php:433, ../includes/Elements/GravityForms.php:1019, ../includes/Elements/Sticky_Video.php:555, ../includes/Extensions/Table_of_Content.php:1081
1703
  msgid "Dotted"
1704
  msgstr ""
1705
 
@@ -1775,7 +1775,7 @@ msgstr ""
1775
  msgid "Space Below Container"
1776
  msgstr ""
1777
 
1778
- #: ../includes/Elements/Countdown.php:648, ../includes/Elements/Dual_Color_Header.php:441, ../includes/Elements/Facebook_Feed.php:864, ../includes/Elements/Flip_Box.php:1161, ../includes/Elements/Image_Accordion.php:479, ../includes/Elements/Info_Box.php:1335, ../includes/Elements/Product_Grid.php:1157, ../includes/Elements/Team_Member.php:537, ../includes/Elements/Twitter_Feed.php:679, ../includes/Elements/Woo_Product_Carousel.php:1066, ../includes/Elements/Woo_Product_Gallery.php:733
1779
  msgid "Color &amp; Typography"
1780
  msgstr ""
1781
 
@@ -1803,11 +1803,11 @@ msgstr ""
1803
  msgid "Expire Message"
1804
  msgstr ""
1805
 
1806
- #: ../includes/Elements/Countdown.php:1052, ../includes/Elements/Cta_Box.php:510, ../includes/Elements/Dual_Color_Header.php:449, ../includes/Elements/Flip_Box.php:1177, ../includes/Elements/Flip_Box.php:1245, ../includes/Elements/Info_Box.php:1349, ../includes/Elements/Post_Grid.php:603, ../includes/Elements/Post_Timeline.php:331, ../includes/Elements/Pricing_Table.php:875, ../includes/Elements/Twitter_Feed.php:687
1807
  msgid "Title Style"
1808
  msgstr ""
1809
 
1810
- #: ../includes/Elements/Countdown.php:1061, ../includes/Elements/Event_Calendar.php:1406, ../includes/Elements/FluentForm.php:1859, ../includes/Elements/Formstack.php:1633, ../includes/Elements/Info_Box.php:1459, ../includes/Elements/Post_Grid.php:612, ../includes/Elements/Post_Timeline.php:340, ../includes/Elements/Product_Grid.php:2443, ../includes/Elements/Product_Grid.php:2798, ../includes/Elements/Progress_Bar.php:690, ../includes/Elements/Twitter_Feed.php:591, ../includes/Elements/Woo_Checkout.php:2155, ../includes/Elements/Woo_Checkout.php:2255, ../includes/Elements/Woo_Product_Carousel.php:1529, ../includes/Elements/Woo_Product_Carousel.php:1895, ../includes/Elements/Woo_Product_Gallery.php:1782, ../includes/Elements/Woo_Product_Gallery.php:2136, ../includes/Traits/Woo_Product_Comparable.php:1018, ../includes/Traits/Woo_Product_Comparable.php:1249
1811
  msgid "Title Color"
1812
  msgstr ""
1813
 
@@ -1815,11 +1815,11 @@ msgstr ""
1815
  msgid "Button Content"
1816
  msgstr ""
1817
 
1818
- #: ../includes/Elements/Creative_Button.php:87, ../includes/Elements/Info_Box.php:413
1819
  msgid "Enter button text"
1820
  msgstr ""
1821
 
1822
- #: ../includes/Elements/Creative_Button.php:88, ../includes/Elements/Info_Box.php:414
1823
  msgid "Enter button text here"
1824
  msgstr ""
1825
 
@@ -1835,11 +1835,11 @@ msgstr ""
1835
  msgid "Enter button secondary text here"
1836
  msgstr ""
1837
 
1838
- #: ../includes/Elements/Creative_Button.php:110, ../includes/Elements/Info_Box.php:424
1839
  msgid "Link URL"
1840
  msgstr ""
1841
 
1842
- #: ../includes/Elements/Creative_Button.php:160, ../includes/Elements/Filterable_Gallery.php:2596, ../includes/Elements/Info_Box.php:472, ../includes/Elements/Pricing_Table.php:552
1843
  msgid "Icon Spacing"
1844
  msgstr ""
1845
 
@@ -1915,7 +1915,7 @@ msgstr ""
1915
  msgid "Use Gradient Background"
1916
  msgstr ""
1917
 
1918
- #: ../includes/Elements/Creative_Button.php:527, ../includes/Elements/Info_Box.php:1204
1919
  msgid "Button Padding"
1920
  msgstr ""
1921
 
@@ -1955,7 +1955,7 @@ msgstr ""
1955
  msgid "Background Overlay"
1956
  msgstr ""
1957
 
1958
- #: ../includes/Elements/Cta_Box.php:167, ../includes/Elements/Pricing_Table.php:153
1959
  msgid "Sub Title"
1960
  msgstr ""
1961
 
@@ -2039,15 +2039,15 @@ msgstr ""
2039
  msgid "Secondary Button Style"
2040
  msgstr ""
2041
 
2042
- #: ../includes/Elements/Cta_Box.php:1011, ../includes/Elements/Data_Table.php:1050, ../includes/Elements/Dual_Color_Header.php:386, ../includes/Elements/Feature_List.php:107, ../includes/Elements/Flip_Box.php:915, ../includes/Elements/Flip_Box.php:934, ../includes/Elements/Flip_Box.php:1047, ../includes/Elements/Info_Box.php:927
2043
  msgid "Icon Style"
2044
  msgstr ""
2045
 
2046
- #: ../includes/Elements/Cta_Box.php:1022, ../includes/Elements/Pricing_Table.php:1329, ../includes/Elements/Twitter_Feed.php:901
2047
  msgid "Font Size"
2048
  msgstr ""
2049
 
2050
- #: ../includes/Elements/Data_Table.php:75, ../includes/Elements/Event_Calendar.php:1245, ../includes/Elements/Pricing_Table.php:867, ../includes/Traits/Woo_Product_Comparable.php:1088
2051
  msgid "Header"
2052
  msgstr ""
2053
 
@@ -2131,7 +2131,7 @@ msgstr ""
2131
  msgid "Cell Text"
2132
  msgstr ""
2133
 
2134
- #: ../includes/Elements/Data_Table.php:396, ../includes/Elements/Event_Calendar.php:158, ../includes/Elements/Feature_List.php:201, ../includes/Elements/Filterable_Gallery.php:303, ../includes/Elements/Flip_Box.php:634, ../includes/Elements/Flip_Box.php:659, ../includes/Elements/Sticky_Video.php:158, ../includes/Elements/Sticky_Video.php:173, ../includes/Elements/Sticky_Video.php:188, ../includes/Elements/Sticky_Video.php:233, ../includes/Elements/Team_Member.php:180
2135
  msgid "Link"
2136
  msgstr ""
2137
 
@@ -2175,7 +2175,7 @@ msgstr ""
2175
  msgid "Background Color (Even Row)"
2176
  msgstr ""
2177
 
2178
- #: ../includes/Elements/Data_Table.php:1022, ../includes/Elements/Filterable_Gallery.php:1294, ../includes/Elements/Filterable_Gallery.php:1677, ../includes/Elements/Flip_Box.php:364, ../includes/Elements/Flip_Box.php:593, ../includes/Elements/Info_Box.php:301, ../includes/Elements/Pricing_Table.php:810, ../includes/Elements/Tooltip.php:372
2179
  msgid "Content Alignment"
2180
  msgstr ""
2181
 
@@ -2531,7 +2531,7 @@ msgstr ""
2531
  msgid "Date Icon"
2532
  msgstr ""
2533
 
2534
- #: ../includes/Elements/Event_Calendar.php:1503, ../includes/Elements/Info_Box.php:1471, ../includes/Elements/Product_Grid.php:2516, ../includes/Elements/Product_Grid.php:2809, ../includes/Elements/Twitter_Feed.php:601, ../includes/Elements/Woo_Product_Carousel.php:1601, ../includes/Elements/Woo_Product_Carousel.php:1905, ../includes/Elements/Woo_Product_Gallery.php:1854, ../includes/Elements/Woo_Product_Gallery.php:2147
2535
  msgid "Content Color"
2536
  msgstr ""
2537
 
@@ -2555,7 +2555,7 @@ msgstr ""
2555
  msgid "Tomorrow"
2556
  msgstr ""
2557
 
2558
- #: ../includes/Elements/Event_Calendar.php:1961
2559
  msgid "No Title"
2560
  msgstr ""
2561
 
@@ -2807,7 +2807,7 @@ msgstr ""
2807
  msgid "Fancy Text Settings"
2808
  msgstr ""
2809
 
2810
- #: ../includes/Elements/Fancy_Text.php:139, ../includes/Elements/Pricing_Table.php:631
2811
  msgid "Style 1"
2812
  msgstr ""
2813
 
@@ -2819,7 +2819,7 @@ msgstr ""
2819
  msgid "Style Type"
2820
  msgstr ""
2821
 
2822
- #: ../includes/Elements/Fancy_Text.php:159, ../includes/Elements/Pricing_Table.php:110, ../includes/Elements/Team_Member.php:297
2823
  msgid "Only available in pro version!"
2824
  msgstr ""
2825
 
@@ -2855,7 +2855,7 @@ msgstr ""
2855
  msgid "Bounce"
2856
  msgstr ""
2857
 
2858
- #: ../includes/Elements/Fancy_Text.php:208, ../includes/Elements/Pricing_Table.php:420
2859
  msgid "Swing"
2860
  msgstr ""
2861
 
@@ -2951,11 +2951,11 @@ msgstr ""
2951
  msgid "Icon Shape"
2952
  msgstr ""
2953
 
2954
- #: ../includes/Elements/Feature_List.php:275, ../includes/Elements/Flip_Box.php:870, ../includes/Elements/Info_Box.php:585, ../includes/Elements/Info_Box.php:640, ../includes/Elements/Info_Box.php:808, ../includes/Elements/Info_Box.php:888, ../includes/Elements/Info_Box.php:1026, ../includes/Elements/Info_Box.php:1122, ../includes/Elements/Progress_Bar.php:86
2955
  msgid "Circle"
2956
  msgstr ""
2957
 
2958
- #: ../includes/Elements/Feature_List.php:276, ../includes/Elements/Info_Box.php:584, ../includes/Elements/Info_Box.php:639, ../includes/Elements/Info_Box.php:810, ../includes/Elements/Info_Box.php:890, ../includes/Elements/Info_Box.php:1028, ../includes/Elements/Info_Box.php:1124
2959
  msgid "Square"
2960
  msgstr ""
2961
 
@@ -2971,7 +2971,7 @@ msgstr ""
2971
  msgid "Framed"
2972
  msgstr ""
2973
 
2974
- #: ../includes/Elements/Feature_List.php:307, ../includes/Elements/Flip_Box.php:334, ../includes/Elements/Flip_Box.php:563, ../includes/Elements/Image_Accordion.php:132, ../includes/Elements/Info_Box.php:132, ../includes/Elements/Login_Register.php:749, ../includes/Elements/Pricing_Table.php:377, ../includes/Elements/Tooltip.php:290, ../includes/Elements/Twitter_Feed.php:365, ../includes/Extensions/Reading_Progress.php:115, ../includes/Traits/Controls.php:1697
2975
  msgid "Top"
2976
  msgstr ""
2977
 
@@ -3003,7 +3003,7 @@ msgstr ""
3003
  msgid "Connector Styles"
3004
  msgstr ""
3005
 
3006
- #: ../includes/Elements/Feature_List.php:432, ../includes/Elements/GravityForms.php:1020, ../includes/Elements/Sticky_Video.php:556, ../includes/Extensions/Table_of_Content.php:1080
3007
  msgid "Dashed"
3008
  msgstr ""
3009
 
@@ -3023,7 +3023,7 @@ msgstr ""
3023
  msgid "Title Bottom Space"
3024
  msgstr ""
3025
 
3026
- #: ../includes/Elements/Filterable_Gallery.php:94, ../includes/Elements/Flip_Box.php:77, ../includes/Elements/Pricing_Table.php:78, ../includes/Traits/Core.php:44, ../includes/templates/admin/elements.php:591, ../includes/templates/admin/elements.php:573, ../includes/templates/admin/elements.php:570, ../includes/templates/admin/extensions.php:85
3027
  msgid "Settings"
3028
  msgstr ""
3029
 
@@ -3119,11 +3119,11 @@ msgstr ""
3119
  msgid "All label icon"
3120
  msgstr ""
3121
 
3122
- #: ../includes/Elements/Filterable_Gallery.php:364, ../includes/Elements/Info_Box.php:232
3123
  msgid "Select Title Tag"
3124
  msgstr ""
3125
 
3126
- #: ../includes/Elements/Filterable_Gallery.php:392, ../includes/Elements/Pricing_Table.php:303
3127
  msgid "List Item"
3128
  msgstr ""
3129
 
@@ -3251,7 +3251,7 @@ msgstr ""
3251
  msgid "Extra Large"
3252
  msgstr ""
3253
 
3254
- #: ../includes/Elements/Filterable_Gallery.php:736, ../includes/Elements/Filterable_Gallery.php:2642, ../includes/Elements/Flip_Box.php:696, ../includes/Elements/Pricing_Table.php:523
3255
  msgid "Button Icon"
3256
  msgstr ""
3257
 
@@ -3391,114 +3391,114 @@ msgstr ""
3391
  msgid "3D Depth"
3392
  msgstr ""
3393
 
3394
- #: ../includes/Elements/Flip_Box.php:166, ../includes/Elements/Flip_Box.php:925, ../includes/Elements/Flip_Box.php:1168
3395
  msgid "Front"
3396
  msgstr ""
3397
 
3398
- #: ../includes/Elements/Flip_Box.php:214, ../includes/Elements/Flip_Box.php:443
3399
  msgid "Flipbox Image"
3400
  msgstr ""
3401
 
3402
- #: ../includes/Elements/Flip_Box.php:244, ../includes/Elements/Flip_Box.php:473, ../includes/Elements/Info_Box.php:657
3403
  msgid "Image Resizer"
3404
  msgstr ""
3405
 
3406
- #: ../includes/Elements/Flip_Box.php:278, ../includes/Elements/Flip_Box.php:284
3407
  msgid "Front Title"
3408
  msgstr ""
3409
 
3410
- #: ../includes/Elements/Flip_Box.php:294
3411
  msgid "Select Front Title Tag"
3412
  msgstr ""
3413
 
3414
- #: ../includes/Elements/Flip_Box.php:317
3415
  msgid "Front Content"
3416
  msgstr ""
3417
 
3418
- #: ../includes/Elements/Flip_Box.php:320
3419
  msgid "This is front side content."
3420
  msgstr ""
3421
 
3422
- #: ../includes/Elements/Flip_Box.php:330, ../includes/Elements/Flip_Box.php:559
3423
  msgid "Vertical Position"
3424
  msgstr ""
3425
 
3426
- #: ../includes/Elements/Flip_Box.php:338, ../includes/Elements/Flip_Box.php:567, ../includes/Elements/Info_Box.php:136, ../includes/Elements/Twitter_Feed.php:369
3427
  msgid "Middle"
3428
  msgstr ""
3429
 
3430
- #: ../includes/Elements/Flip_Box.php:342, ../includes/Elements/Flip_Box.php:571, ../includes/Elements/Image_Accordion.php:140, ../includes/Elements/Info_Box.php:140, ../includes/Elements/Pricing_Table.php:385, ../includes/Elements/Tooltip.php:291, ../includes/Elements/Twitter_Feed.php:373, ../includes/Extensions/Reading_Progress.php:116, ../includes/Traits/Controls.php:1701
3431
  msgid "Bottom"
3432
  msgstr ""
3433
 
3434
- #: ../includes/Elements/Flip_Box.php:394, ../includes/Elements/Flip_Box.php:1038, ../includes/Elements/Flip_Box.php:1236
3435
  msgid "Back"
3436
  msgstr ""
3437
 
3438
- #: ../includes/Elements/Flip_Box.php:507, ../includes/Elements/Flip_Box.php:513
3439
  msgid "Back Title"
3440
  msgstr ""
3441
 
3442
- #: ../includes/Elements/Flip_Box.php:523
3443
  msgid "Select Back Title Tag"
3444
  msgstr ""
3445
 
3446
- #: ../includes/Elements/Flip_Box.php:546
3447
  msgid "Back Content"
3448
  msgstr ""
3449
 
3450
- #: ../includes/Elements/Flip_Box.php:549
3451
  msgid "This is back side content."
3452
  msgstr ""
3453
 
3454
- #: ../includes/Elements/Flip_Box.php:644
3455
  msgid "Link Type"
3456
  msgstr ""
3457
 
3458
- #: ../includes/Elements/Flip_Box.php:686
3459
  msgid "Get Started"
3460
  msgstr ""
3461
 
3462
- #: ../includes/Elements/Flip_Box.php:758
3463
  msgid "Filp Box Style"
3464
  msgstr ""
3465
 
3466
- #: ../includes/Elements/Flip_Box.php:766, ../includes/Elements/Flip_Box.php:775
3467
  msgid "Front Background Color"
3468
  msgstr ""
3469
 
3470
- #: ../includes/Elements/Flip_Box.php:784, ../includes/Elements/Flip_Box.php:794
3471
  msgid "Back Background Color"
3472
  msgstr ""
3473
 
3474
- #: ../includes/Elements/Flip_Box.php:804, ../includes/Elements/Team_Member.php:400
3475
  msgid "Content Padding"
3476
  msgstr ""
3477
 
3478
- #: ../includes/Elements/Flip_Box.php:818
3479
  msgid "Border Style"
3480
  msgstr ""
3481
 
3482
- #: ../includes/Elements/Flip_Box.php:854, ../includes/Elements/Info_Box.php:526
3483
  msgid "Image Style"
3484
  msgstr ""
3485
 
3486
- #: ../includes/Elements/Flip_Box.php:865
3487
  msgid "Image Type"
3488
  msgstr ""
3489
 
3490
- #: ../includes/Elements/Flip_Box.php:1316
3491
  msgid "Button Style"
3492
  msgstr ""
3493
 
3494
- #: ../includes/Elements/FluentForm.php:30, ../includes/Elements/FluentForm.php:129, ../includes/Elements/FluentForm.php:138
3495
- msgid "Fluent Form"
3496
- msgstr ""
3497
-
3498
  #: ../includes/Elements/FluentForm.php:85
3499
  msgid "Select a Fluent Form"
3500
  msgstr ""
3501
 
 
 
 
 
3502
  #: ../includes/Elements/FluentForm.php:115
3503
  msgid "<strong>Fluent Form</strong> is not installed/activated on your site. Please install and activate <a href=\"plugin-install.php?s=fluentform&tab=search&type=term\" target=\"_blank\">Fluent Form</a> first."
3504
  msgstr ""
@@ -3599,79 +3599,83 @@ msgstr ""
3599
  msgid "<strong>Gravity Forms</strong> is not installed/activated on your site. Please install and activate <strong>Gravity Forms</strong> first."
3600
  msgstr ""
3601
 
3602
- #: ../includes/Elements/GravityForms.php:703
 
 
 
 
3603
  msgid "Spacing Right"
3604
  msgstr ""
3605
 
3606
- #: ../includes/Elements/GravityForms.php:981
3607
  msgid "Section Field"
3608
  msgstr ""
3609
 
3610
- #: ../includes/Elements/GravityForms.php:1012, ../includes/Elements/Pricing_Table.php:773, ../includes/Elements/Pricing_Table.php:1527, ../includes/Elements/Sticky_Video.php:548
3611
  msgid "Border Type"
3612
  msgstr ""
3613
 
3614
- #: ../includes/Elements/GravityForms.php:1018, ../includes/Elements/Sticky_Video.php:554
3615
  msgid "Double"
3616
  msgstr ""
3617
 
3618
- #: ../includes/Elements/GravityForms.php:1032
3619
  msgid "Border Height"
3620
  msgstr ""
3621
 
3622
- #: ../includes/Elements/GravityForms.php:1091, ../includes/Elements/Pricing_Table.php:195, ../includes/Elements/Pricing_Table.php:202, ../includes/Elements/Product_Grid.php:143, ../includes/Elements/Product_Grid.php:2456, ../includes/Elements/Woo_Checkout.php:220, ../includes/Elements/Woo_Product_Carousel.php:124, ../includes/Elements/Woo_Product_Carousel.php:1541, ../includes/Elements/Woo_Product_Gallery.php:113, ../includes/Elements/Woo_Product_Gallery.php:1794, ../includes/Traits/Woo_Product_Comparable.php:42, ../includes/Traits/Woo_Product_Comparable.php:79
3623
  msgid "Price"
3624
  msgstr ""
3625
 
3626
- #: ../includes/Elements/GravityForms.php:1099
3627
  msgid "Price Label Color"
3628
  msgstr ""
3629
 
3630
- #: ../includes/Elements/GravityForms.php:1111, ../includes/Elements/Product_Grid.php:1201, ../includes/Elements/Product_Grid.php:2474, ../includes/Elements/Woo_Product_Carousel.php:1559, ../includes/Elements/Woo_Product_Gallery.php:777, ../includes/Elements/Woo_Product_Gallery.php:1812
3631
  msgid "Price Color"
3632
  msgstr ""
3633
 
3634
- #: ../includes/Elements/GravityForms.php:1129
3635
  msgid "Total Price"
3636
  msgstr ""
3637
 
3638
- #: ../includes/Elements/GravityForms.php:1392
3639
  msgid "Radio"
3640
  msgstr ""
3641
 
3642
- #: ../includes/Elements/GravityForms.php:1589
3643
  msgid "Scrolling Text"
3644
  msgstr ""
3645
 
3646
- #: ../includes/Elements/GravityForms.php:1959
3647
  msgid "Next/Previous Button"
3648
  msgstr ""
3649
 
3650
- #: ../includes/Elements/GravityForms.php:2226, ../includes/Elements/NinjaForms.php:1660
3651
  msgid "Error Description Color"
3652
  msgstr ""
3653
 
3654
- #: ../includes/Elements/GravityForms.php:2241
3655
  msgid "Error Border Color"
3656
  msgstr ""
3657
 
3658
- #: ../includes/Elements/GravityForms.php:2257
3659
  msgid "Error Field Background Color"
3660
  msgstr ""
3661
 
3662
- #: ../includes/Elements/GravityForms.php:2272
3663
  msgid "Error Field Label Color"
3664
  msgstr ""
3665
 
3666
- #: ../includes/Elements/GravityForms.php:2287, ../includes/Elements/NinjaForms.php:1675, ../includes/Elements/WpForms.php:1387
3667
  msgid "Error Field Input Border Color"
3668
  msgstr ""
3669
 
3670
- #: ../includes/Elements/GravityForms.php:2302, ../includes/Elements/WpForms.php:1402
3671
  msgid "Error Field Input Border Width"
3672
  msgstr ""
3673
 
3674
- #: ../includes/Elements/GravityForms.php:2326
3675
  msgid "Thank You Message"
3676
  msgstr ""
3677
 
@@ -3743,7 +3747,7 @@ msgstr ""
3743
  msgid "Thumbnail"
3744
  msgstr ""
3745
 
3746
- #: ../includes/Elements/Info_Box.php:72, ../includes/Elements/Info_Box.php:161
3747
  msgid "Infobox Image"
3748
  msgstr ""
3749
 
@@ -3767,91 +3771,91 @@ msgstr ""
3767
  msgid "Image or Icon"
3768
  msgstr ""
3769
 
3770
- #: ../includes/Elements/Info_Box.php:103, ../includes/Elements/Info_Box.php:197, ../includes/Extensions/Table_of_Content.php:481
3771
  msgid "Number"
3772
  msgstr ""
3773
 
3774
- #: ../includes/Elements/Info_Box.php:214, ../includes/Elements/Info_Box.php:275
3775
  msgid "Infobox Content"
3776
  msgstr ""
3777
 
3778
- #: ../includes/Elements/Info_Box.php:220
3779
  msgid "Infobox Title"
3780
  msgstr ""
3781
 
3782
- #: ../includes/Elements/Info_Box.php:226
3783
  msgid "This is an icon box"
3784
  msgstr ""
3785
 
3786
- #: ../includes/Elements/Info_Box.php:281
3787
  msgid "Write a short description, that will describe the title or something informational and useful."
3788
  msgstr ""
3789
 
3790
- #: ../includes/Elements/Info_Box.php:290
3791
  msgid "Show Content"
3792
  msgstr ""
3793
 
3794
- #: ../includes/Elements/Info_Box.php:329, ../includes/Elements/Post_Grid.php:745
3795
  msgid "Content Height"
3796
  msgstr ""
3797
 
3798
- #: ../includes/Elements/Info_Box.php:359
3799
  msgid "Show Infobox Button"
3800
  msgstr ""
3801
 
3802
- #: ../includes/Elements/Info_Box.php:372
3803
  msgid "Infobox Clickable"
3804
  msgstr ""
3805
 
3806
- #: ../includes/Elements/Info_Box.php:387
3807
  msgid "Infobox Link"
3808
  msgstr ""
3809
 
3810
- #: ../includes/Elements/Info_Box.php:428
3811
  msgid "Enter link URL for the button"
3812
  msgstr ""
3813
 
3814
- #: ../includes/Elements/Info_Box.php:433
3815
  msgid "Enter heading for the button"
3816
  msgstr ""
3817
 
3818
- #: ../includes/Elements/Info_Box.php:579, ../includes/Elements/Info_Box.php:634
3819
  msgid "Image Shape"
3820
  msgstr ""
3821
 
3822
- #: ../includes/Elements/Info_Box.php:617, ../includes/Elements/Info_Box.php:845, ../includes/Elements/Info_Box.php:1078, ../includes/Elements/Post_Grid.php:932, ../includes/Elements/Simple_Menu.php:590
3823
  msgid "Animation"
3824
  msgstr ""
3825
 
3826
- #: ../includes/Elements/Info_Box.php:710
3827
  msgid "Number Icon Style"
3828
  msgstr ""
3829
 
3830
- #: ../includes/Elements/Info_Box.php:729, ../includes/Elements/Info_Box.php:961
3831
  msgid "Icon Background Size"
3832
  msgstr ""
3833
 
3834
- #: ../includes/Elements/Info_Box.php:802, ../includes/Elements/Info_Box.php:882, ../includes/Elements/Info_Box.php:1020, ../includes/Elements/Info_Box.php:1116
3835
  msgid "Background Shape"
3836
  msgstr ""
3837
 
3838
- #: ../includes/Elements/Info_Box.php:1161
3839
  msgid "Button Styles"
3840
  msgstr ""
3841
 
3842
- #: ../includes/Elements/Info_Box.php:1397
3843
  msgid "Content Only Margin"
3844
  msgstr ""
3845
 
3846
- #: ../includes/Elements/Info_Box.php:1409
3847
  msgid "Content Only Background"
3848
  msgstr ""
3849
 
3850
- #: ../includes/Elements/Info_Box.php:1421
3851
  msgid "Content Only Padding"
3852
  msgstr ""
3853
 
3854
- #: ../includes/Elements/Info_Box.php:1484
3855
  msgid "Transition will applied to ms (ex: 300ms)."
3856
  msgstr ""
3857
 
@@ -4762,7 +4766,7 @@ msgstr ""
4762
  msgid "Theme"
4763
  msgstr ""
4764
 
4765
- #: ../includes/Elements/Login_Register.php:3434, ../includes/Elements/Pricing_Table.php:464
4766
  msgid "Light"
4767
  msgstr ""
4768
 
@@ -5042,279 +5046,283 @@ msgstr ""
5042
  msgid "<p class=\"no-posts-found\">No layout found!</p>"
5043
  msgstr ""
5044
 
5045
- #: ../includes/Elements/Pricing_Table.php:87
5046
  msgid "Pricing Style 2"
5047
  msgstr ""
5048
 
5049
- #: ../includes/Elements/Pricing_Table.php:88
5050
  msgid "Pricing Style 3 (Pro)"
5051
  msgstr ""
5052
 
5053
- #: ../includes/Elements/Pricing_Table.php:89
5054
  msgid "Pricing Style 4 (Pro)"
5055
  msgstr ""
5056
 
5057
- #: ../includes/Elements/Pricing_Table.php:90
5058
  msgid "Pricing Style 5 (Pro)"
5059
  msgstr ""
5060
 
5061
- #: ../includes/Elements/Pricing_Table.php:99
5062
  msgid "Pricing Style"
5063
  msgstr ""
5064
 
5065
- #: ../includes/Elements/Pricing_Table.php:126, ../includes/Elements/Pricing_Table.php:314, ../includes/Extensions/Table_of_Content.php:475
5066
  msgid "List Icon"
5067
  msgstr ""
5068
 
5069
- #: ../includes/Elements/Pricing_Table.php:142
5070
  msgid "Startup"
5071
  msgstr ""
5072
 
5073
- #: ../includes/Elements/Pricing_Table.php:159
5074
  msgid "A tagline here."
5075
  msgstr ""
5076
 
5077
- #: ../includes/Elements/Pricing_Table.php:208
5078
  msgid "99"
5079
  msgstr ""
5080
 
5081
- #: ../includes/Elements/Pricing_Table.php:214
5082
  msgid "On Sale?"
5083
  msgstr ""
5084
 
5085
- #: ../includes/Elements/Pricing_Table.php:225, ../includes/Elements/Pricing_Table.php:1099
5086
  msgid "Sale Price"
5087
  msgstr ""
5088
 
5089
- #: ../includes/Elements/Pricing_Table.php:231
5090
  msgid "89"
5091
  msgstr ""
5092
 
5093
- #: ../includes/Elements/Pricing_Table.php:240
5094
  msgid "Price Currency"
5095
  msgstr ""
5096
 
5097
- #: ../includes/Elements/Pricing_Table.php:244
5098
  msgid "$"
5099
  msgstr ""
5100
 
5101
- #: ../includes/Elements/Pricing_Table.php:251
5102
  msgid "Currency Placement"
5103
  msgstr ""
5104
 
5105
- #: ../includes/Elements/Pricing_Table.php:267
5106
  msgid "Price Period (per)"
5107
  msgstr ""
5108
 
5109
- #: ../includes/Elements/Pricing_Table.php:271
5110
  msgid "month"
5111
  msgstr ""
5112
 
5113
- #: ../includes/Elements/Pricing_Table.php:278
5114
  msgid "Period Separator"
5115
  msgstr ""
5116
 
5117
- #: ../includes/Elements/Pricing_Table.php:282
5118
  msgid "/"
5119
  msgstr ""
5120
 
5121
- #: ../includes/Elements/Pricing_Table.php:294
5122
  msgid "Feature"
5123
  msgstr ""
5124
 
5125
- #: ../includes/Elements/Pricing_Table.php:307
5126
  msgid "Pricing table list item"
5127
  msgstr ""
5128
 
5129
- #: ../includes/Elements/Pricing_Table.php:327
5130
  msgid "Item Active?"
5131
  msgstr ""
5132
 
5133
- #: ../includes/Elements/Pricing_Table.php:346
5134
  msgid "Enable Tooltip?"
5135
  msgstr ""
5136
 
5137
- #: ../includes/Elements/Pricing_Table.php:356
5138
  msgid "Tooltip Content"
5139
  msgstr ""
5140
 
5141
- #: ../includes/Elements/Pricing_Table.php:359
5142
  msgid "I'm a awesome tooltip!!"
5143
  msgstr ""
5144
 
5145
- #: ../includes/Elements/Pricing_Table.php:369
5146
  msgid "Tooltip Side"
5147
  msgstr ""
5148
 
5149
- #: ../includes/Elements/Pricing_Table.php:399
5150
  msgid "Tooltip Trigger"
5151
  msgstr ""
5152
 
5153
- #: ../includes/Elements/Pricing_Table.php:403
5154
  msgid "Click"
5155
  msgstr ""
5156
 
5157
- #: ../includes/Elements/Pricing_Table.php:415
5158
  msgid "Tooltip Animation"
5159
  msgstr ""
5160
 
5161
- #: ../includes/Elements/Pricing_Table.php:419
5162
  msgid "Grow"
5163
  msgstr ""
5164
 
5165
- #: ../includes/Elements/Pricing_Table.php:422
5166
  msgid "Fall"
5167
  msgstr ""
5168
 
5169
- #: ../includes/Elements/Pricing_Table.php:434, ../includes/Elements/Progress_Bar.php:219
5170
  msgid "Animation Duration"
5171
  msgstr ""
5172
 
5173
- #: ../includes/Elements/Pricing_Table.php:446, ../includes/Elements/Pricing_Table.php:1557
5174
  msgid "Tooltip Arrow"
5175
  msgstr ""
5176
 
5177
- #: ../includes/Elements/Pricing_Table.php:459
5178
  msgid "Tooltip Theme"
5179
  msgstr ""
5180
 
5181
- #: ../includes/Elements/Pricing_Table.php:463
5182
  msgid "Noir"
5183
  msgstr ""
5184
 
5185
- #: ../includes/Elements/Pricing_Table.php:465
5186
  msgid "Punk"
5187
  msgstr ""
5188
 
5189
- #: ../includes/Elements/Pricing_Table.php:467
5190
  msgid "Borderless"
5191
  msgstr ""
5192
 
5193
- #: ../includes/Elements/Pricing_Table.php:508
5194
  msgid "Display Button"
5195
  msgstr ""
5196
 
5197
- #: ../includes/Elements/Pricing_Table.php:577
5198
  msgid "Choose Plan"
5199
  msgstr ""
5200
 
5201
- #: ../includes/Elements/Pricing_Table.php:587, ../includes/Elements/Tooltip.php:245
5202
  msgid "Button Link"
5203
  msgstr ""
5204
 
5205
- #: ../includes/Elements/Pricing_Table.php:610, ../includes/Elements/Pricing_Table.php:1272
5206
  msgid "Ribbon"
5207
  msgstr ""
5208
 
5209
- #: ../includes/Elements/Pricing_Table.php:617
5210
  msgid "Featured?"
5211
  msgstr ""
5212
 
5213
- #: ../includes/Elements/Pricing_Table.php:627
5214
  msgid "Ribbon Style"
5215
  msgstr ""
5216
 
5217
- #: ../includes/Elements/Pricing_Table.php:632
5218
  msgid "Style 2"
5219
  msgstr ""
5220
 
5221
- #: ../includes/Elements/Pricing_Table.php:633
5222
  msgid "Style 3"
5223
  msgstr ""
5224
 
5225
- #: ../includes/Elements/Pricing_Table.php:634
5226
  msgid "Style 4"
5227
  msgstr ""
5228
 
5229
- #: ../includes/Elements/Pricing_Table.php:648
5230
  msgid "Featured Tag Text"
5231
  msgstr ""
5232
 
5233
- #: ../includes/Elements/Pricing_Table.php:652
5234
  msgid "Featured"
5235
  msgstr ""
5236
 
5237
- #: ../includes/Elements/Pricing_Table.php:671
5238
  msgid "Ribbon Alignment"
5239
  msgstr ""
5240
 
5241
- #: ../includes/Elements/Pricing_Table.php:728
5242
  msgid "Pricing Table Style"
5243
  msgstr ""
5244
 
5245
- #: ../includes/Elements/Pricing_Table.php:912, ../includes/Elements/Pricing_Table.php:1280
5246
  msgid "Line Color"
5247
  msgstr ""
5248
 
5249
- #: ../includes/Elements/Pricing_Table.php:935
5250
  msgid "Subtitle Style"
5251
  msgstr ""
5252
 
5253
- #: ../includes/Elements/Pricing_Table.php:1021
5254
  msgid "Pricing"
5255
  msgstr ""
5256
 
5257
- #: ../includes/Elements/Pricing_Table.php:1029
5258
  msgid "Original Price"
5259
  msgstr ""
5260
 
5261
- #: ../includes/Elements/Pricing_Table.php:1058
5262
  msgid "Original Price Currency"
5263
  msgstr ""
5264
 
5265
- #: ../includes/Elements/Pricing_Table.php:1128
5266
  msgid "Sale Price Currency"
5267
  msgstr ""
5268
 
5269
- #: ../includes/Elements/Pricing_Table.php:1168
5270
  msgid "Pricing Period"
5271
  msgstr ""
5272
 
5273
- #: ../includes/Elements/Pricing_Table.php:1224
5274
  msgid "Disable item color"
5275
  msgstr ""
5276
 
5277
- #: ../includes/Elements/Pricing_Table.php:1301, ../includes/Extensions/Table_of_Content.php:741
 
 
 
 
5278
  msgid "Line Height"
5279
  msgstr ""
5280
 
5281
- #: ../includes/Elements/Pricing_Table.php:1483
5282
  msgid "Arrow Background"
5283
  msgstr ""
5284
 
5285
- #: ../includes/Elements/Pricing_Table.php:1516
5286
  msgid "Refresh your browser after saving the padding value for see changes."
5287
  msgstr ""
5288
 
5289
- #: ../includes/Elements/Pricing_Table.php:1566, ../includes/Elements/Tooltip.php:659
5290
  msgid "Arrow Size"
5291
  msgstr ""
5292
 
5293
- #: ../includes/Elements/Pricing_Table.php:1611
5294
  msgid "Icon Settings"
5295
  msgstr ""
5296
 
5297
- #: ../includes/Elements/Pricing_Table.php:1622
5298
  msgid "Show Background"
5299
  msgstr ""
5300
 
5301
- #: ../includes/Elements/Pricing_Table.php:1655
5302
  msgid "Background Hover Color"
5303
  msgstr ""
5304
 
5305
- #: ../includes/Elements/Pricing_Table.php:1691
5306
  msgid "Icon Area Width"
5307
  msgstr ""
5308
 
5309
- #: ../includes/Elements/Pricing_Table.php:1716
5310
  msgid "Icon Area Height"
5311
  msgstr ""
5312
 
5313
- #: ../includes/Elements/Pricing_Table.php:1747, ../includes/Elements/Team_Member.php:796
5314
  msgid "Icon Hover Color"
5315
  msgstr ""
5316
 
5317
- #: ../includes/Elements/Pricing_Table.php:1871
5318
  msgid "Button Gradient Background"
5319
  msgstr ""
5320
 
@@ -7758,23 +7766,23 @@ msgstr ""
7758
  msgid "Post ID is missing"
7759
  msgstr ""
7760
 
7761
- #: ../includes/Traits/Facebook_Feed.php:41, ../includes/Traits/Helper.php:57, ../includes/Traits/Helper.php:940, ../includes/Traits/Login_Registration.php:62, ../includes/Traits/Login_Registration.php:227, ../includes/Traits/Woo_Product_Comparable.php:2133
7762
  msgid "Widget ID is missing"
7763
  msgstr ""
7764
 
7765
- #: ../includes/Traits/Helper.php:29, ../includes/Traits/Helper.php:912, ../includes/Traits/Login_Registration.php:79, ../includes/Traits/Login_Registration.php:200
7766
  msgid "Insecure form submitted without security token"
7767
  msgstr ""
7768
 
7769
- #: ../includes/Traits/Helper.php:37, ../includes/Traits/Helper.php:920, ../includes/Traits/Login_Registration.php:92, ../includes/Traits/Login_Registration.php:210, ../includes/Traits/Woo_Product_Comparable.php:2170
7770
  msgid "Security token did not match"
7771
  msgstr ""
7772
 
7773
- #: ../includes/Traits/Helper.php:47, ../includes/Traits/Helper.php:930, ../includes/Traits/Login_Registration.php:55, ../includes/Traits/Login_Registration.php:222, ../includes/Traits/Woo_Product_Comparable.php:2128
7774
  msgid "Page ID is missing"
7775
  msgstr ""
7776
 
7777
- #: ../includes/Traits/Helper.php:67, ../includes/Traits/Helper.php:949
7778
  msgid "Widget settings are not found. Did you save the widget before using load more??"
7779
  msgstr ""
7780
 
@@ -7786,39 +7794,39 @@ msgstr ""
7786
  msgid "%s ago"
7787
  msgstr ""
7788
 
7789
- #: ../includes/Traits/Helper.php:786
7790
  msgid "1,000+ Stunning Templates"
7791
  msgstr ""
7792
 
7793
- #: ../includes/Traits/Helper.php:787
7794
  msgid "Supports Elementor & Gutenberg"
7795
  msgstr ""
7796
 
7797
- #: ../includes/Traits/Helper.php:788
7798
  msgid "Powering up 17,000+ Websites"
7799
  msgstr ""
7800
 
7801
- #: ../includes/Traits/Helper.php:789
7802
  msgid "Cloud Collaboration with Team"
7803
  msgstr ""
7804
 
7805
- #: ../includes/Traits/Helper.php:798
7806
  msgid "Don’t Show This Again"
7807
  msgstr ""
7808
 
7809
- #: ../includes/Traits/Helper.php:810, ../includes/templates/admin/general.php:19, ../includes/templates/admin/general.php:121
7810
  msgid "Activate Templately"
7811
  msgstr ""
7812
 
7813
- #: ../includes/Traits/Helper.php:807
7814
  msgid "Activated Templately"
7815
  msgstr ""
7816
 
7817
- #: ../includes/Traits/Helper.php:804, ../includes/templates/admin/general.php:17, ../includes/templates/admin/general.php:119
7818
  msgid "Install Templately"
7819
  msgstr ""
7820
 
7821
- #: ../includes/Traits/Helper.php:813
7822
  msgid "Submit"
7823
  msgstr ""
7824
 
@@ -8290,11 +8298,11 @@ msgstr ""
8290
  msgid "Stock <br/> Out"
8291
  msgstr ""
8292
 
8293
- #: ../includes/Template/Eicon-Woocommerce/default.php:454
8294
  msgid "Stock "
8295
  msgstr ""
8296
 
8297
- #: ../includes/Template/Eicon-Woocommerce/default.php:454
8298
  msgid "Out"
8299
  msgstr ""
8300
 
13
  "X-Poedit-SourceCharset: UTF-8\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
 
16
+ #: ../includes/Classes/Helper.php:205, ../includes/Elements/Adv_Accordion.php:325, ../includes/Elements/Adv_Tabs.php:298, ../includes/Elements/Contact_Form_7.php:270, ../includes/Elements/Content_Ticker.php:306, ../includes/Elements/Countdown.php:467, ../includes/Elements/Creative_Button.php:188, ../includes/Elements/Cta_Box.php:346, ../includes/Elements/Data_Table.php:482, ../includes/Elements/Dual_Color_Header.php:214, ../includes/Elements/Fancy_Text.php:269, ../includes/Elements/Filterable_Gallery.php:796, ../includes/Elements/Flip_Box.php:733, ../includes/Elements/Info_Box.php:493, ../includes/Elements/Login_Register.php:1038, ../includes/Elements/Pricing_Table.php:698, ../includes/Elements/Progress_Bar.php:271, ../includes/Elements/Team_Member.php:237, ../includes/Elements/Testimonial.php:214, ../includes/Elements/Tooltip.php:513, ../includes/Elements/Twitter_Feed.php:308, ../includes/Elements/WeForms.php:110
17
  msgid "Go Premium for More Features"
18
  msgstr ""
19
 
20
+ #: ../includes/Classes/Helper.php:212, ../includes/Elements/Adv_Accordion.php:332, ../includes/Elements/Adv_Tabs.php:305, ../includes/Elements/Contact_Form_7.php:277, ../includes/Elements/Content_Ticker.php:313, ../includes/Elements/Countdown.php:474, ../includes/Elements/Creative_Button.php:195, ../includes/Elements/Cta_Box.php:353, ../includes/Elements/Data_Table.php:489, ../includes/Elements/Dual_Color_Header.php:221, ../includes/Elements/Fancy_Text.php:276, ../includes/Elements/Filterable_Gallery.php:803, ../includes/Elements/Flip_Box.php:740, ../includes/Elements/Info_Box.php:500, ../includes/Elements/Login_Register.php:1045, ../includes/Elements/Pricing_Table.php:705, ../includes/Elements/Progress_Bar.php:278, ../includes/Elements/Team_Member.php:244, ../includes/Elements/Testimonial.php:221, ../includes/Elements/Tooltip.php:520, ../includes/Elements/Twitter_Feed.php:315, ../includes/Elements/WeForms.php:117
21
  msgid "Unlock more possibilities"
22
  msgstr ""
23
 
61
  msgid "Install Now!"
62
  msgstr ""
63
 
64
+ #: ../includes/Classes/WPDeveloper_Plugin_Installer.php:151, ../includes/Classes/WPDeveloper_Plugin_Installer.php:169, ../includes/Classes/WPDeveloper_Plugin_Installer.php:187, ../includes/Classes/WPDeveloper_Setup_Wizard.php:481, ../includes/Classes/WPDeveloper_Setup_Wizard.php:507, ../includes/Traits/Admin.php:165, ../includes/Traits/Helper.php:833, ../includes/Traits/Library.php:157
65
  msgid "you are not allowed to do this action"
66
  msgstr ""
67
 
126
  " option."
127
  msgstr ""
128
 
129
+ #: ../includes/Classes/WPDeveloper_Setup_Wizard.php:215, ../includes/Elements/Caldera_Forms.php:1164, ../includes/Elements/Contact_Form_7.php:1190, ../includes/Elements/Content_Ticker.php:92, ../includes/Elements/FluentForm.php:1514, ../includes/Elements/Formstack.php:1400, ../includes/Elements/GravityForms.php:1795, ../includes/Elements/Login_Register.php:301, ../includes/Elements/Login_Register.php:461, ../includes/Elements/Login_Register.php:567, ../includes/Elements/Login_Register.php:876, ../includes/Elements/Login_Register.php:1319, ../includes/Elements/Login_Register.php:1425, ../includes/Elements/Login_Register.php:1493, ../includes/Elements/Login_Register.php:1619, ../includes/Elements/Login_Register.php:1876, ../includes/Elements/Login_Register.php:2020, ../includes/Elements/Login_Register.php:2170, ../includes/Elements/Login_Register.php:2313, ../includes/Elements/Login_Register.php:2404, ../includes/Elements/Login_Register.php:2502, ../includes/Elements/Login_Register.php:2704, ../includes/Elements/Login_Register.php:2749, ../includes/Elements/Login_Register.php:2781, ../includes/Elements/Login_Register.php:3015, ../includes/Elements/Login_Register.php:3177, ../includes/Elements/Login_Register.php:3476, ../includes/Elements/NinjaForms.php:1328, ../includes/Elements/WpForms.php:1168, ../includes/Traits/Woo_Product_Comparable.php:420, ../includes/Traits/Woo_Product_Comparable.php:534, ../includes/Traits/Woo_Product_Comparable.php:625, ../includes/Traits/Woo_Product_Comparable.php:694
130
  msgid "Custom"
131
  msgstr ""
132
 
263
  msgid "Dual Color Heading"
264
  msgstr ""
265
 
266
+ #: ../includes/Classes/WPDeveloper_Setup_Wizard.php:583, ../includes/Elements/Pricing_Table.php:1485, ../includes/Elements/Tooltip.php:25, ../includes/templates/admin/elements.php:45
267
  msgid "Tooltip"
268
  msgstr ""
269
 
275
  msgid "Advanced Tabs"
276
  msgstr ""
277
 
278
+ #: ../includes/Classes/WPDeveloper_Setup_Wizard.php:598, ../includes/Elements/Feature_List.php:28, ../includes/Elements/Pricing_Table.php:1205, ../includes/templates/admin/elements.php:63
279
  msgid "Feature List"
280
  msgstr ""
281
 
347
  msgid "Call To Action"
348
  msgstr ""
349
 
350
+ #: ../includes/Classes/WPDeveloper_Setup_Wizard.php:687, ../includes/Elements/Pricing_Table.php:33, ../includes/templates/admin/elements.php:336
351
  msgid "Pricing Table"
352
  msgstr ""
353
 
387
  msgid "WPForms"
388
  msgstr ""
389
 
390
+ #: ../includes/Classes/WPDeveloper_Setup_Wizard.php:733, ../includes/Elements/FluentForm.php:30, ../includes/templates/admin/elements.php:390
391
+ msgid "Fluent Forms"
392
  msgstr ""
393
 
394
  #: ../includes/Classes/WPDeveloper_Setup_Wizard.php:737, ../includes/Elements/Formstack.php:28, ../includes/Elements/Formstack.php:169, ../includes/templates/admin/elements.php:396
511
  msgid "Sort"
512
  msgstr ""
513
 
514
+ #: ../includes/Elements/Advanced_Data_Table.php:165, ../includes/Elements/Caldera_Forms.php:162, ../includes/Elements/Caldera_Forms.php:895, ../includes/Elements/Contact_Form_7.php:900, ../includes/Elements/Filterable_Gallery.php:2292, ../includes/Elements/FluentForm.php:203, ../includes/Elements/FluentForm.php:891, ../includes/Elements/Formstack.php:244, ../includes/Elements/Formstack.php:1090, ../includes/Elements/GravityForms.php:231, ../includes/Elements/GravityForms.php:1208, ../includes/Elements/Login_Register.php:1092, ../includes/Elements/NinjaForms.php:183, ../includes/Elements/NinjaForms.php:939, ../includes/Elements/WpForms.php:190, ../includes/Elements/WpForms.php:896
515
  msgid "Placeholder"
516
  msgstr ""
517
 
523
  msgid "Pagination Type"
524
  msgstr ""
525
 
526
+ #: ../includes/Elements/Advanced_Data_Table.php:193, ../includes/Elements/Advanced_Data_Table.php:1345, ../includes/Elements/Betterdocs_Category_Grid.php:1290, ../includes/Elements/Event_Calendar.php:759, ../includes/Elements/Flip_Box.php:657, ../includes/Elements/FluentForm.php:1965, ../includes/Elements/Formstack.php:1773, ../includes/Elements/Info_Box.php:350, ../includes/Elements/Pricing_Table.php:502, ../includes/Elements/Pricing_Table.php:1832, ../includes/Elements/Product_Grid.php:1832, ../includes/Elements/Woo_Checkout.php:1291, ../includes/Elements/Woo_Checkout.php:1589, ../includes/Elements/Woo_Checkout.php:2448, ../includes/Elements/Woo_Product_Carousel.php:1295, ../includes/Elements/Woo_Product_Gallery.php:1642, ../includes/Traits/Woo_Product_Comparable.php:1211, ../includes/Traits/Woo_Product_Comparable.php:1261
527
  msgid "Button"
528
  msgstr ""
529
 
571
  msgid "Table"
572
  msgstr ""
573
 
574
+ #: ../includes/Elements/Advanced_Data_Table.php:324, ../includes/Elements/Advanced_Data_Table.php:885, ../includes/Elements/Advanced_Data_Table.php:1080, ../includes/Elements/Betterdocs_Search_Form.php:311, ../includes/Elements/Caldera_Forms.php:1159, ../includes/Elements/Caldera_Forms.php:1173, ../includes/Elements/Contact_Form_7.php:1185, ../includes/Elements/Contact_Form_7.php:1199, ../includes/Elements/Creative_Button.php:467, ../includes/Elements/Data_Table.php:521, ../includes/Elements/Data_Table.php:1150, ../includes/Elements/Dual_Color_Header.php:749, ../includes/Elements/Dual_Color_Header.php:829, ../includes/Elements/Filterable_Gallery.php:2157, ../includes/Elements/Filterable_Gallery.php:2315, ../includes/Elements/FluentForm.php:1509, ../includes/Elements/FluentForm.php:1523, ../includes/Elements/Formstack.php:1395, ../includes/Elements/Formstack.php:1409, ../includes/Elements/GravityForms.php:1674, ../includes/Elements/GravityForms.php:1790, ../includes/Elements/GravityForms.php:1804, ../includes/Elements/GravityForms.php:2037, ../includes/Elements/Login_Register.php:1498, ../includes/Elements/Login_Register.php:2026, ../includes/Elements/NinjaForms.php:1323, ../includes/Elements/NinjaForms.php:1337, ../includes/Elements/Progress_Bar.php:356, ../includes/Elements/Sticky_Video.php:441, ../includes/Elements/Sticky_Video.php:525, ../includes/Elements/Twitter_Feed.php:804, ../includes/Elements/Woo_Product_Carousel.php:1303, ../includes/Elements/Woo_Product_Carousel.php:2133, ../includes/Elements/Woo_Product_Carousel.php:2336, ../includes/Elements/Woo_Product_Carousel.php:2416, ../includes/Elements/Woo_Product_Gallery.php:1163, ../includes/Elements/WpForms.php:1163, ../includes/Elements/WpForms.php:1177, ../includes/Extensions/Table_of_Content.php:431, ../includes/Traits/Woo_Product_Comparable.php:307, ../includes/Traits/Woo_Product_Comparable.php:969, ../includes/Traits/Woo_Product_Comparable.php:1118
575
  msgid "Width"
576
  msgstr ""
577
 
578
+ #: ../includes/Elements/Advanced_Data_Table.php:361, ../includes/Elements/Advanced_Data_Table.php:1029, ../includes/Elements/Advanced_Data_Table.php:1227, ../includes/Elements/Advanced_Data_Table.php:1299, ../includes/Elements/Advanced_Data_Table.php:1427, ../includes/Elements/Adv_Accordion.php:384, ../includes/Elements/Adv_Accordion.php:573, ../includes/Elements/Adv_Accordion.php:633, ../includes/Elements/Adv_Accordion.php:694, ../includes/Elements/Adv_Accordion.php:777, ../includes/Elements/Adv_Accordion.php:899, ../includes/Elements/Adv_Accordion.php:945, ../includes/Elements/Adv_Accordion.php:991, ../includes/Elements/Adv_Tabs.php:360, ../includes/Elements/Adv_Tabs.php:554, ../includes/Elements/Adv_Tabs.php:621, ../includes/Elements/Adv_Tabs.php:690, ../includes/Elements/Adv_Tabs.php:784, ../includes/Elements/Betterdocs_Category_Box.php:300, ../includes/Elements/Betterdocs_Category_Box.php:368, ../includes/Elements/Betterdocs_Category_Box.php:489, ../includes/Elements/Betterdocs_Category_Box.php:565, ../includes/Elements/Betterdocs_Category_Box.php:885, ../includes/Elements/Betterdocs_Category_Box.php:990, ../includes/Elements/Betterdocs_Category_Grid.php:341, ../includes/Elements/Betterdocs_Category_Grid.php:389, ../includes/Elements/Betterdocs_Category_Grid.php:474, ../includes/Elements/Betterdocs_Category_Grid.php:515, ../includes/Elements/Betterdocs_Category_Grid.php:640, ../includes/Elements/Betterdocs_Category_Grid.php:694, ../includes/Elements/Betterdocs_Category_Grid.php:844, ../includes/Elements/Betterdocs_Category_Grid.php:941, ../includes/Elements/Betterdocs_Category_Grid.php:1186, ../includes/Elements/Betterdocs_Category_Grid.php:1386, ../includes/Elements/Betterdocs_Category_Grid.php:1485, ../includes/Elements/Betterdocs_Search_Form.php:210, ../includes/Elements/Betterdocs_Search_Form.php:365, ../includes/Elements/Betterdocs_Search_Form.php:423, ../includes/Elements/Betterdocs_Search_Form.php:533, ../includes/Elements/Caldera_Forms.php:617, ../includes/Elements/Caldera_Forms.php:813, ../includes/Elements/Caldera_Forms.php:1229, ../includes/Elements/Caldera_Forms.php:1387, ../includes/Elements/Contact_Form_7.php:711, ../includes/Elements/Contact_Form_7.php:776, ../includes/Elements/Contact_Form_7.php:1255, ../includes/Elements/Contact_Form_7.php:1457, ../includes/Elements/Contact_Form_7.php:1551, ../includes/Elements/Contact_Form_7.php:1618, ../includes/Elements/Content_Ticker.php:622, ../includes/Elements/Countdown.php:619, ../includes/Elements/Cta_Box.php:463, ../includes/Elements/Cta_Box.php:740, ../includes/Elements/Cta_Box.php:927, ../includes/Elements/Data_Table.php:652, ../includes/Elements/Data_Table.php:691, ../includes/Elements/Data_Table.php:883, ../includes/Elements/Data_Table.php:1217, ../includes/Elements/Dual_Color_Header.php:347, ../includes/Elements/Event_Calendar.php:810, ../includes/Elements/Event_Calendar.php:877, ../includes/Elements/Event_Calendar.php:931, ../includes/Elements/Event_Calendar.php:1603, ../includes/Elements/Event_Calendar.php:1674, ../includes/Elements/Facebook_Feed.php:451, ../includes/Elements/Filterable_Gallery.php:872, ../includes/Elements/Filterable_Gallery.php:985, ../includes/Elements/Filterable_Gallery.php:1051, ../includes/Elements/Filterable_Gallery.php:1131, ../includes/Elements/Filterable_Gallery.php:1278, ../includes/Elements/Filterable_Gallery.php:1335, ../includes/Elements/Filterable_Gallery.php:1554, ../includes/Elements/Filterable_Gallery.php:1829, ../includes/Elements/Filterable_Gallery.php:1890, ../includes/Elements/Filterable_Gallery.php:2411, ../includes/Elements/Filterable_Gallery.php:2528, ../includes/Elements/Flip_Box.php:994, ../includes/Elements/Flip_Box.php:1107, ../includes/Elements/FluentForm.php:666, ../includes/Elements/FluentForm.php:862, ../includes/Elements/FluentForm.php:1580, ../includes/Elements/FluentForm.php:1878, ../includes/Elements/FluentForm.php:2005, ../includes/Elements/FluentForm.php:2123, ../includes/Elements/Formstack.php:865, ../includes/Elements/Formstack.php:1061, ../includes/Elements/Formstack.php:1465, ../includes/Elements/Formstack.php:1686, ../includes/Elements/Formstack.php:1815, ../includes/Elements/GravityForms.php:878, ../includes/Elements/GravityForms.php:942, ../includes/Elements/GravityForms.php:1698, ../includes/Elements/GravityForms.php:1867, ../includes/Elements/GravityForms.php:2094, ../includes/Elements/Image_Accordion.php:354, ../includes/Elements/Image_Accordion.php:464, ../includes/Elements/Info_Box.php:569, ../includes/Elements/Info_Box.php:624, ../includes/Elements/Info_Box.php:818, ../includes/Elements/Info_Box.php:898, ../includes/Elements/Info_Box.php:1051, ../includes/Elements/Info_Box.php:1132, ../includes/Elements/Login_Register.php:2778, ../includes/Elements/NinjaForms.php:659, ../includes/Elements/NinjaForms.php:857, ../includes/Elements/NinjaForms.php:1397, ../includes/Elements/Post_Grid.php:303, ../includes/Elements/Pricing_Table.php:1783, ../includes/Elements/Pricing_Table.php:1949, ../includes/Elements/Product_Grid.php:2275, ../includes/Elements/Simple_Menu.php:621, ../includes/Elements/Simple_Menu.php:694, ../includes/Elements/Team_Member.php:413, ../includes/Elements/Team_Member.php:501, ../includes/Elements/Testimonial.php:435, ../includes/Elements/Tooltip.php:439, ../includes/Elements/Tooltip.php:482, ../includes/Elements/Twitter_Feed.php:461, ../includes/Elements/Twitter_Feed.php:551, ../includes/Elements/Twitter_Feed.php:868, ../includes/Elements/Woo_Checkout.php:1511, ../includes/Elements/Woo_Checkout.php:1757, ../includes/Elements/Woo_Product_Carousel.php:2241, ../includes/Elements/Woo_Product_Carousel.php:2675, ../includes/Elements/WpForms.php:628, ../includes/Elements/WpForms.php:814, ../includes/Elements/WpForms.php:1233, ../includes/Extensions/Table_of_Content.php:545, ../includes/Traits/Controls.php:1258, ../includes/Traits/Controls.php:1312, ../includes/Traits/Controls.php:1442
579
  msgid "Border"
580
  msgstr ""
581
 
582
+ #: ../includes/Elements/Advanced_Data_Table.php:387, ../includes/Elements/Advanced_Data_Table.php:1055, ../includes/Elements/Advanced_Data_Table.php:1253, ../includes/Elements/Advanced_Data_Table.php:1325, ../includes/Elements/Advanced_Data_Table.php:1449, ../includes/Elements/Adv_Accordion.php:391, ../includes/Elements/Adv_Accordion.php:580, ../includes/Elements/Adv_Accordion.php:640, ../includes/Elements/Adv_Accordion.php:701, ../includes/Elements/Adv_Tabs.php:368, ../includes/Elements/Adv_Tabs.php:561, ../includes/Elements/Adv_Tabs.php:628, ../includes/Elements/Adv_Tabs.php:697, ../includes/Elements/Adv_Tabs.php:791, ../includes/Elements/Betterdocs_Category_Box.php:308, ../includes/Elements/Betterdocs_Category_Box.php:376, ../includes/Elements/Betterdocs_Category_Box.php:497, ../includes/Elements/Betterdocs_Category_Box.php:574, ../includes/Elements/Betterdocs_Category_Box.php:896, ../includes/Elements/Betterdocs_Category_Box.php:1001, ../includes/Elements/Betterdocs_Category_Grid.php:349, ../includes/Elements/Betterdocs_Category_Grid.php:397, ../includes/Elements/Betterdocs_Category_Grid.php:482, ../includes/Elements/Betterdocs_Category_Grid.php:523, ../includes/Elements/Betterdocs_Category_Grid.php:648, ../includes/Elements/Betterdocs_Category_Grid.php:702, ../includes/Elements/Betterdocs_Category_Grid.php:855, ../includes/Elements/Betterdocs_Category_Grid.php:952, ../includes/Elements/Betterdocs_Category_Grid.php:1394, ../includes/Elements/Betterdocs_Category_Grid.php:1493, ../includes/Elements/Betterdocs_Search_Form.php:197, ../includes/Elements/Caldera_Forms.php:480, ../includes/Elements/Caldera_Forms.php:628, ../includes/Elements/Caldera_Forms.php:1046, ../includes/Elements/Caldera_Forms.php:1072, ../includes/Elements/Caldera_Forms.php:1239, ../includes/Elements/Contact_Form_7.php:396, ../includes/Elements/Contact_Form_7.php:722, ../includes/Elements/Contact_Form_7.php:1073, ../includes/Elements/Contact_Form_7.php:1099, ../includes/Elements/Contact_Form_7.php:1264, ../includes/Elements/Content_Ticker.php:401, ../includes/Elements/Content_Ticker.php:475, ../includes/Elements/Content_Ticker.php:632, ../includes/Elements/Countdown.php:627, ../includes/Elements/Creative_Button.php:336, ../includes/Elements/Cta_Box.php:471, ../includes/Elements/Cta_Box.php:748, ../includes/Elements/Cta_Box.php:935, ../includes/Elements/Dual_Color_Header.php:355, ../includes/Elements/Event_Calendar.php:818, ../includes/Elements/Event_Calendar.php:885, ../includes/Elements/Event_Calendar.php:939, ../includes/Elements/Event_Calendar.php:1175, ../includes/Elements/Event_Calendar.php:1343, ../includes/Elements/Event_Calendar.php:1611, ../includes/Elements/Event_Calendar.php:1682, ../includes/Elements/Facebook_Feed.php:476, ../includes/Elements/Facebook_Feed.php:536, ../includes/Elements/Fancy_Text.php:515, ../includes/Elements/Feature_List.php:640, ../includes/Elements/Filterable_Gallery.php:880, ../includes/Elements/Filterable_Gallery.php:993, ../includes/Elements/Filterable_Gallery.php:1059, ../includes/Elements/Filterable_Gallery.php:1139, ../includes/Elements/Filterable_Gallery.php:1343, ../includes/Elements/Filterable_Gallery.php:1837, ../includes/Elements/Filterable_Gallery.php:1898, ../includes/Elements/Filterable_Gallery.php:2069, ../includes/Elements/Filterable_Gallery.php:2200, ../includes/Elements/Filterable_Gallery.php:2335, ../includes/Elements/Filterable_Gallery.php:2433, ../includes/Elements/Filterable_Gallery.php:2542, ../includes/Elements/Flip_Box.php:832, ../includes/Elements/Flip_Box.php:893, ../includes/Elements/Flip_Box.php:1017, ../includes/Elements/Flip_Box.php:1130, ../includes/Elements/Flip_Box.php:1391, ../includes/Elements/FluentForm.php:527, ../includes/Elements/FluentForm.php:677, ../includes/Elements/FluentForm.php:1042, ../includes/Elements/FluentForm.php:1068, ../includes/Elements/FluentForm.php:1590, ../includes/Elements/FluentForm.php:1889, ../includes/Elements/FluentForm.php:2013, ../includes/Elements/FluentForm.php:2067, ../includes/Elements/Formstack.php:399, ../includes/Elements/Formstack.php:876, ../includes/Elements/Formstack.php:1202, ../includes/Elements/Formstack.php:1228, ../includes/Elements/Formstack.php:1475, ../includes/Elements/Formstack.php:1697, ../includes/Elements/Formstack.php:1823, ../includes/Elements/Formstack.php:1879, ../includes/Elements/GravityForms.php:436, ../includes/Elements/GravityForms.php:889, ../includes/Elements/GravityForms.php:1359, ../includes/Elements/GravityForms.php:1555, ../includes/Elements/GravityForms.php:1708, ../includes/Elements/GravityForms.php:1877, ../includes/Elements/GravityForms.php:2104, ../includes/Elements/Image_Accordion.php:362, ../includes/Elements/Image_Accordion.php:452, ../includes/Elements/Info_Box.php:1214, ../includes/Elements/Login_Register.php:1579, ../includes/Elements/Login_Register.php:1814, ../includes/Elements/Login_Register.php:1988, ../includes/Elements/Login_Register.php:2144, ../includes/Elements/Login_Register.php:2284, ../includes/Elements/Login_Register.php:2378, ../includes/Elements/Login_Register.php:2469, ../includes/Elements/Login_Register.php:2643, ../includes/Elements/Login_Register.php:2680, ../includes/Elements/Login_Register.php:2794, ../includes/Elements/Login_Register.php:3304, ../includes/Elements/Login_Register.php:3341, ../includes/Elements/Login_Register.php:3625, ../includes/Elements/Login_Register.php:3662, ../includes/Elements/NinjaForms.php:369, ../includes/Elements/NinjaForms.php:670, ../includes/Elements/NinjaForms.php:1094, ../includes/Elements/NinjaForms.php:1121, ../includes/Elements/NinjaForms.php:1407, ../includes/Elements/Post_Grid.php:311, ../includes/Elements/Pricing_Table.php:782, ../includes/Elements/Pricing_Table.php:1557, ../includes/Elements/Pricing_Table.php:1806, ../includes/Elements/Pricing_Table.php:1957, ../includes/Elements/Product_Grid.php:943, ../includes/Elements/Product_Grid.php:2019, ../includes/Elements/Product_Grid.php:2375, ../includes/Elements/Product_Grid.php:2715, ../includes/Elements/Product_Grid.php:2914, ../includes/Elements/Product_Grid.php:2946, ../includes/Elements/Simple_Menu.php:629, ../includes/Elements/Sticky_Video.php:591, ../includes/Elements/Team_Member.php:421, ../includes/Elements/Team_Member.php:520, ../includes/Elements/Team_Member.php:767, ../includes/Elements/Testimonial.php:454, ../includes/Elements/Tooltip.php:499, ../includes/Elements/Twitter_Feed.php:469, ../includes/Elements/Twitter_Feed.php:562, ../includes/Elements/TypeForm.php:310, ../includes/Elements/WeForms.php:253, ../includes/Elements/WeForms.php:394, ../includes/Elements/WeForms.php:722, ../includes/Elements/Woo_Checkout.php:651, ../includes/Elements/Woo_Checkout.php:800, ../includes/Elements/Woo_Checkout.php:996, ../includes/Elements/Woo_Checkout.php:1244, ../includes/Elements/Woo_Checkout.php:1397, ../includes/Elements/Woo_Checkout.php:1520, ../includes/Elements/Woo_Checkout.php:1695, ../includes/Elements/Woo_Checkout.php:1903, ../includes/Elements/Woo_Checkout.php:2105, ../includes/Elements/Woo_Checkout.php:2285, ../includes/Elements/Woo_Checkout.php:2565, ../includes/Elements/Woo_Product_Carousel.php:1008, ../includes/Elements/Woo_Product_Carousel.php:1410, ../includes/Elements/Woo_Product_Carousel.php:1813, ../includes/Elements/Woo_Product_Carousel.php:2009, ../includes/Elements/Woo_Product_Carousel.php:2041, ../includes/Elements/Woo_Product_Carousel.php:2251, ../includes/Elements/Woo_Product_Carousel.php:2374, ../includes/Elements/Woo_Product_Carousel.php:2498, ../includes/Elements/Woo_Product_Carousel.php:2685, ../includes/Elements/Woo_Product_Gallery.php:675, ../includes/Elements/Woo_Product_Gallery.php:1693, ../includes/Elements/Woo_Product_Gallery.php:2053, ../includes/Elements/Woo_Product_Gallery.php:2252, ../includes/Elements/Woo_Product_Gallery.php:2284, ../includes/Elements/WpForms.php:338, ../includes/Elements/WpForms.php:639, ../includes/Elements/WpForms.php:1047, ../includes/Elements/WpForms.php:1073, ../includes/Elements/WpForms.php:1243, ../includes/Extensions/Table_of_Content.php:568, ../includes/Extensions/Table_of_Content.php:783, ../includes/Traits/Controls.php:1266, ../includes/Traits/Controls.php:1320, ../includes/Traits/Controls.php:1450, ../includes/Traits/Woo_Product_Comparable.php:368, ../includes/Traits/Woo_Product_Comparable.php:513, ../includes/Traits/Woo_Product_Comparable.php:1394
583
  msgid "Border Radius"
584
  msgstr ""
585
 
591
  msgid "Head"
592
  msgstr ""
593
 
594
+ #: ../includes/Elements/Advanced_Data_Table.php:419, ../includes/Elements/Advanced_Data_Table.php:538, ../includes/Elements/Advanced_Data_Table.php:996, ../includes/Elements/Advanced_Data_Table.php:1146, ../includes/Elements/Advanced_Data_Table.php:1354, ../includes/Elements/Caldera_Forms.php:286, ../includes/Elements/Caldera_Forms.php:347, ../includes/Elements/Caldera_Forms.php:535, ../includes/Elements/Caldera_Forms.php:773, ../includes/Elements/Caldera_Forms.php:862, ../includes/Elements/Caldera_Forms.php:1283, ../includes/Elements/Caldera_Forms.php:1398, ../includes/Elements/Contact_Form_7.php:487, ../includes/Elements/Contact_Form_7.php:518, ../includes/Elements/Contact_Form_7.php:735, ../includes/Elements/Contact_Form_7.php:883, ../includes/Elements/Contact_Form_7.php:935, ../includes/Elements/Contact_Form_7.php:1308, ../includes/Elements/Contact_Form_7.php:1443, ../includes/Elements/Contact_Form_7.php:1583, ../includes/Elements/Event_Calendar.php:739, ../includes/Elements/Event_Calendar.php:769, ../includes/Elements/Event_Calendar.php:983, ../includes/Elements/Event_Calendar.php:1058, ../includes/Elements/Event_Calendar.php:1092, ../includes/Elements/Event_Calendar.php:1335, ../includes/Elements/Event_Calendar.php:1398, ../includes/Elements/Event_Calendar.php:1427, ../includes/Elements/Event_Calendar.php:1495, ../includes/Elements/Event_Calendar.php:1653, ../includes/Elements/Filterable_Gallery.php:1965, ../includes/Elements/Filterable_Gallery.php:2012, ../includes/Elements/Filterable_Gallery.php:2048, ../includes/Elements/Filterable_Gallery.php:2105, ../includes/Elements/Filterable_Gallery.php:2399, ../includes/Elements/Filterable_Gallery.php:2559, ../includes/Elements/FluentForm.php:321, ../includes/Elements/FluentForm.php:382, ../includes/Elements/FluentForm.php:582, ../includes/Elements/FluentForm.php:822, ../includes/Elements/FluentForm.php:1149, ../includes/Elements/FluentForm.php:1204, ../includes/Elements/FluentForm.php:1308, ../includes/Elements/FluentForm.php:1394, ../includes/Elements/FluentForm.php:1460, ../includes/Elements/FluentForm.php:1655, ../includes/Elements/FluentForm.php:1788, ../includes/Elements/FluentForm.php:1985, ../includes/Elements/FluentForm.php:2134, ../includes/Elements/FluentForm.php:2183, ../includes/Elements/Formstack.php:494, ../includes/Elements/Formstack.php:543, ../includes/Elements/Formstack.php:597, ../includes/Elements/Formstack.php:671, ../includes/Elements/Formstack.php:726, ../includes/Elements/Formstack.php:809, ../includes/Elements/Formstack.php:1021, ../includes/Elements/Formstack.php:1519, ../includes/Elements/Formstack.php:1652, ../includes/Elements/Formstack.php:1793, ../includes/Elements/Formstack.php:1953, ../includes/Elements/GravityForms.php:528, ../includes/Elements/GravityForms.php:559, ../includes/Elements/GravityForms.php:600, ../includes/Elements/GravityForms.php:643, ../includes/Elements/GravityForms.php:902, ../includes/Elements/GravityForms.php:991, ../includes/Elements/GravityForms.php:1045, ../includes/Elements/GravityForms.php:1181, ../includes/Elements/GravityForms.php:1641, ../includes/Elements/GravityForms.php:1976, ../includes/Elements/GravityForms.php:2197, ../includes/Elements/GravityForms.php:2390, ../includes/Elements/NinjaForms.php:465, ../includes/Elements/NinjaForms.php:514, ../includes/Elements/NinjaForms.php:574, ../includes/Elements/NinjaForms.php:817, ../includes/Elements/NinjaForms.php:906, ../includes/Elements/NinjaForms.php:1500, ../includes/Elements/NinjaForms.php:1545, ../includes/Elements/NinjaForms.php:1599, ../includes/Elements/Post_Grid.php:392, ../includes/Elements/Post_Grid.php:510, ../includes/Elements/Post_Grid.php:522, ../includes/Elements/Post_Grid.php:664, ../includes/Elements/Post_Grid.php:876, ../includes/Elements/Post_Timeline.php:323, ../includes/Elements/Product_Grid.php:2435, ../includes/Elements/Product_Grid.php:2466, ../includes/Elements/Product_Grid.php:2508, ../includes/Elements/Product_Grid.php:2574, ../includes/Elements/Product_Grid.php:2615, ../includes/Elements/Product_Grid.php:2672, ../includes/Elements/Product_Grid.php:2789, ../includes/Elements/Progress_Bar.php:672, ../includes/Elements/Simple_Menu.php:831, ../includes/Elements/Simple_Menu.php:1142, ../includes/Elements/Woo_Checkout.php:1300, ../includes/Elements/Woo_Checkout.php:1598, ../includes/Elements/Woo_Product_Carousel.php:1521, ../includes/Elements/Woo_Product_Carousel.php:1551, ../includes/Elements/Woo_Product_Carousel.php:1593, ../includes/Elements/Woo_Product_Carousel.php:1672, ../includes/Elements/Woo_Product_Carousel.php:1712, ../includes/Elements/Woo_Product_Carousel.php:1769, ../includes/Elements/Woo_Product_Carousel.php:1888, ../includes/Elements/Woo_Product_Gallery.php:1774, ../includes/Elements/Woo_Product_Gallery.php:1804, ../includes/Elements/Woo_Product_Gallery.php:1846, ../includes/Elements/Woo_Product_Gallery.php:1912, ../includes/Elements/Woo_Product_Gallery.php:1953, ../includes/Elements/Woo_Product_Gallery.php:2010, ../includes/Elements/Woo_Product_Gallery.php:2127, ../includes/Elements/WpForms.php:432, ../includes/Elements/WpForms.php:481, ../includes/Elements/WpForms.php:545, ../includes/Elements/WpForms.php:785, ../includes/Elements/WpForms.php:863, ../includes/Elements/WpForms.php:1287, ../includes/Traits/Woo_Product_Comparable.php:1077, ../includes/Traits/Woo_Product_Comparable.php:1195
595
  msgid "Typography"
596
  msgstr ""
597
 
599
  msgid "Text Alignment"
600
  msgstr ""
601
 
602
+ #: ../includes/Elements/Advanced_Data_Table.php:431, ../includes/Elements/Advanced_Data_Table.php:550, ../includes/Elements/Advanced_Data_Table.php:976, ../includes/Elements/Advanced_Data_Table.php:1123, ../includes/Elements/Adv_Accordion.php:154, ../includes/Elements/Betterdocs_Category_Box.php:767, ../includes/Elements/Betterdocs_Category_Grid.php:1513, ../includes/Elements/Betterdocs_Category_Grid.php:1538, ../includes/Elements/Caldera_Forms.php:233, ../includes/Elements/Caldera_Forms.php:415, ../includes/Elements/Caldera_Forms.php:561, ../includes/Elements/Caldera_Forms.php:1136, ../includes/Elements/Contact_Form_7.php:331, ../includes/Elements/Contact_Form_7.php:443, ../includes/Elements/Contact_Form_7.php:1163, ../includes/Elements/Content_Ticker.php:290, ../includes/Elements/Countdown.php:118, ../includes/Elements/Countdown.php:1030, ../includes/Elements/Creative_Button.php:445, ../includes/Elements/Cta_Box.php:102, ../includes/Elements/Data_Table.php:553, ../includes/Elements/Data_Table.php:778, ../includes/Elements/Data_Table.php:1027, ../includes/Elements/Dual_Color_Header.php:191, ../includes/Elements/Event_Calendar.php:1007, ../includes/Elements/Event_Calendar.php:1139, ../includes/Elements/Fancy_Text.php:174, ../includes/Elements/Feature_List.php:303, ../includes/Elements/Filterable_Gallery.php:768, ../includes/Elements/Filterable_Gallery.php:1300, ../includes/Elements/Filterable_Gallery.php:1683, ../includes/Elements/Flip_Box.php:373, ../includes/Elements/Flip_Box.php:604, ../includes/Elements/FluentForm.php:267, ../includes/Elements/FluentForm.php:462, ../includes/Elements/FluentForm.php:608, ../includes/Elements/FluentForm.php:1241, ../includes/Elements/FluentForm.php:1486, ../includes/Elements/Formstack.php:334, ../includes/Elements/Formstack.php:449, ../includes/Elements/Formstack.php:763, ../includes/Elements/Formstack.php:1372, ../includes/Elements/GravityForms.php:347, ../includes/Elements/GravityForms.php:484, ../includes/Elements/GravityForms.php:672, ../includes/Elements/GravityForms.php:1764, ../includes/Elements/GravityForms.php:2014, ../includes/Elements/Image_Accordion.php:109, ../includes/Elements/Info_Box.php:304, ../includes/Elements/Login_Register.php:712, ../includes/Elements/Login_Register.php:745, ../includes/Elements/Login_Register.php:2587, ../includes/Elements/Login_Register.php:3255, ../includes/Elements/Login_Register.php:3575, ../includes/Elements/NinjaForms.php:282, ../includes/Elements/NinjaForms.php:421, ../includes/Elements/NinjaForms.php:603, ../includes/Elements/NinjaForms.php:1298, ../includes/Elements/Post_Grid.php:487, ../includes/Elements/Post_Grid.php:642, ../includes/Elements/Post_Grid.php:710, ../includes/Elements/Post_Grid.php:805, ../includes/Elements/Post_Grid.php:888, ../includes/Elements/Post_Timeline.php:357, ../includes/Elements/Post_Timeline.php:415, ../includes/Elements/Pricing_Table.php:257, ../includes/Elements/Pricing_Table.php:374, ../includes/Elements/Pricing_Table.php:676, ../includes/Elements/Pricing_Table.php:816, ../includes/Elements/Pricing_Table.php:841, ../includes/Elements/Product_Grid.php:695, ../includes/Elements/Product_Grid.php:1013, ../includes/Elements/Product_Grid.php:1711, ../includes/Elements/Product_Grid.php:2196, ../includes/Elements/Progress_Bar.php:321, ../includes/Elements/Progress_Bar.php:532, ../includes/Elements/Simple_Menu.php:188, ../includes/Elements/Simple_Menu.php:333, ../includes/Elements/Simple_Menu.php:740, ../includes/Elements/Simple_Menu.php:766, ../includes/Elements/Simple_Menu.php:791, ../includes/Elements/Simple_Menu.php:1086, ../includes/Elements/Team_Member.php:380, ../includes/Elements/Testimonial.php:314, ../includes/Elements/Tooltip.php:209, ../includes/Elements/Tooltip.php:288, ../includes/Elements/Tooltip.php:377, ../includes/Elements/TypeForm.php:200, ../includes/Elements/WeForms.php:165, ../includes/Elements/WeForms.php:635, ../includes/Elements/Woo_Product_Carousel.php:704, ../includes/Elements/Woo_Product_Carousel.php:820, ../includes/Elements/Woo_Product_Carousel.php:869, ../includes/Elements/Woo_Product_Gallery.php:193, ../includes/Elements/Woo_Product_Gallery.php:223, ../includes/Elements/Woo_Product_Gallery.php:552, ../includes/Elements/Woo_Product_Gallery.php:1519, ../includes/Elements/WpForms.php:271, ../includes/Elements/WpForms.php:388, ../includes/Elements/WpForms.php:572, ../includes/Elements/WpForms.php:1137, ../includes/Extensions/Table_of_Content.php:462, ../includes/Traits/Controls.php:602, ../includes/Traits/Controls.php:1531, ../includes/Traits/Controls.php:1582, ../includes/Traits/Controls.php:1583, ../includes/Traits/Controls.php:1905
603
  msgid "Left"
604
  msgstr ""
605
 
606
+ #: ../includes/Elements/Advanced_Data_Table.php:435, ../includes/Elements/Advanced_Data_Table.php:554, ../includes/Elements/Advanced_Data_Table.php:980, ../includes/Elements/Advanced_Data_Table.php:1127, ../includes/Elements/Betterdocs_Category_Box.php:771, ../includes/Elements/Betterdocs_Category_Grid.php:1517, ../includes/Elements/Betterdocs_Category_Grid.php:1542, ../includes/Elements/Caldera_Forms.php:237, ../includes/Elements/Caldera_Forms.php:419, ../includes/Elements/Caldera_Forms.php:565, ../includes/Elements/Caldera_Forms.php:1140, ../includes/Elements/Contact_Form_7.php:335, ../includes/Elements/Contact_Form_7.php:447, ../includes/Elements/Contact_Form_7.php:1167, ../includes/Elements/Countdown.php:122, ../includes/Elements/Countdown.php:1034, ../includes/Elements/Creative_Button.php:449, ../includes/Elements/Cta_Box.php:103, ../includes/Elements/Data_Table.php:557, ../includes/Elements/Data_Table.php:782, ../includes/Elements/Data_Table.php:1031, ../includes/Elements/Dual_Color_Header.php:195, ../includes/Elements/Dual_Color_Header.php:658, ../includes/Elements/Event_Calendar.php:1011, ../includes/Elements/Event_Calendar.php:1143, ../includes/Elements/Fancy_Text.php:178, ../includes/Elements/Filterable_Gallery.php:772, ../includes/Elements/Filterable_Gallery.php:1304, ../includes/Elements/Filterable_Gallery.php:1687, ../includes/Elements/Flip_Box.php:377, ../includes/Elements/Flip_Box.php:608, ../includes/Elements/FluentForm.php:271, ../includes/Elements/FluentForm.php:466, ../includes/Elements/FluentForm.php:612, ../includes/Elements/FluentForm.php:1245, ../includes/Elements/FluentForm.php:1490, ../includes/Elements/Formstack.php:338, ../includes/Elements/Formstack.php:453, ../includes/Elements/Formstack.php:767, ../includes/Elements/Formstack.php:1376, ../includes/Elements/GravityForms.php:351, ../includes/Elements/GravityForms.php:488, ../includes/Elements/GravityForms.php:676, ../includes/Elements/GravityForms.php:1768, ../includes/Elements/GravityForms.php:2018, ../includes/Elements/Image_Accordion.php:113, ../includes/Elements/Image_Accordion.php:136, ../includes/Elements/Info_Box.php:308, ../includes/Elements/Login_Register.php:2591, ../includes/Elements/Login_Register.php:3237, ../includes/Elements/Login_Register.php:3259, ../includes/Elements/Login_Register.php:3536, ../includes/Elements/Login_Register.php:3556, ../includes/Elements/Login_Register.php:3579, ../includes/Elements/NinjaForms.php:286, ../includes/Elements/NinjaForms.php:425, ../includes/Elements/NinjaForms.php:607, ../includes/Elements/NinjaForms.php:1302, ../includes/Elements/Post_Grid.php:491, ../includes/Elements/Post_Grid.php:646, ../includes/Elements/Post_Grid.php:714, ../includes/Elements/Post_Grid.php:809, ../includes/Elements/Post_Grid.php:892, ../includes/Elements/Post_Timeline.php:361, ../includes/Elements/Post_Timeline.php:419, ../includes/Elements/Pricing_Table.php:820, ../includes/Elements/Pricing_Table.php:845, ../includes/Elements/Product_Grid.php:699, ../includes/Elements/Product_Grid.php:1017, ../includes/Elements/Product_Grid.php:2200, ../includes/Elements/Progress_Bar.php:325, ../includes/Elements/Progress_Bar.php:536, ../includes/Elements/Simple_Menu.php:192, ../includes/Elements/Simple_Menu.php:337, ../includes/Elements/Simple_Menu.php:744, ../includes/Elements/Simple_Menu.php:770, ../includes/Elements/Simple_Menu.php:795, ../includes/Elements/Simple_Menu.php:1090, ../includes/Elements/Team_Member.php:384, ../includes/Elements/Testimonial.php:318, ../includes/Elements/Tooltip.php:213, ../includes/Elements/Tooltip.php:381, ../includes/Elements/TypeForm.php:204, ../includes/Elements/WeForms.php:169, ../includes/Elements/WeForms.php:639, ../includes/Elements/Woo_Product_Carousel.php:873, ../includes/Elements/Woo_Product_Gallery.php:197, ../includes/Elements/Woo_Product_Gallery.php:556, ../includes/Elements/WpForms.php:275, ../includes/Elements/WpForms.php:392, ../includes/Elements/WpForms.php:576, ../includes/Elements/WpForms.php:1141, ../includes/Traits/Controls.php:601, ../includes/Traits/Controls.php:1535, ../includes/Traits/Controls.php:1909
607
  msgid "Center"
608
  msgstr ""
609
 
610
+ #: ../includes/Elements/Advanced_Data_Table.php:439, ../includes/Elements/Advanced_Data_Table.php:558, ../includes/Elements/Advanced_Data_Table.php:984, ../includes/Elements/Advanced_Data_Table.php:1131, ../includes/Elements/Adv_Accordion.php:153, ../includes/Elements/Betterdocs_Category_Box.php:775, ../includes/Elements/Betterdocs_Category_Grid.php:1521, ../includes/Elements/Betterdocs_Category_Grid.php:1546, ../includes/Elements/Caldera_Forms.php:241, ../includes/Elements/Caldera_Forms.php:423, ../includes/Elements/Caldera_Forms.php:569, ../includes/Elements/Caldera_Forms.php:1144, ../includes/Elements/Contact_Form_7.php:339, ../includes/Elements/Contact_Form_7.php:451, ../includes/Elements/Contact_Form_7.php:1171, ../includes/Elements/Content_Ticker.php:291, ../includes/Elements/Countdown.php:126, ../includes/Elements/Countdown.php:1038, ../includes/Elements/Creative_Button.php:453, ../includes/Elements/Cta_Box.php:104, ../includes/Elements/Data_Table.php:561, ../includes/Elements/Data_Table.php:786, ../includes/Elements/Data_Table.php:1035, ../includes/Elements/Dual_Color_Header.php:199, ../includes/Elements/Event_Calendar.php:1015, ../includes/Elements/Event_Calendar.php:1147, ../includes/Elements/Fancy_Text.php:182, ../includes/Elements/Feature_List.php:311, ../includes/Elements/Filterable_Gallery.php:776, ../includes/Elements/Filterable_Gallery.php:1308, ../includes/Elements/Filterable_Gallery.php:1691, ../includes/Elements/Flip_Box.php:381, ../includes/Elements/Flip_Box.php:612, ../includes/Elements/FluentForm.php:275, ../includes/Elements/FluentForm.php:470, ../includes/Elements/FluentForm.php:616, ../includes/Elements/FluentForm.php:1249, ../includes/Elements/FluentForm.php:1494, ../includes/Elements/Formstack.php:342, ../includes/Elements/Formstack.php:457, ../includes/Elements/Formstack.php:771, ../includes/Elements/Formstack.php:1380, ../includes/Elements/GravityForms.php:355, ../includes/Elements/GravityForms.php:492, ../includes/Elements/GravityForms.php:680, ../includes/Elements/GravityForms.php:1772, ../includes/Elements/GravityForms.php:2022, ../includes/Elements/Image_Accordion.php:117, ../includes/Elements/Info_Box.php:312, ../includes/Elements/Login_Register.php:716, ../includes/Elements/Login_Register.php:2595, ../includes/Elements/Login_Register.php:3263, ../includes/Elements/Login_Register.php:3583, ../includes/Elements/NinjaForms.php:290, ../includes/Elements/NinjaForms.php:429, ../includes/Elements/NinjaForms.php:611, ../includes/Elements/NinjaForms.php:1306, ../includes/Elements/Post_Grid.php:495, ../includes/Elements/Post_Grid.php:650, ../includes/Elements/Post_Grid.php:718, ../includes/Elements/Post_Grid.php:813, ../includes/Elements/Post_Grid.php:896, ../includes/Elements/Post_Timeline.php:365, ../includes/Elements/Post_Timeline.php:423, ../includes/Elements/Pricing_Table.php:258, ../includes/Elements/Pricing_Table.php:382, ../includes/Elements/Pricing_Table.php:680, ../includes/Elements/Pricing_Table.php:824, ../includes/Elements/Pricing_Table.php:849, ../includes/Elements/Product_Grid.php:703, ../includes/Elements/Product_Grid.php:1021, ../includes/Elements/Product_Grid.php:1715, ../includes/Elements/Product_Grid.php:2204, ../includes/Elements/Progress_Bar.php:329, ../includes/Elements/Progress_Bar.php:540, ../includes/Elements/Simple_Menu.php:196, ../includes/Elements/Simple_Menu.php:341, ../includes/Elements/Simple_Menu.php:748, ../includes/Elements/Simple_Menu.php:774, ../includes/Elements/Simple_Menu.php:799, ../includes/Elements/Simple_Menu.php:1094, ../includes/Elements/Team_Member.php:388, ../includes/Elements/Testimonial.php:322, ../includes/Elements/Tooltip.php:217, ../includes/Elements/Tooltip.php:289, ../includes/Elements/Tooltip.php:385, ../includes/Elements/TypeForm.php:208, ../includes/Elements/WeForms.php:173, ../includes/Elements/WeForms.php:643, ../includes/Elements/Woo_Product_Carousel.php:705, ../includes/Elements/Woo_Product_Carousel.php:824, ../includes/Elements/Woo_Product_Carousel.php:877, ../includes/Elements/Woo_Product_Gallery.php:201, ../includes/Elements/Woo_Product_Gallery.php:227, ../includes/Elements/Woo_Product_Gallery.php:560, ../includes/Elements/Woo_Product_Gallery.php:1523, ../includes/Elements/WpForms.php:279, ../includes/Elements/WpForms.php:396, ../includes/Elements/WpForms.php:580, ../includes/Elements/WpForms.php:1145, ../includes/Extensions/Table_of_Content.php:463, ../includes/Traits/Controls.php:600, ../includes/Traits/Controls.php:1539, ../includes/Traits/Controls.php:1582, ../includes/Traits/Controls.php:1583, ../includes/Traits/Controls.php:1913
611
  msgid "Right"
612
  msgstr ""
613
 
614
+ #: ../includes/Elements/Advanced_Data_Table.php:454, ../includes/Elements/Advanced_Data_Table.php:573, ../includes/Elements/Advanced_Data_Table.php:667, ../includes/Elements/Advanced_Data_Table.php:698, ../includes/Elements/Advanced_Data_Table.php:729, ../includes/Elements/Advanced_Data_Table.php:760, ../includes/Elements/Advanced_Data_Table.php:791, ../includes/Elements/Advanced_Data_Table.php:822, ../includes/Elements/Advanced_Data_Table.php:1004, ../includes/Elements/Advanced_Data_Table.php:1200, ../includes/Elements/Advanced_Data_Table.php:1270, ../includes/Elements/Adv_Accordion.php:549, ../includes/Elements/Adv_Accordion.php:609, ../includes/Elements/Adv_Accordion.php:669, ../includes/Elements/Adv_Accordion.php:736, ../includes/Elements/Adv_Tabs.php:527, ../includes/Elements/Adv_Tabs.php:594, ../includes/Elements/Adv_Tabs.php:661, ../includes/Elements/Adv_Tabs.php:743, ../includes/Elements/Caldera_Forms.php:270, ../includes/Elements/Caldera_Forms.php:331, ../includes/Elements/Caldera_Forms.php:523, ../includes/Elements/Caldera_Forms.php:604, ../includes/Elements/Caldera_Forms.php:850, ../includes/Elements/Caldera_Forms.php:906, ../includes/Elements/Caldera_Forms.php:1216, ../includes/Elements/Caldera_Forms.php:1322, ../includes/Elements/Caldera_Forms.php:1375, ../includes/Elements/Contact_Form_7.php:474, ../includes/Elements/Contact_Form_7.php:505, ../includes/Elements/Contact_Form_7.php:562, ../includes/Elements/Contact_Form_7.php:845, ../includes/Elements/Contact_Form_7.php:920, ../includes/Elements/Contact_Form_7.php:1242, ../includes/Elements/Contact_Form_7.php:1348, ../includes/Elements/Contact_Form_7.php:1412, ../includes/Elements/Contact_Form_7.php:1535, ../includes/Elements/Contact_Form_7.php:1592, ../includes/Elements/Content_Ticker.php:357, ../includes/Elements/Content_Ticker.php:433, ../includes/Elements/Countdown.php:1109, ../includes/Elements/Creative_Button.php:277, ../includes/Elements/Creative_Button.php:370, ../includes/Elements/Cta_Box.php:698, ../includes/Elements/Cta_Box.php:769, ../includes/Elements/Cta_Box.php:904, ../includes/Elements/Cta_Box.php:956, ../includes/Elements/Data_Table.php:989, ../includes/Elements/Data_Table.php:1006, ../includes/Elements/Event_Calendar.php:1253, ../includes/Elements/Event_Calendar.php:1286, ../includes/Elements/Filterable_Gallery.php:960, ../includes/Elements/Filterable_Gallery.php:1026, ../includes/Elements/Filterable_Gallery.php:2511, ../includes/Elements/Filterable_Gallery.php:2706, ../includes/Elements/FluentForm.php:305, ../includes/Elements/FluentForm.php:366, ../includes/Elements/FluentForm.php:570, ../includes/Elements/FluentForm.php:653, ../includes/Elements/FluentForm.php:902, ../includes/Elements/FluentForm.php:1567, ../includes/Elements/FluentForm.php:1694, ../includes/Elements/FluentForm.php:2111, ../includes/Elements/Formstack.php:481, ../includes/Elements/Formstack.php:530, ../includes/Elements/Formstack.php:585, ../includes/Elements/Formstack.php:797, ../includes/Elements/Formstack.php:852, ../includes/Elements/Formstack.php:1101, ../includes/Elements/Formstack.php:1452, ../includes/Elements/Formstack.php:1558, ../includes/Elements/Formstack.php:1781, ../includes/Elements/Formstack.php:2020, ../includes/Elements/GravityForms.php:515, ../includes/Elements/GravityForms.php:546, ../includes/Elements/GravityForms.php:585, ../includes/Elements/GravityForms.php:628, ../includes/Elements/GravityForms.php:715, ../includes/Elements/GravityForms.php:979, ../includes/Elements/GravityForms.php:1032, ../includes/Elements/GravityForms.php:1219, ../includes/Elements/GravityForms.php:1853, ../includes/Elements/GravityForms.php:1945, ../includes/Elements/GravityForms.php:2081, ../includes/Elements/GravityForms.php:2168, ../includes/Elements/GravityForms.php:2242, ../includes/Elements/GravityForms.php:2377, ../includes/Elements/Info_Box.php:1236, ../includes/Elements/Info_Box.php:1282, ../includes/Elements/Login_Register.php:2616, ../includes/Elements/Login_Register.php:2755, ../includes/Elements/Login_Register.php:3099, ../includes/Elements/Login_Register.php:3284, ../includes/Elements/Login_Register.php:3321, ../includes/Elements/Login_Register.php:3605, ../includes/Elements/Login_Register.php:3642, ../includes/Elements/NinjaForms.php:452, ../includes/Elements/NinjaForms.php:501, ../includes/Elements/NinjaForms.php:559, ../includes/Elements/NinjaForms.php:646, ../includes/Elements/NinjaForms.php:894, ../includes/Elements/NinjaForms.php:950, ../includes/Elements/NinjaForms.php:1384, ../includes/Elements/NinjaForms.php:1471, ../includes/Elements/NinjaForms.php:1533, ../includes/Elements/NinjaForms.php:1633, ../includes/Elements/Pricing_Table.php:1909, ../includes/Elements/Pricing_Table.php:1978, ../includes/Elements/Product_Grid.php:2250, ../includes/Elements/Product_Grid.php:2288, ../includes/Elements/Product_Grid.php:2332, ../includes/Elements/Simple_Menu.php:363, ../includes/Elements/Simple_Menu.php:397, ../includes/Elements/Simple_Menu.php:431, ../includes/Elements/Simple_Menu.php:489, ../includes/Elements/Simple_Menu.php:523, ../includes/Elements/Simple_Menu.php:849, ../includes/Elements/Simple_Menu.php:976, ../includes/Elements/Simple_Menu.php:1160, ../includes/Elements/Simple_Menu.php:1285, ../includes/Elements/Tooltip.php:418, ../includes/Elements/Tooltip.php:461, ../includes/Elements/Tooltip.php:634, ../includes/Elements/WeForms.php:692, ../includes/Elements/WeForms.php:742, ../includes/Elements/WpForms.php:419, ../includes/Elements/WpForms.php:468, ../includes/Elements/WpForms.php:533, ../includes/Elements/WpForms.php:615, ../includes/Elements/WpForms.php:851, ../includes/Elements/WpForms.php:907, ../includes/Elements/WpForms.php:1220, ../includes/Elements/WpForms.php:1327, ../includes/Elements/WpForms.php:1372, ../includes/Extensions/Table_of_Content.php:626, ../includes/Extensions/Table_of_Content.php:941, ../includes/Extensions/Table_of_Content.php:964, ../includes/Extensions/Table_of_Content.php:990, ../includes/Traits/Controls.php:1232, ../includes/Traits/Controls.php:1287, ../includes/Traits/Controls.php:1417, ../includes/Traits/Controls.php:1479, ../includes/Traits/Controls.php:1862
615
  msgid "Text Color"
616
  msgstr ""
617
 
618
+ #: ../includes/Elements/Advanced_Data_Table.php:468, ../includes/Elements/Advanced_Data_Table.php:609, ../includes/Elements/Advanced_Data_Table.php:682, ../includes/Elements/Advanced_Data_Table.php:713, ../includes/Elements/Advanced_Data_Table.php:744, ../includes/Elements/Advanced_Data_Table.php:775, ../includes/Elements/Advanced_Data_Table.php:806, ../includes/Elements/Advanced_Data_Table.php:837, ../includes/Elements/Advanced_Data_Table.php:1016, ../includes/Elements/Advanced_Data_Table.php:1213, ../includes/Elements/Advanced_Data_Table.php:1284, ../includes/Elements/Advanced_Data_Table.php:1379, ../includes/Elements/Advanced_Data_Table.php:1409, ../includes/Elements/Adv_Accordion.php:885, ../includes/Elements/Adv_Accordion.php:931, ../includes/Elements/Adv_Accordion.php:977, ../includes/Elements/Adv_Tabs.php:508, ../includes/Elements/Adv_Tabs.php:724, ../includes/Elements/Caldera_Forms.php:592, ../includes/Elements/Caldera_Forms.php:800, ../includes/Elements/Caldera_Forms.php:1204, ../includes/Elements/Caldera_Forms.php:1310, ../includes/Elements/Caldera_Forms.php:1364, ../includes/Elements/Contact_Form_7.php:550, ../includes/Elements/Contact_Form_7.php:763, ../includes/Elements/Contact_Form_7.php:1230, ../includes/Elements/Contact_Form_7.php:1336, ../includes/Elements/Contact_Form_7.php:1427, ../includes/Elements/Contact_Form_7.php:1520, ../includes/Elements/Content_Ticker.php:345, ../includes/Elements/Content_Ticker.php:422, ../includes/Elements/Content_Ticker.php:597, ../includes/Elements/Content_Ticker.php:653, ../includes/Elements/Countdown.php:733, ../includes/Elements/Countdown.php:745, ../includes/Elements/Countdown.php:805, ../includes/Elements/Countdown.php:817, ../includes/Elements/Countdown.php:877, ../includes/Elements/Countdown.php:889, ../includes/Elements/Countdown.php:949, ../includes/Elements/Countdown.php:961, ../includes/Elements/Creative_Button.php:291, ../includes/Elements/Creative_Button.php:383, ../includes/Elements/Cta_Box.php:122, ../includes/Elements/Cta_Box.php:426, ../includes/Elements/Cta_Box.php:712, ../includes/Elements/Cta_Box.php:781, ../includes/Elements/Data_Table.php:639, ../includes/Elements/Data_Table.php:679, ../includes/Elements/Data_Table.php:1190, ../includes/Elements/Dual_Color_Header.php:310, ../includes/Elements/Event_Calendar.php:1265, ../includes/Elements/Filterable_Gallery.php:835, ../includes/Elements/Filterable_Gallery.php:972, ../includes/Elements/Filterable_Gallery.php:1038, ../includes/Elements/Filterable_Gallery.php:1184, ../includes/Elements/Filterable_Gallery.php:1374, ../includes/Elements/Filterable_Gallery.php:1404, ../includes/Elements/Filterable_Gallery.php:1509, ../includes/Elements/Filterable_Gallery.php:1525, ../includes/Elements/Filterable_Gallery.php:1727, ../includes/Elements/Filterable_Gallery.php:1865, ../includes/Elements/Filterable_Gallery.php:2495, ../includes/Elements/Filterable_Gallery.php:2690, ../includes/Elements/FluentForm.php:641, ../includes/Elements/FluentForm.php:849, ../includes/Elements/FluentForm.php:1283, ../includes/Elements/FluentForm.php:1369, ../includes/Elements/FluentForm.php:1555, ../includes/Elements/FluentForm.php:1682, ../includes/Elements/FluentForm.php:2100, ../includes/Elements/Formstack.php:840, ../includes/Elements/Formstack.php:1048, ../includes/Elements/Formstack.php:1440, ../includes/Elements/Formstack.php:1546, ../includes/Elements/GravityForms.php:703, ../includes/Elements/GravityForms.php:929, ../includes/Elements/GravityForms.php:1662, ../includes/Elements/GravityForms.php:1840, ../includes/Elements/GravityForms.php:1932, ../includes/Elements/GravityForms.php:2069, ../includes/Elements/GravityForms.php:2156, ../includes/Elements/Image_Accordion.php:317, ../includes/Elements/Info_Box.php:544, ../includes/Elements/Info_Box.php:785, ../includes/Elements/Info_Box.php:864, ../includes/Elements/Info_Box.php:1035, ../includes/Elements/Info_Box.php:1098, ../includes/Elements/Info_Box.php:1248, ../includes/Elements/Info_Box.php:1294, ../includes/Elements/Login_Register.php:1594, ../includes/Elements/Login_Register.php:1727, ../includes/Elements/Login_Register.php:1829, ../includes/Elements/Login_Register.php:2003, ../includes/Elements/Login_Register.php:2359, ../includes/Elements/Login_Register.php:2450, ../includes/Elements/Login_Register.php:2630, ../includes/Elements/Login_Register.php:2668, ../includes/Elements/Login_Register.php:2765, ../includes/Elements/Login_Register.php:3292, ../includes/Elements/Login_Register.php:3329, ../includes/Elements/Login_Register.php:3613, ../includes/Elements/Login_Register.php:3650, ../includes/Elements/NinjaForms.php:634, ../includes/Elements/NinjaForms.php:844, ../includes/Elements/NinjaForms.php:1372, ../includes/Elements/NinjaForms.php:1459, ../includes/Elements/Post_Grid.php:962, ../includes/Elements/Pricing_Table.php:737, ../includes/Elements/Pricing_Table.php:897, ../includes/Elements/Pricing_Table.php:1424, ../includes/Elements/Pricing_Table.php:1493, ../includes/Elements/Pricing_Table.php:1659, ../includes/Elements/Pricing_Table.php:1921, ../includes/Elements/Pricing_Table.php:1990, ../includes/Elements/Product_Grid.php:1860, ../includes/Elements/Product_Grid.php:1968, ../includes/Elements/Product_Grid.php:2076, ../includes/Elements/Product_Grid.php:2262, ../includes/Elements/Product_Grid.php:2300, ../includes/Elements/Product_Grid.php:2344, ../includes/Elements/Product_Grid.php:2592, ../includes/Elements/Product_Grid.php:2635, ../includes/Elements/Product_Grid.php:2696, ../includes/Elements/Product_Grid.php:2747, ../includes/Elements/Progress_Bar.php:578, ../includes/Elements/Simple_Menu.php:267, ../includes/Elements/Simple_Menu.php:376, ../includes/Elements/Simple_Menu.php:410, ../includes/Elements/Simple_Menu.php:444, ../includes/Elements/Simple_Menu.php:502, ../includes/Elements/Simple_Menu.php:536, ../includes/Elements/Simple_Menu.php:608, ../includes/Elements/Simple_Menu.php:680, ../includes/Elements/Simple_Menu.php:863, ../includes/Elements/Simple_Menu.php:943, ../includes/Elements/Simple_Menu.php:991, ../includes/Elements/Simple_Menu.php:1038, ../includes/Elements/Simple_Menu.php:1172, ../includes/Elements/Simple_Menu.php:1252, ../includes/Elements/Simple_Menu.php:1299, ../includes/Elements/Simple_Menu.php:1346, ../includes/Elements/Team_Member.php:731, ../includes/Elements/Tooltip.php:407, ../includes/Elements/Tooltip.php:450, ../includes/Elements/Tooltip.php:623, ../includes/Elements/Twitter_Feed.php:414, ../includes/Elements/WeForms.php:703, ../includes/Elements/WeForms.php:753, ../includes/Elements/Woo_Checkout.php:621, ../includes/Elements/Woo_Checkout.php:736, ../includes/Elements/Woo_Checkout.php:858, ../includes/Elements/Woo_Checkout.php:1316, ../includes/Elements/Woo_Checkout.php:1356, ../includes/Elements/Woo_Checkout.php:1614, ../includes/Elements/Woo_Checkout.php:1654, ../includes/Elements/Woo_Checkout.php:2244, ../includes/Elements/Woo_Checkout.php:2374, ../includes/Elements/Woo_Checkout.php:2484, ../includes/Elements/Woo_Checkout.php:2524, ../includes/Elements/Woo_Product_Carousel.php:895, ../includes/Elements/Woo_Product_Carousel.php:1388, ../includes/Elements/Woo_Product_Carousel.php:1470, ../includes/Elements/Woo_Product_Carousel.php:1689, ../includes/Elements/Woo_Product_Carousel.php:1732, ../includes/Elements/Woo_Product_Carousel.php:1794, ../includes/Elements/Woo_Product_Carousel.php:1846, ../includes/Elements/Woo_Product_Carousel.php:2650, ../includes/Elements/Woo_Product_Carousel.php:2706, ../includes/Elements/Woo_Product_Gallery.php:1681, ../includes/Elements/Woo_Product_Gallery.php:1731, ../includes/Elements/Woo_Product_Gallery.php:1930, ../includes/Elements/Woo_Product_Gallery.php:1973, ../includes/Elements/Woo_Product_Gallery.php:2034, ../includes/Elements/Woo_Product_Gallery.php:2085, ../includes/Elements/WpForms.php:603, ../includes/Elements/WpForms.php:1208, ../includes/Elements/WpForms.php:1315, ../includes/Extensions/Reading_Progress.php:156, ../includes/Extensions/Table_of_Content.php:613, ../includes/Extensions/Table_of_Content.php:759, ../includes/Extensions/Table_of_Content.php:823, ../includes/Traits/Controls.php:1429, ../includes/Traits/Controls.php:1491, ../includes/Traits/Controls.php:1872, ../includes/Traits/Woo_Product_Comparable.php:380, ../includes/Traits/Woo_Product_Comparable.php:486
619
  msgid "Background Color"
620
  msgstr ""
621
 
623
  msgid "Cell Border"
624
  msgstr ""
625
 
626
+ #: ../includes/Elements/Advanced_Data_Table.php:507, ../includes/Elements/Advanced_Data_Table.php:852, ../includes/Elements/Advanced_Data_Table.php:936, ../includes/Elements/Advanced_Data_Table.php:1154, ../includes/Elements/Advanced_Data_Table.php:1471, ../includes/Elements/Adv_Accordion.php:361, ../includes/Elements/Adv_Accordion.php:514, ../includes/Elements/Adv_Accordion.php:754, ../includes/Elements/Adv_Tabs.php:337, ../includes/Elements/Adv_Tabs.php:482, ../includes/Elements/Adv_Tabs.php:761, ../includes/Elements/Betterdocs_Category_Box.php:512, ../includes/Elements/Betterdocs_Category_Grid.php:558, ../includes/Elements/Betterdocs_Category_Grid.php:722, ../includes/Elements/Betterdocs_Category_Grid.php:1406, ../includes/Elements/Betterdocs_Search_Form.php:123, ../includes/Elements/Betterdocs_Search_Form.php:431, ../includes/Elements/Caldera_Forms.php:741, ../includes/Elements/Caldera_Forms.php:1251, ../includes/Elements/Contact_Form_7.php:598, ../includes/Elements/Contact_Form_7.php:1276, ../includes/Elements/Contact_Form_7.php:1471, ../includes/Elements/Contact_Form_7.php:1668, ../includes/Elements/Content_Ticker.php:389, ../includes/Elements/Content_Ticker.php:452, ../includes/Elements/Content_Ticker.php:693, ../includes/Elements/Countdown.php:606, ../includes/Elements/Countdown.php:1136, ../includes/Elements/Cta_Box.php:438, ../includes/Elements/Cta_Box.php:651, ../includes/Elements/Cta_Box.php:868, ../includes/Elements/Data_Table.php:607, ../includes/Elements/Data_Table.php:892, ../includes/Elements/Dual_Color_Header.php:322, ../includes/Elements/Facebook_Feed.php:605, ../includes/Elements/Facebook_Feed.php:631, ../includes/Elements/Facebook_Feed.php:703, ../includes/Elements/Fancy_Text.php:480, ../includes/Elements/Feature_List.php:597, ../includes/Elements/Filterable_Gallery.php:847, ../includes/Elements/Filterable_Gallery.php:924, ../includes/Elements/Filterable_Gallery.php:1106, ../includes/Elements/Filterable_Gallery.php:1196, ../includes/Elements/Filterable_Gallery.php:1540, ../includes/Elements/Filterable_Gallery.php:1751, ../includes/Elements/Filterable_Gallery.php:2614, ../includes/Elements/Flip_Box.php:1005, ../includes/Elements/Flip_Box.php:1118, ../includes/Elements/Flip_Box.php:1354, ../includes/Elements/FluentForm.php:790, ../includes/Elements/FluentForm.php:1158, ../includes/Elements/FluentForm.php:1213, ../includes/Elements/FluentForm.php:1336, ../includes/Elements/FluentForm.php:1421, ../includes/Elements/FluentForm.php:1602, ../includes/Elements/FluentForm.php:2025, ../includes/Elements/FluentForm.php:2191, ../includes/Elements/Formstack.php:680, ../includes/Elements/Formstack.php:735, ../includes/Elements/Formstack.php:989, ../includes/Elements/Formstack.php:1322, ../includes/Elements/Formstack.php:1487, ../includes/Elements/Formstack.php:1835, ../includes/Elements/Formstack.php:1964, ../includes/Elements/GravityForms.php:765, ../includes/Elements/GravityForms.php:1386, ../includes/Elements/GravityForms.php:1582, ../includes/Elements/GravityForms.php:1720, ../includes/Elements/GravityForms.php:1890, ../includes/Elements/GravityForms.php:2116, ../includes/Elements/Image_Accordion.php:329, ../includes/Elements/Image_Accordion.php:441, ../includes/Elements/Info_Box.php:556, ../includes/Elements/Login_Register.php:1557, ../includes/Elements/Login_Register.php:2122, ../includes/Elements/Login_Register.php:2261, ../includes/Elements/Login_Register.php:2334, ../includes/Elements/Login_Register.php:2425, ../includes/Elements/Login_Register.php:2527, ../includes/Elements/Login_Register.php:2563, ../includes/Elements/Login_Register.php:2725, ../includes/Elements/Login_Register.php:3197, ../includes/Elements/Login_Register.php:3496, ../includes/Elements/NinjaForms.php:784, ../includes/Elements/NinjaForms.php:1419, ../includes/Elements/Pricing_Table.php:749, ../includes/Elements/Pricing_Table.php:1535, ../includes/Elements/Pricing_Table.php:1840, ../includes/Elements/Product_Grid.php:806, ../includes/Elements/Product_Grid.php:1057, ../includes/Elements/Product_Grid.php:1469, ../includes/Elements/Simple_Menu.php:308, ../includes/Elements/Simple_Menu.php:468, ../includes/Elements/Simple_Menu.php:641, ../includes/Elements/Simple_Menu.php:1105, ../includes/Elements/Team_Member.php:487, ../includes/Elements/Testimonial.php:421, ../includes/Elements/Tooltip.php:349, ../includes/Elements/Tooltip.php:601, ../includes/Elements/Twitter_Feed.php:444, ../includes/Elements/Twitter_Feed.php:503, ../includes/Elements/Twitter_Feed.php:536, ../includes/Elements/WeForms.php:676, ../includes/Elements/Woo_Checkout.php:632, ../includes/Elements/Woo_Checkout.php:1224, ../includes/Elements/Woo_Checkout.php:1417, ../includes/Elements/Woo_Checkout.php:1547, ../includes/Elements/Woo_Checkout.php:1715, ../includes/Elements/Woo_Checkout.php:1930, ../includes/Elements/Woo_Checkout.php:2266, ../includes/Elements/Woo_Checkout.php:2597, ../includes/Elements/Woo_Product_Carousel.php:1030, ../includes/Elements/Woo_Product_Carousel.php:2263, ../includes/Elements/Woo_Product_Gallery.php:590, ../includes/Elements/Woo_Product_Gallery.php:694, ../includes/Elements/Woo_Product_Gallery.php:973, ../includes/Elements/Woo_Product_Gallery.php:1218, ../includes/Elements/Woo_Product_Gallery.php:1280, ../includes/Elements/WpForms.php:752, ../includes/Elements/WpForms.php:1255, ../includes/Extensions/Table_of_Content.php:648, ../includes/Extensions/Table_of_Content.php:836, ../includes/Traits/Controls.php:1336, ../includes/Traits/Controls.php:1381, ../includes/Traits/Controls.php:1882, ../includes/Traits/Woo_Product_Comparable.php:352, ../includes/Traits/Woo_Product_Comparable.php:997, ../includes/Traits/Woo_Product_Comparable.php:1146, ../includes/Traits/Woo_Product_Comparable.php:1614
627
  msgid "Padding"
628
  msgstr ""
629
 
643
  msgid "Highlight"
644
  msgstr ""
645
 
646
+ #: ../includes/Elements/Advanced_Data_Table.php:651, ../includes/Elements/Adv_Tabs.php:171, ../includes/Elements/Countdown.php:402, ../includes/Elements/Data_Table.php:148, ../includes/Elements/Filterable_Gallery.php:189, ../includes/Elements/Filterable_Gallery.php:229, ../includes/Elements/Flip_Box.php:204, ../includes/Elements/Flip_Box.php:435, ../includes/Elements/Flip_Box.php:654, ../includes/Elements/GravityForms.php:1059, ../includes/Elements/Info_Box.php:99, ../includes/Elements/Info_Box.php:805, ../includes/Elements/Info_Box.php:885, ../includes/Elements/Info_Box.php:1023, ../includes/Elements/Info_Box.php:1119, ../includes/Elements/Post_Grid.php:936, ../includes/Elements/Sticky_Video.php:552, ../includes/Extensions/Table_of_Content.php:861, ../includes/Extensions/Table_of_Content.php:1082
647
  msgid "None"
648
  msgstr ""
649
 
679
  msgid "Margin Bottom"
680
  msgstr ""
681
 
682
+ #: ../includes/Elements/Advanced_Data_Table.php:971, ../includes/Elements/Advanced_Data_Table.php:1119, ../includes/Elements/Caldera_Forms.php:229, ../includes/Elements/Caldera_Forms.php:557, ../includes/Elements/Caldera_Forms.php:1132, ../includes/Elements/Contact_Form_7.php:439, ../includes/Elements/Contact_Form_7.php:1158, ../includes/Elements/Countdown.php:114, ../includes/Elements/Cta_Box.php:97, ../includes/Elements/Data_Table.php:547, ../includes/Elements/Dual_Color_Header.php:186, ../includes/Elements/Dual_Color_Header.php:650, ../includes/Elements/Event_Calendar.php:1003, ../includes/Elements/Event_Calendar.php:1135, ../includes/Elements/Fancy_Text.php:170, ../includes/Elements/Filterable_Gallery.php:764, ../includes/Elements/FluentForm.php:263, ../includes/Elements/FluentForm.php:604, ../includes/Elements/FluentForm.php:1237, ../includes/Elements/FluentForm.php:1482, ../includes/Elements/Formstack.php:445, ../includes/Elements/Formstack.php:759, ../includes/Elements/Formstack.php:1368, ../includes/Elements/GravityForms.php:480, ../includes/Elements/GravityForms.php:668, ../includes/Elements/GravityForms.php:1760, ../includes/Elements/GravityForms.php:2010, ../includes/Elements/Login_Register.php:3251, ../includes/Elements/Login_Register.php:3571, ../includes/Elements/NinjaForms.php:417, ../includes/Elements/NinjaForms.php:599, ../includes/Elements/NinjaForms.php:1294, ../includes/Elements/Post_Grid.php:483, ../includes/Elements/Post_Grid.php:801, ../includes/Elements/Post_Grid.php:884, ../includes/Elements/Product_Grid.php:691, ../includes/Elements/Product_Grid.php:1009, ../includes/Elements/Product_Grid.php:1707, ../includes/Elements/Product_Grid.php:2192, ../includes/Elements/Progress_Bar.php:317, ../includes/Elements/Progress_Bar.php:528, ../includes/Elements/Simple_Menu.php:329, ../includes/Elements/Simple_Menu.php:736, ../includes/Elements/Simple_Menu.php:762, ../includes/Elements/Simple_Menu.php:787, ../includes/Elements/Simple_Menu.php:1082, ../includes/Elements/Tooltip.php:204, ../includes/Elements/Woo_Product_Carousel.php:816, ../includes/Elements/Woo_Product_Carousel.php:865, ../includes/Elements/Woo_Product_Gallery.php:189, ../includes/Elements/Woo_Product_Gallery.php:219, ../includes/Elements/Woo_Product_Gallery.php:548, ../includes/Elements/Woo_Product_Gallery.php:1515, ../includes/Elements/WpForms.php:384, ../includes/Elements/WpForms.php:568, ../includes/Elements/WpForms.php:1133, ../includes/Traits/Controls.php:1901
683
  msgid "Alignment"
684
  msgstr ""
685
 
686
+ #: ../includes/Elements/Advanced_Data_Table.php:1175, ../includes/Elements/Adv_Accordion.php:372, ../includes/Elements/Adv_Accordion.php:525, ../includes/Elements/Adv_Accordion.php:765, ../includes/Elements/Adv_Tabs.php:348, ../includes/Elements/Adv_Tabs.php:493, ../includes/Elements/Adv_Tabs.php:772, ../includes/Elements/Betterdocs_Category_Grid.php:570, ../includes/Elements/Betterdocs_Category_Grid.php:736, ../includes/Elements/Caldera_Forms.php:297, ../includes/Elements/Caldera_Forms.php:359, ../includes/Elements/Contact_Form_7.php:372, ../includes/Elements/Contact_Form_7.php:1653, ../includes/Elements/Content_Ticker.php:464, ../includes/Elements/Countdown.php:1088, ../includes/Elements/Cta_Box.php:450, ../includes/Elements/Cta_Box.php:663, ../includes/Elements/Cta_Box.php:880, ../includes/Elements/Dual_Color_Header.php:334, ../includes/Elements/Dual_Color_Header.php:702, ../includes/Elements/Fancy_Text.php:492, ../includes/Elements/Filterable_Gallery.php:859, ../includes/Elements/Filterable_Gallery.php:936, ../includes/Elements/Filterable_Gallery.php:1118, ../includes/Elements/Filterable_Gallery.php:1763, ../includes/Elements/Filterable_Gallery.php:2212, ../includes/Elements/Filterable_Gallery.php:2655, ../includes/Elements/Flip_Box.php:1342, ../includes/Elements/FluentForm.php:332, ../includes/Elements/FluentForm.php:394, ../includes/Elements/FluentForm.php:1170, ../includes/Elements/FluentForm.php:1225, ../includes/Elements/FluentForm.php:2203, ../includes/Elements/Formstack.php:502, ../includes/Elements/Formstack.php:552, ../includes/Elements/Formstack.php:692, ../includes/Elements/Formstack.php:747, ../includes/Elements/Formstack.php:1979, ../includes/Elements/GravityForms.php:1115, ../includes/Elements/GravityForms.php:1374, ../includes/Elements/GravityForms.php:1570, ../includes/Elements/GravityForms.php:1734, ../includes/Elements/Image_Accordion.php:341, ../includes/Elements/Image_Accordion.php:430, ../includes/Elements/Info_Box.php:689, ../includes/Elements/Info_Box.php:751, ../includes/Elements/Info_Box.php:983, ../includes/Elements/Info_Box.php:1375, ../includes/Elements/Login_Register.php:1542, ../includes/Elements/Login_Register.php:2107, ../includes/Elements/Login_Register.php:2246, ../includes/Elements/Login_Register.php:2319, ../includes/Elements/Login_Register.php:2410, ../includes/Elements/Login_Register.php:2512, ../includes/Elements/Login_Register.php:2548, ../includes/Elements/Login_Register.php:2710, ../includes/Elements/Login_Register.php:3182, ../includes/Elements/Login_Register.php:3417, ../includes/Elements/Login_Register.php:3481, ../includes/Elements/NinjaForms.php:473, ../includes/Elements/NinjaForms.php:523, ../includes/Elements/Post_Grid.php:401, ../includes/Elements/Post_Grid.php:534, ../includes/Elements/Post_Grid.php:549, ../includes/Elements/Post_Grid.php:673, ../includes/Elements/Post_Grid.php:761, ../includes/Elements/Post_Grid.php:837, ../includes/Elements/Pricing_Table.php:761, ../includes/Elements/Pricing_Table.php:1087, ../includes/Elements/Pricing_Table.php:1157, ../includes/Elements/Pricing_Table.php:1852, ../includes/Elements/Team_Member.php:475, ../includes/Elements/Testimonial.php:409, ../includes/Elements/Testimonial.php:507, ../includes/Elements/Testimonial.php:548, ../includes/Elements/Testimonial.php:589, ../includes/Elements/Testimonial.php:622, ../includes/Elements/Tooltip.php:360, ../includes/Elements/Tooltip.php:612, ../includes/Elements/WeForms.php:490, ../includes/Elements/WeForms.php:664, ../includes/Elements/Woo_Product_Carousel.php:924, ../includes/Elements/Woo_Product_Gallery.php:1206, ../includes/Elements/Woo_Product_Gallery.php:1268, ../includes/Elements/WpForms.php:440, ../includes/Elements/WpForms.php:490, ../includes/Elements/WpForms.php:522, ../includes/Traits/Controls.php:1348, ../includes/Traits/Controls.php:1393, ../includes/Traits/Woo_Product_Comparable.php:340, ../includes/Traits/Woo_Product_Comparable.php:1462
687
  msgid "Margin"
688
  msgstr ""
689
 
690
+ #: ../includes/Elements/Advanced_Data_Table.php:1195, ../includes/Elements/Advanced_Data_Table.php:1361, ../includes/Elements/Adv_Accordion.php:536, ../includes/Elements/Adv_Accordion.php:864, ../includes/Elements/Adv_Tabs.php:504, ../includes/Elements/Betterdocs_Category_Box.php:284, ../includes/Elements/Betterdocs_Category_Box.php:452, ../includes/Elements/Betterdocs_Category_Box.php:677, ../includes/Elements/Betterdocs_Category_Box.php:846, ../includes/Elements/Betterdocs_Category_Grid.php:315, ../includes/Elements/Betterdocs_Category_Grid.php:455, ../includes/Elements/Betterdocs_Category_Grid.php:610, ../includes/Elements/Betterdocs_Category_Grid.php:800, ../includes/Elements/Betterdocs_Category_Grid.php:1348, ../includes/Elements/Betterdocs_Search_Form.php:389, ../includes/Elements/Caldera_Forms.php:585, ../includes/Elements/Caldera_Forms.php:973, ../includes/Elements/Caldera_Forms.php:1197, ../includes/Elements/Contact_Form_7.php:543, ../includes/Elements/Contact_Form_7.php:1000, ../includes/Elements/Contact_Form_7.php:1223, ../includes/Elements/Content_Ticker.php:590, ../includes/Elements/Creative_Button.php:260, ../includes/Elements/Cta_Box.php:693, ../includes/Elements/Cta_Box.php:899, ../includes/Elements/Data_Table.php:619, ../includes/Elements/Data_Table.php:812, ../includes/Elements/Data_Table.php:984, ../includes/Elements/Data_Table.php:1082, ../includes/Elements/Event_Calendar.php:780, ../includes/Elements/Filterable_Gallery.php:955, ../includes/Elements/Filterable_Gallery.php:1720, ../includes/Elements/Filterable_Gallery.php:2484, ../includes/Elements/Flip_Box.php:1336, ../includes/Elements/FluentForm.php:634, ../includes/Elements/FluentForm.php:969, ../includes/Elements/FluentForm.php:1548, ../includes/Elements/FluentForm.php:1741, ../includes/Elements/FluentForm.php:1958, ../includes/Elements/Formstack.php:833, ../includes/Elements/Formstack.php:1165, ../includes/Elements/Formstack.php:1433, ../includes/Elements/Formstack.php:1603, ../includes/Elements/Formstack.php:1766, ../includes/Elements/GravityForms.php:696, ../includes/Elements/GravityForms.php:1286, ../includes/Elements/GravityForms.php:1482, ../includes/Elements/GravityForms.php:1833, ../includes/Elements/GravityForms.php:2062, ../includes/Elements/Info_Box.php:537, ../includes/Elements/Info_Box.php:765, ../includes/Elements/Info_Box.php:997, ../includes/Elements/Info_Box.php:1230, ../includes/Elements/Info_Box.php:1341, ../includes/Elements/Login_Register.php:2613, ../includes/Elements/Login_Register.php:3281, ../includes/Elements/Login_Register.php:3444, ../includes/Elements/Login_Register.php:3602, ../includes/Elements/NinjaForms.php:627, ../includes/Elements/NinjaForms.php:1020, ../includes/Elements/NinjaForms.php:1365, ../includes/Elements/Pricing_Table.php:1904, ../includes/Elements/Product_Grid.php:861, ../includes/Elements/Product_Grid.php:1508, ../includes/Elements/Product_Grid.php:1950, ../includes/Elements/Product_Grid.php:2245, ../includes/Elements/Product_Grid.php:2679, ../includes/Elements/Team_Member.php:714, ../includes/Elements/Tooltip.php:403, ../includes/Elements/WeForms.php:687, ../includes/Elements/Woo_Checkout.php:904, ../includes/Elements/Woo_Checkout.php:947, ../includes/Elements/Woo_Checkout.php:1090, ../includes/Elements/Woo_Checkout.php:1309, ../includes/Elements/Woo_Checkout.php:1607, ../includes/Elements/Woo_Checkout.php:2067, ../includes/Elements/Woo_Checkout.php:2323, ../includes/Elements/Woo_Checkout.php:2477, ../includes/Elements/Woo_Product_Carousel.php:936, ../includes/Elements/Woo_Product_Carousel.php:1372, ../includes/Elements/Woo_Product_Carousel.php:1777, ../includes/Elements/Woo_Product_Carousel.php:2221, ../includes/Elements/Woo_Product_Carousel.php:2643, ../includes/Elements/Woo_Product_Gallery.php:604, ../includes/Elements/Woo_Product_Gallery.php:1008, ../includes/Elements/Woo_Product_Gallery.php:1303, ../includes/Elements/Woo_Product_Gallery.php:1664, ../includes/Elements/Woo_Product_Gallery.php:2017, ../includes/Elements/WpForms.php:596, ../includes/Elements/WpForms.php:974, ../includes/Elements/WpForms.php:1201, ../includes/Extensions/Table_of_Content.php:934, ../includes/Traits/Controls.php:1225, ../includes/Traits/Controls.php:1412, ../includes/Traits/Woo_Product_Comparable.php:838, ../includes/Traits/Woo_Product_Comparable.php:1224, ../includes/Traits/Woo_Product_Comparable.php:1642
691
  msgid "Normal"
692
  msgstr ""
693
 
694
+ #: ../includes/Elements/Advanced_Data_Table.php:1265, ../includes/Elements/Advanced_Data_Table.php:1391, ../includes/Elements/Adv_Accordion.php:594, ../includes/Elements/Adv_Accordion.php:911, ../includes/Elements/Adv_Tabs.php:571, ../includes/Elements/Betterdocs_Category_Box.php:330, ../includes/Elements/Betterdocs_Category_Box.php:548, ../includes/Elements/Betterdocs_Category_Box.php:710, ../includes/Elements/Betterdocs_Category_Box.php:959, ../includes/Elements/Betterdocs_Category_Grid.php:363, ../includes/Elements/Betterdocs_Category_Grid.php:496, ../includes/Elements/Betterdocs_Category_Grid.php:664, ../includes/Elements/Betterdocs_Category_Grid.php:872, ../includes/Elements/Betterdocs_Category_Grid.php:1432, ../includes/Elements/Betterdocs_Search_Form.php:473, ../includes/Elements/Caldera_Forms.php:1303, ../includes/Elements/Contact_Form_7.php:1329, ../includes/Elements/Content_Ticker.php:646, ../includes/Elements/Creative_Button.php:353, ../includes/Elements/Cta_Box.php:764, ../includes/Elements/Cta_Box.php:951, ../includes/Elements/Data_Table.php:659, ../includes/Elements/Data_Table.php:903, ../includes/Elements/Data_Table.php:1001, ../includes/Elements/Data_Table.php:1100, ../includes/Elements/Event_Calendar.php:847, ../includes/Elements/Filterable_Gallery.php:1858, ../includes/Elements/Filterable_Gallery.php:2679, ../includes/Elements/Flip_Box.php:1419, ../includes/Elements/FluentForm.php:1675, ../includes/Elements/FluentForm.php:2039, ../includes/Elements/Formstack.php:1539, ../includes/Elements/Formstack.php:1849, ../includes/Elements/GravityForms.php:1925, ../includes/Elements/GravityForms.php:2149, ../includes/Elements/Info_Box.php:598, ../includes/Elements/Info_Box.php:836, ../includes/Elements/Info_Box.php:1069, ../includes/Elements/Info_Box.php:1276, ../includes/Elements/Info_Box.php:1451, ../includes/Elements/Login_Register.php:3318, ../includes/Elements/Login_Register.php:3639, ../includes/Elements/NinjaForms.php:1452, ../includes/Elements/Pricing_Table.php:403, ../includes/Elements/Pricing_Table.php:1973, ../includes/Elements/Product_Grid.php:911, ../includes/Elements/Product_Grid.php:1584, ../includes/Elements/Product_Grid.php:2059, ../includes/Elements/Product_Grid.php:2283, ../includes/Elements/Product_Grid.php:2730, ../includes/Elements/Simple_Menu.php:390, ../includes/Elements/Simple_Menu.php:516, ../includes/Elements/Simple_Menu.php:969, ../includes/Elements/Simple_Menu.php:1278, ../includes/Elements/Team_Member.php:791, ../includes/Elements/Tooltip.php:446, ../includes/Elements/WeForms.php:737, ../includes/Elements/Woo_Checkout.php:920, ../includes/Elements/Woo_Checkout.php:964, ../includes/Elements/Woo_Checkout.php:1106, ../includes/Elements/Woo_Checkout.php:1349, ../includes/Elements/Woo_Checkout.php:1647, ../includes/Elements/Woo_Checkout.php:2083, ../includes/Elements/Woo_Checkout.php:2517, ../includes/Elements/Woo_Product_Carousel.php:976, ../includes/Elements/Woo_Product_Carousel.php:1454, ../includes/Elements/Woo_Product_Carousel.php:1829, ../includes/Elements/Woo_Product_Carousel.php:2284, ../includes/Elements/Woo_Product_Carousel.php:2699, ../includes/Elements/Woo_Product_Gallery.php:643, ../includes/Elements/Woo_Product_Gallery.php:1076, ../includes/Elements/Woo_Product_Gallery.php:1337, ../includes/Elements/Woo_Product_Gallery.php:1714, ../includes/Elements/Woo_Product_Gallery.php:2068, ../includes/Elements/WpForms.php:1308, ../includes/Extensions/Table_of_Content.php:957, ../includes/Traits/Controls.php:1280, ../includes/Traits/Controls.php:1474, ../includes/Traits/Woo_Product_Comparable.php:938, ../includes/Traits/Woo_Product_Comparable.php:1305, ../includes/Traits/Woo_Product_Comparable.php:1692
695
  msgid "Hover"
696
  msgstr ""
697
 
698
+ #: ../includes/Elements/Advanced_Data_Table.php:1366, ../includes/Elements/Advanced_Data_Table.php:1396, ../includes/Elements/Betterdocs_Category_Box.php:683, ../includes/Elements/Betterdocs_Category_Box.php:716, ../includes/Elements/Betterdocs_Category_Box.php:860, ../includes/Elements/Betterdocs_Category_Box.php:965, ../includes/Elements/Betterdocs_Category_Grid.php:616, ../includes/Elements/Betterdocs_Category_Grid.php:670, ../includes/Elements/Betterdocs_Category_Grid.php:806, ../includes/Elements/Betterdocs_Category_Grid.php:903, ../includes/Elements/Betterdocs_Category_Grid.php:1006, ../includes/Elements/Betterdocs_Category_Grid.php:1086, ../includes/Elements/Betterdocs_Category_Grid.php:1162, ../includes/Elements/Betterdocs_Category_Grid.php:1239, ../includes/Elements/Betterdocs_Category_Grid.php:1362, ../includes/Elements/Betterdocs_Category_Grid.php:1461, ../includes/Elements/Betterdocs_Search_Form.php:237, ../includes/Elements/Betterdocs_Search_Form.php:274, ../includes/Elements/Caldera_Forms.php:983, ../includes/Elements/Caldera_Forms.php:1099, ../includes/Elements/Caldera_Forms.php:1431, ../includes/Elements/Contact_Form_7.php:1010, ../includes/Elements/Contact_Form_7.php:1126, ../includes/Elements/Content_Ticker.php:609, ../includes/Elements/Content_Ticker.php:665, ../includes/Elements/Cta_Box.php:518, ../includes/Elements/Cta_Box.php:559, ../includes/Elements/Cta_Box.php:601, ../includes/Elements/Cta_Box.php:1042, ../includes/Elements/Data_Table.php:624, ../includes/Elements/Data_Table.php:664, ../includes/Elements/Data_Table.php:1175, ../includes/Elements/Dual_Color_Header.php:473, ../includes/Elements/Dual_Color_Header.php:570, ../includes/Elements/Dual_Color_Header.php:713, ../includes/Elements/Event_Calendar.php:747, ../includes/Elements/Event_Calendar.php:787, ../includes/Elements/Event_Calendar.php:854, ../includes/Elements/Event_Calendar.php:908, ../includes/Elements/Event_Calendar.php:991, ../includes/Elements/Event_Calendar.php:1066, ../includes/Elements/Event_Calendar.php:1100, ../includes/Elements/Event_Calendar.php:1209, ../includes/Elements/Event_Calendar.php:1575, ../includes/Elements/Facebook_Feed.php:769, ../includes/Elements/Facebook_Feed.php:807, ../includes/Elements/Facebook_Feed.php:847, ../includes/Elements/Facebook_Feed.php:895, ../includes/Elements/Facebook_Feed.php:933, ../includes/Elements/Facebook_Feed.php:971, ../includes/Elements/Facebook_Feed.php:1024, ../includes/Elements/Facebook_Feed.php:1062, ../includes/Elements/Facebook_Feed.php:1100, ../includes/Elements/Facebook_Feed.php:1132, ../includes/Elements/Fancy_Text.php:346, ../includes/Elements/Feature_List.php:541, ../includes/Elements/Feature_List.php:763, ../includes/Elements/Feature_List.php:797, ../includes/Elements/Filterable_Gallery.php:1217, ../includes/Elements/Filterable_Gallery.php:1257, ../includes/Elements/Filterable_Gallery.php:1579, ../includes/Elements/Filterable_Gallery.php:1594, ../includes/Elements/Filterable_Gallery.php:1639, ../includes/Elements/Filterable_Gallery.php:1654, ../includes/Elements/Filterable_Gallery.php:1739, ../includes/Elements/Filterable_Gallery.php:1877, ../includes/Elements/Filterable_Gallery.php:1953, ../includes/Elements/Filterable_Gallery.php:1989, ../includes/Elements/Filterable_Gallery.php:2036, ../includes/Elements/Filterable_Gallery.php:2177, ../includes/Elements/Filterable_Gallery.php:2364, ../includes/Elements/Flip_Box.php:951, ../includes/Elements/Flip_Box.php:1064, ../includes/Elements/Flip_Box.php:1191, ../includes/Elements/Flip_Box.php:1222, ../includes/Elements/Flip_Box.php:1260, ../includes/Elements/Flip_Box.php:1292, ../includes/Elements/Flip_Box.php:1366, ../includes/Elements/Flip_Box.php:1425, ../includes/Elements/FluentForm.php:441, ../includes/Elements/FluentForm.php:979, ../includes/Elements/FluentForm.php:1095, ../includes/Elements/FluentForm.php:1136, ../includes/Elements/FluentForm.php:1191, ../includes/Elements/FluentForm.php:1295, ../includes/Elements/FluentForm.php:1357, ../includes/Elements/FluentForm.php:1973, ../includes/Elements/FluentForm.php:2046, ../includes/Elements/FluentForm.php:2167, ../includes/Elements/Formstack.php:658, ../includes/Elements/Formstack.php:713, ../includes/Elements/Formstack.php:1175, ../includes/Elements/Formstack.php:1255, ../includes/Elements/Formstack.php:1309, ../includes/Elements/Formstack.php:1856, ../includes/Elements/Formstack.php:1937, ../includes/Elements/GravityForms.php:1190, ../includes/Elements/GravityForms.php:1296, ../includes/Elements/GravityForms.php:1410, ../includes/Elements/GravityForms.php:1492, ../includes/Elements/GravityForms.php:1606, ../includes/Elements/GravityForms.php:1650, ../includes/Elements/Image_Accordion.php:496, ../includes/Elements/Image_Accordion.php:525, ../includes/Elements/Info_Box.php:1355, ../includes/Elements/Info_Box.php:1431, ../includes/Elements/Login_Register.php:2349, ../includes/Elements/Login_Register.php:2440, ../includes/Elements/Login_Register.php:2854, ../includes/Elements/NinjaForms.php:1030, ../includes/Elements/NinjaForms.php:1148, ../includes/Elements/NinjaForms.php:1567, ../includes/Elements/Post_Grid.php:380, ../includes/Elements/Post_Grid.php:453, ../includes/Elements/Post_Grid.php:863, ../includes/Elements/Pricing_Table.php:884, ../includes/Elements/Pricing_Table.php:948, ../includes/Elements/Pricing_Table.php:1039, ../includes/Elements/Pricing_Table.php:1068, ../includes/Elements/Pricing_Table.php:1109, ../includes/Elements/Pricing_Table.php:1138, ../includes/Elements/Pricing_Table.php:1178, ../includes/Elements/Pricing_Table.php:1213, ../includes/Elements/Pricing_Table.php:1391, ../includes/Elements/Pricing_Table.php:1523, ../includes/Elements/Product_Grid.php:1331, ../includes/Elements/Product_Grid.php:1955, ../includes/Elements/Product_Grid.php:2064, ../includes/Elements/Product_Grid.php:2401, ../includes/Elements/Product_Grid.php:2582, ../includes/Elements/Product_Grid.php:2623, ../includes/Elements/Product_Grid.php:2684, ../includes/Elements/Product_Grid.php:2735, ../includes/Elements/Product_Grid.php:2892, ../includes/Elements/Progress_Bar.php:407, ../includes/Elements/Progress_Bar.php:467, ../includes/Elements/Simple_Menu.php:931, ../includes/Elements/Simple_Menu.php:1025, ../includes/Elements/Simple_Menu.php:1240, ../includes/Elements/Simple_Menu.php:1333, ../includes/Elements/Twitter_Feed.php:695, ../includes/Elements/Twitter_Feed.php:724, ../includes/Elements/Twitter_Feed.php:754, ../includes/Elements/Twitter_Feed.php:924, ../includes/Elements/Woo_Checkout.php:576, ../includes/Elements/Woo_Checkout.php:750, ../includes/Elements/Woo_Checkout.php:764, ../includes/Elements/Woo_Checkout.php:872, ../includes/Elements/Woo_Checkout.php:886, ../includes/Elements/Woo_Checkout.php:1059, ../includes/Elements/Woo_Checkout.php:1095, ../includes/Elements/Woo_Checkout.php:1111, ../includes/Elements/Woo_Checkout.php:1179, ../includes/Elements/Woo_Checkout.php:1278, ../includes/Elements/Woo_Checkout.php:1328, ../includes/Elements/Woo_Checkout.php:1368, ../includes/Elements/Woo_Checkout.php:1465, ../includes/Elements/Woo_Checkout.php:1626, ../includes/Elements/Woo_Checkout.php:1666, ../includes/Elements/Woo_Checkout.php:1784, ../includes/Elements/Woo_Checkout.php:1828, ../includes/Elements/Woo_Checkout.php:1872, ../includes/Elements/Woo_Checkout.php:1978, ../includes/Elements/Woo_Checkout.php:2017, ../includes/Elements/Woo_Checkout.php:2057, ../includes/Elements/Woo_Checkout.php:2330, ../includes/Elements/Woo_Checkout.php:2351, ../includes/Elements/Woo_Checkout.php:2386, ../includes/Elements/Woo_Checkout.php:2407, ../includes/Elements/Woo_Checkout.php:2496, ../includes/Elements/Woo_Checkout.php:2536, ../includes/Elements/Woo_Product_Carousel.php:1182, ../includes/Elements/Woo_Product_Carousel.php:1377, ../includes/Elements/Woo_Product_Carousel.php:1459, ../includes/Elements/Woo_Product_Carousel.php:1679, ../includes/Elements/Woo_Product_Carousel.php:1720, ../includes/Elements/Woo_Product_Carousel.php:1782, ../includes/Elements/Woo_Product_Carousel.php:1834, ../includes/Elements/Woo_Product_Carousel.php:1987, ../includes/Elements/Woo_Product_Carousel.php:2228, ../includes/Elements/Woo_Product_Carousel.php:2291, ../includes/Elements/Woo_Product_Carousel.php:2324, ../includes/Elements/Woo_Product_Carousel.php:2662, ../includes/Elements/Woo_Product_Carousel.php:2718, ../includes/Elements/Woo_Product_Gallery.php:1308, ../includes/Elements/Woo_Product_Gallery.php:1342, ../includes/Elements/Woo_Product_Gallery.php:1380, ../includes/Elements/Woo_Product_Gallery.php:1669, ../includes/Elements/Woo_Product_Gallery.php:1719, ../includes/Elements/Woo_Product_Gallery.php:1920, ../includes/Elements/Woo_Product_Gallery.php:1961, ../includes/Elements/Woo_Product_Gallery.php:2022, ../includes/Elements/Woo_Product_Gallery.php:2073, ../includes/Elements/Woo_Product_Gallery.php:2230, ../includes/Elements/WpForms.php:984, ../includes/Elements/WpForms.php:1100, ../includes/Extensions/Table_of_Content.php:1093, ../includes/Traits/Woo_Product_Comparable.php:107, ../includes/Traits/Woo_Product_Comparable.php:1372, ../includes/Traits/Woo_Product_Comparable.php:1484
699
  msgid "Color"
700
  msgstr ""
701
 
723
  msgid "Select Accordion Tab Title Tag"
724
  msgstr ""
725
 
726
+ #: ../includes/Elements/Adv_Accordion.php:127, ../includes/Elements/Betterdocs_Category_Box.php:184, ../includes/Elements/Betterdocs_Category_Grid.php:222, ../includes/Elements/Cta_Box.php:198, ../includes/Elements/Dual_Color_Header.php:138, ../includes/Elements/Filterable_Gallery.php:368, ../includes/Elements/Flip_Box.php:302, ../includes/Elements/Flip_Box.php:533, ../includes/Elements/Image_Accordion.php:156, ../includes/Elements/Info_Box.php:234, ../includes/Elements/Product_Grid.php:440, ../includes/Elements/Product_Grid.php:1792, ../includes/Elements/Progress_Bar.php:138, ../includes/Elements/Tooltip.php:158, ../includes/Elements/Woo_Product_Carousel.php:235, ../includes/Elements/Woo_Product_Carousel.php:395, ../includes/Elements/Woo_Product_Gallery.php:459, ../includes/Elements/Woo_Product_Gallery.php:1580, ../includes/Extensions/Table_of_Content.php:147, ../includes/Traits/Controls.php:829
727
  msgid "H1"
728
  msgstr ""
729
 
730
+ #: ../includes/Elements/Adv_Accordion.php:128, ../includes/Elements/Betterdocs_Category_Box.php:185, ../includes/Elements/Betterdocs_Category_Grid.php:223, ../includes/Elements/Cta_Box.php:199, ../includes/Elements/Dual_Color_Header.php:139, ../includes/Elements/Filterable_Gallery.php:369, ../includes/Elements/Flip_Box.php:303, ../includes/Elements/Flip_Box.php:534, ../includes/Elements/Image_Accordion.php:157, ../includes/Elements/Info_Box.php:235, ../includes/Elements/Product_Grid.php:441, ../includes/Elements/Product_Grid.php:1793, ../includes/Elements/Progress_Bar.php:139, ../includes/Elements/Tooltip.php:159, ../includes/Elements/Woo_Product_Carousel.php:236, ../includes/Elements/Woo_Product_Carousel.php:396, ../includes/Elements/Woo_Product_Gallery.php:460, ../includes/Elements/Woo_Product_Gallery.php:1581, ../includes/Extensions/Table_of_Content.php:148, ../includes/Traits/Controls.php:830
731
  msgid "H2"
732
  msgstr ""
733
 
734
+ #: ../includes/Elements/Adv_Accordion.php:129, ../includes/Elements/Betterdocs_Category_Box.php:186, ../includes/Elements/Betterdocs_Category_Grid.php:224, ../includes/Elements/Cta_Box.php:200, ../includes/Elements/Dual_Color_Header.php:140, ../includes/Elements/Filterable_Gallery.php:370, ../includes/Elements/Flip_Box.php:304, ../includes/Elements/Flip_Box.php:535, ../includes/Elements/Image_Accordion.php:158, ../includes/Elements/Info_Box.php:236, ../includes/Elements/Product_Grid.php:442, ../includes/Elements/Product_Grid.php:1794, ../includes/Elements/Progress_Bar.php:140, ../includes/Elements/Tooltip.php:160, ../includes/Elements/Woo_Product_Carousel.php:237, ../includes/Elements/Woo_Product_Carousel.php:397, ../includes/Elements/Woo_Product_Gallery.php:461, ../includes/Elements/Woo_Product_Gallery.php:1582, ../includes/Extensions/Table_of_Content.php:149, ../includes/Traits/Controls.php:831
735
  msgid "H3"
736
  msgstr ""
737
 
738
+ #: ../includes/Elements/Adv_Accordion.php:130, ../includes/Elements/Betterdocs_Category_Box.php:187, ../includes/Elements/Betterdocs_Category_Grid.php:225, ../includes/Elements/Cta_Box.php:201, ../includes/Elements/Dual_Color_Header.php:141, ../includes/Elements/Filterable_Gallery.php:371, ../includes/Elements/Flip_Box.php:305, ../includes/Elements/Flip_Box.php:536, ../includes/Elements/Image_Accordion.php:159, ../includes/Elements/Info_Box.php:237, ../includes/Elements/Product_Grid.php:443, ../includes/Elements/Product_Grid.php:1795, ../includes/Elements/Progress_Bar.php:141, ../includes/Elements/Tooltip.php:161, ../includes/Elements/Woo_Product_Carousel.php:238, ../includes/Elements/Woo_Product_Carousel.php:398, ../includes/Elements/Woo_Product_Gallery.php:462, ../includes/Elements/Woo_Product_Gallery.php:1583, ../includes/Extensions/Table_of_Content.php:150, ../includes/Traits/Controls.php:832
739
  msgid "H4"
740
  msgstr ""
741
 
742
+ #: ../includes/Elements/Adv_Accordion.php:131, ../includes/Elements/Betterdocs_Category_Box.php:188, ../includes/Elements/Betterdocs_Category_Grid.php:226, ../includes/Elements/Cta_Box.php:202, ../includes/Elements/Dual_Color_Header.php:142, ../includes/Elements/Filterable_Gallery.php:372, ../includes/Elements/Flip_Box.php:306, ../includes/Elements/Flip_Box.php:537, ../includes/Elements/Image_Accordion.php:160, ../includes/Elements/Info_Box.php:238, ../includes/Elements/Product_Grid.php:444, ../includes/Elements/Product_Grid.php:1796, ../includes/Elements/Progress_Bar.php:142, ../includes/Elements/Tooltip.php:162, ../includes/Elements/Woo_Product_Carousel.php:239, ../includes/Elements/Woo_Product_Carousel.php:399, ../includes/Elements/Woo_Product_Gallery.php:463, ../includes/Elements/Woo_Product_Gallery.php:1584, ../includes/Extensions/Table_of_Content.php:151, ../includes/Traits/Controls.php:833
743
  msgid "H5"
744
  msgstr ""
745
 
746
+ #: ../includes/Elements/Adv_Accordion.php:132, ../includes/Elements/Betterdocs_Category_Box.php:189, ../includes/Elements/Betterdocs_Category_Grid.php:227, ../includes/Elements/Cta_Box.php:203, ../includes/Elements/Dual_Color_Header.php:143, ../includes/Elements/Filterable_Gallery.php:373, ../includes/Elements/Flip_Box.php:307, ../includes/Elements/Flip_Box.php:538, ../includes/Elements/Image_Accordion.php:161, ../includes/Elements/Info_Box.php:239, ../includes/Elements/Product_Grid.php:445, ../includes/Elements/Product_Grid.php:1797, ../includes/Elements/Progress_Bar.php:143, ../includes/Elements/Tooltip.php:163, ../includes/Elements/Woo_Product_Carousel.php:240, ../includes/Elements/Woo_Product_Carousel.php:400, ../includes/Elements/Woo_Product_Gallery.php:464, ../includes/Elements/Woo_Product_Gallery.php:1585, ../includes/Extensions/Table_of_Content.php:152, ../includes/Traits/Controls.php:834
747
  msgid "H6"
748
  msgstr ""
749
 
750
+ #: ../includes/Elements/Adv_Accordion.php:133, ../includes/Elements/Betterdocs_Category_Box.php:190, ../includes/Elements/Betterdocs_Category_Grid.php:228, ../includes/Elements/Cta_Box.php:204, ../includes/Elements/Dual_Color_Header.php:144, ../includes/Elements/Filterable_Gallery.php:374, ../includes/Elements/Flip_Box.php:308, ../includes/Elements/Flip_Box.php:539, ../includes/Elements/Image_Accordion.php:162, ../includes/Elements/Info_Box.php:240, ../includes/Elements/Product_Grid.php:1798, ../includes/Elements/Woo_Product_Carousel.php:241, ../includes/Elements/Woo_Product_Carousel.php:401, ../includes/Elements/Woo_Product_Gallery.php:1586, ../includes/Traits/Controls.php:835
751
  msgid "Span"
752
  msgstr ""
753
 
754
+ #: ../includes/Elements/Adv_Accordion.php:134, ../includes/Elements/Betterdocs_Category_Box.php:191, ../includes/Elements/Betterdocs_Category_Grid.php:229, ../includes/Elements/Cta_Box.php:205, ../includes/Elements/Dual_Color_Header.php:145, ../includes/Elements/Filterable_Gallery.php:375, ../includes/Elements/Flip_Box.php:309, ../includes/Elements/Flip_Box.php:540, ../includes/Elements/Image_Accordion.php:163, ../includes/Elements/Info_Box.php:241, ../includes/Elements/Product_Grid.php:1799, ../includes/Elements/Tooltip.php:166, ../includes/Elements/Woo_Product_Carousel.php:242, ../includes/Elements/Woo_Product_Carousel.php:402, ../includes/Elements/Woo_Product_Gallery.php:1587, ../includes/Traits/Controls.php:836
755
  msgid "P"
756
  msgstr ""
757
 
758
+ #: ../includes/Elements/Adv_Accordion.php:135, ../includes/Elements/Betterdocs_Category_Box.php:192, ../includes/Elements/Betterdocs_Category_Grid.php:230, ../includes/Elements/Cta_Box.php:206, ../includes/Elements/Dual_Color_Header.php:146, ../includes/Elements/Filterable_Gallery.php:376, ../includes/Elements/Flip_Box.php:310, ../includes/Elements/Flip_Box.php:541, ../includes/Elements/Image_Accordion.php:164, ../includes/Elements/Info_Box.php:242, ../includes/Elements/Product_Grid.php:1800, ../includes/Elements/Woo_Product_Carousel.php:243, ../includes/Elements/Woo_Product_Carousel.php:403, ../includes/Elements/Woo_Product_Gallery.php:1588, ../includes/Traits/Controls.php:837
759
  msgid "Div"
760
  msgstr ""
761
 
787
  msgid "Enable Tab Icon"
788
  msgstr ""
789
 
790
+ #: ../includes/Elements/Adv_Accordion.php:224, ../includes/Elements/Adv_Tabs.php:175, ../includes/Elements/Adv_Tabs.php:190, ../includes/Elements/Betterdocs_Category_Box.php:407, ../includes/Elements/Betterdocs_Category_Box.php:441, ../includes/Elements/Betterdocs_Category_Grid.php:441, ../includes/Elements/Betterdocs_Category_Grid.php:1065, ../includes/Elements/Betterdocs_Category_Grid.php:1074, ../includes/Elements/Betterdocs_Category_Grid.php:1206, ../includes/Elements/Betterdocs_Category_Grid.php:1313, ../includes/Elements/Creative_Button.php:131, ../includes/Elements/Cta_Box.php:151, ../includes/Elements/Data_Table.php:152, ../includes/Elements/Data_Table.php:171, ../includes/Elements/Data_Table.php:298, ../includes/Elements/Data_Table.php:351, ../includes/Elements/Dual_Color_Header.php:118, ../includes/Elements/Dual_Color_Header.php:273, ../includes/Elements/Feature_List.php:78, ../includes/Elements/Feature_List.php:94, ../includes/Elements/Feature_List.php:502, ../includes/Elements/Flip_Box.php:206, ../includes/Elements/Flip_Box.php:232, ../includes/Elements/Flip_Box.php:437, ../includes/Elements/Flip_Box.php:463, ../includes/Elements/Info_Box.php:107, ../includes/Elements/Info_Box.php:176, ../includes/Elements/Info_Box.php:441, ../includes/Elements/Pricing_Table.php:173, ../includes/Elements/Simple_Menu.php:884, ../includes/Elements/Simple_Menu.php:1193, ../includes/Elements/Team_Member.php:166, ../includes/Elements/Tooltip.php:74, ../includes/Elements/Tooltip.php:97, ../includes/Elements/Twitter_Feed.php:890, ../includes/Extensions/Table_of_Content.php:669, ../includes/Traits/Controls.php:741, ../includes/Traits/Controls.php:794
791
  msgid "Icon"
792
  msgstr ""
793
 
794
+ #: ../includes/Elements/Adv_Accordion.php:240, ../includes/Elements/Adv_Accordion.php:243, ../includes/Elements/Adv_Tabs.php:221, ../includes/Elements/Adv_Tabs.php:223, ../includes/Elements/Adv_Tabs.php:393
795
  msgid "Tab Title"
796
  msgstr ""
797
 
798
+ #: ../includes/Elements/Adv_Accordion.php:252, ../includes/Elements/Adv_Tabs.php:231, ../includes/Elements/Cta_Box.php:214, ../includes/Elements/Data_Table.php:294, ../includes/Elements/Info_Box.php:249, ../includes/Elements/Tooltip.php:69
799
  msgid "Content Type"
800
  msgstr ""
801
 
802
+ #: ../includes/Elements/Adv_Accordion.php:255, ../includes/Elements/Adv_Tabs.php:147, ../includes/Elements/Adv_Tabs.php:234, ../includes/Elements/Adv_Tabs.php:717, ../includes/Elements/Cta_Box.php:217, ../includes/Elements/Cta_Box.php:238, ../includes/Elements/Data_Table.php:256, ../includes/Elements/Data_Table.php:371, ../includes/Elements/Data_Table.php:385, ../includes/Elements/Event_Calendar.php:258, ../includes/Elements/Event_Calendar.php:1485, ../includes/Elements/Facebook_Feed.php:948, ../includes/Elements/Feature_List.php:191, ../includes/Elements/Feature_List.php:695, ../includes/Elements/Flip_Box.php:157, ../includes/Elements/Image_Accordion.php:97, ../includes/Elements/Image_Accordion.php:208, ../includes/Elements/Image_Accordion.php:516, ../includes/Elements/Info_Box.php:252, ../includes/Elements/Product_Grid.php:2498, ../includes/Elements/Tooltip.php:140, ../includes/Elements/Tooltip.php:273, ../includes/Elements/Woo_Product_Carousel.php:1583, ../includes/Elements/Woo_Product_Gallery.php:1836
803
  msgid "Content"
804
  msgstr ""
805
 
806
+ #: ../includes/Elements/Adv_Accordion.php:256, ../includes/Elements/Adv_Tabs.php:235, ../includes/Elements/Countdown.php:405, ../includes/Elements/Cta_Box.php:218, ../includes/Elements/Info_Box.php:253
807
  msgid "Saved Templates"
808
  msgstr ""
809
 
810
+ #: ../includes/Elements/Adv_Accordion.php:266, ../includes/Elements/Adv_Tabs.php:244, ../includes/Elements/Countdown.php:452, ../includes/Elements/Cta_Box.php:227, ../includes/Elements/Data_Table.php:339, ../includes/Elements/Info_Box.php:262
811
  msgid "Choose Template"
812
  msgstr ""
813
 
814
+ #: ../includes/Elements/Adv_Accordion.php:281, ../includes/Elements/Adv_Tabs.php:258
815
  msgid "Tab Content"
816
  msgstr ""
817
 
818
+ #: ../includes/Elements/Adv_Accordion.php:283, ../includes/Elements/Adv_Tabs.php:260, ../includes/Elements/Feature_List.php:193
819
  msgid "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Optio, neque qui velit. Magni dolorum quidem ipsam eligendi, totam, facilis laudantium cum accusamus ullam voluptatibus commodi numquam, error, est. Ea, consequatur."
820
  msgstr ""
821
 
822
+ #: ../includes/Elements/Adv_Accordion.php:294, ../includes/Elements/Adv_Tabs.php:271
823
  msgid "Custom ID"
824
  msgstr ""
825
 
826
+ #: ../includes/Elements/Adv_Accordion.php:296, ../includes/Elements/Adv_Tabs.php:273
827
  msgid "Custom ID will be added as an anchor tag. For example, if you add ‘test’ as your custom ID, the link will become like the following: https://www.example.com/#test and it will open the respective tab directly."
828
  msgstr ""
829
 
830
+ #: ../includes/Elements/Adv_Accordion.php:307
831
  msgid "Accordion Tab Title 1"
832
  msgstr ""
833
 
834
+ #: ../includes/Elements/Adv_Accordion.php:308
835
  msgid "Accordion Tab Title 2"
836
  msgstr ""
837
 
838
+ #: ../includes/Elements/Adv_Accordion.php:309
839
  msgid "Accordion Tab Title 3"
840
  msgstr ""
841
 
842
+ #: ../includes/Elements/Adv_Accordion.php:354, ../includes/Elements/Data_Table.php:513, ../includes/Elements/Filterable_Gallery.php:827
843
  msgid "General Style"
844
  msgstr ""
845
 
846
+ #: ../includes/Elements/Adv_Accordion.php:414
847
  msgid "Tab Style"
848
  msgstr ""
849
 
850
+ #: ../includes/Elements/Adv_Accordion.php:428, ../includes/Elements/Adv_Accordion.php:805, ../includes/Elements/Adv_Tabs.php:433, ../includes/Elements/Creative_Button.php:499, ../includes/Elements/Data_Table.php:711, ../includes/Elements/Data_Table.php:1059, ../includes/Elements/Dual_Color_Header.php:397, ../includes/Elements/Dual_Color_Header.php:608, ../includes/Elements/Event_Calendar.php:1456, ../includes/Elements/Event_Calendar.php:1523, ../includes/Elements/Feature_List.php:575, ../includes/Elements/Filterable_Gallery.php:1775, ../includes/Elements/Filterable_Gallery.php:2137, ../includes/Elements/Filterable_Gallery.php:2574, ../includes/Elements/Flip_Box.php:967, ../includes/Elements/Flip_Box.php:1080, ../includes/Elements/Info_Box.php:936, ../includes/Elements/Info_Box.php:1178, ../includes/Elements/Login_Register.php:2918, ../includes/Elements/Pricing_Table.php:1237, ../includes/Elements/Pricing_Table.php:1693, ../includes/Elements/Pricing_Table.php:1864, ../includes/Elements/Product_Grid.php:1281, ../includes/Elements/Product_Grid.php:2840, ../includes/Elements/Team_Member.php:643, ../includes/Elements/Tooltip.php:113, ../includes/Elements/Woo_Product_Carousel.php:1151, ../includes/Elements/Woo_Product_Carousel.php:1935, ../includes/Elements/Woo_Product_Carousel.php:2583, ../includes/Elements/Woo_Product_Gallery.php:844, ../includes/Elements/Woo_Product_Gallery.php:2178, ../includes/Extensions/Table_of_Content.php:705, ../includes/Traits/Woo_Product_Comparable.php:1345
851
  msgid "Icon Size"
852
  msgstr ""
853
 
854
+ #: ../includes/Elements/Adv_Accordion.php:450, ../includes/Elements/Adv_Accordion.php:476, ../includes/Elements/Adv_Tabs.php:457
855
  msgid "Icon Gap"
856
  msgstr ""
857
 
858
+ #: ../includes/Elements/Adv_Accordion.php:502
859
  msgid "Distance"
860
  msgstr ""
861
 
862
+ #: ../includes/Elements/Adv_Accordion.php:560, ../includes/Elements/Adv_Accordion.php:620, ../includes/Elements/Adv_Accordion.php:681, ../includes/Elements/Adv_Tabs.php:538, ../includes/Elements/Adv_Tabs.php:605, ../includes/Elements/Adv_Tabs.php:672, ../includes/Elements/Data_Table.php:1087, ../includes/Elements/Data_Table.php:1105, ../includes/Elements/Dual_Color_Header.php:421, ../includes/Elements/Dual_Color_Header.php:634, ../includes/Elements/Event_Calendar.php:1474, ../includes/Elements/Feature_List.php:122, ../includes/Elements/Info_Box.php:772, ../includes/Elements/Info_Box.php:851, ../includes/Elements/Info_Box.php:1004, ../includes/Elements/Info_Box.php:1084, ../includes/Elements/Post_Grid.php:986, ../includes/Elements/Pricing_Table.php:338, ../includes/Elements/Pricing_Table.php:1757, ../includes/Elements/Simple_Menu.php:295, ../includes/Elements/Team_Member.php:719, ../includes/Elements/Twitter_Feed.php:631, ../includes/Elements/Woo_Checkout.php:1190, ../includes/Elements/Woo_Checkout.php:1476
863
  msgid "Icon Color"
864
  msgstr ""
865
 
866
+ #: ../includes/Elements/Adv_Accordion.php:654, ../includes/Elements/Adv_Accordion.php:956, ../includes/Elements/Adv_Tabs.php:638, ../includes/Elements/Event_Calendar.php:901, ../includes/Elements/Filterable_Gallery.php:1021, ../includes/Elements/Product_Grid.php:2327, ../includes/Elements/Simple_Menu.php:424, ../includes/Elements/Woo_Product_Carousel.php:2317, ../includes/Elements/Woo_Product_Gallery.php:1375, ../includes/Extensions/Table_of_Content.php:983
867
  msgid "Active"
868
  msgstr ""
869
 
870
+ #: ../includes/Elements/Adv_Accordion.php:719, ../includes/Elements/Countdown.php:1100, ../includes/Elements/Cta_Box.php:79, ../includes/Elements/Cta_Box.php:592, ../includes/Elements/Data_Table.php:805, ../includes/Elements/Dual_Color_Header.php:76, ../includes/Elements/Facebook_Feed.php:620, ../includes/Elements/Facebook_Feed.php:784, ../includes/Elements/Flip_Box.php:1214, ../includes/Elements/Flip_Box.php:1283, ../includes/Elements/Info_Box.php:1386, ../includes/Elements/Tooltip.php:320, ../includes/Elements/Twitter_Feed.php:715
871
  msgid "Content Style"
872
  msgstr ""
873
 
874
+ #: ../includes/Elements/Adv_Accordion.php:797
875
  msgid "Toggle Caret Style"
876
  msgstr ""
877
 
878
+ #: ../includes/Elements/Adv_Accordion.php:830
879
  msgid "Icon Padding"
880
  msgstr ""
881
 
882
+ #: ../includes/Elements/Adv_Accordion.php:844
883
  msgid "Icon Radius"
884
  msgstr ""
885
 
886
+ #: ../includes/Elements/Adv_Accordion.php:870, ../includes/Elements/Adv_Accordion.php:917, ../includes/Elements/Adv_Accordion.php:962, ../includes/Elements/Adv_Tabs.php:856
887
  msgid "Caret Color"
888
  msgstr ""
889
 
903
  msgid "Enable Icon"
904
  msgstr ""
905
 
906
+ #: ../includes/Elements/Adv_Tabs.php:102, ../includes/Elements/Betterdocs_Category_Grid.php:1328, ../includes/Elements/Creative_Button.php:143, ../includes/Elements/Data_Table.php:733, ../includes/Elements/Feature_List.php:299, ../includes/Elements/Filterable_Gallery.php:748, ../includes/Elements/Flip_Box.php:714, ../includes/Elements/Info_Box.php:122, ../includes/Elements/Info_Box.php:453, ../includes/Elements/Pricing_Table.php:536
907
  msgid "Icon Position"
908
  msgstr ""
909
 
923
  msgid "Set icon position before/after the tab title."
924
  msgstr ""
925
 
926
+ #: ../includes/Elements/Adv_Tabs.php:125, ../includes/Elements/Betterdocs_Category_Grid.php:1332, ../includes/Elements/Creative_Button.php:147, ../includes/Elements/Filterable_Gallery.php:753, ../includes/Elements/Flip_Box.php:719, ../includes/Elements/Info_Box.php:457, ../includes/Elements/Pricing_Table.php:540
927
  msgid "Before"
928
  msgstr ""
929
 
930
+ #: ../includes/Elements/Adv_Tabs.php:129, ../includes/Elements/Betterdocs_Category_Grid.php:1333, ../includes/Elements/Creative_Button.php:148, ../includes/Elements/Filterable_Gallery.php:752, ../includes/Elements/Flip_Box.php:718, ../includes/Elements/Info_Box.php:458, ../includes/Elements/Pricing_Table.php:541
931
  msgid "After"
932
  msgstr ""
933
 
934
+ #: ../includes/Elements/Adv_Tabs.php:166, ../includes/Elements/Feature_List.php:74, ../includes/Elements/Flip_Box.php:201, ../includes/Elements/Flip_Box.php:432
935
  msgid "Icon Type"
936
  msgstr ""
937
 
938
+ #: ../includes/Elements/Adv_Tabs.php:179, ../includes/Elements/Adv_Tabs.php:206, ../includes/Elements/Data_Table.php:156, ../includes/Elements/Data_Table.php:188, ../includes/Elements/Feature_List.php:82, ../includes/Elements/Feature_List.php:167, ../includes/Elements/Filterable_Gallery.php:564, ../includes/Elements/Flip_Box.php:205, ../includes/Elements/Flip_Box.php:436, ../includes/Elements/Info_Box.php:111, ../includes/Elements/Post_Grid.php:120, ../includes/Elements/Tooltip.php:82, ../includes/Elements/Tooltip.php:177, ../includes/Traits/Controls.php:576, ../includes/Traits/Controls.php:737, ../includes/Traits/Woo_Product_Comparable.php:40, ../includes/Traits/Woo_Product_Comparable.php:71
939
  msgid "Image"
940
  msgstr ""
941
 
942
+ #: ../includes/Elements/Adv_Tabs.php:284
943
  msgid "Tab Title 1"
944
  msgstr ""
945
 
946
+ #: ../includes/Elements/Adv_Tabs.php:285
947
  msgid "Tab Title 2"
948
  msgstr ""
949
 
950
+ #: ../includes/Elements/Adv_Tabs.php:286
951
  msgid "Tab Title 3"
952
  msgstr ""
953
 
954
+ #: ../includes/Elements/Adv_Tabs.php:329, ../includes/Elements/Event_Calendar.php:141, ../includes/Elements/Image_Accordion.php:61, ../includes/Elements/Image_Accordion.php:296, ../includes/Elements/Login_Register.php:245, ../includes/Elements/Login_Register.php:1485, ../includes/Elements/Progress_Bar.php:306, ../includes/Elements/Progress_Bar.php:517, ../includes/Elements/Simple_Menu.php:99, ../includes/Traits/Admin.php:113
955
  msgid "General"
956
  msgstr ""
957
 
958
+ #: ../includes/Elements/Adv_Tabs.php:407
959
  msgid "Title Min Width"
960
  msgstr ""
961
 
962
+ #: ../includes/Elements/Adv_Tabs.php:575, ../includes/Elements/Adv_Tabs.php:642
963
  msgid "Tab Background Color"
964
  msgstr ""
965
 
966
+ #: ../includes/Elements/Adv_Tabs.php:817, ../includes/Elements/Woo_Product_Carousel.php:2550
967
  msgid "Caret"
968
  msgstr ""
969
 
970
+ #: ../includes/Elements/Adv_Tabs.php:824
971
  msgid "Show Caret on Active Tab"
972
  msgstr ""
973
 
974
+ #: ../includes/Elements/Adv_Tabs.php:833
975
  msgid "Caret Size"
976
  msgstr ""
977
 
978
+ #: ../includes/Elements/Adv_Tabs.php:888, ../includes/Elements/Caldera_Forms.php:109, ../includes/Elements/Caldera_Forms.php:936, ../includes/Elements/Contact_Form_7.php:911, ../includes/Elements/Contact_Form_7.php:963, ../includes/Elements/Content_Ticker.php:194, ../includes/Elements/Content_Ticker.php:227, ../includes/Elements/Content_Ticker.php:242, ../includes/Elements/Content_Ticker.php:277, ../includes/Elements/Data_Table.php:87, ../includes/Elements/Data_Table.php:1141, ../includes/Elements/Facebook_Feed.php:388, ../includes/Elements/Filterable_Gallery.php:288, ../includes/Elements/Filterable_Gallery.php:433, ../includes/Elements/Filterable_Gallery.php:482, ../includes/Elements/Filterable_Gallery.php:507, ../includes/Elements/Filterable_Gallery.php:532, ../includes/Elements/Filterable_Gallery.php:592, ../includes/Elements/Filterable_Gallery.php:607, ../includes/Elements/FluentForm.php:151, ../includes/Elements/FluentForm.php:932, ../includes/Elements/Formstack.php:192, ../includes/Elements/Formstack.php:1128, ../includes/Elements/GravityForms.php:149, ../includes/Elements/GravityForms.php:246, ../includes/Elements/GravityForms.php:1249, ../includes/Elements/GravityForms.php:1445, ../includes/Elements/Image_Accordion.php:176, ../includes/Elements/Info_Box.php:359, ../includes/Elements/Info_Box.php:373, ../includes/Elements/Login_Register.php:438, ../includes/Elements/Login_Register.php:516, ../includes/Elements/Login_Register.php:851, ../includes/Elements/NinjaForms.php:114, ../includes/Elements/NinjaForms.php:983, ../includes/Elements/Post_Grid.php:133, ../includes/Elements/Post_Grid.php:147, ../includes/Elements/Post_Grid.php:173, ../includes/Elements/Post_Grid.php:187, ../includes/Elements/Post_Grid.php:213, ../includes/Elements/Post_Grid.php:227, ../includes/Elements/Post_Timeline.php:83, ../includes/Elements/Post_Timeline.php:94, ../includes/Elements/Pricing_Table.php:218, ../includes/Elements/Pricing_Table.php:1895, ../includes/Elements/Simple_Menu.php:173, ../includes/Elements/Simple_Menu.php:214, ../includes/Elements/Team_Member.php:705, ../includes/Elements/Woo_Product_Carousel.php:327, ../includes/Elements/Woo_Product_Carousel.php:566, ../includes/Elements/Woo_Product_Carousel.php:598, ../includes/Elements/Woo_Product_Carousel.php:613, ../includes/Elements/Woo_Product_Carousel.php:648, ../includes/Elements/Woo_Product_Carousel.php:660, ../includes/Elements/Woo_Product_Carousel.php:671, ../includes/Elements/Woo_Product_Carousel.php:2124, ../includes/Elements/Woo_Product_Gallery.php:248, ../includes/Elements/Woo_Product_Gallery.php:274, ../includes/Elements/WpForms.php:107, ../includes/Elements/WpForms.php:937, ../includes/Extensions/Reading_Progress.php:41, ../includes/Extensions/Reading_Progress.php:77, ../includes/Extensions/Table_of_Content.php:45, ../includes/Extensions/Table_of_Content.php:79, ../includes/Extensions/Table_of_Content.php:211, ../includes/Extensions/Table_of_Content.php:226, ../includes/Extensions/Table_of_Content.php:241, ../includes/Extensions/Table_of_Content.php:256, ../includes/Extensions/Table_of_Content.php:271, ../includes/Traits/Controls.php:379
979
  msgid "Yes"
980
  msgstr ""
981
 
982
+ #: ../includes/Elements/Adv_Tabs.php:889, ../includes/Elements/Caldera_Forms.php:110, ../includes/Elements/Caldera_Forms.php:937, ../includes/Elements/Contact_Form_7.php:912, ../includes/Elements/Contact_Form_7.php:964, ../includes/Elements/Content_Ticker.php:195, ../includes/Elements/Content_Ticker.php:228, ../includes/Elements/Content_Ticker.php:243, ../includes/Elements/Content_Ticker.php:278, ../includes/Elements/Cta_Box.php:685, ../includes/Elements/Data_Table.php:88, ../includes/Elements/Data_Table.php:1142, ../includes/Elements/Facebook_Feed.php:392, ../includes/Elements/Feature_List.php:361, ../includes/Elements/Filterable_Gallery.php:289, ../includes/Elements/Filterable_Gallery.php:434, ../includes/Elements/Filterable_Gallery.php:483, ../includes/Elements/Filterable_Gallery.php:508, ../includes/Elements/Filterable_Gallery.php:533, ../includes/Elements/Filterable_Gallery.php:593, ../includes/Elements/Filterable_Gallery.php:608, ../includes/Elements/FluentForm.php:152, ../includes/Elements/FluentForm.php:933, ../includes/Elements/Formstack.php:193, ../includes/Elements/Formstack.php:1129, ../includes/Elements/GravityForms.php:150, ../includes/Elements/GravityForms.php:247, ../includes/Elements/GravityForms.php:1250, ../includes/Elements/GravityForms.php:1446, ../includes/Elements/Image_Accordion.php:177, ../includes/Elements/Info_Box.php:360, ../includes/Elements/Info_Box.php:374, ../includes/Elements/Login_Register.php:439, ../includes/Elements/Login_Register.php:517, ../includes/Elements/Login_Register.php:852, ../includes/Elements/NinjaForms.php:115, ../includes/Elements/NinjaForms.php:984, ../includes/Elements/Post_Grid.php:134, ../includes/Elements/Post_Grid.php:148, ../includes/Elements/Post_Grid.php:174, ../includes/Elements/Post_Grid.php:188, ../includes/Elements/Post_Grid.php:214, ../includes/Elements/Post_Grid.php:228, ../includes/Elements/Post_Timeline.php:84, ../includes/Elements/Post_Timeline.php:95, ../includes/Elements/Pricing_Table.php:219, ../includes/Elements/Pricing_Table.php:1896, ../includes/Elements/Simple_Menu.php:174, ../includes/Elements/Simple_Menu.php:215, ../includes/Elements/Team_Member.php:706, ../includes/Elements/Woo_Product_Carousel.php:328, ../includes/Elements/Woo_Product_Carousel.php:567, ../includes/Elements/Woo_Product_Carousel.php:599, ../includes/Elements/Woo_Product_Carousel.php:614, ../includes/Elements/Woo_Product_Carousel.php:649, ../includes/Elements/Woo_Product_Carousel.php:661, ../includes/Elements/Woo_Product_Carousel.php:672, ../includes/Elements/Woo_Product_Carousel.php:2125, ../includes/Elements/Woo_Product_Gallery.php:249, ../includes/Elements/Woo_Product_Gallery.php:275, ../includes/Elements/WpForms.php:108, ../includes/Elements/WpForms.php:938, ../includes/Extensions/Reading_Progress.php:42, ../includes/Extensions/Reading_Progress.php:78, ../includes/Extensions/Table_of_Content.php:46, ../includes/Extensions/Table_of_Content.php:80, ../includes/Extensions/Table_of_Content.php:212, ../includes/Extensions/Table_of_Content.php:227, ../includes/Extensions/Table_of_Content.php:242, ../includes/Extensions/Table_of_Content.php:257, ../includes/Extensions/Table_of_Content.php:272, ../includes/Traits/Controls.php:380
983
  msgid "No"
984
  msgstr ""
985
 
999
  msgid "Show Icon"
1000
  msgstr ""
1001
 
1002
+ #: ../includes/Elements/Betterdocs_Category_Box.php:158, ../includes/Elements/Betterdocs_Category_Box.php:170, ../includes/Elements/Betterdocs_Category_Box.php:205, ../includes/Elements/Betterdocs_Category_Grid.php:177, ../includes/Elements/Betterdocs_Category_Grid.php:190, ../includes/Elements/Betterdocs_Category_Grid.php:205, ../includes/Elements/Betterdocs_Category_Grid.php:244, ../includes/Elements/Betterdocs_Category_Grid.php:260, ../includes/Elements/Betterdocs_Category_Grid.php:272, ../includes/Elements/Betterdocs_Category_Grid.php:1303, ../includes/Elements/Caldera_Forms.php:152, ../includes/Elements/Caldera_Forms.php:165, ../includes/Elements/Caldera_Forms.php:191, ../includes/Elements/Contact_Form_7.php:205, ../includes/Elements/Contact_Form_7.php:231, ../includes/Elements/Contact_Form_7.php:251, ../includes/Elements/Content_Ticker.php:255, ../includes/Elements/Countdown.php:503, ../includes/Elements/Creative_Button.php:252, ../includes/Elements/Cta_Box.php:134, ../includes/Elements/Cta_Box.php:281, ../includes/Elements/Dual_Color_Header.php:95, ../includes/Elements/Dual_Color_Header.php:105, ../includes/Elements/Facebook_Feed.php:306, ../includes/Elements/Facebook_Feed.php:318, ../includes/Elements/Facebook_Feed.php:333, ../includes/Elements/Facebook_Feed.php:348, ../includes/Elements/Facebook_Feed.php:363, ../includes/Elements/Facebook_Feed.php:429, ../includes/Elements/Feature_List.php:360, ../includes/Elements/Filterable_Gallery.php:276, ../includes/Elements/FluentForm.php:194, ../includes/Elements/FluentForm.php:206, ../includes/Elements/FluentForm.php:232, ../includes/Elements/FluentForm.php:1758, ../includes/Elements/FluentForm.php:1826, ../includes/Elements/Formstack.php:235, ../includes/Elements/Formstack.php:247, ../includes/Elements/Formstack.php:273, ../includes/Elements/Formstack.php:286, ../includes/Elements/Formstack.php:1622, ../includes/Elements/GravityForms.php:161, ../includes/Elements/GravityForms.php:176, ../includes/Elements/GravityForms.php:222, ../includes/Elements/GravityForms.php:234, ../includes/Elements/GravityForms.php:272, ../includes/Elements/GravityForms.php:292, ../includes/Elements/Info_Box.php:291, ../includes/Elements/Login_Register.php:360, ../includes/Elements/Login_Register.php:660, ../includes/Elements/NinjaForms.php:126, ../includes/Elements/NinjaForms.php:173, ../includes/Elements/NinjaForms.php:186, ../includes/Elements/NinjaForms.php:212, ../includes/Elements/NinjaForms.php:232, ../includes/Elements/Post_Timeline.php:119, ../includes/Elements/Pricing_Table.php:511, ../includes/Elements/Pricing_Table.php:1647, ../includes/Elements/Product_Grid.php:557, ../includes/Elements/Product_Grid.php:659, ../includes/Elements/Product_Grid.php:1500, ../includes/Elements/Product_Grid.php:2143, ../includes/Elements/Sticky_Video.php:362, ../includes/Elements/Twitter_Feed.php:392, ../includes/Elements/Woo_Product_Carousel.php:221, ../includes/Elements/Woo_Product_Carousel.php:627, ../includes/Elements/Woo_Product_Carousel.php:686, ../includes/Elements/Woo_Product_Gallery.php:517, ../includes/Elements/Woo_Product_Gallery.php:1000, ../includes/Elements/WpForms.php:119, ../includes/Elements/WpForms.php:134, ../includes/Elements/WpForms.php:180, ../includes/Elements/WpForms.php:193, ../includes/Elements/WpForms.php:216, ../includes/Traits/Controls.php:567, ../includes/Traits/Controls.php:629, ../includes/Traits/Controls.php:659, ../includes/Traits/Controls.php:815, ../includes/Traits/Controls.php:863, ../includes/Traits/Controls.php:931, ../includes/Traits/Controls.php:966, ../includes/Traits/Controls.php:997, ../includes/Traits/Controls.php:1044, ../includes/Traits/Controls.php:1072, ../includes/Traits/Controls.php:1088, ../includes/Traits/Controls.php:1103
1003
  msgid "Show"
1004
  msgstr ""
1005
 
1006
+ #: ../includes/Elements/Betterdocs_Category_Box.php:159, ../includes/Elements/Betterdocs_Category_Box.php:171, ../includes/Elements/Betterdocs_Category_Box.php:206, ../includes/Elements/Betterdocs_Category_Grid.php:178, ../includes/Elements/Betterdocs_Category_Grid.php:191, ../includes/Elements/Betterdocs_Category_Grid.php:206, ../includes/Elements/Betterdocs_Category_Grid.php:245, ../includes/Elements/Betterdocs_Category_Grid.php:261, ../includes/Elements/Betterdocs_Category_Grid.php:273, ../includes/Elements/Betterdocs_Category_Grid.php:1304, ../includes/Elements/Caldera_Forms.php:153, ../includes/Elements/Caldera_Forms.php:166, ../includes/Elements/Caldera_Forms.php:192, ../includes/Elements/Contact_Form_7.php:206, ../includes/Elements/Contact_Form_7.php:232, ../includes/Elements/Contact_Form_7.php:252, ../includes/Elements/Content_Ticker.php:256, ../includes/Elements/Countdown.php:504, ../includes/Elements/Creative_Button.php:253, ../includes/Elements/Cta_Box.php:135, ../includes/Elements/Cta_Box.php:282, ../includes/Elements/Dual_Color_Header.php:96, ../includes/Elements/Dual_Color_Header.php:106, ../includes/Elements/Facebook_Feed.php:307, ../includes/Elements/Facebook_Feed.php:319, ../includes/Elements/Facebook_Feed.php:334, ../includes/Elements/Facebook_Feed.php:349, ../includes/Elements/Facebook_Feed.php:364, ../includes/Elements/Facebook_Feed.php:430, ../includes/Elements/Filterable_Gallery.php:277, ../includes/Elements/FluentForm.php:195, ../includes/Elements/FluentForm.php:207, ../includes/Elements/FluentForm.php:233, ../includes/Elements/FluentForm.php:1759, ../includes/Elements/FluentForm.php:1827, ../includes/Elements/Formstack.php:236, ../includes/Elements/Formstack.php:248, ../includes/Elements/Formstack.php:274, ../includes/Elements/Formstack.php:287, ../includes/Elements/Formstack.php:1623, ../includes/Elements/GravityForms.php:162, ../includes/Elements/GravityForms.php:177, ../includes/Elements/GravityForms.php:223, ../includes/Elements/GravityForms.php:235, ../includes/Elements/GravityForms.php:273, ../includes/Elements/GravityForms.php:293, ../includes/Elements/Info_Box.php:292, ../includes/Elements/Login_Register.php:359, ../includes/Elements/Login_Register.php:568, ../includes/Elements/Login_Register.php:659, ../includes/Elements/NinjaForms.php:127, ../includes/Elements/NinjaForms.php:174, ../includes/Elements/NinjaForms.php:187, ../includes/Elements/NinjaForms.php:213, ../includes/Elements/NinjaForms.php:233, ../includes/Elements/Post_Timeline.php:120, ../includes/Elements/Pricing_Table.php:512, ../includes/Elements/Pricing_Table.php:1648, ../includes/Elements/Product_Grid.php:558, ../includes/Elements/Product_Grid.php:660, ../includes/Elements/Product_Grid.php:1501, ../includes/Elements/Product_Grid.php:2144, ../includes/Elements/Sticky_Video.php:363, ../includes/Elements/Twitter_Feed.php:393, ../includes/Elements/Woo_Product_Carousel.php:222, ../includes/Elements/Woo_Product_Carousel.php:628, ../includes/Elements/Woo_Product_Carousel.php:687, ../includes/Elements/Woo_Product_Gallery.php:518, ../includes/Elements/Woo_Product_Gallery.php:1001, ../includes/Elements/WpForms.php:120, ../includes/Elements/WpForms.php:135, ../includes/Elements/WpForms.php:181, ../includes/Elements/WpForms.php:194, ../includes/Elements/WpForms.php:217, ../includes/Traits/Controls.php:568, ../includes/Traits/Controls.php:630, ../includes/Traits/Controls.php:660, ../includes/Traits/Controls.php:816, ../includes/Traits/Controls.php:864, ../includes/Traits/Controls.php:932, ../includes/Traits/Controls.php:967, ../includes/Traits/Controls.php:998, ../includes/Traits/Controls.php:1045, ../includes/Traits/Controls.php:1073, ../includes/Traits/Controls.php:1089, ../includes/Traits/Controls.php:1104
1007
  msgid "Hide"
1008
  msgstr ""
1009
 
1031
  msgid "articles"
1032
  msgstr ""
1033
 
1034
+ #: ../includes/Elements/Betterdocs_Category_Box.php:250, ../includes/Elements/Flip_Box.php:655
1035
  msgid "Box"
1036
  msgstr ""
1037
 
1043
  msgid "Box Padding"
1044
  msgstr ""
1045
 
1046
+ #: ../includes/Elements/Betterdocs_Category_Box.php:336, ../includes/Elements/Betterdocs_Category_Box.php:589, ../includes/Elements/Betterdocs_Category_Box.php:728, ../includes/Elements/Betterdocs_Category_Box.php:1027, ../includes/Elements/Betterdocs_Search_Form.php:479, ../includes/Elements/Filterable_Gallery.php:1917, ../includes/Elements/Info_Box.php:1481
1047
  msgid "Transition"
1048
  msgstr ""
1049
 
1051
  msgid "Area"
1052
  msgstr ""
1053
 
1054
+ #: ../includes/Elements/Betterdocs_Category_Box.php:423, ../includes/Elements/Betterdocs_Category_Box.php:458, ../includes/Elements/Betterdocs_Category_Box.php:815, ../includes/Elements/Betterdocs_Category_Box.php:922, ../includes/Elements/Betterdocs_Category_Grid.php:539, ../includes/Elements/Betterdocs_Category_Grid.php:777, ../includes/Elements/Betterdocs_Category_Grid.php:1097, ../includes/Elements/Betterdocs_Category_Grid.php:1250, ../includes/Elements/Betterdocs_Search_Form.php:248, ../includes/Elements/Caldera_Forms.php:945, ../includes/Elements/Contact_Form_7.php:972, ../includes/Elements/Feature_List.php:555, ../includes/Elements/Filterable_Gallery.php:716, ../includes/Elements/FluentForm.php:941, ../includes/Elements/Formstack.php:1137, ../includes/Elements/Formstack.php:1290, ../includes/Elements/GravityForms.php:1258, ../includes/Elements/GravityForms.php:1454, ../includes/Elements/Login_Register.php:2832, ../includes/Elements/Login_Register.php:3441, ../includes/Elements/NinjaForms.php:992, ../includes/Elements/Progress_Bar.php:551, ../includes/Elements/Woo_Product_Carousel.php:2177, ../includes/Elements/WpForms.php:946, ../includes/Traits/Woo_Product_Comparable.php:111, ../includes/Traits/Woo_Product_Comparable.php:1437
1055
  msgid "Size"
1056
  msgstr ""
1057
 
1058
+ #: ../includes/Elements/Betterdocs_Category_Box.php:527, ../includes/Elements/Betterdocs_Category_Box.php:695, ../includes/Elements/Betterdocs_Category_Box.php:942, ../includes/Elements/Betterdocs_Category_Grid.php:1116, ../includes/Elements/Betterdocs_Category_Grid.php:1194, ../includes/Elements/Caldera_Forms.php:753, ../includes/Elements/Caldera_Forms.php:870, ../includes/Elements/Contact_Form_7.php:575, ../includes/Elements/Contact_Form_7.php:860, ../includes/Elements/Contact_Form_7.php:1486, ../includes/Elements/Feature_List.php:656, ../includes/Elements/Filterable_Gallery.php:2420, ../includes/Elements/FluentForm.php:802, ../includes/Elements/FluentForm.php:1800, ../includes/Elements/Formstack.php:605, ../includes/Elements/Formstack.php:1001, ../includes/Elements/GravityForms.php:727, ../includes/Elements/GravityForms.php:999, ../includes/Elements/Login_Register.php:2499, ../includes/Elements/Login_Register.php:2701, ../includes/Elements/Login_Register.php:3174, ../includes/Elements/Login_Register.php:3473, ../includes/Elements/NinjaForms.php:797, ../includes/Elements/NinjaForms.php:914, ../includes/Elements/NinjaForms.php:1579, ../includes/Elements/Post_Grid.php:909, ../includes/Elements/Woo_Checkout.php:1989, ../includes/Elements/Woo_Product_Carousel.php:2200, ../includes/Elements/WpForms.php:765, ../includes/Elements/WpForms.php:871
1059
  msgid "Spacing"
1060
  msgstr ""
1061
 
1062
+ #: ../includes/Elements/Betterdocs_Category_Box.php:627, ../includes/Elements/Betterdocs_Category_Box.php:666, ../includes/Elements/Betterdocs_Category_Grid.php:589, ../includes/Elements/Betterdocs_Category_Grid.php:1146, ../includes/Elements/Caldera_Forms.php:118, ../includes/Elements/Caldera_Forms.php:258, ../includes/Elements/Contact_Form_7.php:160, ../includes/Elements/Contact_Form_7.php:465, ../includes/Elements/Cta_Box.php:183, ../includes/Elements/Event_Calendar.php:148, ../includes/Elements/Event_Calendar.php:730, ../includes/Elements/Event_Calendar.php:1389, ../includes/Elements/Feature_List.php:181, ../includes/Elements/Feature_List.php:183, ../includes/Elements/Feature_List.php:735, ../includes/Elements/Flip_Box.php:656, ../includes/Elements/FluentForm.php:160, ../includes/Elements/FluentForm.php:293, ../includes/Elements/Formstack.php:201, ../includes/Elements/Formstack.php:472, ../includes/Elements/GravityForms.php:158, ../includes/Elements/GravityForms.php:188, ../includes/Elements/GravityForms.php:506, ../includes/Elements/Image_Accordion.php:197, ../includes/Elements/Image_Accordion.php:487, ../includes/Elements/Login_Register.php:2310, ../includes/Elements/NinjaForms.php:123, ../includes/Elements/NinjaForms.php:139, ../includes/Elements/NinjaForms.php:443, ../includes/Elements/Post_Grid.php:160, ../includes/Elements/Pricing_Table.php:137, ../includes/Elements/Product_Grid.php:2426, ../includes/Elements/Progress_Bar.php:122, ../includes/Elements/Progress_Bar.php:681, ../includes/Elements/Woo_Checkout.php:327, ../includes/Elements/Woo_Checkout.php:437, ../includes/Elements/Woo_Checkout.php:531, ../includes/Elements/Woo_Product_Carousel.php:1512, ../includes/Elements/Woo_Product_Gallery.php:1765, ../includes/Elements/WpForms.php:116, ../includes/Elements/WpForms.php:146, ../includes/Elements/WpForms.php:410, ../includes/Extensions/Table_of_Content.php:110, ../includes/Traits/Woo_Product_Comparable.php:41, ../includes/Traits/Woo_Product_Comparable.php:75, ../includes/Traits/Woo_Product_Comparable.php:1083, ../includes/Traits/Woo_Product_Comparable.php:1201
1063
  msgid "Title"
1064
  msgstr ""
1065
 
1119
  msgid "Show Button"
1120
  msgstr ""
1121
 
1122
+ #: ../includes/Elements/Betterdocs_Category_Grid.php:282, ../includes/Elements/Creative_Button.php:80, ../includes/Elements/Cta_Box.php:256, ../includes/Elements/Filterable_Gallery.php:690, ../includes/Elements/Flip_Box.php:687, ../includes/Elements/Info_Box.php:403, ../includes/Elements/Login_Register.php:674, ../includes/Elements/Login_Register.php:1200, ../includes/Elements/Pricing_Table.php:574, ../includes/Elements/Woo_Checkout.php:374, ../includes/Traits/Controls.php:976
1123
  msgid "Button Text"
1124
  msgstr ""
1125
 
1143
  msgid "List"
1144
  msgstr ""
1145
 
1146
+ #: ../includes/Elements/Betterdocs_Category_Grid.php:1017, ../includes/Elements/Filterable_Gallery.php:1229, ../includes/Elements/Filterable_Gallery.php:1609, ../includes/Elements/Filterable_Gallery.php:2375, ../includes/Elements/Pricing_Table.php:1791, ../includes/Elements/Product_Grid.php:2820, ../includes/Elements/Twitter_Feed.php:766, ../includes/Elements/Woo_Product_Carousel.php:1915, ../includes/Elements/Woo_Product_Gallery.php:2158
1147
  msgid "Hover Color"
1148
  msgstr ""
1149
 
1171
  msgid "Area Spacing"
1172
  msgstr ""
1173
 
1174
+ #: ../includes/Elements/Betterdocs_Category_Grid.php:1534, ../includes/Elements/Creative_Button.php:440, ../includes/Elements/Pricing_Table.php:836, ../includes/Elements/WeForms.php:626, ../includes/Traits/Controls.php:1527
1175
  msgid "Button Alignment"
1176
  msgstr ""
1177
 
1195
  msgid "Field Padding"
1196
  msgstr ""
1197
 
1198
+ #: ../includes/Elements/Betterdocs_Search_Form.php:219, ../includes/Elements/Facebook_Feed.php:518, ../includes/Elements/Post_Grid.php:413, ../includes/Elements/Pricing_Table.php:467, ../includes/Elements/Pricing_Table.php:1466, ../includes/Elements/Simple_Menu.php:654, ../includes/Elements/Simple_Menu.php:703, ../includes/Elements/Woo_Product_Carousel.php:2387
1199
  msgid "Shadow"
1200
  msgstr ""
1201
 
1207
  msgid "Close Icon"
1208
  msgstr ""
1209
 
1210
+ #: ../includes/Elements/Betterdocs_Search_Form.php:285, ../includes/Elements/Caldera_Forms.php:1020, ../includes/Elements/Caldera_Forms.php:1334, ../includes/Elements/Contact_Form_7.php:1047, ../includes/Elements/Contact_Form_7.php:1360, ../includes/Elements/Content_Ticker.php:677, ../includes/Elements/Countdown.php:784, ../includes/Elements/Countdown.php:856, ../includes/Elements/Countdown.php:928, ../includes/Elements/Countdown.php:1000, ../includes/Elements/Creative_Button.php:420, ../includes/Elements/Cta_Box.php:809, ../includes/Elements/Cta_Box.php:978, ../includes/Elements/Event_Calendar.php:678, ../includes/Elements/Facebook_Feed.php:728, ../includes/Elements/Filterable_Gallery.php:2722, ../includes/Elements/FluentForm.php:1016, ../includes/Elements/FluentForm.php:1706, ../includes/Elements/Formstack.php:1570, ../includes/Elements/GravityForms.php:1100, ../includes/Elements/GravityForms.php:1333, ../includes/Elements/GravityForms.php:1529, ../includes/Elements/GravityForms.php:1958, ../includes/Elements/GravityForms.php:2180, ../includes/Elements/NinjaForms.php:1067, ../includes/Elements/NinjaForms.php:1483, ../includes/Elements/Pricing_Table.php:2017, ../includes/Elements/Product_Grid.php:776, ../includes/Elements/Product_Grid.php:916, ../includes/Elements/Product_Grid.php:1636, ../includes/Elements/Product_Grid.php:1921, ../includes/Elements/Product_Grid.php:2103, ../includes/Elements/Product_Grid.php:2312, ../includes/Elements/Product_Grid.php:2356, ../includes/Elements/Product_Grid.php:2551, ../includes/Elements/Product_Grid.php:2647, ../includes/Elements/Product_Grid.php:2759, ../includes/Elements/Simple_Menu.php:955, ../includes/Elements/Simple_Menu.php:1051, ../includes/Elements/Simple_Menu.php:1264, ../includes/Elements/Simple_Menu.php:1359, ../includes/Elements/Sticky_Video.php:579, ../includes/Elements/Twitter_Feed.php:642, ../includes/Elements/WeForms.php:464, ../includes/Elements/WeForms.php:764, ../includes/Elements/Woo_Checkout.php:778, ../includes/Elements/Woo_Checkout.php:985, ../includes/Elements/Woo_Checkout.php:1380, ../includes/Elements/Woo_Checkout.php:1576, ../includes/Elements/Woo_Checkout.php:1678, ../includes/Elements/Woo_Checkout.php:1795, ../includes/Elements/Woo_Checkout.php:1839, ../includes/Elements/Woo_Checkout.php:1883, ../includes/Elements/Woo_Checkout.php:2072, ../includes/Elements/Woo_Checkout.php:2088, ../includes/Elements/Woo_Checkout.php:2436, ../includes/Elements/Woo_Checkout.php:2548, ../includes/Elements/Woo_Product_Carousel.php:981, ../includes/Elements/Woo_Product_Carousel.php:1357, ../includes/Elements/Woo_Product_Carousel.php:1481, ../includes/Elements/Woo_Product_Carousel.php:1649, ../includes/Elements/Woo_Product_Carousel.php:1744, ../includes/Elements/Woo_Product_Carousel.php:1858, ../includes/Elements/Woo_Product_Carousel.php:2303, ../includes/Elements/Woo_Product_Carousel.php:2730, ../includes/Elements/Woo_Product_Gallery.php:648, ../includes/Elements/Woo_Product_Gallery.php:1122, ../includes/Elements/Woo_Product_Gallery.php:1364, ../includes/Elements/Woo_Product_Gallery.php:1402, ../includes/Elements/Woo_Product_Gallery.php:1889, ../includes/Elements/Woo_Product_Gallery.php:1985, ../includes/Elements/Woo_Product_Gallery.php:2097, ../includes/Elements/WpForms.php:1021, ../includes/Elements/WpForms.php:1339, ../includes/Traits/Controls.php:1503, ../includes/Traits/Woo_Product_Comparable.php:1723
1211
  msgid "Border Color"
1212
  msgstr ""
1213
 
1247
  msgid "Labels"
1248
  msgstr ""
1249
 
1250
+ #: ../includes/Elements/Caldera_Forms.php:180, ../includes/Elements/Caldera_Forms.php:1412, ../includes/Elements/Contact_Form_7.php:220, ../includes/Elements/Contact_Form_7.php:1381, ../includes/Elements/FluentForm.php:221, ../includes/Elements/FluentForm.php:2148, ../includes/Elements/Formstack.php:262, ../includes/Elements/Formstack.php:1903, ../includes/Elements/GravityForms.php:261, ../includes/Elements/GravityForms.php:2223, ../includes/Elements/NinjaForms.php:201, ../includes/Elements/NinjaForms.php:1614, ../includes/Elements/WpForms.php:205, ../includes/Elements/WpForms.php:1361
1251
  msgid "Errors"
1252
  msgstr ""
1253
 
1254
+ #: ../includes/Elements/Caldera_Forms.php:187, ../includes/Elements/Caldera_Forms.php:1420, ../includes/Elements/Contact_Form_7.php:227, ../includes/Elements/Contact_Form_7.php:1389, ../includes/Elements/FluentForm.php:228, ../includes/Elements/FluentForm.php:2156, ../includes/Elements/Formstack.php:269, ../includes/Elements/Formstack.php:1911, ../includes/Elements/GravityForms.php:268, ../includes/Elements/GravityForms.php:2231, ../includes/Elements/Login_Register.php:923, ../includes/Elements/NinjaForms.php:208, ../includes/Elements/NinjaForms.php:1622, ../includes/Elements/WpForms.php:212
1255
  msgid "Error Messages"
1256
  msgstr ""
1257
 
1275
  msgid "Form Alignment"
1276
  msgstr ""
1277
 
1278
+ #: ../includes/Elements/Caldera_Forms.php:411, ../includes/Elements/Contact_Form_7.php:327, ../includes/Elements/Contact_Form_7.php:828, ../includes/Elements/Creative_Button.php:227, ../includes/Elements/Cta_Box.php:641, ../includes/Elements/Cta_Box.php:858, ../includes/Elements/Dual_Color_Header.php:81, ../includes/Elements/Flip_Box.php:878, ../includes/Elements/FluentForm.php:458, ../includes/Elements/Formstack.php:330, ../includes/Elements/GravityForms.php:343, ../includes/Elements/Login_Register.php:460, ../includes/Elements/Login_Register.php:566, ../includes/Elements/Login_Register.php:1129, ../includes/Elements/Login_Register.php:1492, ../includes/Elements/Login_Register.php:1618, ../includes/Elements/Login_Register.php:1875, ../includes/Elements/Login_Register.php:2019, ../includes/Elements/Login_Register.php:2169, ../includes/Elements/Login_Register.php:2312, ../includes/Elements/Login_Register.php:2403, ../includes/Elements/Login_Register.php:2501, ../includes/Elements/Login_Register.php:2703, ../includes/Elements/Login_Register.php:2748, ../includes/Elements/Login_Register.php:2780, ../includes/Elements/Login_Register.php:3014, ../includes/Elements/Login_Register.php:3176, ../includes/Elements/Login_Register.php:3475, ../includes/Elements/NinjaForms.php:278, ../includes/Elements/Post_Grid.php:254, ../includes/Elements/Pricing_Table.php:87, ../includes/Elements/Pricing_Table.php:463, ../includes/Elements/Product_Grid.php:250, ../includes/Elements/Simple_Menu.php:356, ../includes/Elements/Simple_Menu.php:482, ../includes/Elements/Simple_Menu.php:842, ../includes/Elements/Simple_Menu.php:1153, ../includes/Elements/Team_Member.php:376, ../includes/Elements/Testimonial.php:253, ../includes/Elements/Testimonial.php:310, ../includes/Elements/TypeForm.php:196, ../includes/Elements/WeForms.php:161, ../includes/Elements/WeForms.php:631, ../includes/Elements/Woo_Checkout.php:122, ../includes/Elements/WpForms.php:267, ../includes/Traits/Controls.php:556, ../includes/Traits/Controls.php:1573, ../includes/Traits/Login_Registration.php:581, ../includes/Traits/Woo_Product_Comparable.php:419, ../includes/Traits/Woo_Product_Comparable.php:533, ../includes/Traits/Woo_Product_Comparable.php:624, ../includes/Traits/Woo_Product_Comparable.php:693, ../includes/Template/Betterdocs-Category-Box/Layout_Default.php:4, ../includes/Template/Betterdocs-Category-Grid/Layout_Default.php:4, ../includes/Template/Content-Ticker/default.php:3, ../includes/Template/Eicon-Woocommerce/default.php:3, ../includes/Template/Post-Grid/default.php:5, ../includes/Template/Post-Timeline/default.php:3, ../includes/Template/Woo-Product-Gallery/default.php:3
1279
  msgid "Default"
1280
  msgstr ""
1281
 
1291
  msgid "Form Padding"
1292
  msgstr ""
1293
 
1294
+ #: ../includes/Elements/Caldera_Forms.php:549, ../includes/Elements/Contact_Form_7.php:533, ../includes/Elements/FluentForm.php:596, ../includes/Elements/Formstack.php:823, ../includes/Elements/GravityForms.php:660, ../includes/Elements/NinjaForms.php:591, ../includes/Elements/WpForms.php:560
1295
  msgid "Input & Textarea"
1296
  msgstr ""
1297
 
1298
+ #: ../includes/Elements/Caldera_Forms.php:640, ../includes/Elements/Contact_Form_7.php:610, ../includes/Elements/FluentForm.php:689, ../includes/Elements/Formstack.php:888, ../includes/Elements/GravityForms.php:777, ../includes/Elements/NinjaForms.php:682, ../includes/Elements/WpForms.php:651
1299
  msgid "Text Indent"
1300
  msgstr ""
1301
 
1302
+ #: ../includes/Elements/Caldera_Forms.php:665, ../includes/Elements/Contact_Form_7.php:634, ../includes/Elements/FluentForm.php:714, ../includes/Elements/Formstack.php:913, ../includes/Elements/GravityForms.php:801, ../includes/Elements/NinjaForms.php:707, ../includes/Elements/WeForms.php:309, ../includes/Elements/WpForms.php:676
1303
  msgid "Input Width"
1304
  msgstr ""
1305
 
1306
+ #: ../includes/Elements/Caldera_Forms.php:684, ../includes/Elements/Contact_Form_7.php:653, ../includes/Elements/FluentForm.php:733, ../includes/Elements/Formstack.php:932, ../includes/Elements/GravityForms.php:820, ../includes/Elements/NinjaForms.php:727, ../includes/Elements/Woo_Checkout.php:2037, ../includes/Elements/WpForms.php:695
1307
  msgid "Input Height"
1308
  msgstr ""
1309
 
1310
+ #: ../includes/Elements/Caldera_Forms.php:703, ../includes/Elements/Contact_Form_7.php:672, ../includes/Elements/FluentForm.php:752, ../includes/Elements/Formstack.php:951, ../includes/Elements/GravityForms.php:839, ../includes/Elements/NinjaForms.php:746, ../includes/Elements/WeForms.php:336, ../includes/Elements/WpForms.php:714
1311
  msgid "Textarea Width"
1312
  msgstr ""
1313
 
1314
+ #: ../includes/Elements/Caldera_Forms.php:722, ../includes/Elements/Contact_Form_7.php:691, ../includes/Elements/FluentForm.php:771, ../includes/Elements/Formstack.php:970, ../includes/Elements/GravityForms.php:858, ../includes/Elements/NinjaForms.php:765, ../includes/Elements/WpForms.php:733
1315
  msgid "Textarea Height"
1316
  msgstr ""
1317
 
1318
+ #: ../includes/Elements/Caldera_Forms.php:793, ../includes/Elements/Contact_Form_7.php:756, ../includes/Elements/FluentForm.php:842, ../includes/Elements/Formstack.php:1041, ../includes/Elements/GravityForms.php:922, ../includes/Elements/Login_Register.php:2657, ../includes/Elements/NinjaForms.php:837, ../includes/Elements/WpForms.php:806
1319
  msgid "Focus"
1320
  msgstr ""
1321
 
1322
+ #: ../includes/Elements/Caldera_Forms.php:842, ../includes/Elements/Formstack.php:577, ../includes/Elements/GravityForms.php:971, ../includes/Elements/NinjaForms.php:886, ../includes/Elements/WpForms.php:843
1323
  msgid "Field Description"
1324
  msgstr ""
1325
 
1327
  msgid "Radio & Checkbox"
1328
  msgstr ""
1329
 
1330
+ #: ../includes/Elements/Caldera_Forms.php:934, ../includes/Elements/Contact_Form_7.php:961, ../includes/Elements/FluentForm.php:930, ../includes/Elements/Formstack.php:1126, ../includes/Elements/GravityForms.php:1247, ../includes/Elements/GravityForms.php:1443, ../includes/Elements/NinjaForms.php:981, ../includes/Elements/WpForms.php:935
1331
  msgid "Custom Styles"
1332
  msgstr ""
1333
 
1334
+ #: ../includes/Elements/Caldera_Forms.php:998, ../includes/Elements/Contact_Form_7.php:1025, ../includes/Elements/Feature_List.php:616, ../includes/Elements/FluentForm.php:994, ../includes/Elements/GravityForms.php:1311, ../includes/Elements/GravityForms.php:1507, ../includes/Elements/NinjaForms.php:1045, ../includes/Elements/Sticky_Video.php:567, ../includes/Elements/WpForms.php:999
1335
  msgid "Border Width"
1336
  msgstr ""
1337
 
1338
+ #: ../includes/Elements/Caldera_Forms.php:1035, ../includes/Elements/Contact_Form_7.php:1062, ../includes/Elements/FluentForm.php:1031, ../includes/Elements/Formstack.php:1191, ../includes/Elements/GravityForms.php:1239, ../includes/Elements/GravityForms.php:1348, ../includes/Elements/Login_Register.php:3028, ../includes/Elements/NinjaForms.php:1082, ../includes/Elements/WpForms.php:1036
1339
  msgid "Checkbox"
1340
  msgstr ""
1341
 
1342
+ #: ../includes/Elements/Caldera_Forms.php:1061, ../includes/Elements/Contact_Form_7.php:1088, ../includes/Elements/FluentForm.php:1057, ../includes/Elements/Formstack.php:1217, ../includes/Elements/GravityForms.php:1544, ../includes/Elements/NinjaForms.php:1109, ../includes/Elements/WpForms.php:1062
1343
  msgid "Radio Buttons"
1344
  msgstr ""
1345
 
1346
+ #: ../includes/Elements/Caldera_Forms.php:1089, ../includes/Elements/Contact_Form_7.php:1116, ../includes/Elements/FluentForm.php:1085, ../includes/Elements/Formstack.php:1245, ../includes/Elements/GravityForms.php:1400, ../includes/Elements/GravityForms.php:1596, ../includes/Elements/NinjaForms.php:1138, ../includes/Elements/WpForms.php:1090
1347
  msgid "Checked"
1348
  msgstr ""
1349
 
1350
+ #: ../includes/Elements/Caldera_Forms.php:1124, ../includes/Elements/Contact_Form_7.php:1150, ../includes/Elements/FluentForm.php:1474, ../includes/Elements/Formstack.php:1360, ../includes/Elements/GravityForms.php:1752, ../includes/Elements/NinjaForms.php:1286, ../includes/Elements/WpForms.php:1125
1351
  msgid "Submit Button"
1352
  msgstr ""
1353
 
1354
+ #: ../includes/Elements/Caldera_Forms.php:1163, ../includes/Elements/Contact_Form_7.php:1189, ../includes/Elements/FluentForm.php:1513, ../includes/Elements/Formstack.php:1399, ../includes/Elements/GravityForms.php:1794, ../includes/Elements/NinjaForms.php:1327, ../includes/Elements/Simple_Menu.php:211, ../includes/Elements/WpForms.php:1167
1355
  msgid "Full Width"
1356
  msgstr ""
1357
 
1358
+ #: ../includes/Elements/Caldera_Forms.php:1263, ../includes/Elements/Contact_Form_7.php:1288, ../includes/Elements/FluentForm.php:1614, ../includes/Elements/Formstack.php:1334, ../includes/Elements/Formstack.php:1499, ../includes/Elements/GravityForms.php:1903, ../includes/Elements/GravityForms.php:2128, ../includes/Elements/NinjaForms.php:1431, ../includes/Elements/WpForms.php:1267
1359
  msgid "Margin Top"
1360
  msgstr ""
1361
 
1407
  msgid "Form Description"
1408
  msgstr ""
1409
 
1410
+ #: ../includes/Elements/Contact_Form_7.php:247, ../includes/Elements/Formstack.php:282, ../includes/Elements/GravityForms.php:288, ../includes/Elements/GravityForms.php:2257, ../includes/Elements/NinjaForms.php:228, ../includes/Elements/NinjaForms.php:1648
1411
  msgid "Validation Errors"
1412
  msgstr ""
1413
 
1415
  msgid "<strong>Contact Form 7</strong> is not installed/activated on your site. Please install and activate <strong>Contact Form 7</strong> first."
1416
  msgstr ""
1417
 
1418
+ #: ../includes/Elements/Contact_Form_7.php:313, ../includes/Elements/Contact_Form_7.php:1607, ../includes/Elements/Cta_Box.php:727, ../includes/Elements/Cta_Box.php:797, ../includes/Elements/Cta_Box.php:917, ../includes/Elements/Cta_Box.php:969, ../includes/Elements/Dual_Color_Header.php:813, ../includes/Elements/Dual_Color_Header.php:893, ../includes/Elements/Event_Calendar.php:666, ../includes/Elements/Event_Calendar.php:798, ../includes/Elements/Event_Calendar.php:865, ../includes/Elements/Event_Calendar.php:919, ../includes/Elements/Event_Calendar.php:1031, ../includes/Elements/Event_Calendar.php:1123, ../includes/Elements/Event_Calendar.php:1221, ../includes/Elements/Event_Calendar.php:1587, ../includes/Elements/Event_Calendar.php:1696, ../includes/Elements/Facebook_Feed.php:488, ../includes/Elements/Facebook_Feed.php:501, ../includes/Elements/Facebook_Feed.php:576, ../includes/Elements/Facebook_Feed.php:589, ../includes/Elements/Facebook_Feed.php:674, ../includes/Elements/Facebook_Feed.php:687, ../includes/Elements/Facebook_Feed.php:758, ../includes/Elements/Facebook_Feed.php:796, ../includes/Elements/Facebook_Feed.php:836, ../includes/Elements/Fancy_Text.php:365, ../includes/Elements/Filterable_Gallery.php:2060, ../includes/Elements/Filterable_Gallery.php:2281, ../includes/Elements/Flip_Box.php:1379, ../includes/Elements/Flip_Box.php:1439, ../includes/Elements/FluentForm.php:1905, ../includes/Elements/FluentForm.php:1930, ../includes/Elements/FluentForm.php:1995, ../includes/Elements/FluentForm.php:2058, ../includes/Elements/Formstack.php:638, ../includes/Elements/Formstack.php:1713, ../includes/Elements/Formstack.php:1738, ../includes/Elements/Formstack.php:1802, ../includes/Elements/Formstack.php:1867, ../includes/Elements/Formstack.php:1922, ../includes/Elements/Formstack.php:2005, ../includes/Elements/Post_Grid.php:372, ../includes/Elements/Pricing_Table.php:1936, ../includes/Elements/Pricing_Table.php:2005, ../includes/Elements/Product_Grid.php:1529, ../includes/Elements/Product_Grid.php:1544, ../includes/Elements/Product_Grid.php:1604, ../includes/Elements/Product_Grid.php:1618, ../includes/Elements/Product_Grid.php:2903, ../includes/Elements/Product_Grid.php:2960, ../includes/Elements/Progress_Bar.php:345, ../includes/Elements/Team_Member.php:746, ../includes/Elements/Team_Member.php:823, ../includes/Elements/Twitter_Feed.php:402, ../includes/Elements/Twitter_Feed.php:654, ../includes/Elements/Woo_Checkout.php:1773, ../includes/Elements/Woo_Checkout.php:1817, ../includes/Elements/Woo_Checkout.php:1861, ../includes/Elements/Woo_Product_Carousel.php:1998, ../includes/Elements/Woo_Product_Carousel.php:2055, ../includes/Elements/Woo_Product_Gallery.php:1027, ../includes/Elements/Woo_Product_Gallery.php:1040, ../includes/Elements/Woo_Product_Gallery.php:1094, ../includes/Elements/Woo_Product_Gallery.php:1106, ../includes/Elements/Woo_Product_Gallery.php:1152, ../includes/Elements/Woo_Product_Gallery.php:1319, ../includes/Elements/Woo_Product_Gallery.php:1353, ../includes/Elements/Woo_Product_Gallery.php:1391, ../includes/Elements/Woo_Product_Gallery.php:2241, ../includes/Elements/Woo_Product_Gallery.php:2298, ../includes/Traits/Controls.php:1245, ../includes/Traits/Controls.php:1299, ../includes/Traits/Woo_Product_Comparable.php:1383, ../includes/Traits/Woo_Product_Comparable.php:1662, ../includes/Traits/Woo_Product_Comparable.php:1711
1419
  msgid "Background"
1420
  msgstr ""
1421
 
1463
  msgid "After Submit Feedback"
1464
  msgstr ""
1465
 
1466
+ #: ../includes/Elements/Contact_Form_7.php:1629, ../includes/Elements/Dual_Color_Header.php:801, ../includes/Elements/Dual_Color_Header.php:881, ../includes/Elements/Flip_Box.php:877, ../includes/Elements/Info_Box.php:584, ../includes/Elements/Info_Box.php:639, ../includes/Elements/Info_Box.php:807, ../includes/Elements/Info_Box.php:887, ../includes/Elements/Info_Box.php:1025, ../includes/Elements/Info_Box.php:1121, ../includes/Elements/Post_Grid.php:344, ../includes/Elements/Product_Grid.php:1484, ../includes/Elements/Woo_Product_Gallery.php:986, ../includes/Elements/Woo_Product_Gallery.php:1230, ../includes/Elements/Woo_Product_Gallery.php:1292, ../includes/Traits/Woo_Product_Comparable.php:1628
1467
  msgid "Radius"
1468
  msgstr ""
1469
 
1507
  msgid "Sets transition effect"
1508
  msgstr ""
1509
 
1510
+ #: ../includes/Elements/Content_Ticker.php:163, ../includes/Elements/Pricing_Table.php:422, ../includes/Elements/Woo_Product_Carousel.php:441
1511
  msgid "Slide"
1512
  msgstr ""
1513
 
1514
+ #: ../includes/Elements/Content_Ticker.php:164, ../includes/Elements/Fancy_Text.php:201, ../includes/Elements/Pricing_Table.php:419, ../includes/Elements/Simple_Menu.php:593
1515
  msgid "Fade"
1516
  msgstr ""
1517
 
1695
  msgid "Separator Style"
1696
  msgstr ""
1697
 
1698
+ #: ../includes/Elements/Countdown.php:296, ../includes/Elements/Feature_List.php:431, ../includes/Elements/GravityForms.php:1060, ../includes/Elements/Sticky_Video.php:553, ../includes/Extensions/Table_of_Content.php:1079
1699
  msgid "Solid"
1700
  msgstr ""
1701
 
1702
+ #: ../includes/Elements/Countdown.php:297, ../includes/Elements/Feature_List.php:433, ../includes/Elements/GravityForms.php:1062, ../includes/Elements/Sticky_Video.php:555, ../includes/Extensions/Table_of_Content.php:1081
1703
  msgid "Dotted"
1704
  msgstr ""
1705
 
1775
  msgid "Space Below Container"
1776
  msgstr ""
1777
 
1778
+ #: ../includes/Elements/Countdown.php:648, ../includes/Elements/Dual_Color_Header.php:441, ../includes/Elements/Facebook_Feed.php:864, ../includes/Elements/Flip_Box.php:1167, ../includes/Elements/Image_Accordion.php:479, ../includes/Elements/Info_Box.php:1333, ../includes/Elements/Product_Grid.php:1157, ../includes/Elements/Team_Member.php:537, ../includes/Elements/Twitter_Feed.php:679, ../includes/Elements/Woo_Product_Carousel.php:1066, ../includes/Elements/Woo_Product_Gallery.php:733
1779
  msgid "Color &amp; Typography"
1780
  msgstr ""
1781
 
1803
  msgid "Expire Message"
1804
  msgstr ""
1805
 
1806
+ #: ../includes/Elements/Countdown.php:1052, ../includes/Elements/Cta_Box.php:510, ../includes/Elements/Dual_Color_Header.php:449, ../includes/Elements/Flip_Box.php:1183, ../includes/Elements/Flip_Box.php:1251, ../includes/Elements/Info_Box.php:1347, ../includes/Elements/Post_Grid.php:603, ../includes/Elements/Post_Timeline.php:331, ../includes/Elements/Pricing_Table.php:876, ../includes/Elements/Twitter_Feed.php:687
1807
  msgid "Title Style"
1808
  msgstr ""
1809
 
1810
+ #: ../includes/Elements/Countdown.php:1061, ../includes/Elements/Event_Calendar.php:1406, ../includes/Elements/FluentForm.php:1859, ../includes/Elements/Formstack.php:1633, ../includes/Elements/Info_Box.php:1457, ../includes/Elements/Post_Grid.php:612, ../includes/Elements/Post_Timeline.php:340, ../includes/Elements/Product_Grid.php:2443, ../includes/Elements/Product_Grid.php:2798, ../includes/Elements/Progress_Bar.php:690, ../includes/Elements/Twitter_Feed.php:591, ../includes/Elements/Woo_Checkout.php:2155, ../includes/Elements/Woo_Checkout.php:2255, ../includes/Elements/Woo_Product_Carousel.php:1529, ../includes/Elements/Woo_Product_Carousel.php:1895, ../includes/Elements/Woo_Product_Gallery.php:1782, ../includes/Elements/Woo_Product_Gallery.php:2136, ../includes/Traits/Woo_Product_Comparable.php:1018, ../includes/Traits/Woo_Product_Comparable.php:1249
1811
  msgid "Title Color"
1812
  msgstr ""
1813
 
1815
  msgid "Button Content"
1816
  msgstr ""
1817
 
1818
+ #: ../includes/Elements/Creative_Button.php:87, ../includes/Elements/Info_Box.php:411
1819
  msgid "Enter button text"
1820
  msgstr ""
1821
 
1822
+ #: ../includes/Elements/Creative_Button.php:88, ../includes/Elements/Info_Box.php:412
1823
  msgid "Enter button text here"
1824
  msgstr ""
1825
 
1835
  msgid "Enter button secondary text here"
1836
  msgstr ""
1837
 
1838
+ #: ../includes/Elements/Creative_Button.php:110, ../includes/Elements/Info_Box.php:422
1839
  msgid "Link URL"
1840
  msgstr ""
1841
 
1842
+ #: ../includes/Elements/Creative_Button.php:160, ../includes/Elements/Filterable_Gallery.php:2596, ../includes/Elements/Info_Box.php:470, ../includes/Elements/Pricing_Table.php:553
1843
  msgid "Icon Spacing"
1844
  msgstr ""
1845
 
1915
  msgid "Use Gradient Background"
1916
  msgstr ""
1917
 
1918
+ #: ../includes/Elements/Creative_Button.php:527, ../includes/Elements/Info_Box.php:1202
1919
  msgid "Button Padding"
1920
  msgstr ""
1921
 
1955
  msgid "Background Overlay"
1956
  msgstr ""
1957
 
1958
+ #: ../includes/Elements/Cta_Box.php:167, ../includes/Elements/Pricing_Table.php:154
1959
  msgid "Sub Title"
1960
  msgstr ""
1961
 
2039
  msgid "Secondary Button Style"
2040
  msgstr ""
2041
 
2042
+ #: ../includes/Elements/Cta_Box.php:1011, ../includes/Elements/Data_Table.php:1050, ../includes/Elements/Dual_Color_Header.php:386, ../includes/Elements/Feature_List.php:107, ../includes/Elements/Flip_Box.php:921, ../includes/Elements/Flip_Box.php:940, ../includes/Elements/Flip_Box.php:1053, ../includes/Elements/Info_Box.php:925
2043
  msgid "Icon Style"
2044
  msgstr ""
2045
 
2046
+ #: ../includes/Elements/Cta_Box.php:1022, ../includes/Elements/Pricing_Table.php:1351, ../includes/Elements/Twitter_Feed.php:901
2047
  msgid "Font Size"
2048
  msgstr ""
2049
 
2050
+ #: ../includes/Elements/Data_Table.php:75, ../includes/Elements/Event_Calendar.php:1245, ../includes/Elements/Pricing_Table.php:868, ../includes/Traits/Woo_Product_Comparable.php:1088
2051
  msgid "Header"
2052
  msgstr ""
2053
 
2131
  msgid "Cell Text"
2132
  msgstr ""
2133
 
2134
+ #: ../includes/Elements/Data_Table.php:396, ../includes/Elements/Event_Calendar.php:158, ../includes/Elements/Feature_List.php:201, ../includes/Elements/Filterable_Gallery.php:303, ../includes/Elements/Flip_Box.php:640, ../includes/Elements/Flip_Box.php:665, ../includes/Elements/Sticky_Video.php:158, ../includes/Elements/Sticky_Video.php:173, ../includes/Elements/Sticky_Video.php:188, ../includes/Elements/Sticky_Video.php:233, ../includes/Elements/Team_Member.php:180
2135
  msgid "Link"
2136
  msgstr ""
2137
 
2175
  msgid "Background Color (Even Row)"
2176
  msgstr ""
2177
 
2178
+ #: ../includes/Elements/Data_Table.php:1022, ../includes/Elements/Filterable_Gallery.php:1294, ../includes/Elements/Filterable_Gallery.php:1677, ../includes/Elements/Flip_Box.php:368, ../includes/Elements/Flip_Box.php:599, ../includes/Elements/Info_Box.php:299, ../includes/Elements/Pricing_Table.php:811, ../includes/Elements/Tooltip.php:372
2179
  msgid "Content Alignment"
2180
  msgstr ""
2181
 
2531
  msgid "Date Icon"
2532
  msgstr ""
2533
 
2534
+ #: ../includes/Elements/Event_Calendar.php:1503, ../includes/Elements/Info_Box.php:1469, ../includes/Elements/Product_Grid.php:2516, ../includes/Elements/Product_Grid.php:2809, ../includes/Elements/Twitter_Feed.php:601, ../includes/Elements/Woo_Product_Carousel.php:1601, ../includes/Elements/Woo_Product_Carousel.php:1905, ../includes/Elements/Woo_Product_Gallery.php:1854, ../includes/Elements/Woo_Product_Gallery.php:2147
2535
  msgid "Content Color"
2536
  msgstr ""
2537
 
2555
  msgid "Tomorrow"
2556
  msgstr ""
2557
 
2558
+ #: ../includes/Elements/Event_Calendar.php:1973
2559
  msgid "No Title"
2560
  msgstr ""
2561
 
2807
  msgid "Fancy Text Settings"
2808
  msgstr ""
2809
 
2810
+ #: ../includes/Elements/Fancy_Text.php:139, ../includes/Elements/Pricing_Table.php:632
2811
  msgid "Style 1"
2812
  msgstr ""
2813
 
2819
  msgid "Style Type"
2820
  msgstr ""
2821
 
2822
+ #: ../includes/Elements/Fancy_Text.php:159, ../includes/Elements/Pricing_Table.php:111, ../includes/Elements/Team_Member.php:297
2823
  msgid "Only available in pro version!"
2824
  msgstr ""
2825
 
2855
  msgid "Bounce"
2856
  msgstr ""
2857
 
2858
+ #: ../includes/Elements/Fancy_Text.php:208, ../includes/Elements/Pricing_Table.php:421
2859
  msgid "Swing"
2860
  msgstr ""
2861
 
2951
  msgid "Icon Shape"
2952
  msgstr ""
2953
 
2954
+ #: ../includes/Elements/Feature_List.php:275, ../includes/Elements/Flip_Box.php:876, ../includes/Elements/Info_Box.php:583, ../includes/Elements/Info_Box.php:638, ../includes/Elements/Info_Box.php:806, ../includes/Elements/Info_Box.php:886, ../includes/Elements/Info_Box.php:1024, ../includes/Elements/Info_Box.php:1120, ../includes/Elements/Progress_Bar.php:86
2955
  msgid "Circle"
2956
  msgstr ""
2957
 
2958
+ #: ../includes/Elements/Feature_List.php:276, ../includes/Elements/Info_Box.php:582, ../includes/Elements/Info_Box.php:637, ../includes/Elements/Info_Box.php:808, ../includes/Elements/Info_Box.php:888, ../includes/Elements/Info_Box.php:1026, ../includes/Elements/Info_Box.php:1122
2959
  msgid "Square"
2960
  msgstr ""
2961
 
2971
  msgid "Framed"
2972
  msgstr ""
2973
 
2974
+ #: ../includes/Elements/Feature_List.php:307, ../includes/Elements/Flip_Box.php:338, ../includes/Elements/Flip_Box.php:569, ../includes/Elements/Image_Accordion.php:132, ../includes/Elements/Info_Box.php:130, ../includes/Elements/Login_Register.php:749, ../includes/Elements/Pricing_Table.php:378, ../includes/Elements/Tooltip.php:290, ../includes/Elements/Twitter_Feed.php:365, ../includes/Extensions/Reading_Progress.php:115, ../includes/Traits/Controls.php:1697
2975
  msgid "Top"
2976
  msgstr ""
2977
 
3003
  msgid "Connector Styles"
3004
  msgstr ""
3005
 
3006
+ #: ../includes/Elements/Feature_List.php:432, ../includes/Elements/GravityForms.php:1063, ../includes/Elements/Sticky_Video.php:556, ../includes/Extensions/Table_of_Content.php:1080
3007
  msgid "Dashed"
3008
  msgstr ""
3009
 
3023
  msgid "Title Bottom Space"
3024
  msgstr ""
3025
 
3026
+ #: ../includes/Elements/Filterable_Gallery.php:94, ../includes/Elements/Flip_Box.php:77, ../includes/Elements/Pricing_Table.php:79, ../includes/Traits/Core.php:44, ../includes/templates/admin/elements.php:591, ../includes/templates/admin/elements.php:573, ../includes/templates/admin/elements.php:570, ../includes/templates/admin/extensions.php:85
3027
  msgid "Settings"
3028
  msgstr ""
3029
 
3119
  msgid "All label icon"
3120
  msgstr ""
3121
 
3122
+ #: ../includes/Elements/Filterable_Gallery.php:364, ../includes/Elements/Info_Box.php:230
3123
  msgid "Select Title Tag"
3124
  msgstr ""
3125
 
3126
+ #: ../includes/Elements/Filterable_Gallery.php:392, ../includes/Elements/Pricing_Table.php:304
3127
  msgid "List Item"
3128
  msgstr ""
3129
 
3251
  msgid "Extra Large"
3252
  msgstr ""
3253
 
3254
+ #: ../includes/Elements/Filterable_Gallery.php:736, ../includes/Elements/Filterable_Gallery.php:2642, ../includes/Elements/Flip_Box.php:702, ../includes/Elements/Pricing_Table.php:524
3255
  msgid "Button Icon"
3256
  msgstr ""
3257
 
3391
  msgid "3D Depth"
3392
  msgstr ""
3393
 
3394
+ #: ../includes/Elements/Flip_Box.php:166, ../includes/Elements/Flip_Box.php:931, ../includes/Elements/Flip_Box.php:1174
3395
  msgid "Front"
3396
  msgstr ""
3397
 
3398
+ #: ../includes/Elements/Flip_Box.php:218, ../includes/Elements/Flip_Box.php:449
3399
  msgid "Flipbox Image"
3400
  msgstr ""
3401
 
3402
+ #: ../includes/Elements/Flip_Box.php:248, ../includes/Elements/Flip_Box.php:479, ../includes/Elements/Info_Box.php:655
3403
  msgid "Image Resizer"
3404
  msgstr ""
3405
 
3406
+ #: ../includes/Elements/Flip_Box.php:282, ../includes/Elements/Flip_Box.php:288
3407
  msgid "Front Title"
3408
  msgstr ""
3409
 
3410
+ #: ../includes/Elements/Flip_Box.php:298
3411
  msgid "Select Front Title Tag"
3412
  msgstr ""
3413
 
3414
+ #: ../includes/Elements/Flip_Box.php:321
3415
  msgid "Front Content"
3416
  msgstr ""
3417
 
3418
+ #: ../includes/Elements/Flip_Box.php:324
3419
  msgid "This is front side content."
3420
  msgstr ""
3421
 
3422
+ #: ../includes/Elements/Flip_Box.php:334, ../includes/Elements/Flip_Box.php:565
3423
  msgid "Vertical Position"
3424
  msgstr ""
3425
 
3426
+ #: ../includes/Elements/Flip_Box.php:342, ../includes/Elements/Flip_Box.php:573, ../includes/Elements/Info_Box.php:134, ../includes/Elements/Twitter_Feed.php:369
3427
  msgid "Middle"
3428
  msgstr ""
3429
 
3430
+ #: ../includes/Elements/Flip_Box.php:346, ../includes/Elements/Flip_Box.php:577, ../includes/Elements/Image_Accordion.php:140, ../includes/Elements/Info_Box.php:138, ../includes/Elements/Pricing_Table.php:386, ../includes/Elements/Tooltip.php:291, ../includes/Elements/Twitter_Feed.php:373, ../includes/Extensions/Reading_Progress.php:116, ../includes/Traits/Controls.php:1701
3431
  msgid "Bottom"
3432
  msgstr ""
3433
 
3434
+ #: ../includes/Elements/Flip_Box.php:398, ../includes/Elements/Flip_Box.php:1044, ../includes/Elements/Flip_Box.php:1242
3435
  msgid "Back"
3436
  msgstr ""
3437
 
3438
+ #: ../includes/Elements/Flip_Box.php:513, ../includes/Elements/Flip_Box.php:519
3439
  msgid "Back Title"
3440
  msgstr ""
3441
 
3442
+ #: ../includes/Elements/Flip_Box.php:529
3443
  msgid "Select Back Title Tag"
3444
  msgstr ""
3445
 
3446
+ #: ../includes/Elements/Flip_Box.php:552
3447
  msgid "Back Content"
3448
  msgstr ""
3449
 
3450
+ #: ../includes/Elements/Flip_Box.php:555
3451
  msgid "This is back side content."
3452
  msgstr ""
3453
 
3454
+ #: ../includes/Elements/Flip_Box.php:650
3455
  msgid "Link Type"
3456
  msgstr ""
3457
 
3458
+ #: ../includes/Elements/Flip_Box.php:692
3459
  msgid "Get Started"
3460
  msgstr ""
3461
 
3462
+ #: ../includes/Elements/Flip_Box.php:764
3463
  msgid "Filp Box Style"
3464
  msgstr ""
3465
 
3466
+ #: ../includes/Elements/Flip_Box.php:772, ../includes/Elements/Flip_Box.php:781
3467
  msgid "Front Background Color"
3468
  msgstr ""
3469
 
3470
+ #: ../includes/Elements/Flip_Box.php:790, ../includes/Elements/Flip_Box.php:800
3471
  msgid "Back Background Color"
3472
  msgstr ""
3473
 
3474
+ #: ../includes/Elements/Flip_Box.php:810, ../includes/Elements/Team_Member.php:400
3475
  msgid "Content Padding"
3476
  msgstr ""
3477
 
3478
+ #: ../includes/Elements/Flip_Box.php:824
3479
  msgid "Border Style"
3480
  msgstr ""
3481
 
3482
+ #: ../includes/Elements/Flip_Box.php:860, ../includes/Elements/Info_Box.php:524
3483
  msgid "Image Style"
3484
  msgstr ""
3485
 
3486
+ #: ../includes/Elements/Flip_Box.php:871
3487
  msgid "Image Type"
3488
  msgstr ""
3489
 
3490
+ #: ../includes/Elements/Flip_Box.php:1322
3491
  msgid "Button Style"
3492
  msgstr ""
3493
 
 
 
 
 
3494
  #: ../includes/Elements/FluentForm.php:85
3495
  msgid "Select a Fluent Form"
3496
  msgstr ""
3497
 
3498
+ #: ../includes/Elements/FluentForm.php:129, ../includes/Elements/FluentForm.php:138
3499
+ msgid "Fluent Form"
3500
+ msgstr ""
3501
+
3502
  #: ../includes/Elements/FluentForm.php:115
3503
  msgid "<strong>Fluent Form</strong> is not installed/activated on your site. Please install and activate <a href=\"plugin-install.php?s=fluentform&tab=search&type=term\" target=\"_blank\">Fluent Form</a> first."
3504
  msgstr ""
3599
  msgid "<strong>Gravity Forms</strong> is not installed/activated on your site. Please install and activate <strong>Gravity Forms</strong> first."
3600
  msgstr ""
3601
 
3602
+ #: ../includes/Elements/GravityForms.php:617
3603
+ msgid "Sub-Labels"
3604
+ msgstr ""
3605
+
3606
+ #: ../includes/Elements/GravityForms.php:746
3607
  msgid "Spacing Right"
3608
  msgstr ""
3609
 
3610
+ #: ../includes/Elements/GravityForms.php:1024
3611
  msgid "Section Field"
3612
  msgstr ""
3613
 
3614
+ #: ../includes/Elements/GravityForms.php:1055, ../includes/Elements/Pricing_Table.php:774, ../includes/Elements/Pricing_Table.php:1549, ../includes/Elements/Sticky_Video.php:548
3615
  msgid "Border Type"
3616
  msgstr ""
3617
 
3618
+ #: ../includes/Elements/GravityForms.php:1061, ../includes/Elements/Sticky_Video.php:554
3619
  msgid "Double"
3620
  msgstr ""
3621
 
3622
+ #: ../includes/Elements/GravityForms.php:1075
3623
  msgid "Border Height"
3624
  msgstr ""
3625
 
3626
+ #: ../includes/Elements/GravityForms.php:1134, ../includes/Elements/Pricing_Table.php:196, ../includes/Elements/Pricing_Table.php:203, ../includes/Elements/Product_Grid.php:143, ../includes/Elements/Product_Grid.php:2456, ../includes/Elements/Woo_Checkout.php:220, ../includes/Elements/Woo_Product_Carousel.php:124, ../includes/Elements/Woo_Product_Carousel.php:1541, ../includes/Elements/Woo_Product_Gallery.php:113, ../includes/Elements/Woo_Product_Gallery.php:1794, ../includes/Traits/Woo_Product_Comparable.php:42, ../includes/Traits/Woo_Product_Comparable.php:79
3627
  msgid "Price"
3628
  msgstr ""
3629
 
3630
+ #: ../includes/Elements/GravityForms.php:1142
3631
  msgid "Price Label Color"
3632
  msgstr ""
3633
 
3634
+ #: ../includes/Elements/GravityForms.php:1154, ../includes/Elements/Product_Grid.php:1201, ../includes/Elements/Product_Grid.php:2474, ../includes/Elements/Woo_Product_Carousel.php:1559, ../includes/Elements/Woo_Product_Gallery.php:777, ../includes/Elements/Woo_Product_Gallery.php:1812
3635
  msgid "Price Color"
3636
  msgstr ""
3637
 
3638
+ #: ../includes/Elements/GravityForms.php:1172
3639
  msgid "Total Price"
3640
  msgstr ""
3641
 
3642
+ #: ../includes/Elements/GravityForms.php:1435
3643
  msgid "Radio"
3644
  msgstr ""
3645
 
3646
+ #: ../includes/Elements/GravityForms.php:1632
3647
  msgid "Scrolling Text"
3648
  msgstr ""
3649
 
3650
+ #: ../includes/Elements/GravityForms.php:2002
3651
  msgid "Next/Previous Button"
3652
  msgstr ""
3653
 
3654
+ #: ../includes/Elements/GravityForms.php:2269, ../includes/Elements/NinjaForms.php:1660
3655
  msgid "Error Description Color"
3656
  msgstr ""
3657
 
3658
+ #: ../includes/Elements/GravityForms.php:2284
3659
  msgid "Error Border Color"
3660
  msgstr ""
3661
 
3662
+ #: ../includes/Elements/GravityForms.php:2300
3663
  msgid "Error Field Background Color"
3664
  msgstr ""
3665
 
3666
+ #: ../includes/Elements/GravityForms.php:2315
3667
  msgid "Error Field Label Color"
3668
  msgstr ""
3669
 
3670
+ #: ../includes/Elements/GravityForms.php:2330, ../includes/Elements/NinjaForms.php:1675, ../includes/Elements/WpForms.php:1387
3671
  msgid "Error Field Input Border Color"
3672
  msgstr ""
3673
 
3674
+ #: ../includes/Elements/GravityForms.php:2345, ../includes/Elements/WpForms.php:1402
3675
  msgid "Error Field Input Border Width"
3676
  msgstr ""
3677
 
3678
+ #: ../includes/Elements/GravityForms.php:2369
3679
  msgid "Thank You Message"
3680
  msgstr ""
3681
 
3747
  msgid "Thumbnail"
3748
  msgstr ""
3749
 
3750
+ #: ../includes/Elements/Info_Box.php:72, ../includes/Elements/Info_Box.php:159
3751
  msgid "Infobox Image"
3752
  msgstr ""
3753
 
3771
  msgid "Image or Icon"
3772
  msgstr ""
3773
 
3774
+ #: ../includes/Elements/Info_Box.php:103, ../includes/Elements/Info_Box.php:195, ../includes/Extensions/Table_of_Content.php:481
3775
  msgid "Number"
3776
  msgstr ""
3777
 
3778
+ #: ../includes/Elements/Info_Box.php:212, ../includes/Elements/Info_Box.php:273
3779
  msgid "Infobox Content"
3780
  msgstr ""
3781
 
3782
+ #: ../includes/Elements/Info_Box.php:218
3783
  msgid "Infobox Title"
3784
  msgstr ""
3785
 
3786
+ #: ../includes/Elements/Info_Box.php:224
3787
  msgid "This is an icon box"
3788
  msgstr ""
3789
 
3790
+ #: ../includes/Elements/Info_Box.php:279
3791
  msgid "Write a short description, that will describe the title or something informational and useful."
3792
  msgstr ""
3793
 
3794
+ #: ../includes/Elements/Info_Box.php:288
3795
  msgid "Show Content"
3796
  msgstr ""
3797
 
3798
+ #: ../includes/Elements/Info_Box.php:327, ../includes/Elements/Post_Grid.php:745
3799
  msgid "Content Height"
3800
  msgstr ""
3801
 
3802
+ #: ../includes/Elements/Info_Box.php:357
3803
  msgid "Show Infobox Button"
3804
  msgstr ""
3805
 
3806
+ #: ../includes/Elements/Info_Box.php:370
3807
  msgid "Infobox Clickable"
3808
  msgstr ""
3809
 
3810
+ #: ../includes/Elements/Info_Box.php:385
3811
  msgid "Infobox Link"
3812
  msgstr ""
3813
 
3814
+ #: ../includes/Elements/Info_Box.php:426
3815
  msgid "Enter link URL for the button"
3816
  msgstr ""
3817
 
3818
+ #: ../includes/Elements/Info_Box.php:431
3819
  msgid "Enter heading for the button"
3820
  msgstr ""
3821
 
3822
+ #: ../includes/Elements/Info_Box.php:577, ../includes/Elements/Info_Box.php:632
3823
  msgid "Image Shape"
3824
  msgstr ""
3825
 
3826
+ #: ../includes/Elements/Info_Box.php:615, ../includes/Elements/Info_Box.php:843, ../includes/Elements/Info_Box.php:1076, ../includes/Elements/Post_Grid.php:932, ../includes/Elements/Simple_Menu.php:590
3827
  msgid "Animation"
3828
  msgstr ""
3829
 
3830
+ #: ../includes/Elements/Info_Box.php:708
3831
  msgid "Number Icon Style"
3832
  msgstr ""
3833
 
3834
+ #: ../includes/Elements/Info_Box.php:727, ../includes/Elements/Info_Box.php:959
3835
  msgid "Icon Background Size"
3836
  msgstr ""
3837
 
3838
+ #: ../includes/Elements/Info_Box.php:800, ../includes/Elements/Info_Box.php:880, ../includes/Elements/Info_Box.php:1018, ../includes/Elements/Info_Box.php:1114
3839
  msgid "Background Shape"
3840
  msgstr ""
3841
 
3842
+ #: ../includes/Elements/Info_Box.php:1159
3843
  msgid "Button Styles"
3844
  msgstr ""
3845
 
3846
+ #: ../includes/Elements/Info_Box.php:1395
3847
  msgid "Content Only Margin"
3848
  msgstr ""
3849
 
3850
+ #: ../includes/Elements/Info_Box.php:1407
3851
  msgid "Content Only Background"
3852
  msgstr ""
3853
 
3854
+ #: ../includes/Elements/Info_Box.php:1419
3855
  msgid "Content Only Padding"
3856
  msgstr ""
3857
 
3858
+ #: ../includes/Elements/Info_Box.php:1482
3859
  msgid "Transition will applied to ms (ex: 300ms)."
3860
  msgstr ""
3861
 
4766
  msgid "Theme"
4767
  msgstr ""
4768
 
4769
+ #: ../includes/Elements/Login_Register.php:3434, ../includes/Elements/Pricing_Table.php:465
4770
  msgid "Light"
4771
  msgstr ""
4772
 
5046
  msgid "<p class=\"no-posts-found\">No layout found!</p>"
5047
  msgstr ""
5048
 
5049
+ #: ../includes/Elements/Pricing_Table.php:88
5050
  msgid "Pricing Style 2"
5051
  msgstr ""
5052
 
5053
+ #: ../includes/Elements/Pricing_Table.php:89
5054
  msgid "Pricing Style 3 (Pro)"
5055
  msgstr ""
5056
 
5057
+ #: ../includes/Elements/Pricing_Table.php:90
5058
  msgid "Pricing Style 4 (Pro)"
5059
  msgstr ""
5060
 
5061
+ #: ../includes/Elements/Pricing_Table.php:91
5062
  msgid "Pricing Style 5 (Pro)"
5063
  msgstr ""
5064
 
5065
+ #: ../includes/Elements/Pricing_Table.php:100
5066
  msgid "Pricing Style"
5067
  msgstr ""
5068
 
5069
+ #: ../includes/Elements/Pricing_Table.php:127, ../includes/Elements/Pricing_Table.php:315, ../includes/Extensions/Table_of_Content.php:475
5070
  msgid "List Icon"
5071
  msgstr ""
5072
 
5073
+ #: ../includes/Elements/Pricing_Table.php:143
5074
  msgid "Startup"
5075
  msgstr ""
5076
 
5077
+ #: ../includes/Elements/Pricing_Table.php:160
5078
  msgid "A tagline here."
5079
  msgstr ""
5080
 
5081
+ #: ../includes/Elements/Pricing_Table.php:209
5082
  msgid "99"
5083
  msgstr ""
5084
 
5085
+ #: ../includes/Elements/Pricing_Table.php:215
5086
  msgid "On Sale?"
5087
  msgstr ""
5088
 
5089
+ #: ../includes/Elements/Pricing_Table.php:226, ../includes/Elements/Pricing_Table.php:1100
5090
  msgid "Sale Price"
5091
  msgstr ""
5092
 
5093
+ #: ../includes/Elements/Pricing_Table.php:232
5094
  msgid "89"
5095
  msgstr ""
5096
 
5097
+ #: ../includes/Elements/Pricing_Table.php:241
5098
  msgid "Price Currency"
5099
  msgstr ""
5100
 
5101
+ #: ../includes/Elements/Pricing_Table.php:245
5102
  msgid "$"
5103
  msgstr ""
5104
 
5105
+ #: ../includes/Elements/Pricing_Table.php:252
5106
  msgid "Currency Placement"
5107
  msgstr ""
5108
 
5109
+ #: ../includes/Elements/Pricing_Table.php:268
5110
  msgid "Price Period (per)"
5111
  msgstr ""
5112
 
5113
+ #: ../includes/Elements/Pricing_Table.php:272
5114
  msgid "month"
5115
  msgstr ""
5116
 
5117
+ #: ../includes/Elements/Pricing_Table.php:279
5118
  msgid "Period Separator"
5119
  msgstr ""
5120
 
5121
+ #: ../includes/Elements/Pricing_Table.php:283
5122
  msgid "/"
5123
  msgstr ""
5124
 
5125
+ #: ../includes/Elements/Pricing_Table.php:295
5126
  msgid "Feature"
5127
  msgstr ""
5128
 
5129
+ #: ../includes/Elements/Pricing_Table.php:308
5130
  msgid "Pricing table list item"
5131
  msgstr ""
5132
 
5133
+ #: ../includes/Elements/Pricing_Table.php:328
5134
  msgid "Item Active?"
5135
  msgstr ""
5136
 
5137
+ #: ../includes/Elements/Pricing_Table.php:347
5138
  msgid "Enable Tooltip?"
5139
  msgstr ""
5140
 
5141
+ #: ../includes/Elements/Pricing_Table.php:357
5142
  msgid "Tooltip Content"
5143
  msgstr ""
5144
 
5145
+ #: ../includes/Elements/Pricing_Table.php:360
5146
  msgid "I'm a awesome tooltip!!"
5147
  msgstr ""
5148
 
5149
+ #: ../includes/Elements/Pricing_Table.php:370
5150
  msgid "Tooltip Side"
5151
  msgstr ""
5152
 
5153
+ #: ../includes/Elements/Pricing_Table.php:400
5154
  msgid "Tooltip Trigger"
5155
  msgstr ""
5156
 
5157
+ #: ../includes/Elements/Pricing_Table.php:404
5158
  msgid "Click"
5159
  msgstr ""
5160
 
5161
+ #: ../includes/Elements/Pricing_Table.php:416
5162
  msgid "Tooltip Animation"
5163
  msgstr ""
5164
 
5165
+ #: ../includes/Elements/Pricing_Table.php:420
5166
  msgid "Grow"
5167
  msgstr ""
5168
 
5169
+ #: ../includes/Elements/Pricing_Table.php:423
5170
  msgid "Fall"
5171
  msgstr ""
5172
 
5173
+ #: ../includes/Elements/Pricing_Table.php:435, ../includes/Elements/Progress_Bar.php:219
5174
  msgid "Animation Duration"
5175
  msgstr ""
5176
 
5177
+ #: ../includes/Elements/Pricing_Table.php:447, ../includes/Elements/Pricing_Table.php:1579
5178
  msgid "Tooltip Arrow"
5179
  msgstr ""
5180
 
5181
+ #: ../includes/Elements/Pricing_Table.php:460
5182
  msgid "Tooltip Theme"
5183
  msgstr ""
5184
 
5185
+ #: ../includes/Elements/Pricing_Table.php:464
5186
  msgid "Noir"
5187
  msgstr ""
5188
 
5189
+ #: ../includes/Elements/Pricing_Table.php:466
5190
  msgid "Punk"
5191
  msgstr ""
5192
 
5193
+ #: ../includes/Elements/Pricing_Table.php:468
5194
  msgid "Borderless"
5195
  msgstr ""
5196
 
5197
+ #: ../includes/Elements/Pricing_Table.php:509
5198
  msgid "Display Button"
5199
  msgstr ""
5200
 
5201
+ #: ../includes/Elements/Pricing_Table.php:578
5202
  msgid "Choose Plan"
5203
  msgstr ""
5204
 
5205
+ #: ../includes/Elements/Pricing_Table.php:588, ../includes/Elements/Tooltip.php:245
5206
  msgid "Button Link"
5207
  msgstr ""
5208
 
5209
+ #: ../includes/Elements/Pricing_Table.php:611, ../includes/Elements/Pricing_Table.php:1294
5210
  msgid "Ribbon"
5211
  msgstr ""
5212
 
5213
+ #: ../includes/Elements/Pricing_Table.php:618
5214
  msgid "Featured?"
5215
  msgstr ""
5216
 
5217
+ #: ../includes/Elements/Pricing_Table.php:628
5218
  msgid "Ribbon Style"
5219
  msgstr ""
5220
 
5221
+ #: ../includes/Elements/Pricing_Table.php:633
5222
  msgid "Style 2"
5223
  msgstr ""
5224
 
5225
+ #: ../includes/Elements/Pricing_Table.php:634
5226
  msgid "Style 3"
5227
  msgstr ""
5228
 
5229
+ #: ../includes/Elements/Pricing_Table.php:635
5230
  msgid "Style 4"
5231
  msgstr ""
5232
 
5233
+ #: ../includes/Elements/Pricing_Table.php:649
5234
  msgid "Featured Tag Text"
5235
  msgstr ""
5236
 
5237
+ #: ../includes/Elements/Pricing_Table.php:653
5238
  msgid "Featured"
5239
  msgstr ""
5240
 
5241
+ #: ../includes/Elements/Pricing_Table.php:672
5242
  msgid "Ribbon Alignment"
5243
  msgstr ""
5244
 
5245
+ #: ../includes/Elements/Pricing_Table.php:729
5246
  msgid "Pricing Table Style"
5247
  msgstr ""
5248
 
5249
+ #: ../includes/Elements/Pricing_Table.php:913, ../includes/Elements/Pricing_Table.php:1302
5250
  msgid "Line Color"
5251
  msgstr ""
5252
 
5253
+ #: ../includes/Elements/Pricing_Table.php:936
5254
  msgid "Subtitle Style"
5255
  msgstr ""
5256
 
5257
+ #: ../includes/Elements/Pricing_Table.php:1022
5258
  msgid "Pricing"
5259
  msgstr ""
5260
 
5261
+ #: ../includes/Elements/Pricing_Table.php:1030
5262
  msgid "Original Price"
5263
  msgstr ""
5264
 
5265
+ #: ../includes/Elements/Pricing_Table.php:1059
5266
  msgid "Original Price Currency"
5267
  msgstr ""
5268
 
5269
+ #: ../includes/Elements/Pricing_Table.php:1129
5270
  msgid "Sale Price Currency"
5271
  msgstr ""
5272
 
5273
+ #: ../includes/Elements/Pricing_Table.php:1169
5274
  msgid "Pricing Period"
5275
  msgstr ""
5276
 
5277
+ #: ../includes/Elements/Pricing_Table.php:1225
5278
  msgid "Disable item color"
5279
  msgstr ""
5280
 
5281
+ #: ../includes/Elements/Pricing_Table.php:1258
5282
+ msgid "SVG Icon Size"
5283
+ msgstr ""
5284
+
5285
+ #: ../includes/Elements/Pricing_Table.php:1323, ../includes/Extensions/Table_of_Content.php:741
5286
  msgid "Line Height"
5287
  msgstr ""
5288
 
5289
+ #: ../includes/Elements/Pricing_Table.php:1505
5290
  msgid "Arrow Background"
5291
  msgstr ""
5292
 
5293
+ #: ../includes/Elements/Pricing_Table.php:1538
5294
  msgid "Refresh your browser after saving the padding value for see changes."
5295
  msgstr ""
5296
 
5297
+ #: ../includes/Elements/Pricing_Table.php:1588, ../includes/Elements/Tooltip.php:659
5298
  msgid "Arrow Size"
5299
  msgstr ""
5300
 
5301
+ #: ../includes/Elements/Pricing_Table.php:1633
5302
  msgid "Icon Settings"
5303
  msgstr ""
5304
 
5305
+ #: ../includes/Elements/Pricing_Table.php:1644
5306
  msgid "Show Background"
5307
  msgstr ""
5308
 
5309
+ #: ../includes/Elements/Pricing_Table.php:1677
5310
  msgid "Background Hover Color"
5311
  msgstr ""
5312
 
5313
+ #: ../includes/Elements/Pricing_Table.php:1713
5314
  msgid "Icon Area Width"
5315
  msgstr ""
5316
 
5317
+ #: ../includes/Elements/Pricing_Table.php:1738
5318
  msgid "Icon Area Height"
5319
  msgstr ""
5320
 
5321
+ #: ../includes/Elements/Pricing_Table.php:1769, ../includes/Elements/Team_Member.php:796
5322
  msgid "Icon Hover Color"
5323
  msgstr ""
5324
 
5325
+ #: ../includes/Elements/Pricing_Table.php:1893
5326
  msgid "Button Gradient Background"
5327
  msgstr ""
5328
 
7766
  msgid "Post ID is missing"
7767
  msgstr ""
7768
 
7769
+ #: ../includes/Traits/Facebook_Feed.php:41, ../includes/Traits/Helper.php:57, ../includes/Traits/Helper.php:945, ../includes/Traits/Login_Registration.php:62, ../includes/Traits/Login_Registration.php:227, ../includes/Traits/Woo_Product_Comparable.php:2133
7770
  msgid "Widget ID is missing"
7771
  msgstr ""
7772
 
7773
+ #: ../includes/Traits/Helper.php:29, ../includes/Traits/Helper.php:917, ../includes/Traits/Login_Registration.php:79, ../includes/Traits/Login_Registration.php:200
7774
  msgid "Insecure form submitted without security token"
7775
  msgstr ""
7776
 
7777
+ #: ../includes/Traits/Helper.php:37, ../includes/Traits/Helper.php:925, ../includes/Traits/Login_Registration.php:92, ../includes/Traits/Login_Registration.php:210, ../includes/Traits/Woo_Product_Comparable.php:2170
7778
  msgid "Security token did not match"
7779
  msgstr ""
7780
 
7781
+ #: ../includes/Traits/Helper.php:47, ../includes/Traits/Helper.php:935, ../includes/Traits/Login_Registration.php:55, ../includes/Traits/Login_Registration.php:222, ../includes/Traits/Woo_Product_Comparable.php:2128
7782
  msgid "Page ID is missing"
7783
  msgstr ""
7784
 
7785
+ #: ../includes/Traits/Helper.php:67, ../includes/Traits/Helper.php:954
7786
  msgid "Widget settings are not found. Did you save the widget before using load more??"
7787
  msgstr ""
7788
 
7794
  msgid "%s ago"
7795
  msgstr ""
7796
 
7797
+ #: ../includes/Traits/Helper.php:791
7798
  msgid "1,000+ Stunning Templates"
7799
  msgstr ""
7800
 
7801
+ #: ../includes/Traits/Helper.php:792
7802
  msgid "Supports Elementor & Gutenberg"
7803
  msgstr ""
7804
 
7805
+ #: ../includes/Traits/Helper.php:793
7806
  msgid "Powering up 17,000+ Websites"
7807
  msgstr ""
7808
 
7809
+ #: ../includes/Traits/Helper.php:794
7810
  msgid "Cloud Collaboration with Team"
7811
  msgstr ""
7812
 
7813
+ #: ../includes/Traits/Helper.php:803
7814
  msgid "Don’t Show This Again"
7815
  msgstr ""
7816
 
7817
+ #: ../includes/Traits/Helper.php:815, ../includes/templates/admin/general.php:19, ../includes/templates/admin/general.php:121
7818
  msgid "Activate Templately"
7819
  msgstr ""
7820
 
7821
+ #: ../includes/Traits/Helper.php:812
7822
  msgid "Activated Templately"
7823
  msgstr ""
7824
 
7825
+ #: ../includes/Traits/Helper.php:809, ../includes/templates/admin/general.php:17, ../includes/templates/admin/general.php:119
7826
  msgid "Install Templately"
7827
  msgstr ""
7828
 
7829
+ #: ../includes/Traits/Helper.php:818
7830
  msgid "Submit"
7831
  msgstr ""
7832
 
8298
  msgid "Stock <br/> Out"
8299
  msgstr ""
8300
 
8301
+ #: ../includes/Template/Eicon-Woocommerce/default.php:470
8302
  msgid "Stock "
8303
  msgstr ""
8304
 
8305
+ #: ../includes/Template/Eicon-Woocommerce/default.php:470
8306
  msgid "Out"
8307
  msgstr ""
8308
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: elementor, elements, addons, elementor addons, elementor widget, elementor
4
  Requires at least: 5.0
5
  Tested up to: 5.8
6
  Requires PHP: 5.6
7
- Stable tag: 4.9.3
8
  License: GPLv3
9
  License URI: https://opensource.org/licenses/GPL-3.0
10
 
@@ -74,7 +74,7 @@ We have designed 45 of the most useful widgets to enhance your Elementor Page Bu
74
  27. [Advanced Accordion](https://essential-addons.com/elementor/advanced-accordion/) - Add beautiful accordions in your pages, posts, and anywhere. Supports nested accordions.
75
  28. [Progress Bar](https://essential-addons.com/elementor/progress-bar/) - Display progress bars with 4+ different styles
76
  29. [Feature List](https://essential-addons.com/elementor/feature-list/) - Display feature lists with custom icons and styles
77
- 30. [Fluent Form](https://essential-addons.com/elementor/fluentform/) - Design your Fluent Form container, fields and anything you want
78
  31. [Facebook Feed](https://essential-addons.com/elementor/facebook-feed/) - Display Facebook post feed from your page
79
  32. [Sticky Video](https://essential-addons.com/elementor/sticky-video/) - Create cool video from YouTube, Vimeo or self-hosted that will be sticky on scroll while playing.
80
  33. [BetterDocs Category Grid](https://essential-addons.com/elementor/betterdocs-category-grid/) - Cretae custom Knowledge Base layout with BetterDocs Category List.
@@ -225,6 +225,19 @@ Your existing elements/content will work with premium version. So you won't lose
225
 
226
  == Changelog ==
227
 
 
 
 
 
 
 
 
 
 
 
 
 
 
228
  = 4.9.3 - 29/09/2021 =
229
 
230
  - Fixed: EA Fliterable Gallery | Video Gallery popup not working
4
  Requires at least: 5.0
5
  Tested up to: 5.8
6
  Requires PHP: 5.6
7
+ Stable tag: 4.9.4
8
  License: GPLv3
9
  License URI: https://opensource.org/licenses/GPL-3.0
10
 
74
  27. [Advanced Accordion](https://essential-addons.com/elementor/advanced-accordion/) - Add beautiful accordions in your pages, posts, and anywhere. Supports nested accordions.
75
  28. [Progress Bar](https://essential-addons.com/elementor/progress-bar/) - Display progress bars with 4+ different styles
76
  29. [Feature List](https://essential-addons.com/elementor/feature-list/) - Display feature lists with custom icons and styles
77
+ 30. [Fluent Forms](https://essential-addons.com/elementor/fluentform/) - Design your Fluent Forms container, fields and anything you want
78
  31. [Facebook Feed](https://essential-addons.com/elementor/facebook-feed/) - Display Facebook post feed from your page
79
  32. [Sticky Video](https://essential-addons.com/elementor/sticky-video/) - Create cool video from YouTube, Vimeo or self-hosted that will be sticky on scroll while playing.
80
  33. [BetterDocs Category Grid](https://essential-addons.com/elementor/betterdocs-category-grid/) - Cretae custom Knowledge Base layout with BetterDocs Category List.
225
 
226
  == Changelog ==
227
 
228
+ = 4.9.4 - 11/10/2021 =
229
+
230
+ - Improved: Asset Generator method for better performance
231
+ - Fixed: EA Product Grid | Title not being clickable for certain styles
232
+ - Fixed: EA Product grid | Broken layout in responsive devices
233
+ - Fixed: EA Gravity Forms | Form label styling not properly
234
+ - Fixed: EA Event Calendar | Events colors not changing with global color
235
+ - Fixed: EA Call to Action | Button URL Custom Attributes not working correctly
236
+ - Fixed: Missing Control icons inside Elemenetor panel
237
+ - Fixed: EA Simple Menu | Hamburger menu center option not working
238
+ - Fixed: EA Simple Menu | Active Page being shown on Responsive Devices despite being disabled
239
+ - Few minor bug fix & improvements
240
+
241
  = 4.9.3 - 29/09/2021 =
242
 
243
  - Fixed: EA Fliterable Gallery | Video Gallery popup not working