Version Description
- Tweak : Added option to define Feature Heading and Button Heading in Comparison Table
- Tweak : Added capability to style individual cards in Timeline widget
- Tweak : Enhancements in Filterable Gallery
- Tweak : Automatic CSS Regenerated on plugin re-activation.
- Fix : Text Separator blank icon migration issue resolved
- Fix : Modal Popup Close button icon migration issue resolved
=
Download this release
Release Info
Developer | wpvibes |
Plugin | Elementor Addon Elements |
Version | 1.6.2 |
Comparing to | |
See all releases |
Code changes from version 1.6.1 to 1.6.2
- assets/css/eae.css +50 -11
- assets/css/eae.min.css +1 -1
- assets/js/eae.js +35 -1
- elementor-addon-elements.php +13 -4
- modules/comparison-table/widgets/comparison-table.php +303 -25
- modules/dual-button/widgets/dual-button.php +29 -24
- modules/filterable-gallery/widgets/filterable-gallery.php +43 -9
- modules/modal-popup/widgets/modal-popup.php +17 -6
- modules/text-separator/widgets/text-separator.php +121 -114
- modules/timeline/skins/skin-base.php +4 -4
- modules/timeline/widgets/timeline.php +352 -0
- readme.txt +16 -2
assets/css/eae.css
CHANGED
@@ -670,7 +670,7 @@ Primary style
|
|
670 |
opacity: 0.8; }
|
671 |
|
672 |
.eae-popup-link{
|
673 |
-
padding:
|
674 |
color: #fff;
|
675 |
display: inline-flex;
|
676 |
line-height: 1;
|
@@ -2994,7 +2994,7 @@ article.eae-ct-wrapper{
|
|
2994 |
margin:0 auto;
|
2995 |
position:relative;
|
2996 |
}
|
2997 |
-
.eae-ct-wrapper th{
|
2998 |
position: relative;
|
2999 |
}
|
3000 |
.eae-ct-wrapper ul {
|
@@ -3044,9 +3044,13 @@ article.eae-ct-wrapper{
|
|
3044 |
.eae-ct-wrapper table{
|
3045 |
border:none;
|
3046 |
}
|
3047 |
-
|
|
|
|
|
|
|
|
|
3048 |
.eae-ct-wrapper td,.eae-ct-wrapper th {
|
3049 |
-
text-align:
|
3050 |
}
|
3051 |
.eae-ct-wrapper td+td, .eae-ct-wrapper th+th {
|
3052 |
text-align:center;
|
@@ -3103,9 +3107,12 @@ article.eae-ct-wrapper{
|
|
3103 |
align-self: flex-end;
|
3104 |
}
|
3105 |
.eae-ct-wrapper .tick { font-size:18px; color:#2CA01C; }
|
3106 |
-
.eae-ct-wrapper .hide {
|
3107 |
-
border:
|
3108 |
-
background:
|
|
|
|
|
|
|
3109 |
}
|
3110 |
.eae-ct-ribbons-yes .eae-ct-ribbons-wrapper {
|
3111 |
position: absolute;
|
@@ -3215,14 +3222,17 @@ article.eae-ct-wrapper{
|
|
3215 |
color: #ff0000;
|
3216 |
}
|
3217 |
|
3218 |
-
.eae-ct-wrapper tr:last-child td:first-child{
|
3219 |
background: none !important; border:none !important;
|
3220 |
}
|
3221 |
.eae-ct-wrapper tr:last-child{
|
3222 |
background: none !important;
|
3223 |
}
|
|
|
|
|
|
|
3224 |
@media (min-width: 767px) {
|
3225 |
-
.eae-ct-wrapper td,.eae-ct-wrapper
|
3226 |
width: 330px;
|
3227 |
|
3228 |
}
|
@@ -3234,30 +3244,56 @@ article.eae-ct-wrapper{
|
|
3234 |
.eae-tab-format-all .eae-ct-wrapper ul{
|
3235 |
display: flex;
|
3236 |
}
|
|
|
3237 |
@media (min-width: 1023px) {
|
|
|
|
|
|
|
3238 |
.eae-tab-format-tab-mob .eae-ct-wrapper td, .eae-tab-format-tab-mob .eae-ct-wrapper th,
|
3239 |
.eae-tab-format-mobile .eae-ct-wrapper td, .eae-tab-format-mobile .eae-ct-wrapper th {
|
3240 |
display: table-cell !important;
|
3241 |
}
|
|
|
|
|
|
|
3242 |
}
|
3243 |
@media (max-width: 1023px) {
|
3244 |
.eae-tab-format-tab-mob .eae-ct-wrapper ul{
|
3245 |
display: flex;
|
3246 |
}
|
3247 |
-
|
|
|
|
|
|
|
3248 |
display: none;
|
3249 |
}
|
|
|
|
|
|
|
3250 |
}
|
3251 |
@media (max-width: 1023px) and (min-width: 768px) {
|
3252 |
|
3253 |
.eae-tab-format-mobile .eae-ct-wrapper td, .eae-tab-format-mobile .eae-ct-wrapper th {
|
3254 |
display: table-cell !important;
|
3255 |
}
|
|
|
|
|
|
|
|
|
|
|
3256 |
}
|
3257 |
@media (max-width: 767px) {
|
3258 |
.eae-tab-format-mobile .eae-ct-wrapper ul{
|
3259 |
display: flex;
|
3260 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3261 |
}
|
3262 |
|
3263 |
/* Progress Bar */
|
@@ -3598,6 +3634,9 @@ article.eae-ct-wrapper{
|
|
3598 |
}
|
3599 |
|
3600 |
/* EAE Dual Button */
|
|
|
|
|
|
|
3601 |
|
3602 |
.eae-dual-button-wrapper.button-style-horizontal{
|
3603 |
display: flex;
|
@@ -3683,7 +3722,7 @@ article.eae-ct-wrapper{
|
|
3683 |
margin: 5px 0;
|
3684 |
}
|
3685 |
.eae-dual-button-wrapper.button-style-horizontal .eae-button-1-wrapper , .eae-dual-button-wrapper.button-style-horizontal .eae-button-2-wrapper{
|
3686 |
-
padding: 12px
|
3687 |
}
|
3688 |
.eae-dual-button-wrapper.button-style-vertical .eae-button-1-wrapper , .eae-dual-button-wrapper.button-style-vertical .eae-button-2-wrapper{
|
3689 |
padding: 20px 30px;
|
670 |
opacity: 0.8; }
|
671 |
|
672 |
.eae-popup-link{
|
673 |
+
padding : 12px 24px;
|
674 |
color: #fff;
|
675 |
display: inline-flex;
|
676 |
line-height: 1;
|
2994 |
margin:0 auto;
|
2995 |
position:relative;
|
2996 |
}
|
2997 |
+
.eae-ct-wrapper tbody tr.eae-ct-header td , .eae-ct-wrapper th{
|
2998 |
position: relative;
|
2999 |
}
|
3000 |
.eae-ct-wrapper ul {
|
3044 |
.eae-ct-wrapper table{
|
3045 |
border:none;
|
3046 |
}
|
3047 |
+
/*.eae-ct-wrapper table tr td:first-child,.eae-ct-wrapper table tr td:last-child, .eae-ct-wrapper td,.eae-ct-wrapper td,.eae-ct-wrapper th { border:1px solid #DDD; padding:10px; empty-cells:show; }*/
|
3048 |
+
.eae-ct-wrapper table th , .eae-ct-wrapper table td {
|
3049 |
+
border:none;
|
3050 |
+
}
|
3051 |
+
.eae-ct-wrapper table tr td:first-child,.eae-ct-wrapper table tr td:last-child, .eae-ct-wrapper td,.eae-ct-wrapper td,.eae-ct-wrapper th { padding:10px; empty-cells:show; }
|
3052 |
.eae-ct-wrapper td,.eae-ct-wrapper th {
|
3053 |
+
text-align:center;
|
3054 |
}
|
3055 |
.eae-ct-wrapper td+td, .eae-ct-wrapper th+th {
|
3056 |
text-align:center;
|
3107 |
align-self: flex-end;
|
3108 |
}
|
3109 |
.eae-ct-wrapper .tick { font-size:18px; color:#2CA01C; }
|
3110 |
+
.feature-heading-blank.eae-ct-wrapper .hide {
|
3111 |
+
border:unset !important;
|
3112 |
+
background:unset !important;
|
3113 |
+
}
|
3114 |
+
.eae-ct-wrapper .hide.eae-ct-hide.eae-fbox-heading{
|
3115 |
+
border : 0px solid black;
|
3116 |
}
|
3117 |
.eae-ct-ribbons-yes .eae-ct-ribbons-wrapper {
|
3118 |
position: absolute;
|
3222 |
color: #ff0000;
|
3223 |
}
|
3224 |
|
3225 |
+
.button-heading-blank.eae-ct-wrapper tr:last-child td:first-child{
|
3226 |
background: none !important; border:none !important;
|
3227 |
}
|
3228 |
.eae-ct-wrapper tr:last-child{
|
3229 |
background: none !important;
|
3230 |
}
|
3231 |
+
tbody tr:nth-child(2) {
|
3232 |
+
background: none !important;
|
3233 |
+
}
|
3234 |
@media (min-width: 767px) {
|
3235 |
+
.eae-ct-wrapper td,.eae-ct-wrapper .eae-ct-header {
|
3236 |
width: 330px;
|
3237 |
|
3238 |
}
|
3244 |
.eae-tab-format-all .eae-ct-wrapper ul{
|
3245 |
display: flex;
|
3246 |
}
|
3247 |
+
.hide.eae-ct-hide{display: table-cell;}
|
3248 |
@media (min-width: 1023px) {
|
3249 |
+
.eae-tab-format-all tbody tr.eae-ct-header {
|
3250 |
+
display: none;
|
3251 |
+
}
|
3252 |
.eae-tab-format-tab-mob .eae-ct-wrapper td, .eae-tab-format-tab-mob .eae-ct-wrapper th,
|
3253 |
.eae-tab-format-mobile .eae-ct-wrapper td, .eae-tab-format-mobile .eae-ct-wrapper th {
|
3254 |
display: table-cell !important;
|
3255 |
}
|
3256 |
+
|
3257 |
+
.eae-tab-format-all .hide.eae-ct-hide{display: table-cell;}
|
3258 |
+
.eae-tab-format-tab-mob .hide.eae-ct-hide , .eae-tab-format-mobile .hide.eae-ct-hide{display: none !important;}
|
3259 |
}
|
3260 |
@media (max-width: 1023px) {
|
3261 |
.eae-tab-format-tab-mob .eae-ct-wrapper ul{
|
3262 |
display: flex;
|
3263 |
}
|
3264 |
+
/*.eae-tab-format-all .eae-ct-wrapper td+td,.eae-tab-format-all .eae-ct-wrapper th+th{*/
|
3265 |
+
/* display: none;*/
|
3266 |
+
/*}*/
|
3267 |
+
.eae-tab-format-all tbody tr.eae-ct-header , .eae-tab-format-tab-mob tbody tr.eae-ct-header {
|
3268 |
display: none;
|
3269 |
}
|
3270 |
+
|
3271 |
+
.eae-tab-format-all .hide.eae-ct-hide{display: table-cell;}
|
3272 |
+
.eae-tab-format-tab-mob .hide.eae-ct-hide{display: table-cell ;}
|
3273 |
}
|
3274 |
@media (max-width: 1023px) and (min-width: 768px) {
|
3275 |
|
3276 |
.eae-tab-format-mobile .eae-ct-wrapper td, .eae-tab-format-mobile .eae-ct-wrapper th {
|
3277 |
display: table-cell !important;
|
3278 |
}
|
3279 |
+
|
3280 |
+
.eae-tab-format-all tbody tr.eae-ct-header , .eae-tab-format-tab-mob tbody tr.eae-ct-header {
|
3281 |
+
display: none;
|
3282 |
+
}
|
3283 |
+
.eae-tab-format-tab-mob .hide.eae-ct-hide{display: table-cell;}
|
3284 |
}
|
3285 |
@media (max-width: 767px) {
|
3286 |
.eae-tab-format-mobile .eae-ct-wrapper ul{
|
3287 |
display: flex;
|
3288 |
}
|
3289 |
+
.eae-tab-format-mobile tbody tr.eae-ct-header{
|
3290 |
+
display: none;
|
3291 |
+
}
|
3292 |
+
|
3293 |
+
.eae-tab-format-mobile tbody tr.eae-ct-header , .eae-tab-format-all tbody tr.eae-ct-header{
|
3294 |
+
display: none;
|
3295 |
+
}
|
3296 |
+
.eae-tab-format-mobile .hide.eae-ct-hide{display: table-cell;}
|
3297 |
}
|
3298 |
|
3299 |
/* Progress Bar */
|
3634 |
}
|
3635 |
|
3636 |
/* EAE Dual Button */
|
3637 |
+
.eae-dual-button-wrapper .eae-button-1-wrapper,.eae-dual-button-wrapper .eae-button-2-wrapper{
|
3638 |
+
overflow: hidden;
|
3639 |
+
}
|
3640 |
|
3641 |
.eae-dual-button-wrapper.button-style-horizontal{
|
3642 |
display: flex;
|
3722 |
margin: 5px 0;
|
3723 |
}
|
3724 |
.eae-dual-button-wrapper.button-style-horizontal .eae-button-1-wrapper , .eae-dual-button-wrapper.button-style-horizontal .eae-button-2-wrapper{
|
3725 |
+
padding: 12px 30px;
|
3726 |
}
|
3727 |
.eae-dual-button-wrapper.button-style-vertical .eae-button-1-wrapper , .eae-dual-button-wrapper.button-style-vertical .eae-button-2-wrapper{
|
3728 |
padding: 20px 30px;
|
assets/css/eae.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.elementor-widget-wts-textseparator .elementor-widget-container{overflow:hidden}.wts-eae-textseparator{align-items:center;display:flex;flex-flow:row nowrap;margin:auto}.eae-separator-icon-inner i{height:1em;width:1em;text-align:center;position:relative;display:block}.eae-separator-icon-inner i:before{position:absolute;left:50%;-webkit-transform:translateX(-50%);-moz-transform:translateX(-50%);-ms-transform:translateX(-50%);-o-transform:translateX(-50%);transform:translateX(-50%)}.wts-eae-textseparator .eae-sep-holder{flex:1 1 auto;height:1px;min-width:10%;position:relative}.wts-eae-textseparator .eae-sep-holder .eae-sep-lines{border-top-width:1px;display:block;height:1px;position:relative;top:1px;width:100%}.eae-separator-title{margin:0;-moz-box-flex:0;flex:0 1 auto;line-height:1em;margin:0;overflow-wrap:break-word}.sep-align-right .sep-right{display:none}.sep-align-left .sep-left{display:none}.eae-icon-view-stacked i{color:#fff}.eae-icon-view-framed .eae-separator-icon-inner{border:1px solid}.eae-icon-shape-circle .eae-separator-icon-inner{border-radius:50%}.eae-separator-icon-wrapper,.eae-separator-title{margin:0 5px!important}.eae-separator-icon-inner{line-height:1}.wts-price-box-wrapper .eae-pt-heading,.wts-price-box-wrapper .eae-pt-sub-heading{margin:5px 0;text-align:center}.plan-price-shape{display:table;height:6em;margin:auto;width:6em}.eae-pt-price-box-shape-circle .plan-price-shape,.eae-pt-price-box-shape-square .plan-price-shape{border:1px solid}.eae-pt-price-box-shape-circle .plan-price-shape{border-radius:50%}.plan-price-block{padding:10px 0}.plan-price-shape-inner{display:table-cell;vertical-align:middle;padding:10px}.plan-price-shape-inner>span{display:block;font-size:1em;text-align:center}.eae-pt-feature-list{list-style:outside none none;text-align:center;margin:10px 0}.eae-pt-button-wrapper>a{text-align:center;display:inline-block;line-height:1}.eae-pt-button-wrapper{text-align:center}.wts-price-box-wrapper .heading-wrapper,.wts-price-box-wrapper .plan-features-wrapper{padding:10px 5px}.eae-pt-button-wrapper{padding:15px 0}.eae-pt-button-wrapper a{padding:5px 15px;border-radius:3px}.eae-pt-align-icon-right{float:right}.strike-feature{text-decoration:line-through}.eae-flip-box{width:100%;text-align:center}.eae-flip-box-wrapper{display:inline-block;width:100%}.eae-flip-box-inner{width:100%;height:200px;position:relative;-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;-ms-transform-style:preserve-3d;transform-style:preserve-3d}.eae-flip-box-inner .eae-flip-box-back,.eae-flip-box-inner .eae-flip-box-front{width:100%;height:100%;position:absolute;top:0;left:0;text-align:center;padding:10px;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;backface-visibility:hidden;-webkit-transition:all .6s ease 0s;-moz-transition:all .6s ease 0s;-ms-transition:all .6s ease 0s;-o-transition:all .6s ease 0s;transition:all .6s ease 0s}.eae-flip-box-front{z-index:2}.eae-flip-box-back{z-index:1}.eae-fb-animate-vertical .eae-flip-box-inner .eae-flip-box-front{-webkit-transform:perspective(1000px) rotateX(0);-ms-transform:perspective(1000px) rotateX(0);transform:perspective(1000px) rotateX(0)}.eae-fb-animate-vertical .eae-flip-box-inner .eae-flip-box-back{-webkit-transform:perspective(1000px) rotateX(180deg);transform:perspective(1000px) rotateX(180deg);-ms-transform:perspective(1000px) rotateX(180deg)}.eae-fb-animate-vertical .eae-flip-box-inner:hover .eae-flip-box-front{-webkit-transform:perspective(1000px) rotateX(180deg);transform:perspective(1000px) rotateX(180deg);-ms-transform:perspective(1000px) rotateX(180deg)}.eae-fb-animate-vertical .eae-flip-box-inner:hover .eae-flip-box-back{-webkit-transform:perspective(1000px) rotateX(0);transform:perspective(1000px) rotateX(0);-ms-transform:perspective(1000px) rotateX(0)}.eae-fb-animate-horizontal .eae-flip-box-inner .eae-flip-box-front{-webkit-transform:perspective(1000px) rotateY(0);transform:perspective(1000px) rotateY(0);-ms-transform:perspective(1000px) rotateY(0)}.eae-fb-animate-horizontal .eae-flip-box-inner .eae-flip-box-back{-webkit-transform:perspective(1000px) rotateY(180deg);transform:perspective(1000px) rotateY(180deg);-ms-transform:perspective(1000px) rotateY(180deg)}.eae-fb-animate-horizontal .eae-flip-box-inner:hover .eae-flip-box-front{-webkit-transform:perspective(1000px) rotateY(180deg);transform:perspective(1000px) rotateY(180deg);-ms-transform:perspective(1000px) rotateY(180deg)}.eae-fb-animate-horizontal .eae-flip-box-inner:hover .eae-flip-box-back{-webkit-transform:perspective(1000px) rotateY(0);transform:perspective(1000px) rotateY(0);-ms-transform:perspective(1000px) rotateY(0)}.eae-fb-animate-fade .eae-flip-box-inner .eae-flip-box-front{opacity:1}.eae-fb-animate-fade .eae-flip-box-inner .eae-flip-box-back{opacity:0}.eae-fb-animate-fade .eae-flip-box-inner:hover .eae-flip-box-front{opacity:0}.eae-fb-animate-fade .eae-flip-box-inner:hover .eae-flip-box-back{opacity:1}.eae-flip-box-wrapper:focus .eae-flip-box-back,.eae-flip-box-wrapper:hover .eae-flip-box-back{z-index:2}.eae-flip-box-wrapper:focus .eae-flip-box-front,.eae-flip-box-wrapper:hover .eae-flip-box-front{z-index:1}.fade .eae-flip-box-wrapper .eae-flip-box-front{opacity:1;transition:1s}.fade .eae-flip-box-wrapper .eae-flip-box-back{opacity:0;transition:1s}.fade .eae-flip-box-wrapper:focus .eae-flip-box-front,.fade .eae-flip-box-wrapper:hover .eae-flip-box-front{opacity:0}.fade .eae-flip-box-wrapper:focus .eae-flip-box-back,.fade .eae-flip-box-wrapper:hover .eae-flip-box-back{opacity:1}.eae-fb-animate-flip .eae-flip-box-wrapper{perspective:800px}.eae-fb-animate-flip .eae-flip-box-inner{transform-style:preserve-3d;transform:rotateX(0) rotateY(0) rotateZ(0);transition:1s}.eae-fb-animate-flip .eae-flip-box-front{transform:translate3d(0,0,1px)}.eae-fb-animate-flip .eae-flip-box-back{transform:rotateY(180deg) translate3d(0,0,0)}.eae-fb-animate-flip .eae-flip-box-wrapper:focus .eae-flip-box-inner,.eae-fb-animate-flip .eae-flip-box-wrapper:hover .eae-flip-box-inner{transform:rotateY(180deg)}.up .eae-flip-box-front{transform:translate3d(0,0,1px)}.up .eae-flip-box-back{transform:rotateX(180deg) translate3d(0,0,0)}.up .eae-flip-box-wrapper:focus .eae-flip-box-inner,.up .eae-flip-box-wrapper:hover .eae-flip-box-inner{transform:rotateX(180deg)}.box .eae-flip-box-front{transform:translate3d(0,0,100px) scale(.85,.85)}.box .eae-flip-box-back{transform:rotateY(180deg) translate3d(0,0,100px) scale(.85,.85)}.box.up .eae-flip-box-back{transform:rotateX(180deg) translate3d(0,0,100px) scale(.85,.85)}.hideback .eae-flip-box-back,.hideback .eae-flip-box-front{backface-visibility:hidden}.eae-fb-animate-nananana .eae-flip-box-wrapper:focus .eae-flip-box-front,.eae-fb-animate-nananana .eae-flip-box-wrapper:hover .eae-flip-box-front{z-index:10;animation:batman 1s 2 alternate linear}.eae-fb-animate-flipcard .eae-flip-box-back,.eae-fb-animate-flipcard .eae-flip-box-front{transition:transform .4s ease;transform-origin:center center -150px;-webkit-transform-origin:center center -150px}.flipcard-rotate-top-down .eae-flip-box-front{transform:perspective(0) rotateX(0) rotateY(0) rotateZ(0)}.flipcard-rotate-top-down .eae-flip-box-back{transform:perspective(0) rotateX(90deg) rotateY(0) rotateZ(0)}.eae-fb-animate-flipcard.flipcard-rotate-top-down .eae-flip-box-wrapper:hover .eae-flip-box-front{transform:perspective(0) rotateX(-90deg) rotateY(0) rotateZ(0)}.eae-fb-animate-flipcard.flipcard-rotate-top-down .eae-flip-box-wrapper:hover .eae-flip-box-back{z-index:99999;transform:perspective(0) rotateX(0) rotateY(0) rotateZ(0)}.flipcard-rotate-down-top .eae-flip-box-front{transform:perspective(0) rotateX(0) rotateY(0) rotateZ(0)}.flipcard-rotate-down-top .eae-flip-box-back{transform:perspective(0) rotateX(-90deg) rotateY(0) rotateZ(0)}.eae-fb-animate-flipcard.flipcard-rotate-down-top .eae-flip-box-wrapper:hover .eae-flip-box-front{transform:perspective(0) rotateX(90deg) rotateY(0) rotateZ(0)}.eae-fb-animate-flipcard.flipcard-rotate-down-top .eae-flip-box-wrapper:hover .eae-flip-box-back{z-index:99999;transform:perspective(0) rotateX(0) rotateY(0) rotateZ(0)}.flipcard-rotate-left-right .eae-flip-box-front{transform:perspective(0) rotateX(0) rotateY(0) rotateZ(0)}.flipcard-rotate-left-right .eae-flip-box-back{transform:perspective(0) rotateX(0) rotateY(-90deg) rotateZ(0)}.eae-fb-animate-flipcard.flipcard-rotate-left-right .eae-flip-box-wrapper:hover .eae-flip-box-front{transform:perspective(0) rotateX(0) rotateY(90deg) rotateZ(0)}.eae-fb-animate-flipcard.flipcard-rotate-left-right .eae-flip-box-wrapper:hover .eae-flip-box-back{z-index:99999;transform:perspective(0) rotateX(0) rotateY(0) rotateZ(0)}.flipcard-rotate-right-left .eae-flip-box-front{transform:perspective(0) rotateX(0) rotateY(0) rotateZ(0)}.flipcard-rotate-right-left .eae-flip-box-back{transform:perspective(0) rotateX(0) rotateY(90deg) rotateZ(0)}.eae-fb-animate-flipcard.flipcard-rotate-right-left .eae-flip-box-wrapper:hover .eae-flip-box-front{transform:perspective(0) rotateX(0) rotateY(-90deg) rotateZ(0)}.eae-fb-animate-flipcard.flipcard-rotate-right-left .eae-flip-box-wrapper:hover .eae-flip-box-back{z-index:99999;transform:perspective(0) rotateX(0) rotateY(0) rotateZ(0)}@keyframes batman{0%{transform:scale(1,1) rotateZ(0)}100%{transform:scale(0,0) rotateZ(720deg);opacity:0}}.eae-flip-box-back i,.eae-flip-box-front i{font-size:32px;height:1em;width:1em;position:relative;display:block}.eae-flip-box-back i:before,.eae-flip-box-front i:before{position:absolute;left:50%;-webkit-transform:translate(-50%);-moz-transform:translate(-50%);-ms-transform:translate(-50%);-o-transform:translate(-50%);transform:translate(-50%)}.eae-fb-icon-view-framed{border:1px solid #92be43}.eae-fb-icon-shape-circle{border-radius:50%}.eae-flip-box-wrapper .icon-wrapper{display:inline-block;padding:10px;line-height:1}.eae-flip-box-wrapper .back-icon-title,.eae-flip-box-wrapper .front-icon-title{margin:10px auto;color:#fff}.eae-flip-box-wrapper .flipbox-content{display:block;position:relative;top:50%;transform:translateY(-50%);-ms-transform:translateY(-50%)}.flipbox-content p{margin-bottom:10px}.eae-fb-button{display:inline-block;padding:5px 10px}.eae-flip-box-front{background:#a0ce4e}.eae-flip-box-back{background:#73b9dc}@media only screen and (max-width:768px){.eae-flip-box-back,.eae-flip-box-front,.flipbox-content{cursor:pointer;overflow:visible!important;transform-style:preserve-3d;-webkit-transform-style:preserve-3d}}.elementor-widget-wts-shape-separator svg{display:block}.wts-eae-pl-wrapper ul{margin:0}.wts-eae-pl-wrapper ul li{list-style:none;overflow:hidden;margin-bottom:10px}.eae-pl-img-align-none .eae-pl-image-wrapper a{text-align:center}.eae-pl-title{margin:0}.eae-pl-title a{display:block}.eae-pl-readmore a{display:inline-block;border-radius:2px;color:#fff;padding:4px 8px}.eae-at-animation-text-wrapper{display:inline-block;position:relative;text-align:left}.eae-at-animation-text-wrapper .eae-at-animation-text{display:inline-block;position:absolute;white-space:nowrap;left:0;top:0}.eae-at-animation-text-wrapper .eae-at-animation-text.is-visible{position:relative}.no-js .eae-at-animation-text-wrapper .eae-at-animation-text{opacity:0}.no-js .eae-at-animation-text-wrapper .eae-at-animation-text.is-visible{opacity:1}.eae-animtext-wrapper{font-size:40px}.eae-st-rest-text{display:inline-block}.eae-st-split-text{display:inline-block}.eae-at-animation.type .eae-at-animation-text-wrapper{vertical-align:bottom;overflow:hidden}.eae-at-animation.type .eae-at-animation-text-wrapper::after{content:'';position:absolute;right:0;top:50%;bottom:auto;-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);-ms-transform:translateY(-50%);-o-transform:translateY(-50%);transform:translateY(-50%);height:90%;width:1px}.eae-at-animation.type .eae-at-animation-text-wrapper.waiting::after{-webkit-animation:cd-pulse 1s infinite;-moz-animation:cd-pulse 1s infinite;animation:cd-pulse 1s infinite}.eae-at-animation.type .eae-at-animation-text-wrapper.selected::after{visibility:hidden}.eae-at-animation.type .eae-at-animation-text{visibility:hidden}.eae-at-animation.type .eae-at-animation-text.is-visible{visibility:visible}.eae-at-animation.type i{position:absolute;visibility:hidden}.eae-at-animation.type i.in{position:relative;visibility:visible}@-webkit-keyframes cd-pulse{0%{-webkit-transform:translateY(-50%) scale(1);opacity:1}40%{-webkit-transform:translateY(-50%) scale(.9);opacity:0}100%{-webkit-transform:translateY(-50%) scale(0);opacity:0}}@-moz-keyframes cd-pulse{0%{-moz-transform:translateY(-50%) scale(1);opacity:1}40%{-moz-transform:translateY(-50%) scale(.9);opacity:0}100%{-moz-transform:translateY(-50%) scale(0);opacity:0}}@keyframes cd-pulse{0%{-webkit-transform:translateY(-50%) scale(1);-moz-transform:translateY(-50%) scale(1);-ms-transform:translateY(-50%) scale(1);-o-transform:translateY(-50%) scale(1);transform:translateY(-50%) scale(1);opacity:1}40%{-webkit-transform:translateY(-50%) scale(.9);-moz-transform:translateY(-50%) scale(.9);-ms-transform:translateY(-50%) scale(.9);-o-transform:translateY(-50%) scale(.9);transform:translateY(-50%) scale(.9);opacity:0}100%{-webkit-transform:translateY(-50%) scale(0);-moz-transform:translateY(-50%) scale(0);-ms-transform:translateY(-50%) scale(0);-o-transform:translateY(-50%) scale(0);transform:translateY(-50%) scale(0);opacity:0}}.eae-img-comp-container{width:100%;position:relative;text-align:center}.eae-img-comp-container img{vertical-align:middle}.eae-img-comp-img{position:absolute;top:0;left:0;height:100%;width:100%;overflow:hidden;transform:translateZ(0);backface-visibility:hidden}.eae-img-comp-img img{display:block;max-width:100%;width:100%}.eae-img-comp-slider{position:absolute;z-index:9;width:40px;height:40px;background-color:#2196f3;opacity:1;border-radius:50%}.icon-horizontal{cursor:ew-resize}.icon-vertical{cursor:n-resize}.mode-horizontal .eae-img-comp-overlay img{position:absolute;left:0;top:0;display:block;width:auto;height:100%!important;max-width:none!important}.mode-vertical .eae-img-comp-overlay img{position:absolute;left:0;top:0;display:block;width:100%;height:auto!important;max-width:none!important}.eae-img-comp-slider svg,.eae-slider-icon{top:50%;transform:translateY(-50%) translateX(-50%);position:absolute;left:50%;color:#fff}.elementor-widget-wts-ab-image{text-align:center}.elementor-widget-wts-ab-image .elementor-widget-container{display:inline-block;margin:0 auto!important;overflow:hidden}.eae-text-before{position:absolute!important;padding:10px;transition:transform .3s .7s,opacity .3s .7s;color:#d36118;z-index:0;background:rgba(255,255,255,.5);margin:20px}.eae-text-after{position:absolute!important;padding:10px;transition:transform .3s .7s,opacity .3s .7s;color:#d36118;z-index:0;background:rgba(255,255,255,.5);margin:20px}.divTest{display:inline-block;background-color:#00a0d2;padding:20px}.eae-particle-wrapper{width:100%;height:100%;position:absolute;left:0;top:0}.particles-js-canvas-el{height:100%;position:absolute}.eae-section-bs{position:absolute;width:100%;height:100%;top:0}.eae-section-bs-inner{width:100%;height:100%!important}.eae-popup.mfp-bg{top:0;left:0;width:100%;height:100%;z-index:1042;overflow:hidden;position:fixed;background:#0b0b0b;opacity:.8}.eae-popup-link{padding:10px;color:#fff;display:inline-flex;line-height:1}.eae-popup-link svg{fill:#fff}.eae-popup-link:hover{color:#fff}.eae-popup.mfp-wrap{top:0;left:0;width:100%;height:100%;z-index:1043;position:fixed;outline:0!important;-webkit-backface-visibility:hidden}.eae-popup .mfp-container{text-align:center;position:absolute;width:100%;height:100%;left:0;top:0;padding:0 8px;box-sizing:border-box}.eae-popup .mfp-container:before{content:'';display:inline-block;height:100%;vertical-align:middle}.eae-popup .mfp-align-top .mfp-container:before{display:none}.eae-popup .mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1045}.eae-modal-content{padding:20px}.eae-pop-btn-align-left .eae-popup-wrapper{text-align:left}.eae-pop-btn-align-right .eae-popup-wrapper{text-align:right}.eae-pop-btn-align-center .eae-popup-wrapper{text-align:center}.eae-pop-btn-align-justify .eae-popup-wrapper{text-align:center}.eae-pop-btn-align-justify .eae-popup-wrapper a{display:block}.eae-popup .mfp-ajax-holder .mfp-content,.eae-popup .mfp-inline-holder .mfp-content{width:50%;background-color:#fff;cursor:auto;overflow:hidden}.eae-popup .mfp-ajax-cur{cursor:progress}.eae-popup .mfp-zoom-out-cur,.eae-popup .mfp-zoom-out-cur .mfp-image-holder .eae-close{cursor:-moz-zoom-out;cursor:-webkit-zoom-out;cursor:zoom-out}.eae-popup .mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:-moz-zoom-in;cursor:zoom-in}.eae-popup.mfp-auto-cursor .mfp-content{cursor:auto}.eae-popup .eae-close,.eae-popup .mfp-arrow,.eae-popup .mfp-counter,.eae-popup .mfp-preloader{-webkit-user-select:none;-moz-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none!important}.eae-popup .mfp-preloader{color:#ccc;position:absolute;top:50%;width:auto;text-align:center;margin-top:-.8em;left:8px;right:8px;z-index:1044}.eae-popup .mfp-preloader a{color:#ccc}.eae-popup .mfp-preloader a:hover{color:#fff}.mfp-s-ready .mfp-preloader{display:none}.mfp-s-error .mfp-content{display:none}button.eae-close,button.mfp-arrow{overflow:visible;cursor:pointer;background:0 0;border:0;-webkit-appearance:none;display:block;outline:0;padding:0;z-index:1046;box-shadow:none;touch-action:manipulation}button::-moz-focus-inner{padding:0;border:0}.eae-popup .eae-close{width:28px;height:28px;line-height:1em;position:absolute;right:10px;top:10px;text-decoration:none;text-align:center;opacity:1;color:#fff;font-size:28px;z-index:1500}.eae-close:focus,.eae-close:hover{opacity:1;cursor:pointer}.eae-close:active{top:1px}.eae-close:before{top:50%;left:50%;position:absolute;transform:translate(-50%,-50%)}.eae-popup.eae-close-btn-in .eae-close{color:#fff}.mfp-iframe-holder .eae-close,.mfp-image-holder .eae-close{color:#fff;right:-6px;text-align:right;padding-right:6px;width:100%}.mfp-counter{position:absolute;top:0;right:0;color:#ccc;font-size:12px;line-height:18px;white-space:nowrap}.mfp-arrow{position:absolute;opacity:.65;margin:0;top:50%;margin-top:-55px;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:transparent}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:focus,.mfp-arrow:hover{opacity:1}.mfp-arrow:after,.mfp-arrow:before{content:'';display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:medium inset transparent}.mfp-arrow:after{border-top-width:13px;border-bottom-width:13px;top:8px}.mfp-arrow:before{border-top-width:21px;border-bottom-width:21px;opacity:.7}.mfp-arrow-left{left:0}.mfp-arrow-left:after{border-right:17px solid #fff;margin-left:31px}.mfp-arrow-left:before{margin-left:25px;border-right:27px solid #3f3f3f}.mfp-arrow-right{right:0}.mfp-arrow-right:after{border-left:17px solid #fff;margin-left:39px}.mfp-arrow-right:before{border-left:27px solid #3f3f3f}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-iframe-holder .eae-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;box-shadow:0 0 8px rgba(0,0,0,.6);background:#000}img.mfp-img{width:auto;max-width:100%;height:auto;display:block;line-height:0;box-sizing:border-box;padding:40px 0 40px;margin:0 auto}.eae-popup .mfp-figure{line-height:0}.eae-popup .mfp-figure:after{content:'';position:absolute;left:0;top:40px;bottom:40px;display:block;right:0;width:auto;height:auto;z-index:-1;box-shadow:0 0 8px rgba(0,0,0,.6);background:#444}.eae-popup .mfp-figure small{color:#bdbdbd;display:block;font-size:12px;line-height:14px}.eae-popup .mfp-figure figure{margin:0}.eae-popup .mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto}.eae-popup .mfp-title{text-align:left;line-height:1;word-wrap:break-word;color:#fff;background-color:#4054b2;padding:20px 20px 20px 20px}.eae-popup .mfp-image-holder .mfp-content{max-width:100%}.eae-popup .mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}@media screen and (max-width:800px) and (orientation:landscape),screen and (max-height:300px){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{right:5px;top:3px}.mfp-img-mobile .eae-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,.6);position:fixed;text-align:center;padding:0}}.elementor-element.eae-animated-gradient-yes,.elementor-element.eae-animated-gradient-yes .animated-gradient{background-size:400% 400%!important;-webkit-animation:AnimateGradient 15s ease-in-out infinite;-moz-animation:AnimateGradient 15s ease-in-out infinite;animation:AnimateGradient 15s ease-in-out infinite}.animated-gradient{position:absolute;top:0;left:0;height:100%;width:100%}@-webkit-keyframes AnimateGradient{0%{background-position:0 50%}50%{background-position:100% 50%}100%{background-position:0 50%}}@-moz-keyframes AnimateGradient{0%{background-position:0 50%}50%{background-position:100% 50%}100%{background-position:0 50%}}@keyframes AnimateGradient{0%{background-position:0 50%}50%{background-position:100% 50%}100%{background-position:0 50%}}.eae-swiper-outer-wrapper .swiper-slide{height:auto;overflow:inherit}.eae-swiper-outer-wrapper .swiper-slide-wrapper,.eae-swiper-outer-wrapper .testimonial-wrapper{height:100%}.eae-grid{display:flex;flex-wrap:wrap;flex-direction:row}.eae-masonry- .eae-grid-item{position:relative;height:100%}.eae-masonry- .eae-grid-item .testimonial-wrapper{height:100%}.eae-grid-container{transition:.1s all ease}.eae-grid-container{display:inline-block}.wrapper .content{margin:10px 0}.skin-2.testimonial-wrapper{display:flex;flex-direction:column;background-color:#9c989821;min-height:300px;padding:10px 20px;box-shadow:0 0 5px rgba(0,0,0,.15);color:#696969}.skin-2 .content-wrapper{padding:10px;position:relative;background-color:#fff;border-radius:10px;color:#77778e}.skin-2 i.after-content,.skin-2 i.before-content{position:absolute}.skin-2 i.before-content{top:10px;left:20px}.skin-2 i.after-content{bottom:10px;right:20px}.skin-2 blockquote{position:relative;font-size:14px;padding:10px;font-weight:500;text-align:left;margin:0;line-height:1.6em;font-style:italic}.skin-2 blockquote::after,.skin-2 blockquote::before{font-family:FontAwesome;content:"\201C";position:absolute;font-size:50px;opacity:.3;font-style:normal}.skin-2 blockquote::before{top:10px;left:20px}.skin-2 blockquote::after{content:"\201D";right:20px}.skin-2 .image-wrapper{position:relative;max-width:100%;text-align:center}.skin-2 img{width:100px;border-radius:25%}.skin-2 .detail-wrapper{text-align:center}.skin-2 .company,.skin-2 .designation,.skin-2 .rating-wrapper,.skin-2 .title{padding:5px 0}.skin-2 .rating-wrapper{color:navy}.skin-2 .title{font-weight:800;color:#000}.skin-2 blockquote p{margin:10px 0!important}.skin-1.testimonial-wrapper{display:flex;flex-direction:column;background-color:#fff;box-shadow:0 0 5px rgba(0,0,0,.15);color:#000}.skin-1 .content-wrapper{order:0}.skin-1 .image-wrapper{order:1;text-align:center;margin:15px 0}.skin-1 .detail-wrapper{order:2}.skin-1 .content-wrapper{padding:10px;position:relative}.skin-1 i.after-content,.skin-1 i.before-content{position:absolute}.skin-1 i.before-content{top:10px;left:20px}.skin-1 i.after-content{bottom:10px;right:20px}.skin-1 blockquote{position:relative;background-color:#fff;font-size:14px;padding:10px;font-weight:500;text-align:left;margin:0;line-height:1.6em;font-style:italic}.skin-1 blockquote::after,.skin-1 blockquote::before{font-family:FontAwesome;content:"\201C";position:absolute;font-size:50px;opacity:.3;font-style:normal}.skin-1 blockquote::before{top:10px;left:20px}.skin-1 blockquote::after{content:"\201D";right:20px}.skin-1 .image-wrapper{position:relative;max-width:100%}.skin-1 img{width:100px;height:auto;border-radius:50%}.skin-1 .detail-wrapper{display:flex;flex-direction:row-reverse;justify-content:space-between;padding:10px;background-color:rgba(157,163,156,.18)}.skin-1 .designation,.skin-1 .rating-wrapper,.skin-1 .title{margin:0 5px}.skin-1 .title-wrapper{display:flex;flex-direction:row}.skin-1 .rating-wrapper{color:#fecc1f}.skin-4.testimonial-wrapper{flex-direction:column;display:flex;background-color:#bfbfb6bd;min-height:300px;padding:10px 0;box-shadow:0 0 5px rgba(0,0,0,.15);color:#77778e}.skin-4 .content-wrapper{padding:10px;position:relative}.skin-4 .content-wrapper{order:2;color:#3c3c3c}.skin-4 i.after-content,.skin-4 i.before-content{position:absolute}.skin-4 i.before-content{top:10px;left:20px}.skin-4 i.after-content{bottom:10px;right:20px}.skin-4 blockquote{position:relative;font-size:14px;padding:10px;font-weight:500;text-align:left;margin:0;line-height:1.6em;font-style:italic}.skin-4 blockquote::after,.skin-4 blockquote::before{font-family:FontAwesome;content:"\201C";position:absolute;font-size:50px;opacity:.3;font-style:normal}.skin-4 blockquote::before{top:10px;left:20px}.skin-4 blockquote::after{content:"\201D";right:20px}.skin-4 .image-wrapper{position:relative;max-width:100%;text-align:center}.skin-4 img{width:100px;border-radius:50%}.skin-4 .detail-wrapper{text-align:center}.skin-2 .designation,.skin-2 .title,.skin-4 .rating-wrapper{padding:5px 0}.skin-4 .rating-wrapper{color:#690a69}.skin-4 .title{font-weight:800;color:#000}.skin-3.testimonial-wrapper{display:flex;flex-direction:row;background-color:#9c989821;box-shadow:0 0 5px rgba(0,0,0,.15);color:#000;overflow:hidden}.skin-3 .content-section{display:flex;flex-direction:column;align-self:center}.skin-3 .content-wrapper{padding:10px;position:relative}.skin-2 i.after-content,.skin-3 i.before-content{position:absolute}.skin-3 i.before-content{top:10px;left:20px}.skin-3 i.after-content{bottom:10px;right:20px}.skin-3 blockquote{position:relative;font-size:18px;padding:10px;font-weight:500;text-align:left;margin:0;line-height:1.6em;font-style:italic}.skin-3 blockquote::after,.skin-3 blockquote::before{font-family:FontAwesome;content:"\201C";position:absolute;font-size:50px;opacity:.3;font-style:normal}.skin-3 blockquote::before{top:10px;left:20px}.skin-3 blockquote::after{content:"\201D";right:20px}.skin-3 .image-wrapper{position:relative;max-width:30%;max-height:250px;text-align:center;align-self:center}.skin-3 img{width:100%}.testimonial-wrapper .skin-3 .eae-person-avatar{border-radius:50%}.skin-3 .detail-wrapper{text-align:left;padding-left:20px}.skin-3 .designation,.skin-3 .rating-wrapper,.skin-3 .title{padding:3px 0}.skin-3 .rating-wrapper{color:#800040}.skin-3 .title{font-weight:800}.eae-swiper-outer-wrapper .swiper-button-prev{-webkit-mask:url(arrow-left.svg) no-repeat 100% 100%;mask:url(arrow-left.svg) no-repeat 100% 100%;-webkit-mask-size:cover;mask-size:cover;background-image:none;background-color:#007aff;transform:translateY(-50%);margin-top:0}.eae-swiper-outer-wrapper .swiper-container-rtl .swiper-button-prev{-webkit-mask:url(arrow-right.svg) no-repeat 100% 100%;mask:url(arrow-right.svg) no-repeat 100% 100%}.eae-swiper-outer-wrapper .swiper-button-next{-webkit-mask:url(arrow-right.svg) no-repeat 100% 100%;mask:url(arrow-right.svg) no-repeat 100% 100%;-webkit-mask-size:cover;mask-size:cover;background-image:none;background-color:#007aff;transform:translateY(-50%);margin-top:0}.eae-swiper-outer-wrapper .swiper-container-rtl .swiper-button-next{-webkit-mask:url(arrow-left.svg) no-repeat 100% 100%;mask:url(arrow-left.svg) no-repeat 100% 100%}.elementor-widget-wts-testimonial-slider .eae-swiper-outer-wrapper .swiper-button-next,.elementor-widget-wts-testimonial-slider .eae-swiper-outer-wrapper .swiper-button-prev{-webkit-mask:none;mask:none;-webkit-mask-size:unset;mask-size:unset;background-image:none;background-color:unset;width:auto;height:auto;transform:translateY(-50%);margin-top:0}.swiper-container .swiper-button-next i,.swiper-container .swiper-button-prev i{width:1em;height:1em;text-align:center;position:relative}.elementor-widget-wts-testimonial-slider .eae-swiper-outer-wrapper .eae-swiper-button-wrapper{position:absolute;height:auto;line-height:0}.eae-hpos-right.eae-vpos-top .eae-swiper-button-wrapper{bottom:auto;top:0;width:auto;right:0}.eae-vpos-top.eae-hpos-left .eae-swiper-button-wrapper{bottom:auto;top:0;width:auto;left:0}.eeae-hpos-right.eae-vpos-bottom .eae-swiper-button-wrapper{bottom:0;top:auto;width:auto;right:0}.eae-vpos-bottom.eae-hpos-left .eae-swiper-button-wrapper{bottom:0;top:auto;width:auto;left:0}.eae-hpos-right.eae-vpos-middle .eae-swiper-button-wrapper{bottom:auto;top:50%;width:auto;right:0}.eae-hpos-left.eae-vpos-middle .eae-swiper-button-wrapper{bottom:auto;top:50%;width:auto;left:0}.eae-hpos-left .swiper-button-next,.eae-hpos-left .swiper-button-prev,.eae-hpos-right .swiper-button-next,.eae-hpos-right .swiper-button-prev{position:relative;display:inline-block;right:auto;left:auto}.eae-hpos-right.eae-vpos-bottom .swiper-button-next,.eae-hpos-right.eae-vpos-bottom .swiper-button-prev{top:auto;bottom:0;transform:unset}.eae-hpos-right.eae-vpos-top .swiper-button-next,.eae-hpos-right.eae-vpos-top .swiper-button-prev{top:0;bottom:auto;transform:unset}.eae-hpos-left.eae-vpos-top .swiper-button-next,.eae-hpos-left.eae-vpos-top .swiper-button-prev{top:0;bottom:auto;transform:unset}.eae-hpos-left.eae-vpos-bottom .swiper-button-next,.eae-hpos-left.eae-vpos-bottom .swiper-button-prev{top:auto;bottom:0;transform:unset}.eae-hpos-center.eae-vpos-bottom .swiper-button-next,.eae-hpos-center.eae-vpos-bottom .swiper-button-prev{top:auto;bottom:0;transform:unset}.eae-hpos-center.eae-vpos-top .swiper-button-next,.eae-hpos-center.eae-vpos-top .swiper-button-prev{top:0;bottom:auto;transform:unset}@media all and (max-width:900px){.mfp-arrow{-webkit-transform:scale(.75);transform:scale(.75)}.mfp-arrow-left{-webkit-transform-origin:0;transform-origin:0}.mfp-arrow-right{-webkit-transform-origin:100%;transform-origin:100%}.mfp-container{padding-left:6px;padding-right:6px}}.eae-info-circle{position:relative;width:90%;margin:0 auto;border-radius:50%;display:block}.eae-info-circle:before{content:'';display:block;position:absolute;top:4%;left:4%;width:92%;height:92%;border-radius:50%;z-index:1;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;pointer-events:none}.eae-info-circle:after{content:'';display:block;padding-top:100%}.eae-info-circle .eae-ic-icon-wrap{position:absolute;display:inline-block;top:50%;left:50%;z-index:2;line-height:1em;vertical-align:middle;overflow:hidden;max-width:100%}.eae-info-circle .eae-info-circle-item{top:0;left:0;width:100%;height:100%;display:block}.eae-info-circle .eae-info-circle-item.eae-active .eae-info-circle-item__content-wrap{visibility:visible;opacity:1;display:flex}.eae-info-circle .eae-info-circle-item__content-wrap{visibility:visible;display:none;height:91%;width:91%;opacity:0;top:50%;transform:translateY(-50%) translateX(-50%);position:absolute;left:50%;border-radius:50%;overflow:hidden;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.eae-info-circle .eae-info-circle-item__content-wrap:before{content:'';display:inline-block;height:100%;vertical-align:middle}.eae-info-circle .eae-info-circle-item__content{display:inline-block;top:50%;transform:translateY(-50%) translateX(-50%);position:absolute;left:50%;vertical-align:middle;z-index:1;max-height:100%;overflow:auto;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;text-align:center;width:75%}@media screen and (max-width:767px){.eae-info-circle.eae-info-circle .eae-info-circle-item__content-wrap:before{display:none}.eae-info-circle:after,.eae-info-circle:before{display:none}.eae-info-circle{width:100%!important}.eae-info-circle-wrapper:after,.eae-info-circle-wrapper:before{display:none}.eae-info-circle .eae-ic-icon-wrap{display:block;text-align:center;position:relative!important;left:unset!important;margin-left:0!important;margin-top:0!important;margin-bottom:10px}.eae-info-circle-item{position:relative!important;border-radius:0!important;padding:0;margin:10px 0}.eae-info-circle .eae-info-circle-item__content-wrap{visibility:visible;opacity:1!important;display:flex!important;border-radius:0!important;border:none!important;margin:0!important;padding-right:0!important;padding-left:0!important;padding-bottom:0!important;width:100%;height:auto;line-height:1.5em;position:relative;top:unset;left:unset;transform:unset}.eae-info-circle .eae-info-circle-item__content{position:relative;top:unset;left:unset;transform:unset;width:100%;padding:10px}}.eae-icon-wrap i{height:1.25em;width:1.25em;line-height:1.25em;display:block}.eae-icon-wrap i img{top:50%;left:50%;transform:translateX(-50%) translateY(-50%);position:absolute}.eae-icon{display:inline-block;text-align:center;vertical-align:middle;max-width:100%;overflow:hidden;padding:10px}.eae-icon-shape-circle:not(.elementor-element){border-radius:50%}.eae-icon-view-framed:not(.elementor-element){border-width:1px;border-style:solid}.eae-icon-wrapper{display:flex}.eae-icon-wrapper .eae-icon{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);line-height:1}.eae-timeline{position:relative;display:inline-block;width:100%}.eae-timline-progress-bar{width:4px;background-color:#f45b69;top:0;bottom:50px;position:absolute;transform:translateX(-50%)}.eae-timeline-item{position:relative;display:flex;flex-direction:row;padding-bottom:50px}.eae-timeline-item:last-child{padding-bottom:0!important}.eae-tl-top .eae-timeline-item{align-items:flex-start}.eae-tl-top .eae-tl-item-content::before{top:10px}.eae-timeline-item.image-position-row .eae-tl-item-image,.eae-timeline-item.image-position-row-reverse .eae-tl-item-image{margin-top:0;margin-bottom:0}.eae-tl-item-meta-wrapper-inner{display:none}.eae-tl-bottom .eae-timeline-item{align-items:flex-end}.eae-tl-bottom .eae-tl-item-content::before{bottom:10px}.eae-tl-center .eae-timeline-item{align-items:center}.eae-tl-center .eae-tl-item-content::before{bottom:calc(50% - 5px)}.eae-layout-center .eae-timline-progress-bar{left:50%}.eae-layout-center .eae-timeline-item:nth-child(odd){flex-direction:row-reverse}.eae-layout-center .eae-timeline-item:nth-child(odd) .eae-tl-item-meta-wrapper{margin-right:0;margin-left:0;justify-content:flex-start}.eae-layout-center .eae-timeline-item:nth-child(odd) .eae-tl-content-wrapper{padding-right:20px;padding-left:0}.eae-layout-center .eae-timeline-item:nth-child(even) .eae-tl-content-wrapper{padding-right:0;padding-left:20px}.eae-layout-left .eae-tl-content-wrapper{padding-right:10px;padding-left:20px}.eae-layout-left .eae-timline-progress-bar{left:20px}.eae-layout-left .eae-tl-item-meta-wrapper{display:none}.eae-layout-left .eae-tl-item-meta-wrapper-inner{display:block}.eae-layout-right .eae-timline-progress-bar{left:calc(100% - 20px)}.eae-layout-right .eae-tl-content-wrapper{padding-right:20px;padding-left:10px}.eae-layout-right .eae-tl-icon-wrapper{order:3}.eae-layout-right .eae-tl-item-meta-wrapper{display:none}.eae-layout-right .eae-tl-item-meta-wrapper-inner{display:block}.eae-tl-item-meta-wrapper{flex-grow:1;order:0;flex-basis:50%;flex-direction:initial;justify-content:flex-end;display:flex;align-items:center;margin-right:0}.eae-tl-item-meta{padding:0 20px}.eae-tl-icon-wrapper{height:auto;width:auto;flex-grow:0;flex-shrink:0;order:1;margin-left:0;margin-right:0;min-width:10px;min-height:10px;border-radius:999px;position:relative;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.eae-tl-content-wrapper{flex-grow:1;order:2;flex-basis:50%;position:relative;padding-right:0;padding-left:20px}.eae-tl-item-content{background:#f4f4f4;padding:25px;overflow:hidden;text-align:center;display:flex;flex-direction:row}.eae-tl-content{display:inline-block;position:relative;padding:10px;width:100%;color:#000}.eae-timeline-item.custom-image-style-yes.image-position-row .eae-content-inner,.eae-timeline-item.custom-image-style-yes.image-position-row-reverse .eae-content-inner,.image-position-row .eae-timeline .eae-timeline-item:not(.custom-image-style-yes) .eae-content-inner,.image-position-row-reverse .eae-timeline .eae-timeline-item:not(.custom-image-style-yes) .eae-content-inner{position:relative;left:50%;top:50%;transform:translate(-50%,-50%);line-height:1;width:100%}.custom-image-style-.image-position-row .eae-content-inner,.custom-image-style-.image-position-row-reverse .eae-content-inner,.custom-image-style-no.image-position-row .eae-content-inner,.custom-image-style-no.image-position-row-reverse .eae-content-inner{left:unset;top:unset;transform:unset}.eae-tl-item-image{display:inline-block}.image-position-row .eae-tl-item-image img,.image-position-row-reverse .eae-tl-item-image img{object-fit:cover;height:100%!important}.image-position-row .eae-tl-item-image,.image-position-row-reverse .eae-tl-item-image{margin:0}.image-position-column .eae-tl-item-image{margin:auto}.custom-image-style-.image-position-column .eae-tl-item-image,.custom-image-style-no.image-position-column .eae-tl-item-image{margin:0 auto}.eae-pb-inner-line{width:100%;background-color:#3d5ac3}.eae-tl-item-content::before{content:'';position:absolute;width:0;height:0;border-style:solid;border-width:8px 16px 8px 0;border-color:transparent #f4f4f4 transparent transparent}.eae-icon-wrapper{display:flex}.elementor-widget-bpel-timeline .eae-icon-wrapper{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);line-height:1}.eae-tl-read-more{display:inline-block;padding:5px;border:2px solid #000}.image-position-row .eae-timeline.eae-timeline-alternate-yes .eae-timeline-item:nth-child(odd):not(.custom-image-style-yes) .eae-tl-item-content{flex-direction:row-reverse!important}.image-position-row-reverse .eae-timeline.eae-timeline-alternate-yes .eae-timeline-item:nth-child(odd):not(.custom-image-style-yes) .eae-tl-item-content{flex-direction:row!important}@media screen and (min-width:1024px){.eae-layout-center .eae-timeline-item:nth-child(odd) .eae-tl-item-content::before,.eae-layout-right .eae-tl-item-content::before{right:4px;border-width:8px 0 8px 16px;border-color:transparent transparent transparent #f4f4f4}.eae-layout-center .eae-timeline-item:nth-child(even) .eae-tl-item-content::before,.eae-layout-left .eae-tl-item-content::before{left:4px;border-width:8px 16px 8px 0;border-color:transparent #f4f4f4 transparent transparent}}@media screen and (max-width:1023px) and (min-width:768px){.image-position-row .eae-timeline.eae-timeline-alternate-yes .eae-timeline-item:nth-child(odd):not(.custom-image-style-yes) .eae-tl-item-content{flex-direction:row-reverse!important}.image-position-row-reverse .eae-timeline.eae-timeline-alternate-yes .eae-timeline-item:nth-child(odd):not(.custom-image-style-yes) .eae-tl-item-content{flex-direction:row!important}.eae-tl-res-style-mobile-tablet .eae-tl-item-meta-wrapper{display:none}.eae-tl-res-style-mobile-tablet .eae-tl-item-meta-wrapper-inner{display:block}.eae-tl-res-style-mobile-tablet.eae-tl-res-layout-left .eae-timeline-item{flex-direction:row!important}.eae-tl-res-style-mobile-tablet.eae-tl-res-layout-right .eae-timeline-item{flex-direction:row-reverse!important}.eae-layout-center.eae-tl-res-style-mobile-tablet.eae-tl-res-layout-left .eae-timeline-item .eae-tl-item-content::before,.eae-layout-left .eae-timeline-item .eae-tl-item-content::before,.eae-layout-left .eae-tl-item-content::before,.eae-timeline.eae-layout-center.eae-tl-res-style-mobile .eae-timeline-item:nth-child(even) .eae-tl-item-content::before{left:4px!important;border-width:8px 16px 8px 0!important;border-color:transparent #f4f4f4 transparent transparent!important}.eae-layout-center.eae-tl-res-style-mobile-tablet.eae-tl-res-layout-right .eae-timeline-item .eae-tl-item-content::before,.eae-layout-right .eae-timeline-item .eae-tl-item-content::before,.eae-layout-right .eae-tl-item-content::before,.eae-timeline.eae-layout-center.eae-tl-res-style-mobile .eae-timeline-item:nth-child(odd) .eae-tl-item-content::before,.eae-tl-res-style-mobile-tablet.eae-tl-res-layout-right .eae-timeline-item .eae-tl-item-content::before{right:4px!important;border-width:8px 0 8px 16px!important;border-color:transparent transparent transparent #f4f4f4!important}.eae-tl-res-style-mobile-tablet.eae-layout-center.eae-tl-res-layout-left .eae-timeline-item .eae-tl-content-wrapper{padding-right:0!important;padding-left:20px!important}.eae-tl-res-style-mobile-tablet.eae-layout-center.eae-tl-res-layout-right .eae-timeline-item .eae-tl-content-wrapper{padding-right:20px!important;padding-left:0!important}.eae-tl-res-style-mobile-tablet.eae-layout-center.eae-tl-res-layout-left .eae-timline-progress-bar{left:13px}.eae-tl-res-style-mobile-tablet.eae-layout-center.eae-tl-res-layout-right .eae-timline-progress-bar{left:calc(100% - 13px)}}@media screen and (max-width:767px){.eae-tl-item-meta-wrapper{display:none}.eae-tl-item-meta-wrapper-inner{display:block}.elementor-widget-bpel-timeline:not(.image-position-column) .eae-timeline .eae-tl-item-content{flex-direction:column-reverse!important}.eae-tl-item-image,.elementor-widget-bpel-timeline:not(.image-position-column) .eae-tl-content{width:100%!important}.eae-tl-res-style-mobile-tablet.eae-tl-res-layout-left .eae-timeline-item,.eae-tl-res-style-mobile.eae-tl-res-layout-left .eae-timeline-item{flex-direction:row!important}.eae-tl-res-style-mobile-tablet.eae-tl-res-layout-right .eae-timeline-item,.eae-tl-res-style-mobile.eae-tl-res-layout-right .eae-timeline-item{flex-direction:row-reverse!important}.eae-layout-left .eae-timeline-item .eae-tl-item-content::before,.eae-timeline.eae-layout-center.eae-tl-center.eae-tl-res-style-mobile-tablet.eae-tl-res-layout-left .eae-timeline-item:nth-child(odd) .eae-tl-item-content::before,.eae-timeline.eae-layout-center.eae-tl-center.eae-tl-res-style-mobile.eae-tl-res-layout-left .eae-timeline-item:nth-child(odd) .eae-tl-item-content::before,.eae-tl-res-style-mobile-tablet.eae-tl-res-layout-left .eae-timeline-item .eae-tl-item-content::before,.eae-tl-res-style-mobile.eae-tl-res-layout-left .eae-timeline-item .eae-tl-item-content::before{left:4px!important;border-width:8px 16px 8px 0!important;border-color:transparent #f4f4f4 transparent transparent!important}.eae-layout-right .eae-timeline-item .eae-tl-item-content::before,.eae-tl-res-style-mobile-tablet.eae-tl-res-layout-right .eae-timeline-item .eae-tl-item-content::before,.eae-tl-res-style-mobile.eae-tl-res-layout-right .eae-timeline-item .eae-tl-item-content::before{right:4px!important;border-width:8px 0 8px 16px!important;border-color:transparent transparent transparent #f4f4f4!important}.eae-tl-res-style-mobile-tablet.eae-layout-center.eae-tl-res-layout-left .eae-timeline-item .eae-tl-content-wrapper,.eae-tl-res-style-mobile.eae-layout-center.eae-tl-res-layout-left .eae-timeline-item .eae-tl-content-wrapper{padding-right:0!important;padding-left:20px!important}.eae-tl-res-style-mobile-tablet.eae-layout-center.eae-tl-res-layout-right .eae-timeline-item .eae-tl-content-wrapper,.eae-tl-res-style-mobile.eae-layout-center.eae-tl-res-layout-right .eae-timeline-item .eae-tl-content-wrapper{padding-right:20px!important;padding-left:0!important}.eae-tl-res-style-mobile-tablet.eae-layout-center.eae-tl-res-layout-left .eae-timline-progress-bar,.eae-tl-res-style-mobile.eae-layout-center.eae-tl-res-layout-left .eae-timline-progress-bar{left:13px}.eae-tl-res-style-mobile-tablet.eae-layout-center.eae-tl-res-layout-right .eae-timline-progress-bar,.eae-tl-res-style-mobile.eae-layout-center.eae-tl-res-layout-right .eae-timline-progress-bar{left:calc(100% - 13px)}}[data-element_type="eae-evergreen-timer.skin1"] .eae-evergreen-wrapper{display:block;text-align:center}[data-element_type="eae-evergreen-timer.skin1"] #eaeclockdiv{font-family:sans-serif;color:#fff;display:inline-block;font-weight:100;text-align:center;font-size:30px}[data-element_type="eae-evergreen-timer.skin1"] .eae-time-wrapper{padding:10px;border-radius:3px;background:#00bf96;display:inline-block;overflow:hidden}[data-element_type="eae-evergreen-timer.skin1"] #eaeclockdiv div>span{padding:15px;width:100%;background:#00816a;display:inline-block}[data-element_type="eae-evergreen-timer.skin1"] .smalltext{padding:7px;font-size:16px}[data-element_type="eae-evergreen-timer.skin1"] .eae-egt-hide{display:none}.eae-egt-message{display:none}@media screen and (max-width:767px){[data-element_type="eae-evergreen-timer.skin1"] #eaeclockdiv div>span{padding:5px}[data-element_type="eae-evergreen-timer.skin1"] .eae-time-wrapper{padding:5px}}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-o-box-sizing:border-box;box-sizing:border-box;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden}[data-element_type="eae-evergreen-timer.skin2"] .eae-evergreen-wrapper{display:inline-block;width:100%;text-align:center;margin:auto}[data-element_type="eae-evergreen-timer.skin2"] .timer-container{display:inline-block}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper a{cursor:pointer;text-decoration:none;color:#ccc}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper a:hover{color:#fff}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper ul{list-style:none}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper.clearfix:after,[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper.clearfix:before{content:" ";display:table}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper.clearfix:after{clear:both}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper{font:normal 11px "Helvetica Neue",Helvetica,sans-serif;-webkit-user-select:none}[data-element_type="eae-evergreen-timer.skin2"] .flip-clock-meridium{background:0 0!important;box-shadow:0 0 0!important;font-size:36px!important}[data-element_type="eae-evergreen-timer.skin2"] .flip-clock-meridium a{color:#313333}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper{text-align:center;position:relative;width:100%;margin:1em}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper:after,[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper:before{content:" ";display:table}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper:after{clear:both}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper ul{position:relative;float:left;margin:5px;width:60px;height:90px;font-size:80px;font-weight:700;line-height:87px;border-radius:6px;background:#000}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper ul li{z-index:1;position:absolute;left:0;top:0;width:100%;height:100%;line-height:87px;text-decoration:none!important}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper ul li:first-child{z-index:2}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper ul li a{display:block;height:100%;-webkit-perspective:200px;-moz-perspective:200px;perspective:200px;margin:0!important;overflow:visible!important;cursor:default!important}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper ul li a div{z-index:1;position:absolute;left:0;width:100%;height:50%;font-size:80px;overflow:hidden;outline:1px solid transparent}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper ul li a div .shadow{position:absolute;width:100%;height:100%;z-index:2}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper ul li a div.up{-webkit-transform-origin:50% 100%;-moz-transform-origin:50% 100%;-ms-transform-origin:50% 100%;-o-transform-origin:50% 100%;transform-origin:50% 100%;top:0}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper ul li a div.up:after{content:"";position:absolute;top:44px;left:0;z-index:5;width:100%;height:3px;background-color:#000;background-color:rgba(0,0,0,.4)}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper ul li a div.down{-webkit-transform-origin:50% 0;-moz-transform-origin:50% 0;-ms-transform-origin:50% 0;-o-transform-origin:50% 0;transform-origin:50% 0;bottom:0;border-bottom-left-radius:6px;border-bottom-right-radius:6px}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper ul li a div div.inn{position:absolute;left:0;z-index:1;width:100%;height:200%;color:#ccc;text-shadow:0 1px 2px #000;text-align:center;background-color:#333;border-radius:6px;font-size:70px}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper ul li a div.up div.inn{top:0}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper ul li a div.down div.inn{bottom:0}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper ul.play li.flip-clock-before{z-index:3}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper .flip{box-shadow:0 2px 5px rgba(0,0,0,.7)}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper ul.play li.flip-clock-active{-webkit-animation:asd 10ms .49s linear both;-moz-animation:asd 10ms .49s linear both;animation:asd 10ms .49s linear both;z-index:5}[data-element_type="eae-evergreen-timer.skin2"] .flip-clock-divider{float:left;display:inline-block;position:relative;width:20px;height:100px}[data-element_type="eae-evergreen-timer.skin2"] .flip-clock-divider:first-child{width:0}[data-element_type="eae-evergreen-timer.skin2"] .flip-clock-dot{display:block;background:#323434;width:10px;height:10px;position:absolute;border-radius:50%;box-shadow:0 0 5px rgba(0,0,0,.5);left:5px}[data-element_type="eae-evergreen-timer.skin2"] .flip-clock-divider .flip-clock-label{position:absolute;top:-1.5em;right:-86px;color:#000;text-shadow:none}[data-element_type="eae-evergreen-timer.skin2"] .flip-clock-divider.minutes .flip-clock-label{right:-88px}[data-element_type="eae-evergreen-timer.skin2"] .flip-clock-divider.seconds .flip-clock-label{right:-91px}[data-element_type="eae-evergreen-timer.skin2"] .flip-clock-dot.top{top:30%}[data-element_type="eae-evergreen-timer.skin2"] .flip-clock-dot.bottom{bottom:30%}@-webkit-keyframes asd{0%{z-index:2}100%{z-index:4}}@-moz-keyframes asd{0%{z-index:2}100%{z-index:4}}@-o-keyframes asd{0%{z-index:2}100%{z-index:4}}@keyframes asd{0%{z-index:2}100%{z-index:4}}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper ul.play li.flip-clock-active .down{z-index:2;-webkit-animation:turn .5s .5s linear both;-moz-animation:turn .5s .5s linear both;animation:turn .5s .5s linear both}@-webkit-keyframes turn{0%{-webkit-transform:rotateX(90deg)}100%{-webkit-transform:rotateX(0)}}@-moz-keyframes turn{0%{-moz-transform:rotateX(90deg)}100%{-moz-transform:rotateX(0)}}@-o-keyframes turn{0%{-o-transform:rotateX(90deg)}100%{-o-transform:rotateX(0)}}@keyframes turn{0%{transform:rotateX(90deg)}100%{transform:rotateX(0)}}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper ul.play li.flip-clock-before .up{z-index:2;-webkit-animation:turn2 .5s linear both;-moz-animation:turn2 .5s linear both;animation:turn2 .5s linear both}@-webkit-keyframes turn2{0%{-webkit-transform:rotateX(0)}100%{-webkit-transform:rotateX(-90deg)}}@-moz-keyframes turn2{0%{-moz-transform:rotateX(0)}100%{-moz-transform:rotateX(-90deg)}}@-o-keyframes turn2{0%{-o-transform:rotateX(0)}100%{-o-transform:rotateX(-90deg)}}@keyframes turn2{0%{transform:rotateX(0)}100%{transform:rotateX(-90deg)}}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper ul li.flip-clock-active{z-index:3}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper ul.play li.flip-clock-before .up .shadow{background:-moz-linear-gradient(top,rgba(0,0,0,.1) 0,#000 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,#000));background:linear,top,rgba(0,0,0,.1) 0,#000 100%;background:-o-linear-gradient(top,rgba(0,0,0,.1) 0,#000 100%);background:-ms-linear-gradient(top,rgba(0,0,0,.1) 0,#000 100%);background:linear,to bottom,rgba(0,0,0,.1) 0,#000 100%;-webkit-animation:show .5s linear both;-moz-animation:show .5s linear both;animation:show .5s linear both}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper ul.play li.flip-clock-active .up .shadow{background:-moz-linear-gradient(top,rgba(0,0,0,.1) 0,#000 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,#000));background:linear,top,rgba(0,0,0,.1) 0,#000 100%;background:-o-linear-gradient(top,rgba(0,0,0,.1) 0,#000 100%);background:-ms-linear-gradient(top,rgba(0,0,0,.1) 0,#000 100%);background:linear,to bottom,rgba(0,0,0,.1) 0,#000 100%;-webkit-animation:hide .5s .3s linear both;-moz-animation:hide .5s .3s linear both;animation:hide .5s .3s linear both}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper ul.play li.flip-clock-before .down .shadow{background:-moz-linear-gradient(top,#000 0,rgba(0,0,0,.1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#000),color-stop(100%,rgba(0,0,0,.1)));background:linear,top,#000 0,rgba(0,0,0,.1) 100%;background:-o-linear-gradient(top,#000 0,rgba(0,0,0,.1) 100%);background:-ms-linear-gradient(top,#000 0,rgba(0,0,0,.1) 100%);background:linear,to bottom,#000 0,rgba(0,0,0,.1) 100%;-webkit-animation:show .5s linear both;-moz-animation:show .5s linear both;animation:show .5s linear both}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper ul.play li.flip-clock-active .down .shadow{background:-moz-linear-gradient(top,#000 0,rgba(0,0,0,.1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#000),color-stop(100%,rgba(0,0,0,.1)));background:linear,top,#000 0,rgba(0,0,0,.1) 100%;background:-o-linear-gradient(top,#000 0,rgba(0,0,0,.1) 100%);background:-ms-linear-gradient(top,#000 0,rgba(0,0,0,.1) 100%);background:linear,to bottom,#000 0,rgba(0,0,0,.1) 100%;-webkit-animation:hide .5s .3s linear both;-moz-animation:hide .5s .3s linear both;animation:hide .5s .2s linear both}@-webkit-keyframes show{0%{opacity:0}100%{opacity:1}}@-moz-keyframes show{0%{opacity:0}100%{opacity:1}}@-o-keyframes show{0%{opacity:0}100%{opacity:1}}@keyframes show{0%{opacity:0}100%{opacity:1}}@-webkit-keyframes hide{0%{opacity:1}100%{opacity:0}}@-moz-keyframes hide{0%{opacity:1}100%{opacity:0}}@-o-keyframes hide{0%{opacity:1}100%{opacity:0}}@keyframes hide{0%{opacity:1}100%{opacity:0}}@media screen and (max-width:767px){[data-element_type="eae-evergreen-timer.skin2"] .flip-clock-divider{width:15px}[data-element_type="eae-evergreen-timer.skin2"] .flip-clock-dot{height:5px;width:5px}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper ul{height:40px}[data-element_type="eae-evergreen-timer.skin2"] .flip-clock-divider{height:50px}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper ul li{line-height:37px}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper ul li a div div.inn{font-size:24px}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper ul{margin:2px}}[data-element_type="eae-evergreen-timer.skin3"] #timer{font-family:sans-serif;color:#fff;display:inline-block;font-weight:100;text-align:center;font-size:30px}[data-element_type="eae-evergreen-timer.skin3"] .desc{display:flex;justify-content:center}[data-element_type="eae-evergreen-timer.skin3"].eae-egt-content-align-right .desc{justify-content:flex-end}[data-element_type="eae-evergreen-timer.skin3"].eae-egt-content-align-left .desc{justify-content:flex-start}[data-element_type="eae-evergreen-timer.skin3"] .desc .egt-time-text{display:inline-block;padding:0 50px 0 50px}[data-element_type="eae-evergreen-timer.skin3"] .eae-time-wrapper{padding:50px;border-radius:3px;background:#00bf96;display:inline-block;overflow:hidden;margin:5px;line-height:1em}[data-element_type="eae-evergreen-timer.skin3"] #timer span:nth-child(1){background:khaki}[data-element_type="eae-evergreen-timer.skin3"] #timer span:nth-child(2){background:#cd5c5c}[data-element_type="eae-evergreen-timer.skin3"] #timer span:nth-child(3){background:#5f9ea0}[data-element_type="eae-evergreen-timer.skin3"] #timer span:nth-child(4){background:#6495ed}[data-element_type="eae-evergreen-timer.skin3"] .fade{animation:flip .7s ease forwards}@keyframes flip{0%{transform:rotateY(0) scaleY(1.1);opacity:.5}50%{transform:rotateY(180deg) scaleY(1.3);opacity:0}100%{transform:rotateY(0);opacity:1}}@media screen and (max-width:767px){[data-element_type="eae-evergreen-timer.skin3"] #timer span{font-size:22px}[data-element_type="eae-evergreen-timer.skin2"] .flip-clock-divider .flip-clock-label{top:-1.5em;right:-42px}[data-element_type="eae-evergreen-timer.skin2"] .flip-clock-divider.minutes .flip-clock-label{right:-48px}[data-element_type="eae-evergreen-timer.skin2"] .flip-clock-divider.seconds .flip-clock-label{right:-51px}}[data-element_type="eae-evergreen-timer.skin4"] .eae-evergreen-wrapper{width:100%}[data-element_type="eae-evergreen-timer.skin4"] .container{margin:0 auto}[data-element_type="eae-evergreen-timer.skin4"] .special{position:relative;width:840px;height:47px}[data-element_type="eae-evergreen-timer.skin4"] #counter{position:absolute;z-index:4000}[data-element_type="eae-evergreen-timer.skin4"] .digit-separator{position:relative;float:left;width:17px;height:44px;overflow:hidden;background-image:url(../digit-sep-svg.svg);background-repeat:no-repeat;background-position:0 0;background-color:#4054b2}[data-element_type="eae-evergreen-timer.skin4"] .digit{background-image:url(../digits-svg-alpha.svg);background-color:#4054b2}.eae-ct-wrapper *{box-sizing:border-box;margin:0;outline:0}article.eae-ct-wrapper{width:100%;max-width:1000px;margin:0 auto;position:relative}.eae-ct-wrapper th{position:relative}.eae-ct-wrapper ul{display:none;top:0;z-index:10;padding-bottom:14px}.eae-ct-wrapper li{list-style:none;flex:1;position:relative}.eae-ct-wrapper li:hover{cursor:pointer}.eae-ct-wrapper .eae-ct-heading{width:100%;padding:10px;background:#fff;font-size:20px;font-weight:700;height:60px;color:#999;text-align:center}.eae-ct-wrapper li.eae-ct-heading .eae-ct-heading-inner{position:absolute;align-self:center;top:50%;left:50%;transform:translate(-50%,-50%);width:100%}.eae-ct-wrapper li.eae-ct-heading.active{background:#f5f5f5}.eae-ct-wrapper table{border-collapse:collapse;table-layout:fixed;width:100%}.eae-ct-wrapper th{background:#f5f5f5;display:none}.eae-ct-wrapper td,.eae-ct-wrapper th{height:53px;vertical-align:middle}.eae-ct-wrapper table{border:none}.eae-ct-wrapper table tr td:first-child,.eae-ct-wrapper table tr td:last-child,.eae-ct-wrapper td,.eae-ct-wrapper th{border:1px solid #ddd;padding:10px;empty-cells:show}.eae-ct-wrapper td,.eae-ct-wrapper th{text-align:left}.eae-ct-wrapper td+td,.eae-ct-wrapper th+th{text-align:center}.eae-ct-wrapper tr:first-child{background:0 0!important}.eae-ct-wrapper ul li:nth-child(1){display:table-cell}.eae-ct-wrapper tr td:nth-child(2){display:table-cell}.eae-ct-wrapper td:nth-child(1){display:table-cell}.eae-ct-wrapper td{display:none}.eae-ct-wrapper .sep{background:#f5f5f5;font-weight:700}.eae-ct-price-wrapper{display:flex;justify-content:center}.eae-ct-tt-type-icon .eae-ct-feature .tooltip{float:right}.eae-ct-wrapper .tooltiptext::before{content:'';border-width:5px 5px 0 5px;border-color:#fff;border-left-color:transparent;border-right-color:transparent;border-bottom-color:transparent;bottom:-10px;width:0;height:0;border-style:solid;position:absolute;margin:5px;left:42%}.eae-ct-wrapper .eae-ct-price{font-size:28px;font-weight:700;line-height:1em}.eae-ct-wrapper .eae-ct-currency{align-self:flex-start;margin-right:3px}.eae-ct-wrapper .eae-ct-fractional-price{align-self:flex-start;margin-left:3px}.eae-ct-wrapper .eae-ct-duration{align-self:flex-start}.eae-ct-wrapper .eae-ct-original-price{margin-right:5px;text-decoration:line-through;align-self:flex-end}.eae-ct-wrapper .tick{font-size:18px;color:#2ca01c}.eae-ct-wrapper .hide{border:0!important;background:0 0}.eae-ct-ribbons-yes .eae-ct-ribbons-wrapper{position:absolute;top:0;width:100px;overflow:hidden;height:100px;z-index:998;padding:8px 12px}.eae-ct-ribbons-h-top.eae-ct-ribbons-yes .eae-ct-ribbons-wrapper{position:absolute;top:0;width:100%;overflow:hidden;height:50px;z-index:999;padding:8px 12px}.eae-ct-ribbons-h-top.eae-ct-ribbons-yes .eae-ct-ribbons-wrapper-top{background-color:rgba(63,195,135,.8);color:#fff;transform:translateY(-100%);position:absolute;width:100%;top:0;left:0}.eae-ct-ribbons-h-left.eae-ct-ribbons-yes .eae-ct-ribbons-wrapper{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);left:0;right:auto}.eae-ct-ribbons-h-right.eae-ct-ribbons-yes .eae-ct-ribbons-wrapper{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(90deg);left:auto;right:0}.eae-ct-ribbons-yes .eae-ct-ribbons-wrapper span.eae-ct-ribbons-inner{position:absolute;text-align:center;left:0;top:0;width:200%;-webkit-transform:translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);-ms-transform:translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);transform:translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);margin-top:35px;font-size:13px;line-height:2;font-weight:800;text-transform:uppercase;background:rgba(63,195,135,.8);padding:8px 12px;color:#fff}.eae-ct-wrapper .tooltip{position:relative;display:inline-block}.eae-ct-wrapper .tooltip .tooltiptext{visibility:hidden;min-width:120px;background-color:#000;color:#fff;text-align:center;border-radius:6px;padding:5px 0;position:absolute;z-index:1;bottom:120%;left:50%;margin-left:-60px}.eae-ct-wrapper .tooltip:hover .tooltiptext{visibility:visible}.eae-ct-heading-tooltip{text-decoration-line:underline;text-decoration-style:dotted}.eae-ct-btn{padding:10px 15px 10px 15px;color:#fff;display:inline-block;line-height:1em}.eae-ct-btn:hover{color:#fff}.eae-ct-wrapper i.fa.fa-check,.eae-ct-wrapper i.fas.fa-check{color:#38f146}.eae-ct-wrapper i.fa.fa-close,.eae-ct-wrapper i.fas.fa-times{color:red}.eae-ct-wrapper tr:last-child td:first-child{background:0 0!important;border:none!important}.eae-ct-wrapper tr:last-child{background:0 0!important}@media (min-width:767px){.eae-ct-wrapper td,.eae-ct-wrapper th{width:330px}.eae-ct-wrapper td+td,.eae-ct-wrapper th+th{width:auto}}.eae-tab-format-all .eae-ct-wrapper ul{display:flex}@media (min-width:1023px){.eae-tab-format-mobile .eae-ct-wrapper td,.eae-tab-format-mobile .eae-ct-wrapper th,.eae-tab-format-tab-mob .eae-ct-wrapper td,.eae-tab-format-tab-mob .eae-ct-wrapper th{display:table-cell!important}}@media (max-width:1023px){.eae-tab-format-tab-mob .eae-ct-wrapper ul{display:flex}.eae-tab-format-all .eae-ct-wrapper td+td,.eae-tab-format-all .eae-ct-wrapper th+th{display:none}}@media (max-width:1023px) and (min-width:768px){.eae-tab-format-mobile .eae-ct-wrapper td,.eae-tab-format-mobile .eae-ct-wrapper th{display:table-cell!important}}@media (max-width:767px){.eae-tab-format-mobile .eae-ct-wrapper ul{display:flex}}.eae-progress-bar-wrapper{display:flex;flex-direction:column;align-items:flex-start;margin:15px 0}.eae-progress-bar-wrapper.eae-progress-bar{width:100%;position:relative;box-sizing:border-box}.eae-pb-bar,.eae-pb-bar-inner,.eae-pb-bar-skill,.eae-pb-bar-value{box-sizing:border-box}.eae-pb-bar{position:relative;height:100%;width:100%;overflow:hidden}.eae-pb-bar--no-overflow{overflow:visible}.eae-pb-bar-inner{position:absolute;top:0;left:0;height:100%;-webkit-transform:scaleX(0);transform:scaleX(0);-webkit-transform-origin:left center;transform-origin:left center}.eae-pb-bar-inner.js-animated{transition-property:all;transition-duration:1.5s;transition-timing-function:cubic-bezier(.1,1.14,.31,1.06);transition-delay:1.5s;-webkit-transform:scaleX(1);transform:scaleX(1)}.eae-pb-bar-skill,.eae-pb-bar-value{font-size:14px;letter-spacing:1px}.eae-pb-bar-value--aligned-value{-webkit-transform:translateX(-50%);transform:translateX(-50%)}.eae-progress-bar-skin1{height:20px;padding:4px;border:1px solid #ddd;border-radius:20px}.eae-pb-bar-skin1{border-radius:20px}.eae-pb-bar-inner-skin1{background-color:#00bfb3;background-size:200%;background-position:0 0;border-radius:20px}.eae-pb-bar-skill-skin1{position:absolute;bottom:20px;left:0;opacity:0}.eae-pb-bar-skill-skin1.js-animated{transition-property:all;transition-duration:.5s;transition-timing-function:linear;transition-delay:.5s;left:0;opacity:1}.eae-pb-bar-value-skin1{position:absolute;bottom:20px;opacity:1;right:0}.eae-pb-bar-value-skin1.js-animated{transition-property:all;transition-duration:.5s;transition-timing-function:linear;transition-delay:.5s;right:0;opacity:1}.eae-progress-bar-skin2{height:15px;box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.12),0 1px 5px 0 rgba(0,0,0,.2);border-radius:3px}@-webkit-keyframes progress-2-bg-animation{0%{background-position:0 0,0 0}100%{background-position:0 0,42px 0}}@keyframes progress-2-bg-animation{0%{background-position:0 0,0 0}100%{background-position:0 0,42px 0}}.eae-pb-bar-inner-skin2{background-image:linear-gradient(to top,rgba(255,255,255,.15),rgba(0,0,0,.2)),linear-gradient(135deg,#5eeb5b,#5eeb5b 33%,#358600 33%,#358600 66%,#5eeb5b 66%);background-size:100% 100%,42px 100%;background-position:0 0,0 0;border-radius:3px}.eae-pb-bar-inner-skin2.js-animated{-webkit-animation:progress-2-bg-animation 1.5s linear 0s infinite;animation:progress-2-bg-animation 1.5s linear 0s infinite}.eae-pb-bar-skill-skin2{position:absolute;left:0;opacity:0}.eae-pb-bar-skill-skin2.js-animated{transition-property:all;transition-duration:.5s;transition-timing-function:linear;transition-delay:.5s;bottom:20px;opacity:1}.eae-pb-bar-value-skin2{position:absolute;right:0;opacity:0}.eae-pb-bar-value-skin2.js-animated{transition-property:all;transition-duration:.5s;transition-timing-function:linear;transition-delay:.5s;bottom:20px;opacity:1}.eae-progress-bar-skin3{height:5px;background-color:#efefef}.eae-pb-bar-inner-skin3,.eae-pb-bar-value-skin3{background-color:#f40076}.eae-pb-bar-inner:after,.eae-pb-bar-value-skin3:after{border-top-color:#f40076}.eae-pb-bar-skill-skin3{position:absolute;bottom:10px;left:-10px;opacity:0}.eae-pb-bar-skill-skin3.js-animated{transition-property:all;transition-duration:.5s;transition-timing-function:linear;transition-delay:.5s;left:0;opacity:1}.eae-pb-bar-value-skin3{position:absolute;display:inline-block;padding:0 8px;font-size:14px;color:#fff;opacity:0}.eae-pb-bar-value-skin3:after{position:absolute;left:50%;bottom:-10px;display:block;width:0;height:0;content:'';-webkit-transform:translateX(-50%);transform:translateX(-50%);border-width:5px;border-style:solid;border-color:#f40076 transparent transparent transparent}.eae-pb-bar-inner-skin3.js-animated{transition-property:all;transition-duration:1.5s;transition-timing-function:cubic-bezier(.1,1.14,.31,1.06);transition-delay:1.5s;-webkit-transform:scaleX(1);transform:scaleX(1)}.eae-pb-bar-value-skin3.js-animated{transition-property:all;transition-duration:1.5s;transition-timing-function:cubic-bezier(.1,1.14,.31,1.06);transition-delay:2s;bottom:14px;opacity:1}.eae-progress-bar-skin4{height:3px;background-color:#efefef}.eae-pb-bar-inner-skin4{background-color:#000}.eae-pb-bar-inner-skin4:after{position:absolute;top:50%;right:0;display:block;width:8px;height:8px;content:'';-webkit-transform:translateY(-50%);transform:translateY(-50%);background-color:#000;border-radius:50%}.eae-pb-bar-value-skin4{position:absolute;bottom:2px;font-size:14px;opacity:0}.eae-pb-bar-value-skin4.js-animated{transition-property:all;transition-duration:1.5s;transition-timing-function:linear;transition-delay:1.5s;opacity:1}.eae-pb-bar-skill-skin4{position:absolute;bottom:2px;left:-20px;opacity:0}.eae-pb-bar-skill-skin4.js-animated{transition-property:all;transition-duration:.5s;transition-timing-function:linear;transition-delay:.5s;left:0;opacity:1}.eae-progress-bar-skin5{height:30px;background-color:#f7f7f7}.eae-pb-bar-inner-skin5{background-color:#57b8ff}.eae-pb-bar-skill-skin5{position:absolute;top:50%;left:10px;color:#fff;-webkit-transform:translateY(-50%);transform:translateY(-50%);opacity:0}.eae-pb-bar-skill-skin5.js-animated{transition-property:all;transition-duration:.5s;transition-timing-function:linear;transition-delay:.5s;opacity:1}.eae-pb-bar-value-skin5{position:absolute;top:50%;color:#fff;-webkit-transform:translateX(-100%) translateX(-10px) translateY(-50%);transform:translateX(-100%) translateX(-10px) translateY(-50%);opacity:0;z-index:10}.eae-pb-bar-value-skin5.js-animated{transition-property:all;transition-duration:1.5s;transition-timing-function:linear;transition-delay:1.5s;opacity:1}.eae-dual-button-wrapper.button-style-horizontal{display:flex;flex-direction:row;position:relative}.eae-dual-button-main-wrapper{display:flex;flex-direction:row;justify-content:center}.eae-dual-button-wrapper a{min-width:0}.eae-dual-button-wrapper.button-style-vertical{display:inline-flex;flex-direction:column;position:relative}.eae-button-1.icon-before,.eae-button-2.icon-before{display:flex;flex-direction:row}.eae-button-1.icon-after,.eae-button-2.icon-after{display:flex;flex-direction:row-reverse}.eae-button-1-wrapper .eae-button-1,.eae-button-2-wrapper .eae-button-2{color:#000;align-items:center}.eae-button-1-wrapper:hover .eae-button-1,.eae-button-2-wrapper:hover .eae-button-2{color:#000}.eae-dual-button-wrapper.button-style-vertical .eae-button-1.icon-after,.eae-dual-button-wrapper.button-style-vertical .eae-button-1.icon-before,.eae-dual-button-wrapper.button-style-vertical .eae-button-2.icon-after,.eae-dual-button-wrapper.button-style-vertical .eae-button-2.icon-before{justify-content:center}.eae-button-1.icon-up,.eae-button-2.icon-up{display:flex;flex-direction:column;text-align:center}.eae-button-1.icon-down,.eae-button-2.icon-down{display:flex;flex-direction:column-reverse;text-align:center}.eae-button-1-wrapper{background:#ffb6c1;display:flex;justify-content:center;width:100%;line-height:1}.eae-button-2-wrapper{background:orange;display:flex;justify-content:center;width:100%;line-height:1}.eae-button-1.icon-up .icon-wrapper,.eae-button-2.icon-down .icon-wrapper,.eae-button-2.icon-up .icon-wrapper{text-align:center}.eae-button-1.icon-up .eae-button-text,.eae-button-2.icon-down .eae-button-text,.eae-button-2.icon-up .eae-button-text{text-align:center}.eae-button-1.icon-before i,.eae-button-2.icon-after i,.eae-button-2.icon-before i{align-self:center;margin:0 10px 0 0}.eae-button-1.icon-after i,.eae-button-2.icon-after i{align-self:center;margin:0 0 0 10px}.eae-button-1.icon-down i,.eae-button-1.icon-up i,.eae-button-2.icon-down i,.eae-button-2.icon-up i{align-self:center;margin:5px 0}.eae-dual-button-wrapper.button-style-horizontal .eae-button-1-wrapper,.eae-dual-button-wrapper.button-style-horizontal .eae-button-2-wrapper{padding:12px 20px}.eae-dual-button-wrapper.button-style-vertical .eae-button-1-wrapper,.eae-dual-button-wrapper.button-style-vertical .eae-button-2-wrapper{padding:20px 30px}.eae-button1,.eae-button2{position:relative;display:flex}.eae-dual-button-wrapper.button-style-horizontal .eae-button1,.eae-dual-button-wrapper.button-style-horizontal .eae-button2{min-width:150px}.eae-dual-button-wrapper.button-style-vertical .eae-button1{display:flex;flex-direction:column}.eae-button-separator-wrapper .eae-button-separator{width:40px;height:40px;line-height:40px;border-radius:50%;z-index:1;box-shadow:0 0 0 6px rgba(255,255,255,.2);background:#fafaf8;color:#444;text-transform:uppercase;text-align:center;vertical-align:middle;font-weight:400;font-size:14px;position:absolute;transform:translateY(-50%)}.eae-button-separator span{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.eae-sweep-right{vertical-align:middle;-webkit-transform:perspective(1px) translateZ(0);transform:perspective(1px) translateZ(0);box-shadow:0 0 1px transparent;position:relative;-webkit-transition-property:color;transition-property:color;-webkit-transition-duration:.3s;transition-duration:.3s}.eae-sweep-right:before{content:"";position:absolute;z-index:-1;top:0;left:0;right:0;bottom:0;background:#2098d1;-webkit-transform:scaleX(0);transform:scaleX(0);-webkit-transform-origin:0 50%;transform-origin:0 50%;-webkit-transition-property:transform;transition-property:transform;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out}.eae-sweep-right:active,.eae-sweep-right:focus,.eae-sweep-right:hover{color:#fff}.eae-sweep-right:active:before,.eae-sweep-right:focus:before,.eae-sweep-right:hover:before{-webkit-transform:scaleX(1);transform:scaleX(1)}.eae-sweep-left{vertical-align:middle;-webkit-transform:perspective(1px) translateZ(0);transform:perspective(1px) translateZ(0);box-shadow:0 0 1px transparent;position:relative;-webkit-transition-property:color;transition-property:color;-webkit-transition-duration:.3s;transition-duration:.3s}.eae-sweep-left:before{content:"";position:absolute;z-index:-1;top:0;left:0;right:0;bottom:0;background:#2098d1;-webkit-transform:scaleX(0);transform:scaleX(0);-webkit-transform-origin:100% 50%;transform-origin:100% 50%;-webkit-transition-property:transform;transition-property:transform;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out}.eae-sweep-left:active,.eae-sweep-left:focus,.eae-sweep-left:hover{color:#fff}.eae-sweep-left:active:before,.eae-sweep-left:focus:before,.eae-sweep-left:hover:before{-webkit-transform:scaleX(1);transform:scaleX(1)}.eae-sweep-bottom{vertical-align:middle;-webkit-transform:perspective(1px) translateZ(0);transform:perspective(1px) translateZ(0);box-shadow:0 0 1px transparent;position:relative;-webkit-transition-property:color;transition-property:color;-webkit-transition-duration:.3s;transition-duration:.3s}.eae-sweep-bottom:before{content:"";position:absolute;z-index:-1;top:0;left:0;right:0;bottom:0;background:#2098d1;-webkit-transform:scaleY(0);transform:scaleY(0);-webkit-transform-origin:50% 0;transform-origin:50% 0;-webkit-transition-property:transform;transition-property:transform;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out}.eae-sweep-bottom:active,.eae-sweep-bottom:focus,.eae-sweep-bottom:hover{color:#fff}.eae-sweep-bottom:active:before,.eae-sweep-bottom:focus:before,.eae-sweep-bottom:hover:before{-webkit-transform:scaleY(1);transform:scaleY(1)}.eae-sweep-top{vertical-align:middle;-webkit-transform:perspective(1px) translateZ(0);transform:perspective(1px) translateZ(0);box-shadow:0 0 1px transparent;position:relative;-webkit-transition-property:color;transition-property:color;-webkit-transition-duration:.3s;transition-duration:.3s}.eae-sweep-top:before{content:"";position:absolute;z-index:-1;top:0;left:0;right:0;bottom:0;background:#2098d1;-webkit-transform:scaleY(0);transform:scaleY(0);-webkit-transform-origin:50% 100%;transform-origin:50% 100%;-webkit-transition-property:transform;transition-property:transform;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out}.eae-sweep-top:active,.eae-sweep-top:focus,.eae-sweep-top:hover{color:#fff}.eae-sweep-top:active:before,.eae-sweep-top:focus:before,.eae-sweep-top:hover:before{-webkit-transform:scaleY(1);transform:scaleY(1)}.eae-bounce-right{vertical-align:middle;-webkit-transform:perspective(1px) translateZ(0);transform:perspective(1px) translateZ(0);box-shadow:0 0 1px transparent;position:relative;-webkit-transition-property:color;transition-property:color;-webkit-transition-duration:.5s;transition-duration:.5s}.eae-bounce-right:before{content:"";position:absolute;z-index:-1;top:0;left:0;right:0;bottom:0;background:#2098d1;-webkit-transform:scaleX(0);transform:scaleX(0);-webkit-transform-origin:0 50%;transform-origin:0 50%;-webkit-transition-property:transform;transition-property:transform;-webkit-transition-duration:.5s;transition-duration:.5s;-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out}.eae-bounce-right:active,.eae-bounce-right:focus,.eae-bounce-right:hover{color:#fff}.eae-bounce-right:active:before,.eae-bounce-right:focus:before,.eae-bounce-right:hover:before{-webkit-transform:scaleX(1);transform:scaleX(1);-webkit-transition-timing-function:cubic-bezier(.52,1.64,.37,.66);transition-timing-function:cubic-bezier(.52,1.64,.37,.66)}.eae-bounce-left{vertical-align:middle;-webkit-transform:perspective(1px) translateZ(0);transform:perspective(1px) translateZ(0);box-shadow:0 0 1px transparent;position:relative;-webkit-transition-property:color;transition-property:color;-webkit-transition-duration:.5s;transition-duration:.5s}.eae-bounce-left:before{content:"";position:absolute;z-index:-1;top:0;left:0;right:0;bottom:0;background:#2098d1;-webkit-transform:scaleX(0);transform:scaleX(0);-webkit-transform-origin:100% 50%;transform-origin:100% 50%;-webkit-transition-property:transform;transition-property:transform;-webkit-transition-duration:.5s;transition-duration:.5s;-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out}.eae-bounce-left:active,.eae-bounce-left:focus,.eae-bounce-left:hover{color:#fff}.eae-bounce-left:active:before,.eae-bounce-left:focus:before,.eae-bounce-left:hover:before{-webkit-transform:scaleX(1);transform:scaleX(1);-webkit-transition-timing-function:cubic-bezier(.52,1.64,.37,.66);transition-timing-function:cubic-bezier(.52,1.64,.37,.66)}.eae-bounce-bottom{vertical-align:middle;-webkit-transform:perspective(1px) translateZ(0);transform:perspective(1px) translateZ(0);box-shadow:0 0 1px transparent;position:relative;-webkit-transition-property:color;transition-property:color;-webkit-transition-duration:.5s;transition-duration:.5s}.eae-bounce-bottom:before{content:"";position:absolute;z-index:-1;top:0;left:0;right:0;bottom:0;background:#2098d1;-webkit-transform:scaleY(0);transform:scaleY(0);-webkit-transform-origin:50% 0;transform-origin:50% 0;-webkit-transition-property:transform;transition-property:transform;-webkit-transition-duration:.5s;transition-duration:.5s;-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out}.eae-bounce-bottom:active,.eae-bounce-bottom:focus,.eae-bounce-bottom:hover{color:#fff}.eae-bounce-bottom:active:before,.eae-bounce-bottom:focus:before,.eae-bounce-bottom:hover:before{-webkit-transform:scaleY(1);transform:scaleY(1);-webkit-transition-timing-function:cubic-bezier(.52,1.64,.37,.66);transition-timing-function:cubic-bezier(.52,1.64,.37,.66)}.eae-bounce-top{vertical-align:middle;-webkit-transform:perspective(1px) translateZ(0);transform:perspective(1px) translateZ(0);box-shadow:0 0 1px transparent;position:relative;-webkit-transition-property:color;transition-property:color;-webkit-transition-duration:.5s;transition-duration:.5s}.eae-bounce-top:before{content:"";position:absolute;z-index:-1;top:0;left:0;right:0;bottom:0;background:#2098d1;-webkit-transform:scaleY(0);transform:scaleY(0);-webkit-transform-origin:50% 100%;transform-origin:50% 100%;-webkit-transition-property:transform;transition-property:transform;-webkit-transition-duration:.5s;transition-duration:.5s;-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out}.eae-bounce-top:active,.eae-bounce-top:focus,.eae-bounce-top:hover{color:#fff}.eae-bounce-top:active:before,.eae-bounce-top:focus:before,.eae-bounce-top:hover:before{-webkit-transform:scaleY(1);transform:scaleY(1);-webkit-transition-timing-function:cubic-bezier(.52,1.64,.37,.66);transition-timing-function:cubic-bezier(.52,1.64,.37,.66)}.eae-markers .marker{display:none}.eae-markers p{margin-bottom:0}.eae-fg-wrapper{display:flex;flex-direction:column;overflow:hidden}.eae-gallery-filter{display:flex;flex-direction:row;justify-content:center;flex-wrap:wrap}.eae-filter-label{padding:5px 10px;background-color:#a0ce4e;color:#fff;margin:0 3px 0 3px}.eae-filter-label.current{background-color:#73b9dc}.eae-fg-image{display:flex;flex-wrap:wrap;flex-direction:row}.eae-fg-wrapper .eae-gallery-item-inner img{width:100%;height:auto;display:block!important;transition:all .5s ease;-webkit-transition:all .5s ease}.eae-gallery-item{height:auto}.eae-gallery-filter a{color:#fff;text-decoration:none}.eae-gallery-filter a.current{font-weight:700}.eae-gallery-item-inner{position:relative;overflow:hidden}.eae-overlay-always .eae-gallery-item .eae-grid-overlay{display:block}.eae-overlay-hover .eae-gallery-item-inner:hover .eae-grid-overlay{display:block}.eae-overlay-hide-on-hover .eae-gallery-item-inner:hover .eae-grid-overlay{display:none}.eae-overlay-hide-on-hover .eae-grid-overlay{display:block}.eae-grid-overlay{position:absolute;top:0;left:0;display:none;z-index:99;background:rgba(0,0,0,.5);height:100%;width:100%}.eae-grid-overlay-inner{display:block;position:relative;top:50%;left:50%;transform:translate(-50%,-50%);text-align:center}.eae-fg-wrapper .eae-icon-wrapper{display:flex;justify-content:center}.eae-overlay-caption{display:block;line-height:1em;margin-top:15px;color:#73b9dc}.eae-overlay-icon{line-height:1em;padding:.5em;display:inline-block}.eae-overlay-icon svg{height:auto}.eae-icon-view-framed .eae-overlay-icon{padding:.5em;color:#73b9dc;border:3px solid #73b9dc;background-color:transparent}.eae-icon-view-stacked .eae-overlay-icon{padding:.5em;color:#fff;background-color:#818a91}.eae-hover-direction-effect .eae-grid-overlay{position:absolute;z-index:99;background:rgba(0,0,0,.5);height:100%;width:100%}.eae-fg-wrapper.eae-image-ratio-yes .eae-gallery-item-inner .eae-fg-img-wrapper{position:relative;top:0;overflow:hidden;left:0;right:0;border:0}.eae-fg-wrapper.eae-image-ratio-yes .eae-gallery-item-inner .eae-fg-img-wrapper img{height:100%;width:100%;display:block;position:absolute;top:0;left:0;object-fit:cover}.wts-eae-ribbons-badges-wrapper{display:none}.wts-eae-enable-ribbons-badges-yes .elementor-column-wrap>.wts-eae-ribbons-badges-wrapper{display:block}.wts-eae-enable-ribbons-badges-yes.wts-eae-badge-type-ribbon>.wts-eae-ribbons-badges-wrapper{position:absolute;top:0;left:auto;right:0;-ms-transform:rotate(90deg);width:150px;overflow:hidden;height:150px;z-index:999;padding:8px 12px}.wts-eae-badge-h-left.wts-eae-enable-ribbons-badges-yes.wts-eae-badge-type-ribbon>.wts-eae-ribbons-badges-wrapper{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);left:0;right:auto}.wts-eae-badge-h-right.wts-eae-enable-ribbons-badges-yes.wts-eae-badge-type-ribbon>.wts-eae-ribbons-badges-wrapper{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(90deg);left:auto;right:0}.wts-eae-enable-ribbons-badges-yes.wts-eae-badge-type-ribbon>.wts-eae-ribbons-badges-wrapper span.wts-eae-ribbons-badges-inner{position:absolute;text-align:center;left:0;top:0;width:200%;-webkit-transform:translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);-ms-transform:translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);transform:translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);margin-top:35px;font-size:13px;line-height:2;font-weight:800;text-transform:uppercase;background:rgba(63,195,135,.8);padding:8px 12px}.wts-eae-enable-ribbons-badges-yes.wts-eae-badge-type-badge>.wts-eae-ribbons-badges-wrapper span.wts-eae-ribbons-badges-inner{min-height:3.236em;min-width:3.236em;padding:0;font-size:1em;font-weight:700;position:absolute;text-align:center;line-height:3.236;top:-.5em;left:-.5em;margin:0;border-radius:100%;background-color:#77a464;color:#fff;font-size:.857em;z-index:9}.wts-eae-badge-h-left.wts-eae-badge-v-bottom.wts-eae-enable-ribbons-badges-yes>.wts-eae-ribbons-badges-wrapper span.wts-eae-ribbons-badges-inner{left:20px;right:auto;top:auto;bottom:20px}.wts-eae-badge-h-left.wts-eae-badge-v-top.wts-eae-enable-ribbons-badges-yes>.wts-eae-ribbons-badges-wrapper span.wts-eae-ribbons-badges-inner{left:20px;right:auto;top:20px;bottom:auto}.wts-eae-badge-h-right.wts-eae-badge-v-bottom.wts-eae-enable-ribbons-badges-yes>.wts-eae-ribbons-badges-wrapper span.wts-eae-ribbons-badges-inner{left:auto;right:20px;top:auto;bottom:20px}.wts-eae-badge-h-right.wts-eae-badge-v-top.wts-eae-enable-ribbons-badges-yes>.wts-eae-ribbons-badges-wrapper span.wts-eae-ribbons-badges-inner{left:auto;right:20px;top:20px;bottom:auto}.eae-flip-box-back svg,.eae-flip-box-front svg{width:25px;height:auto}.wts-eae-textseparator svg{width:25px;height:auto}.eae-img-comp-slider svg{width:22px;height:auto}.eae-popup-link svg{display:inline-block;width:1em}.eae-popup svg:focus,.eae-popup svg:hover{opacity:1;cursor:pointer}.eae-popup svg:active{top:1px}.eae-popup svg.eae-close{width:28px;height:28px;line-height:1em;text-decoration:none;text-align:center;opacity:1;background-color:#fff}.eae-dual-button-wrapper svg{width:1em;height:auto;display:block}eae-button-separator i{position:relative;display:block}.eae-button-1.icon-before svg,.eae-button-2.icon-after svg,.eae-button-2.icon-before svg{align-self:center;margin:0 10px 0 0}.eae-button-1.icon-after svg,.eae-button-2.icon-after svg{align-self:center;margin:0 0 0 10px}.eae-button-1.icon-down svg,.eae-button-1.icon-up svg,.eae-button-2.icon-down svg,.eae-button-2.icon-up svg{align-self:center;margin:5px 0}.eae-pt-button-wrapper a svg{width:1em}.eae-pt-action-button .eae-pt-align-icon-left{float:left}.eae-pt-action-button .eae-pt-align-icon-right{float:right}.eae-icon-wrap svg{width:20px;height:auto;font-size:20px;display:block}.eae-info-circle .eae-icon-wrap svg{width:20px;height:auto;font-size:20px}.eae-icon-view-stacked svg{fill:#fff}.ae-link-yes{cursor:pointer}
|
1 |
+
.elementor-widget-wts-textseparator .elementor-widget-container{overflow:hidden}.wts-eae-textseparator{align-items:center;display:flex;flex-flow:row nowrap;margin:auto}.eae-separator-icon-inner i{height:1em;width:1em;text-align:center;position:relative;display:block}.eae-separator-icon-inner i:before{position:absolute;left:50%;-webkit-transform:translateX(-50%);-moz-transform:translateX(-50%);-ms-transform:translateX(-50%);-o-transform:translateX(-50%);transform:translateX(-50%)}.wts-eae-textseparator .eae-sep-holder{flex:1 1 auto;height:1px;min-width:10%;position:relative}.wts-eae-textseparator .eae-sep-holder .eae-sep-lines{border-top-width:1px;display:block;height:1px;position:relative;top:1px;width:100%}.eae-separator-title{margin:0;-moz-box-flex:0;flex:0 1 auto;line-height:1em;margin:0;overflow-wrap:break-word}.sep-align-right .sep-right{display:none}.sep-align-left .sep-left{display:none}.eae-icon-view-stacked i{color:#fff}.eae-icon-view-framed .eae-separator-icon-inner{border:1px solid}.eae-icon-shape-circle .eae-separator-icon-inner{border-radius:50%}.eae-separator-icon-wrapper,.eae-separator-title{margin:0 5px!important}.eae-separator-icon-inner{line-height:1}.wts-price-box-wrapper .eae-pt-heading,.wts-price-box-wrapper .eae-pt-sub-heading{margin:5px 0;text-align:center}.plan-price-shape{display:table;height:6em;margin:auto;width:6em}.eae-pt-price-box-shape-circle .plan-price-shape,.eae-pt-price-box-shape-square .plan-price-shape{border:1px solid}.eae-pt-price-box-shape-circle .plan-price-shape{border-radius:50%}.plan-price-block{padding:10px 0}.plan-price-shape-inner{display:table-cell;vertical-align:middle;padding:10px}.plan-price-shape-inner>span{display:block;font-size:1em;text-align:center}.eae-pt-feature-list{list-style:outside none none;text-align:center;margin:10px 0}.eae-pt-button-wrapper>a{text-align:center;display:inline-block;line-height:1}.eae-pt-button-wrapper{text-align:center}.wts-price-box-wrapper .heading-wrapper,.wts-price-box-wrapper .plan-features-wrapper{padding:10px 5px}.eae-pt-button-wrapper{padding:15px 0}.eae-pt-button-wrapper a{padding:5px 15px;border-radius:3px}.eae-pt-align-icon-right{float:right}.strike-feature{text-decoration:line-through}.eae-flip-box{width:100%;text-align:center}.eae-flip-box-wrapper{display:inline-block;width:100%}.eae-flip-box-inner{width:100%;height:200px;position:relative;-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;-ms-transform-style:preserve-3d;transform-style:preserve-3d}.eae-flip-box-inner .eae-flip-box-back,.eae-flip-box-inner .eae-flip-box-front{width:100%;height:100%;position:absolute;top:0;left:0;text-align:center;padding:10px;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;backface-visibility:hidden;-webkit-transition:all .6s ease 0s;-moz-transition:all .6s ease 0s;-ms-transition:all .6s ease 0s;-o-transition:all .6s ease 0s;transition:all .6s ease 0s}.eae-flip-box-front{z-index:2}.eae-flip-box-back{z-index:1}.eae-fb-animate-vertical .eae-flip-box-inner .eae-flip-box-front{-webkit-transform:perspective(1000px) rotateX(0);-ms-transform:perspective(1000px) rotateX(0);transform:perspective(1000px) rotateX(0)}.eae-fb-animate-vertical .eae-flip-box-inner .eae-flip-box-back{-webkit-transform:perspective(1000px) rotateX(180deg);transform:perspective(1000px) rotateX(180deg);-ms-transform:perspective(1000px) rotateX(180deg)}.eae-fb-animate-vertical .eae-flip-box-inner:hover .eae-flip-box-front{-webkit-transform:perspective(1000px) rotateX(180deg);transform:perspective(1000px) rotateX(180deg);-ms-transform:perspective(1000px) rotateX(180deg)}.eae-fb-animate-vertical .eae-flip-box-inner:hover .eae-flip-box-back{-webkit-transform:perspective(1000px) rotateX(0);transform:perspective(1000px) rotateX(0);-ms-transform:perspective(1000px) rotateX(0)}.eae-fb-animate-horizontal .eae-flip-box-inner .eae-flip-box-front{-webkit-transform:perspective(1000px) rotateY(0);transform:perspective(1000px) rotateY(0);-ms-transform:perspective(1000px) rotateY(0)}.eae-fb-animate-horizontal .eae-flip-box-inner .eae-flip-box-back{-webkit-transform:perspective(1000px) rotateY(180deg);transform:perspective(1000px) rotateY(180deg);-ms-transform:perspective(1000px) rotateY(180deg)}.eae-fb-animate-horizontal .eae-flip-box-inner:hover .eae-flip-box-front{-webkit-transform:perspective(1000px) rotateY(180deg);transform:perspective(1000px) rotateY(180deg);-ms-transform:perspective(1000px) rotateY(180deg)}.eae-fb-animate-horizontal .eae-flip-box-inner:hover .eae-flip-box-back{-webkit-transform:perspective(1000px) rotateY(0);transform:perspective(1000px) rotateY(0);-ms-transform:perspective(1000px) rotateY(0)}.eae-fb-animate-fade .eae-flip-box-inner .eae-flip-box-front{opacity:1}.eae-fb-animate-fade .eae-flip-box-inner .eae-flip-box-back{opacity:0}.eae-fb-animate-fade .eae-flip-box-inner:hover .eae-flip-box-front{opacity:0}.eae-fb-animate-fade .eae-flip-box-inner:hover .eae-flip-box-back{opacity:1}.eae-flip-box-wrapper:focus .eae-flip-box-back,.eae-flip-box-wrapper:hover .eae-flip-box-back{z-index:2}.eae-flip-box-wrapper:focus .eae-flip-box-front,.eae-flip-box-wrapper:hover .eae-flip-box-front{z-index:1}.fade .eae-flip-box-wrapper .eae-flip-box-front{opacity:1;transition:1s}.fade .eae-flip-box-wrapper .eae-flip-box-back{opacity:0;transition:1s}.fade .eae-flip-box-wrapper:focus .eae-flip-box-front,.fade .eae-flip-box-wrapper:hover .eae-flip-box-front{opacity:0}.fade .eae-flip-box-wrapper:focus .eae-flip-box-back,.fade .eae-flip-box-wrapper:hover .eae-flip-box-back{opacity:1}.eae-fb-animate-flip .eae-flip-box-wrapper{perspective:800px}.eae-fb-animate-flip .eae-flip-box-inner{transform-style:preserve-3d;transform:rotateX(0) rotateY(0) rotateZ(0);transition:1s}.eae-fb-animate-flip .eae-flip-box-front{transform:translate3d(0,0,1px)}.eae-fb-animate-flip .eae-flip-box-back{transform:rotateY(180deg) translate3d(0,0,0)}.eae-fb-animate-flip .eae-flip-box-wrapper:focus .eae-flip-box-inner,.eae-fb-animate-flip .eae-flip-box-wrapper:hover .eae-flip-box-inner{transform:rotateY(180deg)}.up .eae-flip-box-front{transform:translate3d(0,0,1px)}.up .eae-flip-box-back{transform:rotateX(180deg) translate3d(0,0,0)}.up .eae-flip-box-wrapper:focus .eae-flip-box-inner,.up .eae-flip-box-wrapper:hover .eae-flip-box-inner{transform:rotateX(180deg)}.box .eae-flip-box-front{transform:translate3d(0,0,100px) scale(.85,.85)}.box .eae-flip-box-back{transform:rotateY(180deg) translate3d(0,0,100px) scale(.85,.85)}.box.up .eae-flip-box-back{transform:rotateX(180deg) translate3d(0,0,100px) scale(.85,.85)}.hideback .eae-flip-box-back,.hideback .eae-flip-box-front{backface-visibility:hidden}.eae-fb-animate-nananana .eae-flip-box-wrapper:focus .eae-flip-box-front,.eae-fb-animate-nananana .eae-flip-box-wrapper:hover .eae-flip-box-front{z-index:10;animation:batman 1s 2 alternate linear}.eae-fb-animate-flipcard .eae-flip-box-back,.eae-fb-animate-flipcard .eae-flip-box-front{transition:transform .4s ease;transform-origin:center center -150px;-webkit-transform-origin:center center -150px}.flipcard-rotate-top-down .eae-flip-box-front{transform:perspective(0) rotateX(0) rotateY(0) rotateZ(0)}.flipcard-rotate-top-down .eae-flip-box-back{transform:perspective(0) rotateX(90deg) rotateY(0) rotateZ(0)}.eae-fb-animate-flipcard.flipcard-rotate-top-down .eae-flip-box-wrapper:hover .eae-flip-box-front{transform:perspective(0) rotateX(-90deg) rotateY(0) rotateZ(0)}.eae-fb-animate-flipcard.flipcard-rotate-top-down .eae-flip-box-wrapper:hover .eae-flip-box-back{z-index:99999;transform:perspective(0) rotateX(0) rotateY(0) rotateZ(0)}.flipcard-rotate-down-top .eae-flip-box-front{transform:perspective(0) rotateX(0) rotateY(0) rotateZ(0)}.flipcard-rotate-down-top .eae-flip-box-back{transform:perspective(0) rotateX(-90deg) rotateY(0) rotateZ(0)}.eae-fb-animate-flipcard.flipcard-rotate-down-top .eae-flip-box-wrapper:hover .eae-flip-box-front{transform:perspective(0) rotateX(90deg) rotateY(0) rotateZ(0)}.eae-fb-animate-flipcard.flipcard-rotate-down-top .eae-flip-box-wrapper:hover .eae-flip-box-back{z-index:99999;transform:perspective(0) rotateX(0) rotateY(0) rotateZ(0)}.flipcard-rotate-left-right .eae-flip-box-front{transform:perspective(0) rotateX(0) rotateY(0) rotateZ(0)}.flipcard-rotate-left-right .eae-flip-box-back{transform:perspective(0) rotateX(0) rotateY(-90deg) rotateZ(0)}.eae-fb-animate-flipcard.flipcard-rotate-left-right .eae-flip-box-wrapper:hover .eae-flip-box-front{transform:perspective(0) rotateX(0) rotateY(90deg) rotateZ(0)}.eae-fb-animate-flipcard.flipcard-rotate-left-right .eae-flip-box-wrapper:hover .eae-flip-box-back{z-index:99999;transform:perspective(0) rotateX(0) rotateY(0) rotateZ(0)}.flipcard-rotate-right-left .eae-flip-box-front{transform:perspective(0) rotateX(0) rotateY(0) rotateZ(0)}.flipcard-rotate-right-left .eae-flip-box-back{transform:perspective(0) rotateX(0) rotateY(90deg) rotateZ(0)}.eae-fb-animate-flipcard.flipcard-rotate-right-left .eae-flip-box-wrapper:hover .eae-flip-box-front{transform:perspective(0) rotateX(0) rotateY(-90deg) rotateZ(0)}.eae-fb-animate-flipcard.flipcard-rotate-right-left .eae-flip-box-wrapper:hover .eae-flip-box-back{z-index:99999;transform:perspective(0) rotateX(0) rotateY(0) rotateZ(0)}@keyframes batman{0%{transform:scale(1,1) rotateZ(0)}100%{transform:scale(0,0) rotateZ(720deg);opacity:0}}.eae-flip-box-back i,.eae-flip-box-front i{font-size:32px;height:1em;width:1em;position:relative;display:block}.eae-flip-box-back i:before,.eae-flip-box-front i:before{position:absolute;left:50%;-webkit-transform:translate(-50%);-moz-transform:translate(-50%);-ms-transform:translate(-50%);-o-transform:translate(-50%);transform:translate(-50%)}.eae-fb-icon-view-framed{border:1px solid #92be43}.eae-fb-icon-shape-circle{border-radius:50%}.eae-flip-box-wrapper .icon-wrapper{display:inline-block;padding:10px;line-height:1}.eae-flip-box-wrapper .back-icon-title,.eae-flip-box-wrapper .front-icon-title{margin:10px auto;color:#fff}.eae-flip-box-wrapper .flipbox-content{display:block;position:relative;top:50%;transform:translateY(-50%);-ms-transform:translateY(-50%)}.flipbox-content p{margin-bottom:10px}.eae-fb-button{display:inline-block;padding:5px 10px}.eae-flip-box-front{background:#a0ce4e}.eae-flip-box-back{background:#73b9dc}@media only screen and (max-width:768px){.eae-flip-box-back,.eae-flip-box-front,.flipbox-content{cursor:pointer;overflow:visible!important;transform-style:preserve-3d;-webkit-transform-style:preserve-3d}}.elementor-widget-wts-shape-separator svg{display:block}.wts-eae-pl-wrapper ul{margin:0}.wts-eae-pl-wrapper ul li{list-style:none;overflow:hidden;margin-bottom:10px}.eae-pl-img-align-none .eae-pl-image-wrapper a{text-align:center}.eae-pl-title{margin:0}.eae-pl-title a{display:block}.eae-pl-readmore a{display:inline-block;border-radius:2px;color:#fff;padding:4px 8px}.eae-at-animation-text-wrapper{display:inline-block;position:relative;text-align:left}.eae-at-animation-text-wrapper .eae-at-animation-text{display:inline-block;position:absolute;white-space:nowrap;left:0;top:0}.eae-at-animation-text-wrapper .eae-at-animation-text.is-visible{position:relative}.no-js .eae-at-animation-text-wrapper .eae-at-animation-text{opacity:0}.no-js .eae-at-animation-text-wrapper .eae-at-animation-text.is-visible{opacity:1}.eae-animtext-wrapper{font-size:40px}.eae-st-rest-text{display:inline-block}.eae-st-split-text{display:inline-block}.eae-at-animation.type .eae-at-animation-text-wrapper{vertical-align:bottom;overflow:hidden}.eae-at-animation.type .eae-at-animation-text-wrapper::after{content:'';position:absolute;right:0;top:50%;bottom:auto;-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);-ms-transform:translateY(-50%);-o-transform:translateY(-50%);transform:translateY(-50%);height:90%;width:1px}.eae-at-animation.type .eae-at-animation-text-wrapper.waiting::after{-webkit-animation:cd-pulse 1s infinite;-moz-animation:cd-pulse 1s infinite;animation:cd-pulse 1s infinite}.eae-at-animation.type .eae-at-animation-text-wrapper.selected::after{visibility:hidden}.eae-at-animation.type .eae-at-animation-text{visibility:hidden}.eae-at-animation.type .eae-at-animation-text.is-visible{visibility:visible}.eae-at-animation.type i{position:absolute;visibility:hidden}.eae-at-animation.type i.in{position:relative;visibility:visible}@-webkit-keyframes cd-pulse{0%{-webkit-transform:translateY(-50%) scale(1);opacity:1}40%{-webkit-transform:translateY(-50%) scale(.9);opacity:0}100%{-webkit-transform:translateY(-50%) scale(0);opacity:0}}@-moz-keyframes cd-pulse{0%{-moz-transform:translateY(-50%) scale(1);opacity:1}40%{-moz-transform:translateY(-50%) scale(.9);opacity:0}100%{-moz-transform:translateY(-50%) scale(0);opacity:0}}@keyframes cd-pulse{0%{-webkit-transform:translateY(-50%) scale(1);-moz-transform:translateY(-50%) scale(1);-ms-transform:translateY(-50%) scale(1);-o-transform:translateY(-50%) scale(1);transform:translateY(-50%) scale(1);opacity:1}40%{-webkit-transform:translateY(-50%) scale(.9);-moz-transform:translateY(-50%) scale(.9);-ms-transform:translateY(-50%) scale(.9);-o-transform:translateY(-50%) scale(.9);transform:translateY(-50%) scale(.9);opacity:0}100%{-webkit-transform:translateY(-50%) scale(0);-moz-transform:translateY(-50%) scale(0);-ms-transform:translateY(-50%) scale(0);-o-transform:translateY(-50%) scale(0);transform:translateY(-50%) scale(0);opacity:0}}.eae-img-comp-container{width:100%;position:relative;text-align:center}.eae-img-comp-container img{vertical-align:middle}.eae-img-comp-img{position:absolute;top:0;left:0;height:100%;width:100%;overflow:hidden;transform:translateZ(0);backface-visibility:hidden}.eae-img-comp-img img{display:block;max-width:100%;width:100%}.eae-img-comp-slider{position:absolute;z-index:9;width:40px;height:40px;background-color:#2196f3;opacity:1;border-radius:50%}.icon-horizontal{cursor:ew-resize}.icon-vertical{cursor:n-resize}.mode-horizontal .eae-img-comp-overlay img{position:absolute;left:0;top:0;display:block;width:auto;height:100%!important;max-width:none!important}.mode-vertical .eae-img-comp-overlay img{position:absolute;left:0;top:0;display:block;width:100%;height:auto!important;max-width:none!important}.eae-img-comp-slider svg,.eae-slider-icon{top:50%;transform:translateY(-50%) translateX(-50%);position:absolute;left:50%;color:#fff}.elementor-widget-wts-ab-image{text-align:center}.elementor-widget-wts-ab-image .elementor-widget-container{display:inline-block;margin:0 auto!important;overflow:hidden}.eae-text-before{position:absolute!important;padding:10px;transition:transform .3s .7s,opacity .3s .7s;color:#d36118;z-index:0;background:rgba(255,255,255,.5);margin:20px}.eae-text-after{position:absolute!important;padding:10px;transition:transform .3s .7s,opacity .3s .7s;color:#d36118;z-index:0;background:rgba(255,255,255,.5);margin:20px}.divTest{display:inline-block;background-color:#00a0d2;padding:20px}.eae-particle-wrapper{width:100%;height:100%;position:absolute;left:0;top:0}.particles-js-canvas-el{height:100%;position:absolute}.eae-section-bs{position:absolute;width:100%;height:100%;top:0}.eae-section-bs-inner{width:100%;height:100%!important}.eae-popup.mfp-bg{top:0;left:0;width:100%;height:100%;z-index:1042;overflow:hidden;position:fixed;background:#0b0b0b;opacity:.8}.eae-popup-link{padding:12px 24px;color:#fff;display:inline-flex;line-height:1}.eae-popup-link svg{fill:#fff}.eae-popup-link:hover{color:#fff}.eae-popup.mfp-wrap{top:0;left:0;width:100%;height:100%;z-index:1043;position:fixed;outline:0!important;-webkit-backface-visibility:hidden}.eae-popup .mfp-container{text-align:center;position:absolute;width:100%;height:100%;left:0;top:0;padding:0 8px;box-sizing:border-box}.eae-popup .mfp-container:before{content:'';display:inline-block;height:100%;vertical-align:middle}.eae-popup .mfp-align-top .mfp-container:before{display:none}.eae-popup .mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1045}.eae-modal-content{padding:20px}.eae-pop-btn-align-left .eae-popup-wrapper{text-align:left}.eae-pop-btn-align-right .eae-popup-wrapper{text-align:right}.eae-pop-btn-align-center .eae-popup-wrapper{text-align:center}.eae-pop-btn-align-justify .eae-popup-wrapper{text-align:center}.eae-pop-btn-align-justify .eae-popup-wrapper a{display:block}.eae-popup .mfp-ajax-holder .mfp-content,.eae-popup .mfp-inline-holder .mfp-content{width:50%;background-color:#fff;cursor:auto;overflow:hidden}.eae-popup .mfp-ajax-cur{cursor:progress}.eae-popup .mfp-zoom-out-cur,.eae-popup .mfp-zoom-out-cur .mfp-image-holder .eae-close{cursor:-moz-zoom-out;cursor:-webkit-zoom-out;cursor:zoom-out}.eae-popup .mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:-moz-zoom-in;cursor:zoom-in}.eae-popup.mfp-auto-cursor .mfp-content{cursor:auto}.eae-popup .eae-close,.eae-popup .mfp-arrow,.eae-popup .mfp-counter,.eae-popup .mfp-preloader{-webkit-user-select:none;-moz-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none!important}.eae-popup .mfp-preloader{color:#ccc;position:absolute;top:50%;width:auto;text-align:center;margin-top:-.8em;left:8px;right:8px;z-index:1044}.eae-popup .mfp-preloader a{color:#ccc}.eae-popup .mfp-preloader a:hover{color:#fff}.mfp-s-ready .mfp-preloader{display:none}.mfp-s-error .mfp-content{display:none}button.eae-close,button.mfp-arrow{overflow:visible;cursor:pointer;background:0 0;border:0;-webkit-appearance:none;display:block;outline:0;padding:0;z-index:1046;box-shadow:none;touch-action:manipulation}button::-moz-focus-inner{padding:0;border:0}.eae-popup .eae-close{width:28px;height:28px;line-height:1em;position:absolute;right:10px;top:10px;text-decoration:none;text-align:center;opacity:1;color:#fff;font-size:28px;z-index:1500}.eae-close:focus,.eae-close:hover{opacity:1;cursor:pointer}.eae-close:active{top:1px}.eae-close:before{top:50%;left:50%;position:absolute;transform:translate(-50%,-50%)}.eae-popup.eae-close-btn-in .eae-close{color:#fff}.mfp-iframe-holder .eae-close,.mfp-image-holder .eae-close{color:#fff;right:-6px;text-align:right;padding-right:6px;width:100%}.mfp-counter{position:absolute;top:0;right:0;color:#ccc;font-size:12px;line-height:18px;white-space:nowrap}.mfp-arrow{position:absolute;opacity:.65;margin:0;top:50%;margin-top:-55px;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:transparent}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:focus,.mfp-arrow:hover{opacity:1}.mfp-arrow:after,.mfp-arrow:before{content:'';display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:medium inset transparent}.mfp-arrow:after{border-top-width:13px;border-bottom-width:13px;top:8px}.mfp-arrow:before{border-top-width:21px;border-bottom-width:21px;opacity:.7}.mfp-arrow-left{left:0}.mfp-arrow-left:after{border-right:17px solid #fff;margin-left:31px}.mfp-arrow-left:before{margin-left:25px;border-right:27px solid #3f3f3f}.mfp-arrow-right{right:0}.mfp-arrow-right:after{border-left:17px solid #fff;margin-left:39px}.mfp-arrow-right:before{border-left:27px solid #3f3f3f}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-iframe-holder .eae-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;box-shadow:0 0 8px rgba(0,0,0,.6);background:#000}img.mfp-img{width:auto;max-width:100%;height:auto;display:block;line-height:0;box-sizing:border-box;padding:40px 0 40px;margin:0 auto}.eae-popup .mfp-figure{line-height:0}.eae-popup .mfp-figure:after{content:'';position:absolute;left:0;top:40px;bottom:40px;display:block;right:0;width:auto;height:auto;z-index:-1;box-shadow:0 0 8px rgba(0,0,0,.6);background:#444}.eae-popup .mfp-figure small{color:#bdbdbd;display:block;font-size:12px;line-height:14px}.eae-popup .mfp-figure figure{margin:0}.eae-popup .mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto}.eae-popup .mfp-title{text-align:left;line-height:1;word-wrap:break-word;color:#fff;background-color:#4054b2;padding:20px 20px 20px 20px}.eae-popup .mfp-image-holder .mfp-content{max-width:100%}.eae-popup .mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}@media screen and (max-width:800px) and (orientation:landscape),screen and (max-height:300px){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{right:5px;top:3px}.mfp-img-mobile .eae-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,.6);position:fixed;text-align:center;padding:0}}.elementor-element.eae-animated-gradient-yes,.elementor-element.eae-animated-gradient-yes .animated-gradient{background-size:400% 400%!important;-webkit-animation:AnimateGradient 15s ease-in-out infinite;-moz-animation:AnimateGradient 15s ease-in-out infinite;animation:AnimateGradient 15s ease-in-out infinite}.animated-gradient{position:absolute;top:0;left:0;height:100%;width:100%}@-webkit-keyframes AnimateGradient{0%{background-position:0 50%}50%{background-position:100% 50%}100%{background-position:0 50%}}@-moz-keyframes AnimateGradient{0%{background-position:0 50%}50%{background-position:100% 50%}100%{background-position:0 50%}}@keyframes AnimateGradient{0%{background-position:0 50%}50%{background-position:100% 50%}100%{background-position:0 50%}}.eae-swiper-outer-wrapper .swiper-slide{height:auto;overflow:inherit}.eae-swiper-outer-wrapper .swiper-slide-wrapper,.eae-swiper-outer-wrapper .testimonial-wrapper{height:100%}.eae-grid{display:flex;flex-wrap:wrap;flex-direction:row}.eae-masonry- .eae-grid-item{position:relative;height:100%}.eae-masonry- .eae-grid-item .testimonial-wrapper{height:100%}.eae-grid-container{transition:.1s all ease}.eae-grid-container{display:inline-block}.wrapper .content{margin:10px 0}.skin-2.testimonial-wrapper{display:flex;flex-direction:column;background-color:#9c989821;min-height:300px;padding:10px 20px;box-shadow:0 0 5px rgba(0,0,0,.15);color:#696969}.skin-2 .content-wrapper{padding:10px;position:relative;background-color:#fff;border-radius:10px;color:#77778e}.skin-2 i.after-content,.skin-2 i.before-content{position:absolute}.skin-2 i.before-content{top:10px;left:20px}.skin-2 i.after-content{bottom:10px;right:20px}.skin-2 blockquote{position:relative;font-size:14px;padding:10px;font-weight:500;text-align:left;margin:0;line-height:1.6em;font-style:italic}.skin-2 blockquote::after,.skin-2 blockquote::before{font-family:FontAwesome;content:"\201C";position:absolute;font-size:50px;opacity:.3;font-style:normal}.skin-2 blockquote::before{top:10px;left:20px}.skin-2 blockquote::after{content:"\201D";right:20px}.skin-2 .image-wrapper{position:relative;max-width:100%;text-align:center}.skin-2 img{width:100px;border-radius:25%}.skin-2 .detail-wrapper{text-align:center}.skin-2 .company,.skin-2 .designation,.skin-2 .rating-wrapper,.skin-2 .title{padding:5px 0}.skin-2 .rating-wrapper{color:navy}.skin-2 .title{font-weight:800;color:#000}.skin-2 blockquote p{margin:10px 0!important}.skin-1.testimonial-wrapper{display:flex;flex-direction:column;background-color:#fff;box-shadow:0 0 5px rgba(0,0,0,.15);color:#000}.skin-1 .content-wrapper{order:0}.skin-1 .image-wrapper{order:1;text-align:center;margin:15px 0}.skin-1 .detail-wrapper{order:2}.skin-1 .content-wrapper{padding:10px;position:relative}.skin-1 i.after-content,.skin-1 i.before-content{position:absolute}.skin-1 i.before-content{top:10px;left:20px}.skin-1 i.after-content{bottom:10px;right:20px}.skin-1 blockquote{position:relative;background-color:#fff;font-size:14px;padding:10px;font-weight:500;text-align:left;margin:0;line-height:1.6em;font-style:italic}.skin-1 blockquote::after,.skin-1 blockquote::before{font-family:FontAwesome;content:"\201C";position:absolute;font-size:50px;opacity:.3;font-style:normal}.skin-1 blockquote::before{top:10px;left:20px}.skin-1 blockquote::after{content:"\201D";right:20px}.skin-1 .image-wrapper{position:relative;max-width:100%}.skin-1 img{width:100px;height:auto;border-radius:50%}.skin-1 .detail-wrapper{display:flex;flex-direction:row-reverse;justify-content:space-between;padding:10px;background-color:rgba(157,163,156,.18)}.skin-1 .designation,.skin-1 .rating-wrapper,.skin-1 .title{margin:0 5px}.skin-1 .title-wrapper{display:flex;flex-direction:row}.skin-1 .rating-wrapper{color:#fecc1f}.skin-4.testimonial-wrapper{flex-direction:column;display:flex;background-color:#bfbfb6bd;min-height:300px;padding:10px 0;box-shadow:0 0 5px rgba(0,0,0,.15);color:#77778e}.skin-4 .content-wrapper{padding:10px;position:relative}.skin-4 .content-wrapper{order:2;color:#3c3c3c}.skin-4 i.after-content,.skin-4 i.before-content{position:absolute}.skin-4 i.before-content{top:10px;left:20px}.skin-4 i.after-content{bottom:10px;right:20px}.skin-4 blockquote{position:relative;font-size:14px;padding:10px;font-weight:500;text-align:left;margin:0;line-height:1.6em;font-style:italic}.skin-4 blockquote::after,.skin-4 blockquote::before{font-family:FontAwesome;content:"\201C";position:absolute;font-size:50px;opacity:.3;font-style:normal}.skin-4 blockquote::before{top:10px;left:20px}.skin-4 blockquote::after{content:"\201D";right:20px}.skin-4 .image-wrapper{position:relative;max-width:100%;text-align:center}.skin-4 img{width:100px;border-radius:50%}.skin-4 .detail-wrapper{text-align:center}.skin-2 .designation,.skin-2 .title,.skin-4 .rating-wrapper{padding:5px 0}.skin-4 .rating-wrapper{color:#690a69}.skin-4 .title{font-weight:800;color:#000}.skin-3.testimonial-wrapper{display:flex;flex-direction:row;background-color:#9c989821;box-shadow:0 0 5px rgba(0,0,0,.15);color:#000;overflow:hidden}.skin-3 .content-section{display:flex;flex-direction:column;align-self:center}.skin-3 .content-wrapper{padding:10px;position:relative}.skin-2 i.after-content,.skin-3 i.before-content{position:absolute}.skin-3 i.before-content{top:10px;left:20px}.skin-3 i.after-content{bottom:10px;right:20px}.skin-3 blockquote{position:relative;font-size:18px;padding:10px;font-weight:500;text-align:left;margin:0;line-height:1.6em;font-style:italic}.skin-3 blockquote::after,.skin-3 blockquote::before{font-family:FontAwesome;content:"\201C";position:absolute;font-size:50px;opacity:.3;font-style:normal}.skin-3 blockquote::before{top:10px;left:20px}.skin-3 blockquote::after{content:"\201D";right:20px}.skin-3 .image-wrapper{position:relative;max-width:30%;max-height:250px;text-align:center;align-self:center}.skin-3 img{width:100%}.testimonial-wrapper .skin-3 .eae-person-avatar{border-radius:50%}.skin-3 .detail-wrapper{text-align:left;padding-left:20px}.skin-3 .designation,.skin-3 .rating-wrapper,.skin-3 .title{padding:3px 0}.skin-3 .rating-wrapper{color:#800040}.skin-3 .title{font-weight:800}.eae-swiper-outer-wrapper .swiper-button-prev{-webkit-mask:url(arrow-left.svg) no-repeat 100% 100%;mask:url(arrow-left.svg) no-repeat 100% 100%;-webkit-mask-size:cover;mask-size:cover;background-image:none;background-color:#007aff;transform:translateY(-50%);margin-top:0}.eae-swiper-outer-wrapper .swiper-container-rtl .swiper-button-prev{-webkit-mask:url(arrow-right.svg) no-repeat 100% 100%;mask:url(arrow-right.svg) no-repeat 100% 100%}.eae-swiper-outer-wrapper .swiper-button-next{-webkit-mask:url(arrow-right.svg) no-repeat 100% 100%;mask:url(arrow-right.svg) no-repeat 100% 100%;-webkit-mask-size:cover;mask-size:cover;background-image:none;background-color:#007aff;transform:translateY(-50%);margin-top:0}.eae-swiper-outer-wrapper .swiper-container-rtl .swiper-button-next{-webkit-mask:url(arrow-left.svg) no-repeat 100% 100%;mask:url(arrow-left.svg) no-repeat 100% 100%}.elementor-widget-wts-testimonial-slider .eae-swiper-outer-wrapper .swiper-button-next,.elementor-widget-wts-testimonial-slider .eae-swiper-outer-wrapper .swiper-button-prev{-webkit-mask:none;mask:none;-webkit-mask-size:unset;mask-size:unset;background-image:none;background-color:unset;width:auto;height:auto;transform:translateY(-50%);margin-top:0}.swiper-container .swiper-button-next i,.swiper-container .swiper-button-prev i{width:1em;height:1em;text-align:center;position:relative}.elementor-widget-wts-testimonial-slider .eae-swiper-outer-wrapper .eae-swiper-button-wrapper{position:absolute;height:auto;line-height:0}.eae-hpos-right.eae-vpos-top .eae-swiper-button-wrapper{bottom:auto;top:0;width:auto;right:0}.eae-vpos-top.eae-hpos-left .eae-swiper-button-wrapper{bottom:auto;top:0;width:auto;left:0}.eeae-hpos-right.eae-vpos-bottom .eae-swiper-button-wrapper{bottom:0;top:auto;width:auto;right:0}.eae-vpos-bottom.eae-hpos-left .eae-swiper-button-wrapper{bottom:0;top:auto;width:auto;left:0}.eae-hpos-right.eae-vpos-middle .eae-swiper-button-wrapper{bottom:auto;top:50%;width:auto;right:0}.eae-hpos-left.eae-vpos-middle .eae-swiper-button-wrapper{bottom:auto;top:50%;width:auto;left:0}.eae-hpos-left .swiper-button-next,.eae-hpos-left .swiper-button-prev,.eae-hpos-right .swiper-button-next,.eae-hpos-right .swiper-button-prev{position:relative;display:inline-block;right:auto;left:auto}.eae-hpos-right.eae-vpos-bottom .swiper-button-next,.eae-hpos-right.eae-vpos-bottom .swiper-button-prev{top:auto;bottom:0;transform:unset}.eae-hpos-right.eae-vpos-top .swiper-button-next,.eae-hpos-right.eae-vpos-top .swiper-button-prev{top:0;bottom:auto;transform:unset}.eae-hpos-left.eae-vpos-top .swiper-button-next,.eae-hpos-left.eae-vpos-top .swiper-button-prev{top:0;bottom:auto;transform:unset}.eae-hpos-left.eae-vpos-bottom .swiper-button-next,.eae-hpos-left.eae-vpos-bottom .swiper-button-prev{top:auto;bottom:0;transform:unset}.eae-hpos-center.eae-vpos-bottom .swiper-button-next,.eae-hpos-center.eae-vpos-bottom .swiper-button-prev{top:auto;bottom:0;transform:unset}.eae-hpos-center.eae-vpos-top .swiper-button-next,.eae-hpos-center.eae-vpos-top .swiper-button-prev{top:0;bottom:auto;transform:unset}@media all and (max-width:900px){.mfp-arrow{-webkit-transform:scale(.75);transform:scale(.75)}.mfp-arrow-left{-webkit-transform-origin:0;transform-origin:0}.mfp-arrow-right{-webkit-transform-origin:100%;transform-origin:100%}.mfp-container{padding-left:6px;padding-right:6px}}.eae-info-circle{position:relative;width:90%;margin:0 auto;border-radius:50%;display:block}.eae-info-circle:before{content:'';display:block;position:absolute;top:4%;left:4%;width:92%;height:92%;border-radius:50%;z-index:1;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;pointer-events:none}.eae-info-circle:after{content:'';display:block;padding-top:100%}.eae-info-circle .eae-ic-icon-wrap{position:absolute;display:inline-block;top:50%;left:50%;z-index:2;line-height:1em;vertical-align:middle;overflow:hidden;max-width:100%}.eae-info-circle .eae-info-circle-item{top:0;left:0;width:100%;height:100%;display:block}.eae-info-circle .eae-info-circle-item.eae-active .eae-info-circle-item__content-wrap{visibility:visible;opacity:1;display:flex}.eae-info-circle .eae-info-circle-item__content-wrap{visibility:visible;display:none;height:91%;width:91%;opacity:0;top:50%;transform:translateY(-50%) translateX(-50%);position:absolute;left:50%;border-radius:50%;overflow:hidden;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.eae-info-circle .eae-info-circle-item__content-wrap:before{content:'';display:inline-block;height:100%;vertical-align:middle}.eae-info-circle .eae-info-circle-item__content{display:inline-block;top:50%;transform:translateY(-50%) translateX(-50%);position:absolute;left:50%;vertical-align:middle;z-index:1;max-height:100%;overflow:auto;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;text-align:center;width:75%}@media screen and (max-width:767px){.eae-info-circle.eae-info-circle .eae-info-circle-item__content-wrap:before{display:none}.eae-info-circle:after,.eae-info-circle:before{display:none}.eae-info-circle{width:100%!important}.eae-info-circle-wrapper:after,.eae-info-circle-wrapper:before{display:none}.eae-info-circle .eae-ic-icon-wrap{display:block;text-align:center;position:relative!important;left:unset!important;margin-left:0!important;margin-top:0!important;margin-bottom:10px}.eae-info-circle-item{position:relative!important;border-radius:0!important;padding:0;margin:10px 0}.eae-info-circle .eae-info-circle-item__content-wrap{visibility:visible;opacity:1!important;display:flex!important;border-radius:0!important;border:none!important;margin:0!important;padding-right:0!important;padding-left:0!important;padding-bottom:0!important;width:100%;height:auto;line-height:1.5em;position:relative;top:unset;left:unset;transform:unset}.eae-info-circle .eae-info-circle-item__content{position:relative;top:unset;left:unset;transform:unset;width:100%;padding:10px}}.eae-icon-wrap i{height:1.25em;width:1.25em;line-height:1.25em;display:block}.eae-icon-wrap i img{top:50%;left:50%;transform:translateX(-50%) translateY(-50%);position:absolute}.eae-icon{display:inline-block;text-align:center;vertical-align:middle;max-width:100%;overflow:hidden;padding:10px}.eae-icon-shape-circle:not(.elementor-element){border-radius:50%}.eae-icon-view-framed:not(.elementor-element){border-width:1px;border-style:solid}.eae-icon-wrapper{display:flex}.eae-icon-wrapper .eae-icon{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);line-height:1}.eae-timeline{position:relative;display:inline-block;width:100%}.eae-timline-progress-bar{width:4px;background-color:#f45b69;top:0;bottom:50px;position:absolute;transform:translateX(-50%)}.eae-timeline-item{position:relative;display:flex;flex-direction:row;padding-bottom:50px}.eae-timeline-item:last-child{padding-bottom:0!important}.eae-tl-top .eae-timeline-item{align-items:flex-start}.eae-tl-top .eae-tl-item-content::before{top:10px}.eae-timeline-item.image-position-row .eae-tl-item-image,.eae-timeline-item.image-position-row-reverse .eae-tl-item-image{margin-top:0;margin-bottom:0}.eae-tl-item-meta-wrapper-inner{display:none}.eae-tl-bottom .eae-timeline-item{align-items:flex-end}.eae-tl-bottom .eae-tl-item-content::before{bottom:10px}.eae-tl-center .eae-timeline-item{align-items:center}.eae-tl-center .eae-tl-item-content::before{bottom:calc(50% - 5px)}.eae-layout-center .eae-timline-progress-bar{left:50%}.eae-layout-center .eae-timeline-item:nth-child(odd){flex-direction:row-reverse}.eae-layout-center .eae-timeline-item:nth-child(odd) .eae-tl-item-meta-wrapper{margin-right:0;margin-left:0;justify-content:flex-start}.eae-layout-center .eae-timeline-item:nth-child(odd) .eae-tl-content-wrapper{padding-right:20px;padding-left:0}.eae-layout-center .eae-timeline-item:nth-child(even) .eae-tl-content-wrapper{padding-right:0;padding-left:20px}.eae-layout-left .eae-tl-content-wrapper{padding-right:10px;padding-left:20px}.eae-layout-left .eae-timline-progress-bar{left:20px}.eae-layout-left .eae-tl-item-meta-wrapper{display:none}.eae-layout-left .eae-tl-item-meta-wrapper-inner{display:block}.eae-layout-right .eae-timline-progress-bar{left:calc(100% - 20px)}.eae-layout-right .eae-tl-content-wrapper{padding-right:20px;padding-left:10px}.eae-layout-right .eae-tl-icon-wrapper{order:3}.eae-layout-right .eae-tl-item-meta-wrapper{display:none}.eae-layout-right .eae-tl-item-meta-wrapper-inner{display:block}.eae-tl-item-meta-wrapper{flex-grow:1;order:0;flex-basis:50%;flex-direction:initial;justify-content:flex-end;display:flex;align-items:center;margin-right:0}.eae-tl-item-meta{padding:0 20px}.eae-tl-icon-wrapper{height:auto;width:auto;flex-grow:0;flex-shrink:0;order:1;margin-left:0;margin-right:0;min-width:10px;min-height:10px;border-radius:999px;position:relative;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.eae-tl-content-wrapper{flex-grow:1;order:2;flex-basis:50%;position:relative;padding-right:0;padding-left:20px}.eae-tl-item-content{background:#f4f4f4;padding:25px;overflow:hidden;text-align:center;display:flex;flex-direction:row}.eae-tl-content{display:inline-block;position:relative;padding:10px;width:100%;color:#000}.eae-timeline-item.custom-image-style-yes.image-position-row .eae-content-inner,.eae-timeline-item.custom-image-style-yes.image-position-row-reverse .eae-content-inner,.image-position-row .eae-timeline .eae-timeline-item:not(.custom-image-style-yes) .eae-content-inner,.image-position-row-reverse .eae-timeline .eae-timeline-item:not(.custom-image-style-yes) .eae-content-inner{position:relative;left:50%;top:50%;transform:translate(-50%,-50%);line-height:1;width:100%}.custom-image-style-.image-position-row .eae-content-inner,.custom-image-style-.image-position-row-reverse .eae-content-inner,.custom-image-style-no.image-position-row .eae-content-inner,.custom-image-style-no.image-position-row-reverse .eae-content-inner{left:unset;top:unset;transform:unset}.eae-tl-item-image{display:inline-block}.image-position-row .eae-tl-item-image img,.image-position-row-reverse .eae-tl-item-image img{object-fit:cover;height:100%!important}.image-position-row .eae-tl-item-image,.image-position-row-reverse .eae-tl-item-image{margin:0}.image-position-column .eae-tl-item-image{margin:auto}.custom-image-style-.image-position-column .eae-tl-item-image,.custom-image-style-no.image-position-column .eae-tl-item-image{margin:0 auto}.eae-pb-inner-line{width:100%;background-color:#3d5ac3}.eae-tl-item-content::before{content:'';position:absolute;width:0;height:0;border-style:solid;border-width:8px 16px 8px 0;border-color:transparent #f4f4f4 transparent transparent}.eae-icon-wrapper{display:flex}.elementor-widget-bpel-timeline .eae-icon-wrapper{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);line-height:1}.eae-tl-read-more{display:inline-block;padding:5px;border:2px solid #000}.image-position-row .eae-timeline.eae-timeline-alternate-yes .eae-timeline-item:nth-child(odd):not(.custom-image-style-yes) .eae-tl-item-content{flex-direction:row-reverse!important}.image-position-row-reverse .eae-timeline.eae-timeline-alternate-yes .eae-timeline-item:nth-child(odd):not(.custom-image-style-yes) .eae-tl-item-content{flex-direction:row!important}@media screen and (min-width:1024px){.eae-layout-center .eae-timeline-item:nth-child(odd) .eae-tl-item-content::before,.eae-layout-right .eae-tl-item-content::before{right:4px;border-width:8px 0 8px 16px;border-color:transparent transparent transparent #f4f4f4}.eae-layout-center .eae-timeline-item:nth-child(even) .eae-tl-item-content::before,.eae-layout-left .eae-tl-item-content::before{left:4px;border-width:8px 16px 8px 0;border-color:transparent #f4f4f4 transparent transparent}}@media screen and (max-width:1023px) and (min-width:768px){.image-position-row .eae-timeline.eae-timeline-alternate-yes .eae-timeline-item:nth-child(odd):not(.custom-image-style-yes) .eae-tl-item-content{flex-direction:row-reverse!important}.image-position-row-reverse .eae-timeline.eae-timeline-alternate-yes .eae-timeline-item:nth-child(odd):not(.custom-image-style-yes) .eae-tl-item-content{flex-direction:row!important}.eae-tl-res-style-mobile-tablet .eae-tl-item-meta-wrapper{display:none}.eae-tl-res-style-mobile-tablet .eae-tl-item-meta-wrapper-inner{display:block}.eae-tl-res-style-mobile-tablet.eae-tl-res-layout-left .eae-timeline-item{flex-direction:row!important}.eae-tl-res-style-mobile-tablet.eae-tl-res-layout-right .eae-timeline-item{flex-direction:row-reverse!important}.eae-layout-center.eae-tl-res-style-mobile-tablet.eae-tl-res-layout-left .eae-timeline-item .eae-tl-item-content::before,.eae-layout-left .eae-timeline-item .eae-tl-item-content::before,.eae-layout-left .eae-tl-item-content::before,.eae-timeline.eae-layout-center.eae-tl-res-style-mobile .eae-timeline-item:nth-child(even) .eae-tl-item-content::before{left:4px!important;border-width:8px 16px 8px 0!important;border-color:transparent #f4f4f4 transparent transparent!important}.eae-layout-center.eae-tl-res-style-mobile-tablet.eae-tl-res-layout-right .eae-timeline-item .eae-tl-item-content::before,.eae-layout-right .eae-timeline-item .eae-tl-item-content::before,.eae-layout-right .eae-tl-item-content::before,.eae-timeline.eae-layout-center.eae-tl-res-style-mobile .eae-timeline-item:nth-child(odd) .eae-tl-item-content::before,.eae-tl-res-style-mobile-tablet.eae-tl-res-layout-right .eae-timeline-item .eae-tl-item-content::before{right:4px!important;border-width:8px 0 8px 16px!important;border-color:transparent transparent transparent #f4f4f4!important}.eae-tl-res-style-mobile-tablet.eae-layout-center.eae-tl-res-layout-left .eae-timeline-item .eae-tl-content-wrapper{padding-right:0!important;padding-left:20px!important}.eae-tl-res-style-mobile-tablet.eae-layout-center.eae-tl-res-layout-right .eae-timeline-item .eae-tl-content-wrapper{padding-right:20px!important;padding-left:0!important}.eae-tl-res-style-mobile-tablet.eae-layout-center.eae-tl-res-layout-left .eae-timline-progress-bar{left:13px}.eae-tl-res-style-mobile-tablet.eae-layout-center.eae-tl-res-layout-right .eae-timline-progress-bar{left:calc(100% - 13px)}}@media screen and (max-width:767px){.eae-tl-item-meta-wrapper{display:none}.eae-tl-item-meta-wrapper-inner{display:block}.elementor-widget-bpel-timeline:not(.image-position-column) .eae-timeline .eae-tl-item-content{flex-direction:column-reverse!important}.eae-tl-item-image,.elementor-widget-bpel-timeline:not(.image-position-column) .eae-tl-content{width:100%!important}.eae-tl-res-style-mobile-tablet.eae-tl-res-layout-left .eae-timeline-item,.eae-tl-res-style-mobile.eae-tl-res-layout-left .eae-timeline-item{flex-direction:row!important}.eae-tl-res-style-mobile-tablet.eae-tl-res-layout-right .eae-timeline-item,.eae-tl-res-style-mobile.eae-tl-res-layout-right .eae-timeline-item{flex-direction:row-reverse!important}.eae-layout-left .eae-timeline-item .eae-tl-item-content::before,.eae-timeline.eae-layout-center.eae-tl-center.eae-tl-res-style-mobile-tablet.eae-tl-res-layout-left .eae-timeline-item:nth-child(odd) .eae-tl-item-content::before,.eae-timeline.eae-layout-center.eae-tl-center.eae-tl-res-style-mobile.eae-tl-res-layout-left .eae-timeline-item:nth-child(odd) .eae-tl-item-content::before,.eae-tl-res-style-mobile-tablet.eae-tl-res-layout-left .eae-timeline-item .eae-tl-item-content::before,.eae-tl-res-style-mobile.eae-tl-res-layout-left .eae-timeline-item .eae-tl-item-content::before{left:4px!important;border-width:8px 16px 8px 0!important;border-color:transparent #f4f4f4 transparent transparent!important}.eae-layout-right .eae-timeline-item .eae-tl-item-content::before,.eae-tl-res-style-mobile-tablet.eae-tl-res-layout-right .eae-timeline-item .eae-tl-item-content::before,.eae-tl-res-style-mobile.eae-tl-res-layout-right .eae-timeline-item .eae-tl-item-content::before{right:4px!important;border-width:8px 0 8px 16px!important;border-color:transparent transparent transparent #f4f4f4!important}.eae-tl-res-style-mobile-tablet.eae-layout-center.eae-tl-res-layout-left .eae-timeline-item .eae-tl-content-wrapper,.eae-tl-res-style-mobile.eae-layout-center.eae-tl-res-layout-left .eae-timeline-item .eae-tl-content-wrapper{padding-right:0!important;padding-left:20px!important}.eae-tl-res-style-mobile-tablet.eae-layout-center.eae-tl-res-layout-right .eae-timeline-item .eae-tl-content-wrapper,.eae-tl-res-style-mobile.eae-layout-center.eae-tl-res-layout-right .eae-timeline-item .eae-tl-content-wrapper{padding-right:20px!important;padding-left:0!important}.eae-tl-res-style-mobile-tablet.eae-layout-center.eae-tl-res-layout-left .eae-timline-progress-bar,.eae-tl-res-style-mobile.eae-layout-center.eae-tl-res-layout-left .eae-timline-progress-bar{left:13px}.eae-tl-res-style-mobile-tablet.eae-layout-center.eae-tl-res-layout-right .eae-timline-progress-bar,.eae-tl-res-style-mobile.eae-layout-center.eae-tl-res-layout-right .eae-timline-progress-bar{left:calc(100% - 13px)}}[data-element_type="eae-evergreen-timer.skin1"] .eae-evergreen-wrapper{display:block;text-align:center}[data-element_type="eae-evergreen-timer.skin1"] #eaeclockdiv{font-family:sans-serif;color:#fff;display:inline-block;font-weight:100;text-align:center;font-size:30px}[data-element_type="eae-evergreen-timer.skin1"] .eae-time-wrapper{padding:10px;border-radius:3px;background:#00bf96;display:inline-block;overflow:hidden}[data-element_type="eae-evergreen-timer.skin1"] #eaeclockdiv div>span{padding:15px;width:100%;background:#00816a;display:inline-block}[data-element_type="eae-evergreen-timer.skin1"] .smalltext{padding:7px;font-size:16px}[data-element_type="eae-evergreen-timer.skin1"] .eae-egt-hide{display:none}.eae-egt-message{display:none}@media screen and (max-width:767px){[data-element_type="eae-evergreen-timer.skin1"] #eaeclockdiv div>span{padding:5px}[data-element_type="eae-evergreen-timer.skin1"] .eae-time-wrapper{padding:5px}}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-o-box-sizing:border-box;box-sizing:border-box;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden}[data-element_type="eae-evergreen-timer.skin2"] .eae-evergreen-wrapper{display:inline-block;width:100%;text-align:center;margin:auto}[data-element_type="eae-evergreen-timer.skin2"] .timer-container{display:inline-block}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper a{cursor:pointer;text-decoration:none;color:#ccc}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper a:hover{color:#fff}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper ul{list-style:none}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper.clearfix:after,[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper.clearfix:before{content:" ";display:table}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper.clearfix:after{clear:both}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper{font:normal 11px "Helvetica Neue",Helvetica,sans-serif;-webkit-user-select:none}[data-element_type="eae-evergreen-timer.skin2"] .flip-clock-meridium{background:0 0!important;box-shadow:0 0 0!important;font-size:36px!important}[data-element_type="eae-evergreen-timer.skin2"] .flip-clock-meridium a{color:#313333}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper{text-align:center;position:relative;width:100%;margin:1em}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper:after,[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper:before{content:" ";display:table}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper:after{clear:both}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper ul{position:relative;float:left;margin:5px;width:60px;height:90px;font-size:80px;font-weight:700;line-height:87px;border-radius:6px;background:#000}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper ul li{z-index:1;position:absolute;left:0;top:0;width:100%;height:100%;line-height:87px;text-decoration:none!important}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper ul li:first-child{z-index:2}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper ul li a{display:block;height:100%;-webkit-perspective:200px;-moz-perspective:200px;perspective:200px;margin:0!important;overflow:visible!important;cursor:default!important}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper ul li a div{z-index:1;position:absolute;left:0;width:100%;height:50%;font-size:80px;overflow:hidden;outline:1px solid transparent}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper ul li a div .shadow{position:absolute;width:100%;height:100%;z-index:2}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper ul li a div.up{-webkit-transform-origin:50% 100%;-moz-transform-origin:50% 100%;-ms-transform-origin:50% 100%;-o-transform-origin:50% 100%;transform-origin:50% 100%;top:0}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper ul li a div.up:after{content:"";position:absolute;top:44px;left:0;z-index:5;width:100%;height:3px;background-color:#000;background-color:rgba(0,0,0,.4)}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper ul li a div.down{-webkit-transform-origin:50% 0;-moz-transform-origin:50% 0;-ms-transform-origin:50% 0;-o-transform-origin:50% 0;transform-origin:50% 0;bottom:0;border-bottom-left-radius:6px;border-bottom-right-radius:6px}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper ul li a div div.inn{position:absolute;left:0;z-index:1;width:100%;height:200%;color:#ccc;text-shadow:0 1px 2px #000;text-align:center;background-color:#333;border-radius:6px;font-size:70px}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper ul li a div.up div.inn{top:0}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper ul li a div.down div.inn{bottom:0}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper ul.play li.flip-clock-before{z-index:3}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper .flip{box-shadow:0 2px 5px rgba(0,0,0,.7)}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper ul.play li.flip-clock-active{-webkit-animation:asd 10ms .49s linear both;-moz-animation:asd 10ms .49s linear both;animation:asd 10ms .49s linear both;z-index:5}[data-element_type="eae-evergreen-timer.skin2"] .flip-clock-divider{float:left;display:inline-block;position:relative;width:20px;height:100px}[data-element_type="eae-evergreen-timer.skin2"] .flip-clock-divider:first-child{width:0}[data-element_type="eae-evergreen-timer.skin2"] .flip-clock-dot{display:block;background:#323434;width:10px;height:10px;position:absolute;border-radius:50%;box-shadow:0 0 5px rgba(0,0,0,.5);left:5px}[data-element_type="eae-evergreen-timer.skin2"] .flip-clock-divider .flip-clock-label{position:absolute;top:-1.5em;right:-86px;color:#000;text-shadow:none}[data-element_type="eae-evergreen-timer.skin2"] .flip-clock-divider.minutes .flip-clock-label{right:-88px}[data-element_type="eae-evergreen-timer.skin2"] .flip-clock-divider.seconds .flip-clock-label{right:-91px}[data-element_type="eae-evergreen-timer.skin2"] .flip-clock-dot.top{top:30%}[data-element_type="eae-evergreen-timer.skin2"] .flip-clock-dot.bottom{bottom:30%}@-webkit-keyframes asd{0%{z-index:2}100%{z-index:4}}@-moz-keyframes asd{0%{z-index:2}100%{z-index:4}}@-o-keyframes asd{0%{z-index:2}100%{z-index:4}}@keyframes asd{0%{z-index:2}100%{z-index:4}}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper ul.play li.flip-clock-active .down{z-index:2;-webkit-animation:turn .5s .5s linear both;-moz-animation:turn .5s .5s linear both;animation:turn .5s .5s linear both}@-webkit-keyframes turn{0%{-webkit-transform:rotateX(90deg)}100%{-webkit-transform:rotateX(0)}}@-moz-keyframes turn{0%{-moz-transform:rotateX(90deg)}100%{-moz-transform:rotateX(0)}}@-o-keyframes turn{0%{-o-transform:rotateX(90deg)}100%{-o-transform:rotateX(0)}}@keyframes turn{0%{transform:rotateX(90deg)}100%{transform:rotateX(0)}}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper ul.play li.flip-clock-before .up{z-index:2;-webkit-animation:turn2 .5s linear both;-moz-animation:turn2 .5s linear both;animation:turn2 .5s linear both}@-webkit-keyframes turn2{0%{-webkit-transform:rotateX(0)}100%{-webkit-transform:rotateX(-90deg)}}@-moz-keyframes turn2{0%{-moz-transform:rotateX(0)}100%{-moz-transform:rotateX(-90deg)}}@-o-keyframes turn2{0%{-o-transform:rotateX(0)}100%{-o-transform:rotateX(-90deg)}}@keyframes turn2{0%{transform:rotateX(0)}100%{transform:rotateX(-90deg)}}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper ul li.flip-clock-active{z-index:3}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper ul.play li.flip-clock-before .up .shadow{background:-moz-linear-gradient(top,rgba(0,0,0,.1) 0,#000 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,#000));background:linear,top,rgba(0,0,0,.1) 0,#000 100%;background:-o-linear-gradient(top,rgba(0,0,0,.1) 0,#000 100%);background:-ms-linear-gradient(top,rgba(0,0,0,.1) 0,#000 100%);background:linear,to bottom,rgba(0,0,0,.1) 0,#000 100%;-webkit-animation:show .5s linear both;-moz-animation:show .5s linear both;animation:show .5s linear both}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper ul.play li.flip-clock-active .up .shadow{background:-moz-linear-gradient(top,rgba(0,0,0,.1) 0,#000 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,#000));background:linear,top,rgba(0,0,0,.1) 0,#000 100%;background:-o-linear-gradient(top,rgba(0,0,0,.1) 0,#000 100%);background:-ms-linear-gradient(top,rgba(0,0,0,.1) 0,#000 100%);background:linear,to bottom,rgba(0,0,0,.1) 0,#000 100%;-webkit-animation:hide .5s .3s linear both;-moz-animation:hide .5s .3s linear both;animation:hide .5s .3s linear both}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper ul.play li.flip-clock-before .down .shadow{background:-moz-linear-gradient(top,#000 0,rgba(0,0,0,.1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#000),color-stop(100%,rgba(0,0,0,.1)));background:linear,top,#000 0,rgba(0,0,0,.1) 100%;background:-o-linear-gradient(top,#000 0,rgba(0,0,0,.1) 100%);background:-ms-linear-gradient(top,#000 0,rgba(0,0,0,.1) 100%);background:linear,to bottom,#000 0,rgba(0,0,0,.1) 100%;-webkit-animation:show .5s linear both;-moz-animation:show .5s linear both;animation:show .5s linear both}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper ul.play li.flip-clock-active .down .shadow{background:-moz-linear-gradient(top,#000 0,rgba(0,0,0,.1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#000),color-stop(100%,rgba(0,0,0,.1)));background:linear,top,#000 0,rgba(0,0,0,.1) 100%;background:-o-linear-gradient(top,#000 0,rgba(0,0,0,.1) 100%);background:-ms-linear-gradient(top,#000 0,rgba(0,0,0,.1) 100%);background:linear,to bottom,#000 0,rgba(0,0,0,.1) 100%;-webkit-animation:hide .5s .3s linear both;-moz-animation:hide .5s .3s linear both;animation:hide .5s .2s linear both}@-webkit-keyframes show{0%{opacity:0}100%{opacity:1}}@-moz-keyframes show{0%{opacity:0}100%{opacity:1}}@-o-keyframes show{0%{opacity:0}100%{opacity:1}}@keyframes show{0%{opacity:0}100%{opacity:1}}@-webkit-keyframes hide{0%{opacity:1}100%{opacity:0}}@-moz-keyframes hide{0%{opacity:1}100%{opacity:0}}@-o-keyframes hide{0%{opacity:1}100%{opacity:0}}@keyframes hide{0%{opacity:1}100%{opacity:0}}@media screen and (max-width:767px){[data-element_type="eae-evergreen-timer.skin2"] .flip-clock-divider{width:15px}[data-element_type="eae-evergreen-timer.skin2"] .flip-clock-dot{height:5px;width:5px}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper ul{height:40px}[data-element_type="eae-evergreen-timer.skin2"] .flip-clock-divider{height:50px}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper ul li{line-height:37px}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper ul li a div div.inn{font-size:24px}[data-element_type="eae-evergreen-timer.skin2"] .eae-flip-clock-wrapper ul{margin:2px}}[data-element_type="eae-evergreen-timer.skin3"] #timer{font-family:sans-serif;color:#fff;display:inline-block;font-weight:100;text-align:center;font-size:30px}[data-element_type="eae-evergreen-timer.skin3"] .desc{display:flex;justify-content:center}[data-element_type="eae-evergreen-timer.skin3"].eae-egt-content-align-right .desc{justify-content:flex-end}[data-element_type="eae-evergreen-timer.skin3"].eae-egt-content-align-left .desc{justify-content:flex-start}[data-element_type="eae-evergreen-timer.skin3"] .desc .egt-time-text{display:inline-block;padding:0 50px 0 50px}[data-element_type="eae-evergreen-timer.skin3"] .eae-time-wrapper{padding:50px;border-radius:3px;background:#00bf96;display:inline-block;overflow:hidden;margin:5px;line-height:1em}[data-element_type="eae-evergreen-timer.skin3"] #timer span:nth-child(1){background:khaki}[data-element_type="eae-evergreen-timer.skin3"] #timer span:nth-child(2){background:#cd5c5c}[data-element_type="eae-evergreen-timer.skin3"] #timer span:nth-child(3){background:#5f9ea0}[data-element_type="eae-evergreen-timer.skin3"] #timer span:nth-child(4){background:#6495ed}[data-element_type="eae-evergreen-timer.skin3"] .fade{animation:flip .7s ease forwards}@keyframes flip{0%{transform:rotateY(0) scaleY(1.1);opacity:.5}50%{transform:rotateY(180deg) scaleY(1.3);opacity:0}100%{transform:rotateY(0);opacity:1}}@media screen and (max-width:767px){[data-element_type="eae-evergreen-timer.skin3"] #timer span{font-size:22px}[data-element_type="eae-evergreen-timer.skin2"] .flip-clock-divider .flip-clock-label{top:-1.5em;right:-42px}[data-element_type="eae-evergreen-timer.skin2"] .flip-clock-divider.minutes .flip-clock-label{right:-48px}[data-element_type="eae-evergreen-timer.skin2"] .flip-clock-divider.seconds .flip-clock-label{right:-51px}}[data-element_type="eae-evergreen-timer.skin4"] .eae-evergreen-wrapper{width:100%}[data-element_type="eae-evergreen-timer.skin4"] .container{margin:0 auto}[data-element_type="eae-evergreen-timer.skin4"] .special{position:relative;width:840px;height:47px}[data-element_type="eae-evergreen-timer.skin4"] #counter{position:absolute;z-index:4000}[data-element_type="eae-evergreen-timer.skin4"] .digit-separator{position:relative;float:left;width:17px;height:44px;overflow:hidden;background-image:url(../digit-sep-svg.svg);background-repeat:no-repeat;background-position:0 0;background-color:#4054b2}[data-element_type="eae-evergreen-timer.skin4"] .digit{background-image:url(../digits-svg-alpha.svg);background-color:#4054b2}.eae-ct-wrapper *{box-sizing:border-box;margin:0;outline:0}article.eae-ct-wrapper{width:100%;max-width:1000px;margin:0 auto;position:relative}.eae-ct-wrapper tbody tr.eae-ct-header td,.eae-ct-wrapper th{position:relative}.eae-ct-wrapper ul{display:none;top:0;z-index:10;padding-bottom:14px}.eae-ct-wrapper li{list-style:none;flex:1;position:relative}.eae-ct-wrapper li:hover{cursor:pointer}.eae-ct-wrapper .eae-ct-heading{width:100%;padding:10px;background:#fff;font-size:20px;font-weight:700;height:60px;color:#999;text-align:center}.eae-ct-wrapper li.eae-ct-heading .eae-ct-heading-inner{position:absolute;align-self:center;top:50%;left:50%;transform:translate(-50%,-50%);width:100%}.eae-ct-wrapper li.eae-ct-heading.active{background:#f5f5f5}.eae-ct-wrapper table{border-collapse:collapse;table-layout:fixed;width:100%}.eae-ct-wrapper th{background:#f5f5f5;display:none}.eae-ct-wrapper td,.eae-ct-wrapper th{height:53px;vertical-align:middle}.eae-ct-wrapper table{border:none}.eae-ct-wrapper table td,.eae-ct-wrapper table th{border:none}.eae-ct-wrapper table tr td:first-child,.eae-ct-wrapper table tr td:last-child,.eae-ct-wrapper td,.eae-ct-wrapper th{padding:10px;empty-cells:show}.eae-ct-wrapper td,.eae-ct-wrapper th{text-align:center}.eae-ct-wrapper td+td,.eae-ct-wrapper th+th{text-align:center}.eae-ct-wrapper tr:first-child{background:0 0!important}.eae-ct-wrapper ul li:nth-child(1){display:table-cell}.eae-ct-wrapper tr td:nth-child(2){display:table-cell}.eae-ct-wrapper td:nth-child(1){display:table-cell}.eae-ct-wrapper td{display:none}.eae-ct-wrapper .sep{background:#f5f5f5;font-weight:700}.eae-ct-price-wrapper{display:flex;justify-content:center}.eae-ct-tt-type-icon .eae-ct-feature .tooltip{float:right}.eae-ct-wrapper .tooltiptext::before{content:'';border-width:5px 5px 0 5px;border-color:#fff;border-left-color:transparent;border-right-color:transparent;border-bottom-color:transparent;bottom:-10px;width:0;height:0;border-style:solid;position:absolute;margin:5px;left:42%}.eae-ct-wrapper .eae-ct-price{font-size:28px;font-weight:700;line-height:1em}.eae-ct-wrapper .eae-ct-currency{align-self:flex-start;margin-right:3px}.eae-ct-wrapper .eae-ct-fractional-price{align-self:flex-start;margin-left:3px}.eae-ct-wrapper .eae-ct-duration{align-self:flex-start}.eae-ct-wrapper .eae-ct-original-price{margin-right:5px;text-decoration:line-through;align-self:flex-end}.eae-ct-wrapper .tick{font-size:18px;color:#2ca01c}.feature-heading-blank.eae-ct-wrapper .hide{border:unset!important;background:unset!important}.eae-ct-wrapper .hide.eae-ct-hide.eae-fbox-heading{border:0 solid #000}.eae-ct-ribbons-yes .eae-ct-ribbons-wrapper{position:absolute;top:0;width:100px;overflow:hidden;height:100px;z-index:998;padding:8px 12px}.eae-ct-ribbons-h-top.eae-ct-ribbons-yes .eae-ct-ribbons-wrapper{position:absolute;top:0;width:100%;overflow:hidden;height:50px;z-index:999;padding:8px 12px}.eae-ct-ribbons-h-top.eae-ct-ribbons-yes .eae-ct-ribbons-wrapper-top{background-color:rgba(63,195,135,.8);color:#fff;transform:translateY(-100%);position:absolute;width:100%;top:0;left:0}.eae-ct-ribbons-h-left.eae-ct-ribbons-yes .eae-ct-ribbons-wrapper{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);left:0;right:auto}.eae-ct-ribbons-h-right.eae-ct-ribbons-yes .eae-ct-ribbons-wrapper{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(90deg);left:auto;right:0}.eae-ct-ribbons-yes .eae-ct-ribbons-wrapper span.eae-ct-ribbons-inner{position:absolute;text-align:center;left:0;top:0;width:200%;-webkit-transform:translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);-ms-transform:translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);transform:translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);margin-top:35px;font-size:13px;line-height:2;font-weight:800;text-transform:uppercase;background:rgba(63,195,135,.8);padding:8px 12px;color:#fff}.eae-ct-wrapper .tooltip{position:relative;display:inline-block}.eae-ct-wrapper .tooltip .tooltiptext{visibility:hidden;min-width:120px;background-color:#000;color:#fff;text-align:center;border-radius:6px;padding:5px 0;position:absolute;z-index:1;bottom:120%;left:50%;margin-left:-60px}.eae-ct-wrapper .tooltip:hover .tooltiptext{visibility:visible}.eae-ct-heading-tooltip{text-decoration-line:underline;text-decoration-style:dotted}.eae-ct-btn{padding:10px 15px 10px 15px;color:#fff;display:inline-block;line-height:1em}.eae-ct-btn:hover{color:#fff}.eae-ct-wrapper i.fa.fa-check,.eae-ct-wrapper i.fas.fa-check{color:#38f146}.eae-ct-wrapper i.fa.fa-close,.eae-ct-wrapper i.fas.fa-times{color:red}.button-heading-blank.eae-ct-wrapper tr:last-child td:first-child{background:0 0!important;border:none!important}.eae-ct-wrapper tr:last-child{background:0 0!important}tbody tr:nth-child(2){background:0 0!important}@media (min-width:767px){.eae-ct-wrapper .eae-ct-header,.eae-ct-wrapper td{width:330px}.eae-ct-wrapper td+td,.eae-ct-wrapper th+th{width:auto}}.eae-tab-format-all .eae-ct-wrapper ul{display:flex}.hide.eae-ct-hide{display:table-cell}@media (min-width:1023px){.eae-tab-format-all tbody tr.eae-ct-header{display:none}.eae-tab-format-mobile .eae-ct-wrapper td,.eae-tab-format-mobile .eae-ct-wrapper th,.eae-tab-format-tab-mob .eae-ct-wrapper td,.eae-tab-format-tab-mob .eae-ct-wrapper th{display:table-cell!important}.eae-tab-format-all .hide.eae-ct-hide{display:table-cell}.eae-tab-format-mobile .hide.eae-ct-hide,.eae-tab-format-tab-mob .hide.eae-ct-hide{display:none!important}}@media (max-width:1023px){.eae-tab-format-tab-mob .eae-ct-wrapper ul{display:flex}.eae-tab-format-all tbody tr.eae-ct-header,.eae-tab-format-tab-mob tbody tr.eae-ct-header{display:none}.eae-tab-format-all .hide.eae-ct-hide{display:table-cell}.eae-tab-format-tab-mob .hide.eae-ct-hide{display:table-cell}}@media (max-width:1023px) and (min-width:768px){.eae-tab-format-mobile .eae-ct-wrapper td,.eae-tab-format-mobile .eae-ct-wrapper th{display:table-cell!important}.eae-tab-format-all tbody tr.eae-ct-header,.eae-tab-format-tab-mob tbody tr.eae-ct-header{display:none}.eae-tab-format-tab-mob .hide.eae-ct-hide{display:table-cell}}@media (max-width:767px){.eae-tab-format-mobile .eae-ct-wrapper ul{display:flex}.eae-tab-format-mobile tbody tr.eae-ct-header{display:none}.eae-tab-format-all tbody tr.eae-ct-header,.eae-tab-format-mobile tbody tr.eae-ct-header{display:none}.eae-tab-format-mobile .hide.eae-ct-hide{display:table-cell}}.eae-progress-bar-wrapper{display:flex;flex-direction:column;align-items:flex-start;margin:15px 0}.eae-progress-bar-wrapper.eae-progress-bar{width:100%;position:relative;box-sizing:border-box}.eae-pb-bar,.eae-pb-bar-inner,.eae-pb-bar-skill,.eae-pb-bar-value{box-sizing:border-box}.eae-pb-bar{position:relative;height:100%;width:100%;overflow:hidden}.eae-pb-bar--no-overflow{overflow:visible}.eae-pb-bar-inner{position:absolute;top:0;left:0;height:100%;-webkit-transform:scaleX(0);transform:scaleX(0);-webkit-transform-origin:left center;transform-origin:left center}.eae-pb-bar-inner.js-animated{transition-property:all;transition-duration:1.5s;transition-timing-function:cubic-bezier(.1,1.14,.31,1.06);transition-delay:1.5s;-webkit-transform:scaleX(1);transform:scaleX(1)}.eae-pb-bar-skill,.eae-pb-bar-value{font-size:14px;letter-spacing:1px}.eae-pb-bar-value--aligned-value{-webkit-transform:translateX(-50%);transform:translateX(-50%)}.eae-progress-bar-skin1{height:20px;padding:4px;border:1px solid #ddd;border-radius:20px}.eae-pb-bar-skin1{border-radius:20px}.eae-pb-bar-inner-skin1{background-color:#00bfb3;background-size:200%;background-position:0 0;border-radius:20px}.eae-pb-bar-skill-skin1{position:absolute;bottom:20px;left:0;opacity:0}.eae-pb-bar-skill-skin1.js-animated{transition-property:all;transition-duration:.5s;transition-timing-function:linear;transition-delay:.5s;left:0;opacity:1}.eae-pb-bar-value-skin1{position:absolute;bottom:20px;opacity:1;right:0}.eae-pb-bar-value-skin1.js-animated{transition-property:all;transition-duration:.5s;transition-timing-function:linear;transition-delay:.5s;right:0;opacity:1}.eae-progress-bar-skin2{height:15px;box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.12),0 1px 5px 0 rgba(0,0,0,.2);border-radius:3px}@-webkit-keyframes progress-2-bg-animation{0%{background-position:0 0,0 0}100%{background-position:0 0,42px 0}}@keyframes progress-2-bg-animation{0%{background-position:0 0,0 0}100%{background-position:0 0,42px 0}}.eae-pb-bar-inner-skin2{background-image:linear-gradient(to top,rgba(255,255,255,.15),rgba(0,0,0,.2)),linear-gradient(135deg,#5eeb5b,#5eeb5b 33%,#358600 33%,#358600 66%,#5eeb5b 66%);background-size:100% 100%,42px 100%;background-position:0 0,0 0;border-radius:3px}.eae-pb-bar-inner-skin2.js-animated{-webkit-animation:progress-2-bg-animation 1.5s linear 0s infinite;animation:progress-2-bg-animation 1.5s linear 0s infinite}.eae-pb-bar-skill-skin2{position:absolute;left:0;opacity:0}.eae-pb-bar-skill-skin2.js-animated{transition-property:all;transition-duration:.5s;transition-timing-function:linear;transition-delay:.5s;bottom:20px;opacity:1}.eae-pb-bar-value-skin2{position:absolute;right:0;opacity:0}.eae-pb-bar-value-skin2.js-animated{transition-property:all;transition-duration:.5s;transition-timing-function:linear;transition-delay:.5s;bottom:20px;opacity:1}.eae-progress-bar-skin3{height:5px;background-color:#efefef}.eae-pb-bar-inner-skin3,.eae-pb-bar-value-skin3{background-color:#f40076}.eae-pb-bar-inner:after,.eae-pb-bar-value-skin3:after{border-top-color:#f40076}.eae-pb-bar-skill-skin3{position:absolute;bottom:10px;left:-10px;opacity:0}.eae-pb-bar-skill-skin3.js-animated{transition-property:all;transition-duration:.5s;transition-timing-function:linear;transition-delay:.5s;left:0;opacity:1}.eae-pb-bar-value-skin3{position:absolute;display:inline-block;padding:0 8px;font-size:14px;color:#fff;opacity:0}.eae-pb-bar-value-skin3:after{position:absolute;left:50%;bottom:-10px;display:block;width:0;height:0;content:'';-webkit-transform:translateX(-50%);transform:translateX(-50%);border-width:5px;border-style:solid;border-color:#f40076 transparent transparent transparent}.eae-pb-bar-inner-skin3.js-animated{transition-property:all;transition-duration:1.5s;transition-timing-function:cubic-bezier(.1,1.14,.31,1.06);transition-delay:1.5s;-webkit-transform:scaleX(1);transform:scaleX(1)}.eae-pb-bar-value-skin3.js-animated{transition-property:all;transition-duration:1.5s;transition-timing-function:cubic-bezier(.1,1.14,.31,1.06);transition-delay:2s;bottom:14px;opacity:1}.eae-progress-bar-skin4{height:3px;background-color:#efefef}.eae-pb-bar-inner-skin4{background-color:#000}.eae-pb-bar-inner-skin4:after{position:absolute;top:50%;right:0;display:block;width:8px;height:8px;content:'';-webkit-transform:translateY(-50%);transform:translateY(-50%);background-color:#000;border-radius:50%}.eae-pb-bar-value-skin4{position:absolute;bottom:2px;font-size:14px;opacity:0}.eae-pb-bar-value-skin4.js-animated{transition-property:all;transition-duration:1.5s;transition-timing-function:linear;transition-delay:1.5s;opacity:1}.eae-pb-bar-skill-skin4{position:absolute;bottom:2px;left:-20px;opacity:0}.eae-pb-bar-skill-skin4.js-animated{transition-property:all;transition-duration:.5s;transition-timing-function:linear;transition-delay:.5s;left:0;opacity:1}.eae-progress-bar-skin5{height:30px;background-color:#f7f7f7}.eae-pb-bar-inner-skin5{background-color:#57b8ff}.eae-pb-bar-skill-skin5{position:absolute;top:50%;left:10px;color:#fff;-webkit-transform:translateY(-50%);transform:translateY(-50%);opacity:0}.eae-pb-bar-skill-skin5.js-animated{transition-property:all;transition-duration:.5s;transition-timing-function:linear;transition-delay:.5s;opacity:1}.eae-pb-bar-value-skin5{position:absolute;top:50%;color:#fff;-webkit-transform:translateX(-100%) translateX(-10px) translateY(-50%);transform:translateX(-100%) translateX(-10px) translateY(-50%);opacity:0;z-index:10}.eae-pb-bar-value-skin5.js-animated{transition-property:all;transition-duration:1.5s;transition-timing-function:linear;transition-delay:1.5s;opacity:1}.eae-dual-button-wrapper .eae-button-1-wrapper,.eae-dual-button-wrapper .eae-button-2-wrapper{overflow:hidden}.eae-dual-button-wrapper.button-style-horizontal{display:flex;flex-direction:row;position:relative}.eae-dual-button-main-wrapper{display:flex;flex-direction:row;justify-content:center}.eae-dual-button-wrapper a{min-width:0}.eae-dual-button-wrapper.button-style-vertical{display:inline-flex;flex-direction:column;position:relative}.eae-button-1.icon-before,.eae-button-2.icon-before{display:flex;flex-direction:row}.eae-button-1.icon-after,.eae-button-2.icon-after{display:flex;flex-direction:row-reverse}.eae-button-1-wrapper .eae-button-1,.eae-button-2-wrapper .eae-button-2{color:#000;align-items:center}.eae-button-1-wrapper:hover .eae-button-1,.eae-button-2-wrapper:hover .eae-button-2{color:#000}.eae-dual-button-wrapper.button-style-vertical .eae-button-1.icon-after,.eae-dual-button-wrapper.button-style-vertical .eae-button-1.icon-before,.eae-dual-button-wrapper.button-style-vertical .eae-button-2.icon-after,.eae-dual-button-wrapper.button-style-vertical .eae-button-2.icon-before{justify-content:center}.eae-button-1.icon-up,.eae-button-2.icon-up{display:flex;flex-direction:column;text-align:center}.eae-button-1.icon-down,.eae-button-2.icon-down{display:flex;flex-direction:column-reverse;text-align:center}.eae-button-1-wrapper{background:#ffb6c1;display:flex;justify-content:center;width:100%;line-height:1}.eae-button-2-wrapper{background:orange;display:flex;justify-content:center;width:100%;line-height:1}.eae-button-1.icon-up .icon-wrapper,.eae-button-2.icon-down .icon-wrapper,.eae-button-2.icon-up .icon-wrapper{text-align:center}.eae-button-1.icon-up .eae-button-text,.eae-button-2.icon-down .eae-button-text,.eae-button-2.icon-up .eae-button-text{text-align:center}.eae-button-1.icon-before i,.eae-button-2.icon-after i,.eae-button-2.icon-before i{align-self:center;margin:0 10px 0 0}.eae-button-1.icon-after i,.eae-button-2.icon-after i{align-self:center;margin:0 0 0 10px}.eae-button-1.icon-down i,.eae-button-1.icon-up i,.eae-button-2.icon-down i,.eae-button-2.icon-up i{align-self:center;margin:5px 0}.eae-dual-button-wrapper.button-style-horizontal .eae-button-1-wrapper,.eae-dual-button-wrapper.button-style-horizontal .eae-button-2-wrapper{padding:12px 30px}.eae-dual-button-wrapper.button-style-vertical .eae-button-1-wrapper,.eae-dual-button-wrapper.button-style-vertical .eae-button-2-wrapper{padding:20px 30px}.eae-button1,.eae-button2{position:relative;display:flex}.eae-dual-button-wrapper.button-style-horizontal .eae-button1,.eae-dual-button-wrapper.button-style-horizontal .eae-button2{min-width:150px}.eae-dual-button-wrapper.button-style-vertical .eae-button1{display:flex;flex-direction:column}.eae-button-separator-wrapper .eae-button-separator{width:40px;height:40px;line-height:40px;border-radius:50%;z-index:1;box-shadow:0 0 0 6px rgba(255,255,255,.2);background:#fafaf8;color:#444;text-transform:uppercase;text-align:center;vertical-align:middle;font-weight:400;font-size:14px;position:absolute;transform:translateY(-50%)}.eae-button-separator span{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.eae-sweep-right{vertical-align:middle;-webkit-transform:perspective(1px) translateZ(0);transform:perspective(1px) translateZ(0);box-shadow:0 0 1px transparent;position:relative;-webkit-transition-property:color;transition-property:color;-webkit-transition-duration:.3s;transition-duration:.3s}.eae-sweep-right:before{content:"";position:absolute;z-index:-1;top:0;left:0;right:0;bottom:0;background:#2098d1;-webkit-transform:scaleX(0);transform:scaleX(0);-webkit-transform-origin:0 50%;transform-origin:0 50%;-webkit-transition-property:transform;transition-property:transform;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out}.eae-sweep-right:active,.eae-sweep-right:focus,.eae-sweep-right:hover{color:#fff}.eae-sweep-right:active:before,.eae-sweep-right:focus:before,.eae-sweep-right:hover:before{-webkit-transform:scaleX(1);transform:scaleX(1)}.eae-sweep-left{vertical-align:middle;-webkit-transform:perspective(1px) translateZ(0);transform:perspective(1px) translateZ(0);box-shadow:0 0 1px transparent;position:relative;-webkit-transition-property:color;transition-property:color;-webkit-transition-duration:.3s;transition-duration:.3s}.eae-sweep-left:before{content:"";position:absolute;z-index:-1;top:0;left:0;right:0;bottom:0;background:#2098d1;-webkit-transform:scaleX(0);transform:scaleX(0);-webkit-transform-origin:100% 50%;transform-origin:100% 50%;-webkit-transition-property:transform;transition-property:transform;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out}.eae-sweep-left:active,.eae-sweep-left:focus,.eae-sweep-left:hover{color:#fff}.eae-sweep-left:active:before,.eae-sweep-left:focus:before,.eae-sweep-left:hover:before{-webkit-transform:scaleX(1);transform:scaleX(1)}.eae-sweep-bottom{vertical-align:middle;-webkit-transform:perspective(1px) translateZ(0);transform:perspective(1px) translateZ(0);box-shadow:0 0 1px transparent;position:relative;-webkit-transition-property:color;transition-property:color;-webkit-transition-duration:.3s;transition-duration:.3s}.eae-sweep-bottom:before{content:"";position:absolute;z-index:-1;top:0;left:0;right:0;bottom:0;background:#2098d1;-webkit-transform:scaleY(0);transform:scaleY(0);-webkit-transform-origin:50% 0;transform-origin:50% 0;-webkit-transition-property:transform;transition-property:transform;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out}.eae-sweep-bottom:active,.eae-sweep-bottom:focus,.eae-sweep-bottom:hover{color:#fff}.eae-sweep-bottom:active:before,.eae-sweep-bottom:focus:before,.eae-sweep-bottom:hover:before{-webkit-transform:scaleY(1);transform:scaleY(1)}.eae-sweep-top{vertical-align:middle;-webkit-transform:perspective(1px) translateZ(0);transform:perspective(1px) translateZ(0);box-shadow:0 0 1px transparent;position:relative;-webkit-transition-property:color;transition-property:color;-webkit-transition-duration:.3s;transition-duration:.3s}.eae-sweep-top:before{content:"";position:absolute;z-index:-1;top:0;left:0;right:0;bottom:0;background:#2098d1;-webkit-transform:scaleY(0);transform:scaleY(0);-webkit-transform-origin:50% 100%;transform-origin:50% 100%;-webkit-transition-property:transform;transition-property:transform;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out}.eae-sweep-top:active,.eae-sweep-top:focus,.eae-sweep-top:hover{color:#fff}.eae-sweep-top:active:before,.eae-sweep-top:focus:before,.eae-sweep-top:hover:before{-webkit-transform:scaleY(1);transform:scaleY(1)}.eae-bounce-right{vertical-align:middle;-webkit-transform:perspective(1px) translateZ(0);transform:perspective(1px) translateZ(0);box-shadow:0 0 1px transparent;position:relative;-webkit-transition-property:color;transition-property:color;-webkit-transition-duration:.5s;transition-duration:.5s}.eae-bounce-right:before{content:"";position:absolute;z-index:-1;top:0;left:0;right:0;bottom:0;background:#2098d1;-webkit-transform:scaleX(0);transform:scaleX(0);-webkit-transform-origin:0 50%;transform-origin:0 50%;-webkit-transition-property:transform;transition-property:transform;-webkit-transition-duration:.5s;transition-duration:.5s;-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out}.eae-bounce-right:active,.eae-bounce-right:focus,.eae-bounce-right:hover{color:#fff}.eae-bounce-right:active:before,.eae-bounce-right:focus:before,.eae-bounce-right:hover:before{-webkit-transform:scaleX(1);transform:scaleX(1);-webkit-transition-timing-function:cubic-bezier(.52,1.64,.37,.66);transition-timing-function:cubic-bezier(.52,1.64,.37,.66)}.eae-bounce-left{vertical-align:middle;-webkit-transform:perspective(1px) translateZ(0);transform:perspective(1px) translateZ(0);box-shadow:0 0 1px transparent;position:relative;-webkit-transition-property:color;transition-property:color;-webkit-transition-duration:.5s;transition-duration:.5s}.eae-bounce-left:before{content:"";position:absolute;z-index:-1;top:0;left:0;right:0;bottom:0;background:#2098d1;-webkit-transform:scaleX(0);transform:scaleX(0);-webkit-transform-origin:100% 50%;transform-origin:100% 50%;-webkit-transition-property:transform;transition-property:transform;-webkit-transition-duration:.5s;transition-duration:.5s;-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out}.eae-bounce-left:active,.eae-bounce-left:focus,.eae-bounce-left:hover{color:#fff}.eae-bounce-left:active:before,.eae-bounce-left:focus:before,.eae-bounce-left:hover:before{-webkit-transform:scaleX(1);transform:scaleX(1);-webkit-transition-timing-function:cubic-bezier(.52,1.64,.37,.66);transition-timing-function:cubic-bezier(.52,1.64,.37,.66)}.eae-bounce-bottom{vertical-align:middle;-webkit-transform:perspective(1px) translateZ(0);transform:perspective(1px) translateZ(0);box-shadow:0 0 1px transparent;position:relative;-webkit-transition-property:color;transition-property:color;-webkit-transition-duration:.5s;transition-duration:.5s}.eae-bounce-bottom:before{content:"";position:absolute;z-index:-1;top:0;left:0;right:0;bottom:0;background:#2098d1;-webkit-transform:scaleY(0);transform:scaleY(0);-webkit-transform-origin:50% 0;transform-origin:50% 0;-webkit-transition-property:transform;transition-property:transform;-webkit-transition-duration:.5s;transition-duration:.5s;-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out}.eae-bounce-bottom:active,.eae-bounce-bottom:focus,.eae-bounce-bottom:hover{color:#fff}.eae-bounce-bottom:active:before,.eae-bounce-bottom:focus:before,.eae-bounce-bottom:hover:before{-webkit-transform:scaleY(1);transform:scaleY(1);-webkit-transition-timing-function:cubic-bezier(.52,1.64,.37,.66);transition-timing-function:cubic-bezier(.52,1.64,.37,.66)}.eae-bounce-top{vertical-align:middle;-webkit-transform:perspective(1px) translateZ(0);transform:perspective(1px) translateZ(0);box-shadow:0 0 1px transparent;position:relative;-webkit-transition-property:color;transition-property:color;-webkit-transition-duration:.5s;transition-duration:.5s}.eae-bounce-top:before{content:"";position:absolute;z-index:-1;top:0;left:0;right:0;bottom:0;background:#2098d1;-webkit-transform:scaleY(0);transform:scaleY(0);-webkit-transform-origin:50% 100%;transform-origin:50% 100%;-webkit-transition-property:transform;transition-property:transform;-webkit-transition-duration:.5s;transition-duration:.5s;-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out}.eae-bounce-top:active,.eae-bounce-top:focus,.eae-bounce-top:hover{color:#fff}.eae-bounce-top:active:before,.eae-bounce-top:focus:before,.eae-bounce-top:hover:before{-webkit-transform:scaleY(1);transform:scaleY(1);-webkit-transition-timing-function:cubic-bezier(.52,1.64,.37,.66);transition-timing-function:cubic-bezier(.52,1.64,.37,.66)}.eae-markers .marker{display:none}.eae-markers p{margin-bottom:0}.eae-fg-wrapper{display:flex;flex-direction:column;overflow:hidden}.eae-gallery-filter{display:flex;flex-direction:row;justify-content:center;flex-wrap:wrap}.eae-filter-label{padding:5px 10px;background-color:#a0ce4e;color:#fff;margin:0 3px 0 3px}.eae-filter-label.current{background-color:#73b9dc}.eae-fg-image{display:flex;flex-wrap:wrap;flex-direction:row}.eae-fg-wrapper .eae-gallery-item-inner img{width:100%;height:auto;display:block!important;transition:all .5s ease;-webkit-transition:all .5s ease}.eae-gallery-item{height:auto}.eae-gallery-filter a{color:#fff;text-decoration:none}.eae-gallery-filter a.current{font-weight:700}.eae-gallery-item-inner{position:relative;overflow:hidden}.eae-overlay-always .eae-gallery-item .eae-grid-overlay{display:block}.eae-overlay-hover .eae-gallery-item-inner:hover .eae-grid-overlay{display:block}.eae-overlay-hide-on-hover .eae-gallery-item-inner:hover .eae-grid-overlay{display:none}.eae-overlay-hide-on-hover .eae-grid-overlay{display:block}.eae-grid-overlay{position:absolute;top:0;left:0;display:none;z-index:99;background:rgba(0,0,0,.5);height:100%;width:100%}.eae-grid-overlay-inner{display:block;position:relative;top:50%;left:50%;transform:translate(-50%,-50%);text-align:center}.eae-fg-wrapper .eae-icon-wrapper{display:flex;justify-content:center}.eae-overlay-caption{display:block;line-height:1em;margin-top:15px;color:#73b9dc}.eae-overlay-icon{line-height:1em;padding:.5em;display:inline-block}.eae-overlay-icon svg{height:auto}.eae-icon-view-framed .eae-overlay-icon{padding:.5em;color:#73b9dc;border:3px solid #73b9dc;background-color:transparent}.eae-icon-view-stacked .eae-overlay-icon{padding:.5em;color:#fff;background-color:#818a91}.eae-hover-direction-effect .eae-grid-overlay{position:absolute;z-index:99;background:rgba(0,0,0,.5);height:100%;width:100%}.eae-fg-wrapper.eae-image-ratio-yes .eae-gallery-item-inner .eae-fg-img-wrapper{position:relative;top:0;overflow:hidden;left:0;right:0;border:0}.eae-fg-wrapper.eae-image-ratio-yes .eae-gallery-item-inner .eae-fg-img-wrapper img{height:100%;width:100%;display:block;position:absolute;top:0;left:0;object-fit:cover}.wts-eae-ribbons-badges-wrapper{display:none}.wts-eae-enable-ribbons-badges-yes .elementor-column-wrap>.wts-eae-ribbons-badges-wrapper{display:block}.wts-eae-enable-ribbons-badges-yes.wts-eae-badge-type-ribbon>.wts-eae-ribbons-badges-wrapper{position:absolute;top:0;left:auto;right:0;-ms-transform:rotate(90deg);width:150px;overflow:hidden;height:150px;z-index:999;padding:8px 12px}.wts-eae-badge-h-left.wts-eae-enable-ribbons-badges-yes.wts-eae-badge-type-ribbon>.wts-eae-ribbons-badges-wrapper{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);left:0;right:auto}.wts-eae-badge-h-right.wts-eae-enable-ribbons-badges-yes.wts-eae-badge-type-ribbon>.wts-eae-ribbons-badges-wrapper{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(90deg);left:auto;right:0}.wts-eae-enable-ribbons-badges-yes.wts-eae-badge-type-ribbon>.wts-eae-ribbons-badges-wrapper span.wts-eae-ribbons-badges-inner{position:absolute;text-align:center;left:0;top:0;width:200%;-webkit-transform:translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);-ms-transform:translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);transform:translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);margin-top:35px;font-size:13px;line-height:2;font-weight:800;text-transform:uppercase;background:rgba(63,195,135,.8);padding:8px 12px}.wts-eae-enable-ribbons-badges-yes.wts-eae-badge-type-badge>.wts-eae-ribbons-badges-wrapper span.wts-eae-ribbons-badges-inner{min-height:3.236em;min-width:3.236em;padding:0;font-size:1em;font-weight:700;position:absolute;text-align:center;line-height:3.236;top:-.5em;left:-.5em;margin:0;border-radius:100%;background-color:#77a464;color:#fff;font-size:.857em;z-index:9}.wts-eae-badge-h-left.wts-eae-badge-v-bottom.wts-eae-enable-ribbons-badges-yes>.wts-eae-ribbons-badges-wrapper span.wts-eae-ribbons-badges-inner{left:20px;right:auto;top:auto;bottom:20px}.wts-eae-badge-h-left.wts-eae-badge-v-top.wts-eae-enable-ribbons-badges-yes>.wts-eae-ribbons-badges-wrapper span.wts-eae-ribbons-badges-inner{left:20px;right:auto;top:20px;bottom:auto}.wts-eae-badge-h-right.wts-eae-badge-v-bottom.wts-eae-enable-ribbons-badges-yes>.wts-eae-ribbons-badges-wrapper span.wts-eae-ribbons-badges-inner{left:auto;right:20px;top:auto;bottom:20px}.wts-eae-badge-h-right.wts-eae-badge-v-top.wts-eae-enable-ribbons-badges-yes>.wts-eae-ribbons-badges-wrapper span.wts-eae-ribbons-badges-inner{left:auto;right:20px;top:20px;bottom:auto}.eae-flip-box-back svg,.eae-flip-box-front svg{width:25px;height:auto}.wts-eae-textseparator svg{width:25px;height:auto}.eae-img-comp-slider svg{width:22px;height:auto}.eae-popup-link svg{display:inline-block;width:1em}.eae-popup svg:focus,.eae-popup svg:hover{opacity:1;cursor:pointer}.eae-popup svg:active{top:1px}.eae-popup svg.eae-close{width:28px;height:28px;line-height:1em;text-decoration:none;text-align:center;opacity:1;background-color:#fff}.eae-dual-button-wrapper svg{width:1em;height:auto;display:block}eae-button-separator i{position:relative;display:block}.eae-button-1.icon-before svg,.eae-button-2.icon-after svg,.eae-button-2.icon-before svg{align-self:center;margin:0 10px 0 0}.eae-button-1.icon-after svg,.eae-button-2.icon-after svg{align-self:center;margin:0 0 0 10px}.eae-button-1.icon-down svg,.eae-button-1.icon-up svg,.eae-button-2.icon-down svg,.eae-button-2.icon-up svg{align-self:center;margin:5px 0}.eae-pt-button-wrapper a svg{width:1em}.eae-pt-action-button .eae-pt-align-icon-left{float:left}.eae-pt-action-button .eae-pt-align-icon-right{float:right}.eae-icon-wrap svg{width:20px;height:auto;font-size:20px;display:block}.eae-info-circle .eae-icon-wrap svg{width:20px;height:auto;font-size:20px}.eae-icon-view-stacked svg{fill:#fff}.ae-link-yes{cursor:pointer}
|
assets/js/eae.js
CHANGED
@@ -1942,7 +1942,6 @@ var isEditMode = false;
|
|
1942 |
var CompareTable = function ($scope, $) {
|
1943 |
$($scope.find(".eae-ct-heading")[0]).addClass("active");
|
1944 |
$scope.find("ul").on("click", "li", function () {
|
1945 |
-
|
1946 |
var pos = $(this).index() + 2;
|
1947 |
$scope.find("tr").find('td:not(:eq(0))').hide();
|
1948 |
$scope.find('td:nth-child(' + pos + ')').css('display', 'table-cell');
|
@@ -1952,6 +1951,41 @@ var isEditMode = false;
|
|
1952 |
});
|
1953 |
|
1954 |
// Initialize the media query
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1955 |
var mediaQuery = window.matchMedia('(min-width: 767px)');
|
1956 |
|
1957 |
// Add a listen event
|
1942 |
var CompareTable = function ($scope, $) {
|
1943 |
$($scope.find(".eae-ct-heading")[0]).addClass("active");
|
1944 |
$scope.find("ul").on("click", "li", function () {
|
|
|
1945 |
var pos = $(this).index() + 2;
|
1946 |
$scope.find("tr").find('td:not(:eq(0))').hide();
|
1947 |
$scope.find('td:nth-child(' + pos + ')').css('display', 'table-cell');
|
1951 |
});
|
1952 |
|
1953 |
// Initialize the media query
|
1954 |
+
// if($($scope.hasClass('eae-tab-format-mobile')) || $($scope.hasClass('eae-tab-format-tab-mob')) || $($scope.hasClass('eae-tab-format-all')) ){
|
1955 |
+
// //console.log($(window).width());
|
1956 |
+
// var feature_box_header = false;
|
1957 |
+
// var feature_box_header_val= null;
|
1958 |
+
// //console.log($scope.find("tbody .eae-ct-header .eae-fbox-heading"));
|
1959 |
+
// if($scope.find("tbody .eae-ct-header .eae-fbox-heading").length > 0){
|
1960 |
+
// feature_box_header = true;
|
1961 |
+
// feature_box_header_val = $scope.find("tbody .eae-ct-header .eae-fbox-heading").text();
|
1962 |
+
// }
|
1963 |
+
//
|
1964 |
+
// if($scope.hasClass('eae-tab-format-all') && feature_box_header){
|
1965 |
+
// var p_row = $scope.find("tbody tr:eq(1)");
|
1966 |
+
// p_row.prepend('<td class="eae-fbox-heading">' +feature_box_header_val +'</td>');
|
1967 |
+
// }
|
1968 |
+
//
|
1969 |
+
// if($(window).width() >= '767' && $(window).width() <= '1023'){
|
1970 |
+
// // if(feature_box_header){
|
1971 |
+
// // $scope.find("tbody .eae-ct-header .eae-fbox-heading").css('display' , 'none !important');
|
1972 |
+
// // }
|
1973 |
+
// if($scope.hasClass('eae-tab-format-tab-mob') && feature_box_header){
|
1974 |
+
// var p_row = $scope.find("tbody tr:eq(1)");
|
1975 |
+
// p_row.prepend('<td class="eae-fbox-heading">' +feature_box_header_val +'</td>');
|
1976 |
+
// }
|
1977 |
+
// }
|
1978 |
+
// if($(window).width() <= '767'){
|
1979 |
+
// // if(feature_box_header){
|
1980 |
+
// // $scope.find("tbody .eae-ct-header .eae-fbox-heading").css('display' , 'none !important');
|
1981 |
+
// // }
|
1982 |
+
// if($scope.hasClass('eae-tab-format-mobile') && feature_box_header){
|
1983 |
+
// var p_row = $scope.find("tbody tr:eq(1)");
|
1984 |
+
// p_row.prepend('<td class="eae-fbox-heading">' +feature_box_header_val +'</td>');
|
1985 |
+
// }
|
1986 |
+
// }
|
1987 |
+
//
|
1988 |
+
// }
|
1989 |
var mediaQuery = window.matchMedia('(min-width: 767px)');
|
1990 |
|
1991 |
// Add a listen event
|
elementor-addon-elements.php
CHANGED
@@ -3,9 +3,9 @@
|
|
3 |
* Plugin Name: Elementor Addon Elements
|
4 |
* Description: Add new elements to Elementor page builder plugin.
|
5 |
* Plugin URI: https://www.elementoraddons.com/elements-addon-elements/
|
6 |
-
* Author:
|
7 |
-
* Version: 1.6.
|
8 |
-
* Author URI: https://
|
9 |
*
|
10 |
* Text Domain: wts-eae
|
11 |
* @package WTS_EAE
|
@@ -14,7 +14,7 @@ define( 'EAE_FILE', __FILE__ );
|
|
14 |
define( 'EAE_URL', plugins_url( '/', __FILE__ ) );
|
15 |
define( 'EAE_PATH', plugin_dir_path( __FILE__ ) );
|
16 |
define( 'EAE_SCRIPT_SUFFIX', defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min' );
|
17 |
-
define( 'EAE_VERSION', '1.6');
|
18 |
|
19 |
|
20 |
if ( ! function_exists( '_is_elementor_installed' ) ) {
|
@@ -65,5 +65,14 @@ if ( ! function_exists( 'wpv_eae' ) ) {
|
|
65 |
// Signal that SDK was initiated.
|
66 |
do_action( 'wpv_eae_loaded' );
|
67 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
68 |
|
|
|
|
|
|
|
69 |
require_once 'inc/bootstrap.php';
|
3 |
* Plugin Name: Elementor Addon Elements
|
4 |
* Description: Add new elements to Elementor page builder plugin.
|
5 |
* Plugin URI: https://www.elementoraddons.com/elements-addon-elements/
|
6 |
+
* Author: WebTechStreet
|
7 |
+
* Version: 1.6.2
|
8 |
+
* Author URI: https://webtechstreet.com/
|
9 |
*
|
10 |
* Text Domain: wts-eae
|
11 |
* @package WTS_EAE
|
14 |
define( 'EAE_URL', plugins_url( '/', __FILE__ ) );
|
15 |
define( 'EAE_PATH', plugin_dir_path( __FILE__ ) );
|
16 |
define( 'EAE_SCRIPT_SUFFIX', defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min' );
|
17 |
+
define( 'EAE_VERSION', '1.6.2');
|
18 |
|
19 |
|
20 |
if ( ! function_exists( '_is_elementor_installed' ) ) {
|
65 |
// Signal that SDK was initiated.
|
66 |
do_action( 'wpv_eae_loaded' );
|
67 |
}
|
68 |
+
/**
|
69 |
+
* Handles plugin activation actions.
|
70 |
+
*
|
71 |
+
* @since 1.0
|
72 |
+
*/
|
73 |
+
function eae_activate() {
|
74 |
|
75 |
+
\Elementor\Plugin::$instance->files_manager->clear_cache();
|
76 |
+
}
|
77 |
+
register_activation_hook( __FILE__, 'eae_activate' );
|
78 |
require_once 'inc/bootstrap.php';
|
modules/comparison-table/widgets/comparison-table.php
CHANGED
@@ -61,6 +61,16 @@ class ComparisonTable extends EAE_Widget_Base {
|
|
61 |
]
|
62 |
);
|
63 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
64 |
$this->add_control(
|
65 |
'show_tooltip',
|
66 |
[
|
@@ -735,8 +745,25 @@ class ComparisonTable extends EAE_Widget_Base {
|
|
735 |
);
|
736 |
|
737 |
$this->end_controls_section();
|
|
|
738 |
}
|
739 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
740 |
$this->start_controls_section(
|
741 |
'section_general_style',
|
742 |
[
|
@@ -772,7 +799,24 @@ class ComparisonTable extends EAE_Widget_Base {
|
|
772 |
[
|
773 |
'name' => 'table_border',
|
774 |
'label' => __( 'Border', 'wts-eae' ),
|
775 |
-
'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
776 |
'label_block' => true,
|
777 |
]
|
778 |
);
|
@@ -801,10 +845,33 @@ class ComparisonTable extends EAE_Widget_Base {
|
|
801 |
$this->add_control(
|
802 |
'feature_text_bg_color',
|
803 |
[
|
804 |
-
'label' => __( 'Background Color', 'wts-eae' ),
|
805 |
'type' => Controls_Manager::COLOR,
|
806 |
'selectors' => [
|
807 |
'{{WRAPPER}} .eae-ct-feature' => 'background-color: {{VALUE}};',
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
808 |
],
|
809 |
]
|
810 |
);
|
@@ -854,6 +921,63 @@ class ComparisonTable extends EAE_Widget_Base {
|
|
854 |
],
|
855 |
]
|
856 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
857 |
$this->add_control(
|
858 |
'tooltip_icon_heading',
|
859 |
[
|
@@ -1627,6 +1751,70 @@ class ComparisonTable extends EAE_Widget_Base {
|
|
1627 |
'tab' => Controls_Manager::TAB_STYLE,
|
1628 |
]
|
1629 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1630 |
$this->add_control(
|
1631 |
'button_color',
|
1632 |
[
|
@@ -1649,6 +1837,40 @@ class ComparisonTable extends EAE_Widget_Base {
|
|
1649 |
],
|
1650 |
]
|
1651 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1652 |
$this->add_control(
|
1653 |
'btn_clm_background_color',
|
1654 |
[
|
@@ -1732,9 +1954,16 @@ class ComparisonTable extends EAE_Widget_Base {
|
|
1732 |
|
1733 |
protected function render() {
|
1734 |
$settings = $this->get_settings_for_display();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1735 |
//echo '<pre>';print_r($settings);echo '</pre>';
|
1736 |
?>
|
1737 |
-
<article
|
1738 |
|
1739 |
<ul>
|
1740 |
<?php
|
@@ -1772,14 +2001,24 @@ class ComparisonTable extends EAE_Widget_Base {
|
|
1772 |
</ul>
|
1773 |
|
1774 |
<table>
|
1775 |
-
<
|
1776 |
-
<tr>
|
1777 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1778 |
<?php
|
1779 |
|
1780 |
for ( $i = 1; $i <= $settings['table_count']; $i ++ ) {
|
1781 |
if ( $settings[ 'table_ribbon_' . $i ] == 'yes' ) {
|
1782 |
-
echo '<
|
1783 |
if ( $settings[ 'ribbons_position_' . $i ] == 'top' ) {
|
1784 |
?>
|
1785 |
<div class="eae-ct-ribbons-wrapper-top">
|
@@ -1799,18 +2038,21 @@ class ComparisonTable extends EAE_Widget_Base {
|
|
1799 |
<?php
|
1800 |
}
|
1801 |
} else {
|
1802 |
-
echo '<
|
1803 |
}
|
1804 |
echo $settings[ 'table_title_' . $i ];
|
1805 |
-
echo '</
|
1806 |
}
|
1807 |
?>
|
1808 |
</tr>
|
1809 |
-
</thead>
|
1810 |
-
<tbody>
|
1811 |
<?php
|
1812 |
echo '<tr>';
|
1813 |
-
|
|
|
|
|
|
|
|
|
|
|
1814 |
for ( $j = 1; $j <= $settings['table_count']; $j++ ) {
|
1815 |
echo '<td class="eae-ct-plan eae-table-' . $j . '"><div class="eae-ct-price-wrapper">';
|
1816 |
|
@@ -1900,7 +2142,10 @@ class ComparisonTable extends EAE_Widget_Base {
|
|
1900 |
}
|
1901 |
echo '</tr>';
|
1902 |
}
|
1903 |
-
|
|
|
|
|
|
|
1904 |
for ( $j = 1; $j <= $settings['table_count']; $j ++ ) {
|
1905 |
$this->add_render_attribute( 'button_' . $j . '-link-attributes', 'href', $settings[ 'item_link_' . $j ]['url'] );
|
1906 |
$this->add_render_attribute( 'button_' . $j . '-link-attributes', 'class', 'eae-ct-btn' );
|
@@ -1927,8 +2172,16 @@ class ComparisonTable extends EAE_Widget_Base {
|
|
1927 |
|
1928 |
protected function _content_template() {
|
1929 |
?>
|
1930 |
-
|
1931 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1932 |
<ul>
|
1933 |
<#
|
1934 |
for ( var i = 1; i <= settings.table_count; i++ ) {
|
@@ -1976,9 +2229,21 @@ class ComparisonTable extends EAE_Widget_Base {
|
|
1976 |
#>
|
1977 |
</ul>
|
1978 |
<table>
|
1979 |
-
<
|
1980 |
-
<tr>
|
1981 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1982 |
<#
|
1983 |
for ( var i = 1; i <= settings.table_count; i++ ) {
|
1984 |
if ( settings[ 'table_ribbon_' + i ] == 'yes' ) {
|
@@ -1987,7 +2252,7 @@ class ComparisonTable extends EAE_Widget_Base {
|
|
1987 |
view.addRenderAttribute( 'heading_inn_' + i, 'class', 'eae-ct-ribbons-h-' + settings['ribbons_position_' + i ] );
|
1988 |
view.addRenderAttribute( 'heading_inn_' + i, 'class', 'eae-table-' + i );
|
1989 |
#>
|
1990 |
-
<
|
1991 |
<# if ( settings[ 'ribbons_position_' + i ] == 'top' ) {
|
1992 |
#>
|
1993 |
<div class="eae-ct-ribbons-wrapper-top">
|
@@ -2006,18 +2271,24 @@ class ComparisonTable extends EAE_Widget_Base {
|
|
2006 |
|
2007 |
<# } #>
|
2008 |
<# } else { #>
|
2009 |
-
<
|
2010 |
<# }
|
2011 |
#>
|
2012 |
{{{ settings[ 'table_title_' + i ] }}}
|
2013 |
-
</
|
2014 |
<# }
|
2015 |
#>
|
2016 |
</tr>
|
2017 |
-
</thead>
|
2018 |
-
<tbody>
|
2019 |
<tr>
|
2020 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2021 |
<#
|
2022 |
for ( var j = 1; j <= settings.table_count; j++ ) {
|
2023 |
#>
|
@@ -2095,7 +2366,14 @@ class ComparisonTable extends EAE_Widget_Base {
|
|
2095 |
<# } #>
|
2096 |
</tr>
|
2097 |
<# } #>
|
2098 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2099 |
<# for ( j = 1; j <= settings['table_count']; j++ ) {
|
2100 |
view.addRenderAttribute( 'button_' + j + '-link-attributes', 'href', settings[ 'item_link_' + j ]['url'] );
|
2101 |
view.addRenderAttribute( 'button_' + j + '-link-attributes', 'class', 'eae-ct-btn' );
|
61 |
]
|
62 |
);
|
63 |
|
64 |
+
$this->add_control(
|
65 |
+
'feature_box_heading',
|
66 |
+
[
|
67 |
+
'label' => __( 'Heading', 'wts-eae' ),
|
68 |
+
'type' => Controls_Manager::TEXT,
|
69 |
+
'default' => '',
|
70 |
+
'placeholder' => __( 'Add Heading Here', 'wts-eae' ),
|
71 |
+
]
|
72 |
+
);
|
73 |
+
|
74 |
$this->add_control(
|
75 |
'show_tooltip',
|
76 |
[
|
745 |
);
|
746 |
|
747 |
$this->end_controls_section();
|
748 |
+
|
749 |
}
|
750 |
|
751 |
+
$this->start_controls_section(
|
752 |
+
'feature_button',
|
753 |
+
[
|
754 |
+
'label' => __( 'Button', 'wts-eae' )
|
755 |
+
]
|
756 |
+
);
|
757 |
+
|
758 |
+
$this->add_control(
|
759 |
+
'button_heading_text',
|
760 |
+
[
|
761 |
+
'label' => __('Heading', 'wts-eae'),
|
762 |
+
'type' => Controls_Manager::TEXT
|
763 |
+
]
|
764 |
+
);
|
765 |
+
$this->end_controls_section();
|
766 |
+
|
767 |
$this->start_controls_section(
|
768 |
'section_general_style',
|
769 |
[
|
799 |
[
|
800 |
'name' => 'table_border',
|
801 |
'label' => __( 'Border', 'wts-eae' ),
|
802 |
+
'fields_options' => [
|
803 |
+
'border' => [
|
804 |
+
'default' => 'solid',
|
805 |
+
],
|
806 |
+
'width' => [
|
807 |
+
'default' => [
|
808 |
+
'top' => 1,
|
809 |
+
'right' => 1,
|
810 |
+
'bottom' => 1,
|
811 |
+
'left' => 1,
|
812 |
+
'unit' => 'px'
|
813 |
+
],
|
814 |
+
],
|
815 |
+
'color' => [
|
816 |
+
'default' => '#DDD',
|
817 |
+
]
|
818 |
+
],
|
819 |
+
'selector' => '{{WRAPPER}} .eae-ct-wrapper table tr:first-child td, {{WRAPPER}} .eae-ct-wrapper table tr:last-child td, {{WRAPPER}} .eae-ct-wrapper td,{{WRAPPER}} .eae-ct-wrapper td,{{WRAPPER}} .eae-ct-wrapper th',
|
820 |
'label_block' => true,
|
821 |
]
|
822 |
);
|
845 |
$this->add_control(
|
846 |
'feature_text_bg_color',
|
847 |
[
|
848 |
+
'label' => __( 'Primary Background Color', 'wts-eae' ),
|
849 |
'type' => Controls_Manager::COLOR,
|
850 |
'selectors' => [
|
851 |
'{{WRAPPER}} .eae-ct-feature' => 'background-color: {{VALUE}};',
|
852 |
+
'{{WRAPPER}} tbody tr:nth-child(odd) .eae-ct-feature' => 'background-color: {{VALUE}};',
|
853 |
+
],
|
854 |
+
]
|
855 |
+
);
|
856 |
+
|
857 |
+
// $this->add_control(
|
858 |
+
// 'feature_odd_color',
|
859 |
+
// [
|
860 |
+
// 'label' => __( 'Odd Row Color', 'wts-eae' ),
|
861 |
+
// 'type' => Controls_Manager::COLOR,
|
862 |
+
// 'selectors' => [
|
863 |
+
// '{{WRAPPER}} tbody tr:nth-child(odd) .eae-ct-feature' => 'background-color: {{VALUE}};',
|
864 |
+
// ],
|
865 |
+
// ]
|
866 |
+
// );
|
867 |
+
|
868 |
+
$this->add_control(
|
869 |
+
'feature_even_color',
|
870 |
+
[
|
871 |
+
'label' => __( 'Secondary Row Color', 'wts-eae' ),
|
872 |
+
'type' => Controls_Manager::COLOR,
|
873 |
+
'selectors' => [
|
874 |
+
'{{WRAPPER}} tbody tr:nth-child(even) .eae-ct-feature' => 'background-color: {{VALUE}};',
|
875 |
],
|
876 |
]
|
877 |
);
|
921 |
],
|
922 |
]
|
923 |
);
|
924 |
+
|
925 |
+
$this->add_control(
|
926 |
+
'feature_box_heading_style',
|
927 |
+
[
|
928 |
+
'label' => __( 'Heading', 'wts-eae' ),
|
929 |
+
'type' => Controls_Manager::HEADING,
|
930 |
+
'separator' => 'before',
|
931 |
+
'condition' => [
|
932 |
+
'feature_box_heading!' => ''
|
933 |
+
]
|
934 |
+
]
|
935 |
+
);
|
936 |
+
|
937 |
+
$this->add_control(
|
938 |
+
'feature_heading_color',
|
939 |
+
[
|
940 |
+
'label' => __( 'Color', 'wts-eae' ),
|
941 |
+
'type' => Controls_Manager::COLOR,
|
942 |
+
'default' => '#fff',
|
943 |
+
'selectors' => [
|
944 |
+
'{{WRAPPER}} .eae-ct-header .eae-fbox-heading' => 'color: {{VALUE}};',
|
945 |
+
'{{WRAPPER}} tbody tr .eae-ct-hide.eae-fbox-heading' => 'color: {{VALUE}};',
|
946 |
+
],
|
947 |
+
'condition' => [
|
948 |
+
'feature_box_heading!' => ''
|
949 |
+
]
|
950 |
+
]
|
951 |
+
);
|
952 |
+
$this->add_control(
|
953 |
+
'feature_heading_bg_color',
|
954 |
+
[
|
955 |
+
'label' => __( 'Background Color', 'wts-eae' ),
|
956 |
+
'type' => Controls_Manager::COLOR,
|
957 |
+
'scheme' => [
|
958 |
+
'type' => Scheme_Color::get_type(),
|
959 |
+
'value' => Scheme_Color::COLOR_1,
|
960 |
+
],
|
961 |
+
'selectors' => [
|
962 |
+
'{{WRAPPER}} .eae-ct-header .eae-fbox-heading' => 'background-color: {{VALUE}};',
|
963 |
+
'{{WRAPPER}} tbody tr .eae-ct-hide.eae-fbox-heading' => 'background-color: {{VALUE}};',
|
964 |
+
],
|
965 |
+
'condition' => [
|
966 |
+
'feature_box_heading!' => ''
|
967 |
+
]
|
968 |
+
]
|
969 |
+
);
|
970 |
+
|
971 |
+
$this->add_group_control(
|
972 |
+
Group_Control_Typography::get_type(),
|
973 |
+
[
|
974 |
+
'name' => 'feature_heading_typography',
|
975 |
+
'scheme' => Scheme_Typography::TYPOGRAPHY_2,
|
976 |
+
'selector' => '{{WRAPPER}} .eae-ct-header .eae-fbox-heading , {{WRAPPER}} tbody tr .eae-ct-hide.eae-fbox-heading',
|
977 |
+
]
|
978 |
+
);
|
979 |
+
|
980 |
+
|
981 |
$this->add_control(
|
982 |
'tooltip_icon_heading',
|
983 |
[
|
1751 |
'tab' => Controls_Manager::TAB_STYLE,
|
1752 |
]
|
1753 |
);
|
1754 |
+
|
1755 |
+
$this->add_control(
|
1756 |
+
'button_heading_style',
|
1757 |
+
[
|
1758 |
+
'label' => __( 'Heading', 'wts-eae' ),
|
1759 |
+
'type' => Controls_Manager::HEADING,
|
1760 |
+
'separator' => 'before',
|
1761 |
+
'condition' => [
|
1762 |
+
'button_heading_text!' => ''
|
1763 |
+
]
|
1764 |
+
]
|
1765 |
+
);
|
1766 |
+
|
1767 |
+
$this->add_control(
|
1768 |
+
'button_heading_color',
|
1769 |
+
[
|
1770 |
+
'label' => __( 'Color', 'wts-eae' ),
|
1771 |
+
'type' => Controls_Manager::COLOR,
|
1772 |
+
'default' => '#fff',
|
1773 |
+
'selectors' => [
|
1774 |
+
'{{WRAPPER}} .eae-ct-wrapper .eae-ct-button-heading' => 'color: {{VALUE}};',
|
1775 |
+
],
|
1776 |
+
'condition' => [
|
1777 |
+
'button_heading_text!' => ''
|
1778 |
+
]
|
1779 |
+
]
|
1780 |
+
);
|
1781 |
+
$this->add_control(
|
1782 |
+
'button_heading_bg_color',
|
1783 |
+
[
|
1784 |
+
'label' => __( 'Background Color', 'wts-eae' ),
|
1785 |
+
'type' => Controls_Manager::COLOR,
|
1786 |
+
'selectors' => [
|
1787 |
+
'{{WRAPPER}} .eae-ct-wrapper .eae-ct-button-heading' => 'background-color: {{VALUE}};',
|
1788 |
+
],
|
1789 |
+
'condition' => [
|
1790 |
+
'button_heading_text!' => ''
|
1791 |
+
]
|
1792 |
+
]
|
1793 |
+
);
|
1794 |
+
|
1795 |
+
$this->add_group_control(
|
1796 |
+
Group_Control_Typography::get_type(),
|
1797 |
+
[
|
1798 |
+
'name' => 'button_heading_typography',
|
1799 |
+
'scheme' => Scheme_Typography::TYPOGRAPHY_2,
|
1800 |
+
'{{WRAPPER}} .eae-ct-wrapper .eae-ct-button-heading' => 'color: {{VALUE}};',
|
1801 |
+
'condition' => [
|
1802 |
+
'button_heading_text!' => ''
|
1803 |
+
]
|
1804 |
+
]
|
1805 |
+
);
|
1806 |
+
|
1807 |
+
$this->start_controls_tabs(
|
1808 |
+
'button_style_tabs'
|
1809 |
+
);
|
1810 |
+
|
1811 |
+
$this->start_controls_tab(
|
1812 |
+
'button_style_normal_tab',
|
1813 |
+
[
|
1814 |
+
'label' => __( 'Normal', 'wts-eae' ),
|
1815 |
+
]
|
1816 |
+
);
|
1817 |
+
|
1818 |
$this->add_control(
|
1819 |
'button_color',
|
1820 |
[
|
1837 |
],
|
1838 |
]
|
1839 |
);
|
1840 |
+
$this->end_controls_tab();
|
1841 |
+
|
1842 |
+
$this->start_controls_tab(
|
1843 |
+
'button_style_hover_tab',
|
1844 |
+
[
|
1845 |
+
'label' => __( 'Hover', 'wts-eae' ),
|
1846 |
+
]
|
1847 |
+
);
|
1848 |
+
|
1849 |
+
$this->add_control(
|
1850 |
+
'button_color_hover',
|
1851 |
+
[
|
1852 |
+
'label' => __( 'Text Color', 'wts-eae' ),
|
1853 |
+
'type' => Controls_Manager::COLOR,
|
1854 |
+
'selectors' => [
|
1855 |
+
'{{WRAPPER}} .eae-ct-btn:hover' => 'color: {{VALUE}};',
|
1856 |
+
],
|
1857 |
+
]
|
1858 |
+
);
|
1859 |
+
|
1860 |
+
$this->add_control(
|
1861 |
+
'btn_background_color_hover',
|
1862 |
+
[
|
1863 |
+
'label' => __( 'Background Color', 'wts-eae' ),
|
1864 |
+
'type' => Controls_Manager::COLOR,
|
1865 |
+
'selectors' => [
|
1866 |
+
'{{WRAPPER}} .eae-ct-btn:hover' => 'background-color: {{VALUE}};',
|
1867 |
+
],
|
1868 |
+
]
|
1869 |
+
);
|
1870 |
+
$this->end_controls_tab();
|
1871 |
+
|
1872 |
+
$this->end_controls_tabs();
|
1873 |
+
|
1874 |
$this->add_control(
|
1875 |
'btn_clm_background_color',
|
1876 |
[
|
1954 |
|
1955 |
protected function render() {
|
1956 |
$settings = $this->get_settings_for_display();
|
1957 |
+
$this->add_render_attribute('eae-ct-wrapper', 'class', 'eae-ct-wrapper');
|
1958 |
+
if($settings['feature_box_heading'] == ''){
|
1959 |
+
$this->add_render_attribute('eae-ct-wrapper', 'class', 'feature-heading-blank');
|
1960 |
+
}
|
1961 |
+
if($settings['button_heading_text'] == ''){
|
1962 |
+
$this->add_render_attribute('eae-ct-wrapper', 'class', 'button-heading-blank');
|
1963 |
+
}
|
1964 |
//echo '<pre>';print_r($settings);echo '</pre>';
|
1965 |
?>
|
1966 |
+
<article <?php echo $this->get_render_attribute_string('eae-ct-wrapper'); ?>>
|
1967 |
|
1968 |
<ul>
|
1969 |
<?php
|
2001 |
</ul>
|
2002 |
|
2003 |
<table>
|
2004 |
+
<tbody>
|
2005 |
+
<tr class="eae-ct-header">
|
2006 |
+
<?php
|
2007 |
+
$class = 'hide';
|
2008 |
+
$cont = "";
|
2009 |
+
$rowspan = "";
|
2010 |
+
if(!empty($settings['feature_box_heading'])) {
|
2011 |
+
$rowspan = 2;
|
2012 |
+
$class = "eae-fbox-heading";
|
2013 |
+
$cont = $settings['feature_box_heading'];
|
2014 |
+
}?>
|
2015 |
+
|
2016 |
+
<td class="<?php echo $class; ?>" rowspan="<?php echo $rowspan; ?>"> <?php echo $cont; ?></td>
|
2017 |
<?php
|
2018 |
|
2019 |
for ( $i = 1; $i <= $settings['table_count']; $i ++ ) {
|
2020 |
if ( $settings[ 'table_ribbon_' . $i ] == 'yes' ) {
|
2021 |
+
echo '<td class="eae-ct-heading eae-ct-ribbons-yes eae-ct-ribbons-h-' . $settings[ 'ribbons_position_' . $i ] . ' eae-table-' . $i . '">';
|
2022 |
if ( $settings[ 'ribbons_position_' . $i ] == 'top' ) {
|
2023 |
?>
|
2024 |
<div class="eae-ct-ribbons-wrapper-top">
|
2038 |
<?php
|
2039 |
}
|
2040 |
} else {
|
2041 |
+
echo '<td class="eae-ct-heading eae-table-' . $i . '">';
|
2042 |
}
|
2043 |
echo $settings[ 'table_title_' . $i ];
|
2044 |
+
echo '</td>';
|
2045 |
}
|
2046 |
?>
|
2047 |
</tr>
|
|
|
|
|
2048 |
<?php
|
2049 |
echo '<tr>';
|
2050 |
+
$cls = "hide";
|
2051 |
+
if(!empty($settings['feature_box_heading'])){
|
2052 |
+
$cls = "hide eae-ct-hide eae-fbox-heading";
|
2053 |
+
}?>
|
2054 |
+
<td class="<?php echo $cls; ?>"><?php echo $settings['feature_box_heading']; ?></td>
|
2055 |
+
<?php
|
2056 |
for ( $j = 1; $j <= $settings['table_count']; $j++ ) {
|
2057 |
echo '<td class="eae-ct-plan eae-table-' . $j . '"><div class="eae-ct-price-wrapper">';
|
2058 |
|
2142 |
}
|
2143 |
echo '</tr>';
|
2144 |
}
|
2145 |
+
if(!empty($settings['button_heading_text'])){
|
2146 |
+
$this->add_render_attribute( 'button_heading' , 'class', 'eae-button-heading' );
|
2147 |
+
}
|
2148 |
+
echo '<td '. $this->get_render_attribute_string( "button_heading") .'>'. $settings['button_heading_text'] .'</td>';
|
2149 |
for ( $j = 1; $j <= $settings['table_count']; $j ++ ) {
|
2150 |
$this->add_render_attribute( 'button_' . $j . '-link-attributes', 'href', $settings[ 'item_link_' . $j ]['url'] );
|
2151 |
$this->add_render_attribute( 'button_' . $j . '-link-attributes', 'class', 'eae-ct-btn' );
|
2172 |
|
2173 |
protected function _content_template() {
|
2174 |
?>
|
2175 |
+
<#
|
2176 |
+
view.addRenderAttribute( 'eae-ct-wrapper', 'class', 'eae-ct-wrapper');
|
2177 |
+
if(settings['feature_box_heading'] == ''){
|
2178 |
+
view.addRenderAttribute( 'eae-ct-wrapper', 'class', 'feature-heading-blank');
|
2179 |
+
}
|
2180 |
+
if(settings['button_heading_text'] == ''){
|
2181 |
+
view.addRenderAttribute( 'eae-ct-wrapper', 'class', 'button-heading-blank');
|
2182 |
+
}
|
2183 |
+
#>
|
2184 |
+
<article {{{ view.getRenderAttributeString('eae-ct-wrapper') }}}>
|
2185 |
<ul>
|
2186 |
<#
|
2187 |
for ( var i = 1; i <= settings.table_count; i++ ) {
|
2229 |
#>
|
2230 |
</ul>
|
2231 |
<table>
|
2232 |
+
<tbody>
|
2233 |
+
<tr class="eae-ct-header">
|
2234 |
+
<#
|
2235 |
+
var cont = '';
|
2236 |
+
view.addRenderAttribute( 'feature_heading' , 'class', 'hide' );
|
2237 |
+
view.addRenderAttribute( 'feature_heading' , 'rowspan', null );
|
2238 |
+
|
2239 |
+
if (settings['feature_box_heading'] != '' ) {
|
2240 |
+
var cls = 'eae-fbox-heading';
|
2241 |
+
var cont = settings['feature_box_heading'] ;
|
2242 |
+
var rowspan = 2;
|
2243 |
+
view.addRenderAttribute( 'feature_heading' , 'class', 'eae-fbox-heading' );
|
2244 |
+
view.addRenderAttribute( 'feature_heading' , 'rowspan', '2' );
|
2245 |
+
} #>
|
2246 |
+
<td {{{ view.getRenderAttributeString('feature_heading') }}}> {{{cont}}}</td>
|
2247 |
<#
|
2248 |
for ( var i = 1; i <= settings.table_count; i++ ) {
|
2249 |
if ( settings[ 'table_ribbon_' + i ] == 'yes' ) {
|
2252 |
view.addRenderAttribute( 'heading_inn_' + i, 'class', 'eae-ct-ribbons-h-' + settings['ribbons_position_' + i ] );
|
2253 |
view.addRenderAttribute( 'heading_inn_' + i, 'class', 'eae-table-' + i );
|
2254 |
#>
|
2255 |
+
<td {{{ view.getRenderAttributeString('heading_inn_' + i ) }}}>
|
2256 |
<# if ( settings[ 'ribbons_position_' + i ] == 'top' ) {
|
2257 |
#>
|
2258 |
<div class="eae-ct-ribbons-wrapper-top">
|
2271 |
|
2272 |
<# } #>
|
2273 |
<# } else { #>
|
2274 |
+
<td class="eae-ct-heading eae-table-{{{ i }}}">
|
2275 |
<# }
|
2276 |
#>
|
2277 |
{{{ settings[ 'table_title_' + i ] }}}
|
2278 |
+
</td>
|
2279 |
<# }
|
2280 |
#>
|
2281 |
</tr>
|
|
|
|
|
2282 |
<tr>
|
2283 |
+
<#
|
2284 |
+
var cls = 'hide';
|
2285 |
+
view.addRenderAttribute( 'fet_heading', 'class', 'hide' );
|
2286 |
+
if (settings['feature_box_heading'] != '' ) {
|
2287 |
+
view.addRenderAttribute( 'fet_heading', 'class', ['hide eae-ct-hide eae-fbox-heading'] );
|
2288 |
+
var cls = 'hide eae-ct-hide eae-fbox-heading';
|
2289 |
+
} #>
|
2290 |
+
|
2291 |
+
<td {{{view.getRenderAttributeString('fet_heading') }}}> {{{settings['feature_box_heading']}}}</td>
|
2292 |
<#
|
2293 |
for ( var j = 1; j <= settings.table_count; j++ ) {
|
2294 |
#>
|
2366 |
<# } #>
|
2367 |
</tr>
|
2368 |
<# } #>
|
2369 |
+
<#
|
2370 |
+
var button_heading = '';
|
2371 |
+
if(settings['button_heading_text'] != ''){
|
2372 |
+
view.addRenderAttribute( 'button_heading' , 'class', 'eae-ct-button-heading' );
|
2373 |
+
button_heading = settings['button_heading_text']
|
2374 |
+
}
|
2375 |
+
#>
|
2376 |
+
<td {{{ view.getRenderAttributeString( 'button_heading' ) }}}> {{{ button_heading }}} </td>
|
2377 |
<# for ( j = 1; j <= settings['table_count']; j++ ) {
|
2378 |
view.addRenderAttribute( 'button_' + j + '-link-attributes', 'href', settings[ 'item_link_' + j ]['url'] );
|
2379 |
view.addRenderAttribute( 'button_' + j + '-link-attributes', 'class', 'eae-ct-btn' );
|
modules/dual-button/widgets/dual-button.php
CHANGED
@@ -207,7 +207,7 @@ class DualButton extends EAE_Widget_Base {
|
|
207 |
[
|
208 |
'label' => __( 'Icon Position', 'wts-eae' ),
|
209 |
'type' => Controls_Manager::SELECT,
|
210 |
-
'default' => '
|
211 |
'options' => [
|
212 |
'before' => __( 'Before', 'wts-eae' ),
|
213 |
'after' => __( 'After', 'wts-eae' ),
|
@@ -375,7 +375,7 @@ class DualButton extends EAE_Widget_Base {
|
|
375 |
[
|
376 |
'label' => __( 'Icon Color', 'wts-eae' ),
|
377 |
'type' => Controls_Manager::COLOR,
|
378 |
-
'default' => '',
|
379 |
'selectors' => [
|
380 |
'{{WRAPPER}} .eae-button-1-wrapper .eae-db-icon-wrapper' => 'color: {{VALUE}};',
|
381 |
'{{WRAPPER}} .eae-button-1-wrapper .eae-db-icon-wrapper svg' => 'fill: {{VALUE}};',
|
@@ -547,7 +547,7 @@ class DualButton extends EAE_Widget_Base {
|
|
547 |
[
|
548 |
'label' => __( 'Icon Color', 'wts-eae' ),
|
549 |
'type' => Controls_Manager::COLOR,
|
550 |
-
'default' => '',
|
551 |
'selectors' => [
|
552 |
'{{WRAPPER}} .eae-button-2-wrapper .eae-db-icon-wrapper' => 'color: {{VALUE}};',
|
553 |
'{{WRAPPER}} .eae-button-2-wrapper .eae-db-icon-wrapper svg' => 'fill: {{VALUE}};',
|
@@ -712,6 +712,7 @@ class DualButton extends EAE_Widget_Base {
|
|
712 |
[
|
713 |
'name' => 'separator_typography',
|
714 |
'label' => __( 'Typography', 'wts-eae' ),
|
|
|
715 |
'selector' => '{{WRAPPER}} .eae-button-separator-wrapper .eae-button-separator',
|
716 |
'condition' => [
|
717 |
'separator_text!' => '',
|
@@ -722,7 +723,7 @@ class DualButton extends EAE_Widget_Base {
|
|
722 |
$this->add_control(
|
723 |
'separator_icon_width',
|
724 |
[
|
725 |
-
'label' => __( 'Size', 'wts-eae' ),
|
726 |
'type' => Controls_Manager::SLIDER,
|
727 |
'range' => [
|
728 |
'px' => [
|
@@ -749,6 +750,10 @@ class DualButton extends EAE_Widget_Base {
|
|
749 |
'label' => __( 'Color', 'wts-eae' ),
|
750 |
'type' => Controls_Manager::COLOR,
|
751 |
'default' => '',
|
|
|
|
|
|
|
|
|
752 |
'selectors' => [
|
753 |
'{{WRAPPER}} .eae-button-separator-wrapper .eae-button-separator' => 'color: {{VALUE}};',
|
754 |
'{{WRAPPER}} .eae-button-separator-wrapper .eae-button-separator svg' => 'fill : {{VALUE}};',
|
@@ -884,7 +889,7 @@ class DualButton extends EAE_Widget_Base {
|
|
884 |
</div>
|
885 |
</a>
|
886 |
|
887 |
-
<?php if ( $settings['separator_icon_new']
|
888 |
<span class="eae-button-separator-wrapper">
|
889 |
<span class="eae-button-separator">
|
890 |
<span>
|
@@ -1015,26 +1020,26 @@ class DualButton extends EAE_Widget_Base {
|
|
1015 |
</div>
|
1016 |
</a>
|
1017 |
|
1018 |
-
<# if ( settings['separator_icon_new']
|
1019 |
<span class="eae-button-separator-wrapper">
|
1020 |
-
|
1021 |
-
|
1022 |
-
|
1023 |
-
|
1024 |
-
|
1025 |
-
|
1026 |
-
|
1027 |
-
|
1028 |
-
|
1029 |
-
|
1030 |
-
|
1031 |
-
|
1032 |
-
|
1033 |
-
|
1034 |
-
|
1035 |
-
|
1036 |
-
|
1037 |
-
|
1038 |
<# } #>
|
1039 |
</div>
|
1040 |
<div class="eae-button2">
|
207 |
[
|
208 |
'label' => __( 'Icon Position', 'wts-eae' ),
|
209 |
'type' => Controls_Manager::SELECT,
|
210 |
+
'default' => 'after',
|
211 |
'options' => [
|
212 |
'before' => __( 'Before', 'wts-eae' ),
|
213 |
'after' => __( 'After', 'wts-eae' ),
|
375 |
[
|
376 |
'label' => __( 'Icon Color', 'wts-eae' ),
|
377 |
'type' => Controls_Manager::COLOR,
|
378 |
+
'default' => '#fff',
|
379 |
'selectors' => [
|
380 |
'{{WRAPPER}} .eae-button-1-wrapper .eae-db-icon-wrapper' => 'color: {{VALUE}};',
|
381 |
'{{WRAPPER}} .eae-button-1-wrapper .eae-db-icon-wrapper svg' => 'fill: {{VALUE}};',
|
547 |
[
|
548 |
'label' => __( 'Icon Color', 'wts-eae' ),
|
549 |
'type' => Controls_Manager::COLOR,
|
550 |
+
'default' => '#fff',
|
551 |
'selectors' => [
|
552 |
'{{WRAPPER}} .eae-button-2-wrapper .eae-db-icon-wrapper' => 'color: {{VALUE}};',
|
553 |
'{{WRAPPER}} .eae-button-2-wrapper .eae-db-icon-wrapper svg' => 'fill: {{VALUE}};',
|
712 |
[
|
713 |
'name' => 'separator_typography',
|
714 |
'label' => __( 'Typography', 'wts-eae' ),
|
715 |
+
'scheme' => Scheme_Typography::TYPOGRAPHY_3,
|
716 |
'selector' => '{{WRAPPER}} .eae-button-separator-wrapper .eae-button-separator',
|
717 |
'condition' => [
|
718 |
'separator_text!' => '',
|
723 |
$this->add_control(
|
724 |
'separator_icon_width',
|
725 |
[
|
726 |
+
'label' => __( 'Icon Size', 'wts-eae' ),
|
727 |
'type' => Controls_Manager::SLIDER,
|
728 |
'range' => [
|
729 |
'px' => [
|
750 |
'label' => __( 'Color', 'wts-eae' ),
|
751 |
'type' => Controls_Manager::COLOR,
|
752 |
'default' => '',
|
753 |
+
'scheme' => [
|
754 |
+
'type' => Scheme_Color::get_type(),
|
755 |
+
'value' => Scheme_Color::COLOR_2,
|
756 |
+
],
|
757 |
'selectors' => [
|
758 |
'{{WRAPPER}} .eae-button-separator-wrapper .eae-button-separator' => 'color: {{VALUE}};',
|
759 |
'{{WRAPPER}} .eae-button-separator-wrapper .eae-button-separator svg' => 'fill : {{VALUE}};',
|
889 |
</div>
|
890 |
</a>
|
891 |
|
892 |
+
<?php if ( $settings['separator_icon_new']['value'] != '' || $settings['separator_text'] != '' ) { ?>
|
893 |
<span class="eae-button-separator-wrapper">
|
894 |
<span class="eae-button-separator">
|
895 |
<span>
|
1020 |
</div>
|
1021 |
</a>
|
1022 |
|
1023 |
+
<# if ( settings['separator_icon_new']['value'] != '' || settings['separator_text'] != '' ) { console.log('not empty')#>
|
1024 |
<span class="eae-button-separator-wrapper">
|
1025 |
+
<span class="eae-button-separator">
|
1026 |
+
<span>
|
1027 |
+
<#
|
1028 |
+
if ( settings['separator_icon_new'] !== '' ) {
|
1029 |
+
#>
|
1030 |
+
<# if ( separator_iconHTML.rendered && ( ! settings.separator_icon || migrated ) ) { #>
|
1031 |
+
{{{ separator_iconHTML.value }}}
|
1032 |
+
<# } else { #>
|
1033 |
+
<i class="{{ settings.separator_icon }}" aria-hidden="true"></i>
|
1034 |
+
<# } #>
|
1035 |
+
<# }
|
1036 |
+
if ( settings['separator_text'] !== '' ) {
|
1037 |
+
#>
|
1038 |
+
{{{ settings['separator_text'] }}}
|
1039 |
+
<# } #>
|
1040 |
+
</span>
|
1041 |
+
</span>
|
1042 |
+
</span>
|
1043 |
<# } #>
|
1044 |
</div>
|
1045 |
<div class="eae-button2">
|
modules/filterable-gallery/widgets/filterable-gallery.php
CHANGED
@@ -14,6 +14,8 @@ use Elementor\Group_Control_Box_Shadow;
|
|
14 |
use Elementor\Group_Control_Css_Filter;
|
15 |
use Elementor\Repeater;
|
16 |
use Elementor\Icons_Manager;
|
|
|
|
|
17 |
use Elementor\Plugin;
|
18 |
|
19 |
if (!defined('ABSPATH')) exit; // Exit if accessed directly
|
@@ -59,6 +61,7 @@ class FilterableGallery extends EAE_Widget_Base
|
|
59 |
'dynamic' => [
|
60 |
'active' => true,
|
61 |
],
|
|
|
62 |
]
|
63 |
);
|
64 |
|
@@ -71,7 +74,6 @@ class FilterableGallery extends EAE_Widget_Base
|
|
71 |
'active' => true,
|
72 |
],
|
73 |
'show_label' => false,
|
74 |
-
|
75 |
]
|
76 |
);
|
77 |
|
@@ -85,7 +87,7 @@ class FilterableGallery extends EAE_Widget_Base
|
|
85 |
'show_label' => true,
|
86 |
'default' => [
|
87 |
[
|
88 |
-
'eae_filter_label' => 'Filter1'
|
89 |
],
|
90 |
[
|
91 |
'eae_filter_label' => 'Filter2'
|
@@ -810,7 +812,7 @@ class FilterableGallery extends EAE_Widget_Base
|
|
810 |
[
|
811 |
'name' => 'typography',
|
812 |
'label' => __('Typography', 'ae-pro'),
|
813 |
-
'scheme' => Scheme_Typography::
|
814 |
'selector' => '{{WRAPPER}} .eae-overlay-caption',
|
815 |
'condition' => [
|
816 |
'caption' => 'yes',
|
@@ -919,10 +921,6 @@ class FilterableGallery extends EAE_Widget_Base
|
|
919 |
'{{WRAPPER}}.eae-icon-view-framed .eae-overlay-icon:hover, {{WRAPPER}}.eae-icon-view-default .eae-overlay-icon' => 'color: {{VALUE}}; border-color: {{VALUE}};',
|
920 |
'{{WRAPPER}}.eae-icon-view-framed .eae-overlay-icon:hover svg, {{WRAPPER}}.eae-icon-view-default .eae-overlay-icon:hover svg' => 'fill: {{VALUE}}',
|
921 |
],
|
922 |
-
'scheme' => [
|
923 |
-
'type' => Scheme_Color::get_type(),
|
924 |
-
'value' => Scheme_Color::COLOR_1,
|
925 |
-
],
|
926 |
'condition' => [
|
927 |
'icon!' => '',
|
928 |
'show_overlay!' => 'never',
|
@@ -1102,6 +1100,10 @@ class FilterableGallery extends EAE_Widget_Base
|
|
1102 |
[
|
1103 |
'label' => __('Background Color', 'wts-eae'),
|
1104 |
'type' => Controls_Manager::COLOR,
|
|
|
|
|
|
|
|
|
1105 |
'selectors' => [
|
1106 |
'{{WRAPPER}} .eae-filter-label' => 'background-color: {{VALUE}}',
|
1107 |
],
|
@@ -1113,6 +1115,10 @@ class FilterableGallery extends EAE_Widget_Base
|
|
1113 |
[
|
1114 |
'label' => __('Current Background Color', 'wts-eae'),
|
1115 |
'type' => Controls_Manager::COLOR,
|
|
|
|
|
|
|
|
|
1116 |
'selectors' => [
|
1117 |
'{{WRAPPER}} .eae-filter-label.current' => 'background-color: {{VALUE}}',
|
1118 |
],
|
@@ -1336,6 +1342,7 @@ class FilterableGallery extends EAE_Widget_Base
|
|
1336 |
$overlay_speed = $settings['overlay_speed']['size'];
|
1337 |
|
1338 |
$filter_groups = $settings['eae_filterable_gallery_content'];
|
|
|
1339 |
|
1340 |
$this->add_render_attribute('gallery-wrapper', 'class', 'eae-fg-wrapper');
|
1341 |
if ($settings['hover_tilt'] == 'yes') {
|
@@ -1379,8 +1386,17 @@ class FilterableGallery extends EAE_Widget_Base
|
|
1379 |
<?php } ?>
|
1380 |
<?php
|
1381 |
if (count($settings['eae_filterable_gallery_content']) > 1) {
|
|
|
|
|
|
|
|
|
|
|
1382 |
foreach ($filter_groups as $filter_group) {
|
1383 |
$images = $filter_group['eae_img_gallery'];
|
|
|
|
|
|
|
|
|
1384 |
if (!empty($images)) {
|
1385 |
$filter_label = $filter_group['eae_filter_label'];
|
1386 |
$filter_name = strtolower($filter_group['eae_filter_label']);
|
@@ -1399,6 +1415,10 @@ class FilterableGallery extends EAE_Widget_Base
|
|
1399 |
<?php
|
1400 |
foreach ($filter_groups as $filter_group) {
|
1401 |
$images = $filter_group['eae_img_gallery'];
|
|
|
|
|
|
|
|
|
1402 |
$filter_name = strtolower($filter_group['eae_filter_label']);
|
1403 |
$filter_name = str_replace(" ", "-", $filter_name);
|
1404 |
$this->add_render_attribute('gallery-item-' . $filter_group['_id'], 'class', 'eae-gallery-item');
|
@@ -1415,8 +1435,13 @@ class FilterableGallery extends EAE_Widget_Base
|
|
1415 |
<?php if ($settings['enable_image_ratio'] == 'yes'){ ?>
|
1416 |
<div class="eae-fg-img-wrapper">
|
1417 |
<?php } ?>
|
1418 |
-
<?php
|
1419 |
-
|
|
|
|
|
|
|
|
|
|
|
1420 |
?>
|
1421 |
<?php if ($settings['enable_image_ratio'] == 'yes'){ ?>
|
1422 |
</div>
|
@@ -1451,4 +1476,13 @@ class FilterableGallery extends EAE_Widget_Base
|
|
1451 |
<?php
|
1452 |
|
1453 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1454 |
}
|
14 |
use Elementor\Group_Control_Css_Filter;
|
15 |
use Elementor\Repeater;
|
16 |
use Elementor\Icons_Manager;
|
17 |
+
use Elementor\Core\Schemes;
|
18 |
+
use Elementor\Utils;
|
19 |
use Elementor\Plugin;
|
20 |
|
21 |
if (!defined('ABSPATH')) exit; // Exit if accessed directly
|
61 |
'dynamic' => [
|
62 |
'active' => true,
|
63 |
],
|
64 |
+
'default' => 'Filter'
|
65 |
]
|
66 |
);
|
67 |
|
74 |
'active' => true,
|
75 |
],
|
76 |
'show_label' => false,
|
|
|
77 |
]
|
78 |
);
|
79 |
|
87 |
'show_label' => true,
|
88 |
'default' => [
|
89 |
[
|
90 |
+
'eae_filter_label' => 'Filter1',
|
91 |
],
|
92 |
[
|
93 |
'eae_filter_label' => 'Filter2'
|
812 |
[
|
813 |
'name' => 'typography',
|
814 |
'label' => __('Typography', 'ae-pro'),
|
815 |
+
'scheme' => Scheme_Typography::TYPOGRAPHY_2,
|
816 |
'selector' => '{{WRAPPER}} .eae-overlay-caption',
|
817 |
'condition' => [
|
818 |
'caption' => 'yes',
|
921 |
'{{WRAPPER}}.eae-icon-view-framed .eae-overlay-icon:hover, {{WRAPPER}}.eae-icon-view-default .eae-overlay-icon' => 'color: {{VALUE}}; border-color: {{VALUE}};',
|
922 |
'{{WRAPPER}}.eae-icon-view-framed .eae-overlay-icon:hover svg, {{WRAPPER}}.eae-icon-view-default .eae-overlay-icon:hover svg' => 'fill: {{VALUE}}',
|
923 |
],
|
|
|
|
|
|
|
|
|
924 |
'condition' => [
|
925 |
'icon!' => '',
|
926 |
'show_overlay!' => 'never',
|
1100 |
[
|
1101 |
'label' => __('Background Color', 'wts-eae'),
|
1102 |
'type' => Controls_Manager::COLOR,
|
1103 |
+
'scheme' => [
|
1104 |
+
'type' => Schemes\Color::get_type(),
|
1105 |
+
'value' => Schemes\Color::COLOR_4,
|
1106 |
+
],
|
1107 |
'selectors' => [
|
1108 |
'{{WRAPPER}} .eae-filter-label' => 'background-color: {{VALUE}}',
|
1109 |
],
|
1115 |
[
|
1116 |
'label' => __('Current Background Color', 'wts-eae'),
|
1117 |
'type' => Controls_Manager::COLOR,
|
1118 |
+
'scheme' => [
|
1119 |
+
'type' => Schemes\Color::get_type(),
|
1120 |
+
'value' => Schemes\Color::COLOR_1,
|
1121 |
+
],
|
1122 |
'selectors' => [
|
1123 |
'{{WRAPPER}} .eae-filter-label.current' => 'background-color: {{VALUE}}',
|
1124 |
],
|
1342 |
$overlay_speed = $settings['overlay_speed']['size'];
|
1343 |
|
1344 |
$filter_groups = $settings['eae_filterable_gallery_content'];
|
1345 |
+
//echo '<pre>'; print_r($filter_groups); echo '</pre>';
|
1346 |
|
1347 |
$this->add_render_attribute('gallery-wrapper', 'class', 'eae-fg-wrapper');
|
1348 |
if ($settings['hover_tilt'] == 'yes') {
|
1386 |
<?php } ?>
|
1387 |
<?php
|
1388 |
if (count($settings['eae_filterable_gallery_content']) > 1) {
|
1389 |
+
//echo '<pre>'; print_r($filter_groups); echo '</pre>';
|
1390 |
+
$demo_images = [];
|
1391 |
+
if( empty($filter_group[0]['eae_img_gallery']) && empty($filter_group[1]['eae_img_gallery']) && empty($filter_group[0]['eae_img_gallery']) ){
|
1392 |
+
$demo_images[] = $this->get_placeholder_images();
|
1393 |
+
}
|
1394 |
foreach ($filter_groups as $filter_group) {
|
1395 |
$images = $filter_group['eae_img_gallery'];
|
1396 |
+
if(empty($images)){
|
1397 |
+
//echo '<pre>'; print_r($demo_images); echo '</pre>';
|
1398 |
+
$images = $demo_images;
|
1399 |
+
}
|
1400 |
if (!empty($images)) {
|
1401 |
$filter_label = $filter_group['eae_filter_label'];
|
1402 |
$filter_name = strtolower($filter_group['eae_filter_label']);
|
1415 |
<?php
|
1416 |
foreach ($filter_groups as $filter_group) {
|
1417 |
$images = $filter_group['eae_img_gallery'];
|
1418 |
+
if(empty($images)){
|
1419 |
+
//echo '<pre>'; print_r($demo_images); echo '</pre>';
|
1420 |
+
$images = $demo_images;
|
1421 |
+
}
|
1422 |
$filter_name = strtolower($filter_group['eae_filter_label']);
|
1423 |
$filter_name = str_replace(" ", "-", $filter_name);
|
1424 |
$this->add_render_attribute('gallery-item-' . $filter_group['_id'], 'class', 'eae-gallery-item');
|
1435 |
<?php if ($settings['enable_image_ratio'] == 'yes'){ ?>
|
1436 |
<div class="eae-fg-img-wrapper">
|
1437 |
<?php } ?>
|
1438 |
+
<?php if(!empty($image['id'])){
|
1439 |
+
$img = wp_get_attachment_image($image['id'], $settings['thumbnail_size']);
|
1440 |
+
echo $img;
|
1441 |
+
}else{?>
|
1442 |
+
<img src="<?php echo $image['url']; ?>">
|
1443 |
+
<?php }
|
1444 |
+
|
1445 |
?>
|
1446 |
<?php if ($settings['enable_image_ratio'] == 'yes'){ ?>
|
1447 |
</div>
|
1476 |
<?php
|
1477 |
|
1478 |
}
|
1479 |
+
|
1480 |
+
public function get_placeholder_images(){
|
1481 |
+
$demo_images =
|
1482 |
+
[
|
1483 |
+
'id' => '',
|
1484 |
+
'url' => Utils::get_placeholder_image_src(),
|
1485 |
+
];
|
1486 |
+
return $demo_images;
|
1487 |
+
}
|
1488 |
}
|
modules/modal-popup/widgets/modal-popup.php
CHANGED
@@ -11,6 +11,7 @@ use Elementor\Group_Control_Text_Shadow;
|
|
11 |
use Elementor\Group_Control_Box_Shadow;
|
12 |
use Elementor\Group_Control_Border;
|
13 |
use Elementor\Icons_Manager;
|
|
|
14 |
|
15 |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
16 |
|
@@ -199,7 +200,10 @@ class ModalPopup extends EAE_Widget_Base {
|
|
199 |
[
|
200 |
'label' => __( 'Button Text', 'wts-eae' ),
|
201 |
'type' => Controls_Manager::TEXT,
|
202 |
-
'default' => 'Click Me'
|
|
|
|
|
|
|
203 |
]
|
204 |
);
|
205 |
|
@@ -263,10 +267,13 @@ class ModalPopup extends EAE_Widget_Base {
|
|
263 |
'type' => Controls_Manager::SLIDER,
|
264 |
'range' => [
|
265 |
'px' => [
|
266 |
-
'min' => 6,
|
267 |
'max' => 100,
|
268 |
],
|
269 |
],
|
|
|
|
|
|
|
|
|
270 |
'selectors' => [
|
271 |
'{{WRAPPER}} .icon-position-before i , {{WRAPPER}} .icon-position-before svg' => 'margin-right: {{SIZE}}{{UNIT}};',
|
272 |
'{{WRAPPER}} .icon-position-after i , {{WRAPPER}} .icon-position-after svg' => 'margin-left: {{SIZE}}{{UNIT}};',
|
@@ -375,7 +382,7 @@ class ModalPopup extends EAE_Widget_Base {
|
|
375 |
$this->add_control(
|
376 |
'background_color',
|
377 |
[
|
378 |
-
'label' => __( 'Color', 'wts-eae' ),
|
379 |
'type' => Controls_Manager::COLOR,
|
380 |
'selectors' => [
|
381 |
'.eae-wrap-{{ID}} .mfp-inline-holder .mfp-content' => 'background-color: {{VALUE}};',
|
@@ -465,6 +472,7 @@ class ModalPopup extends EAE_Widget_Base {
|
|
465 |
[
|
466 |
'name' => 'btn_text_typography',
|
467 |
'label' => __( 'Typography', 'wts-eae' ),
|
|
|
468 |
//'selector' => '.eae-popup-{{ID}} .eae-popup-link',
|
469 |
'selector' => '{{WRAPPER}} .eae-popup-link',
|
470 |
]
|
@@ -504,7 +512,10 @@ class ModalPopup extends EAE_Widget_Base {
|
|
504 |
[
|
505 |
'label' => __( 'Background Color', 'wts-eae' ),
|
506 |
'type' => Controls_Manager::COLOR,
|
507 |
-
'
|
|
|
|
|
|
|
508 |
'selectors' => [
|
509 |
'{{WRAPPER}} .eae-popup-link' => 'background-color: {{VALUE}};',
|
510 |
],
|
@@ -880,8 +891,8 @@ class ModalPopup extends EAE_Widget_Base {
|
|
880 |
$icon_is_new = empty($settings['button_icon']);
|
881 |
//echo '<pre>'; print_r($settings); echo '</pre>';
|
882 |
|
883 |
-
$close_btn_icon_migrated = isset($settings['__fa4_migrated']['
|
884 |
-
$close_btn_icon_is_new = empty($settings['
|
885 |
|
886 |
$close_button_type = isset($settings['close_btn_icon_new']['value']['url']) ? 'svg' : 'icon';
|
887 |
if($close_button_type == 'svg'){
|
11 |
use Elementor\Group_Control_Box_Shadow;
|
12 |
use Elementor\Group_Control_Border;
|
13 |
use Elementor\Icons_Manager;
|
14 |
+
use Elementor\Core\Schemes;
|
15 |
|
16 |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
17 |
|
200 |
[
|
201 |
'label' => __( 'Button Text', 'wts-eae' ),
|
202 |
'type' => Controls_Manager::TEXT,
|
203 |
+
'default' => 'Click Me',
|
204 |
+
'dynamic' => [
|
205 |
+
'active' => true,
|
206 |
+
],
|
207 |
]
|
208 |
);
|
209 |
|
267 |
'type' => Controls_Manager::SLIDER,
|
268 |
'range' => [
|
269 |
'px' => [
|
|
|
270 |
'max' => 100,
|
271 |
],
|
272 |
],
|
273 |
+
'default' => [
|
274 |
+
'unit' => 'px',
|
275 |
+
'size' => 6,
|
276 |
+
],
|
277 |
'selectors' => [
|
278 |
'{{WRAPPER}} .icon-position-before i , {{WRAPPER}} .icon-position-before svg' => 'margin-right: {{SIZE}}{{UNIT}};',
|
279 |
'{{WRAPPER}} .icon-position-after i , {{WRAPPER}} .icon-position-after svg' => 'margin-left: {{SIZE}}{{UNIT}};',
|
382 |
$this->add_control(
|
383 |
'background_color',
|
384 |
[
|
385 |
+
'label' => __( 'Background Color', 'wts-eae' ),
|
386 |
'type' => Controls_Manager::COLOR,
|
387 |
'selectors' => [
|
388 |
'.eae-wrap-{{ID}} .mfp-inline-holder .mfp-content' => 'background-color: {{VALUE}};',
|
472 |
[
|
473 |
'name' => 'btn_text_typography',
|
474 |
'label' => __( 'Typography', 'wts-eae' ),
|
475 |
+
'scheme' => Schemes\Typography::TYPOGRAPHY_4,
|
476 |
//'selector' => '.eae-popup-{{ID}} .eae-popup-link',
|
477 |
'selector' => '{{WRAPPER}} .eae-popup-link',
|
478 |
]
|
512 |
[
|
513 |
'label' => __( 'Background Color', 'wts-eae' ),
|
514 |
'type' => Controls_Manager::COLOR,
|
515 |
+
'scheme' => [
|
516 |
+
'type' => Schemes\Color::get_type(),
|
517 |
+
'value' => Schemes\Color::COLOR_4,
|
518 |
+
],
|
519 |
'selectors' => [
|
520 |
'{{WRAPPER}} .eae-popup-link' => 'background-color: {{VALUE}};',
|
521 |
],
|
891 |
$icon_is_new = empty($settings['button_icon']);
|
892 |
//echo '<pre>'; print_r($settings); echo '</pre>';
|
893 |
|
894 |
+
$close_btn_icon_migrated = isset($settings['__fa4_migrated']['close_btn_icon_new']);
|
895 |
+
$close_btn_icon_is_new = empty($settings['close_btn_icon']);
|
896 |
|
897 |
$close_button_type = isset($settings['close_btn_icon_new']['value']['url']) ? 'svg' : 'icon';
|
898 |
if($close_button_type == 'svg'){
|
modules/text-separator/widgets/text-separator.php
CHANGED
@@ -24,7 +24,7 @@ class TextSeparator extends EAE_Widget_Base {
|
|
24 |
return 'eicon-divider wts-eae-pe';
|
25 |
}
|
26 |
|
27 |
-
|
28 |
return [ 'wts-eae' ];
|
29 |
}
|
30 |
|
@@ -43,8 +43,8 @@ class TextSeparator extends EAE_Widget_Base {
|
|
43 |
'type' => Controls_Manager::TEXTAREA,
|
44 |
'dynamic' => [
|
45 |
'active' => true,
|
46 |
-
|
47 |
-
|
48 |
'placeholder' => __( 'Enter text', 'wts-eae' ),
|
49 |
'default' => __( 'This is text separator', 'wts-eae' )
|
50 |
]
|
@@ -70,7 +70,7 @@ class TextSeparator extends EAE_Widget_Base {
|
|
70 |
]
|
71 |
);
|
72 |
|
73 |
-
|
74 |
'align',
|
75 |
[
|
76 |
'label' => __( 'Alignment', 'wts-eae' ),
|
@@ -93,9 +93,9 @@ class TextSeparator extends EAE_Widget_Base {
|
|
93 |
]
|
94 |
);
|
95 |
|
96 |
-
|
97 |
|
98 |
-
|
99 |
'section_icon',
|
100 |
[
|
101 |
'label' => __( 'Icon', 'wts-eae' ),
|
@@ -109,11 +109,11 @@ class TextSeparator extends EAE_Widget_Base {
|
|
109 |
[
|
110 |
'label' => __( 'Icon', 'wts-eae' ),
|
111 |
'type' => Controls_Manager::ICONS,
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
]
|
118 |
);
|
119 |
|
@@ -150,21 +150,21 @@ class TextSeparator extends EAE_Widget_Base {
|
|
150 |
);
|
151 |
|
152 |
$this->add_control(
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
'before' => __( 'Before Text', 'wts-eae' ),
|
159 |
'after' => __( 'After Text', 'wts-eae' )
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
);
|
164 |
|
165 |
-
|
166 |
|
167 |
-
|
168 |
'section_divider',
|
169 |
[
|
170 |
'label' => __( 'Divider', 'wts-eae' ),
|
@@ -213,7 +213,7 @@ class TextSeparator extends EAE_Widget_Base {
|
|
213 |
|
214 |
|
215 |
|
216 |
-
|
217 |
|
218 |
$this->start_controls_section(
|
219 |
'section_title_style',
|
@@ -229,8 +229,8 @@ class TextSeparator extends EAE_Widget_Base {
|
|
229 |
'label' => __( 'Text Color', 'wts-eae' ),
|
230 |
'type' => Controls_Manager::COLOR,
|
231 |
'scheme' => [
|
232 |
-
|
233 |
-
|
234 |
],
|
235 |
'selectors' => [
|
236 |
'{{WRAPPER}} .eae-separator-title' => 'color: {{VALUE}};',
|
@@ -241,13 +241,13 @@ class TextSeparator extends EAE_Widget_Base {
|
|
241 |
$this->add_group_control(
|
242 |
Group_Control_Typography::get_type(),
|
243 |
[
|
244 |
-
|
245 |
'scheme' => Scheme_Typography::TYPOGRAPHY_1,
|
246 |
'selector' => '{{WRAPPER}} .eae-separator-title',
|
247 |
]
|
248 |
);
|
249 |
|
250 |
-
|
251 |
$this->start_controls_section(
|
252 |
'section_divider_style',
|
253 |
[
|
@@ -262,8 +262,8 @@ class TextSeparator extends EAE_Widget_Base {
|
|
262 |
'label' => __( 'Divider Color', 'wts-eae' ),
|
263 |
'type' => Controls_Manager::COLOR,
|
264 |
'scheme' => [
|
265 |
-
|
266 |
-
|
267 |
],
|
268 |
'selectors' => [
|
269 |
'{{WRAPPER}} .eae-sep-lines' => 'border-top-color: {{VALUE}};',
|
@@ -320,12 +320,12 @@ class TextSeparator extends EAE_Widget_Base {
|
|
320 |
],
|
321 |
'default' => '',
|
322 |
'selectors' => [
|
323 |
-
|
324 |
-
|
325 |
]
|
326 |
);
|
327 |
|
328 |
-
|
329 |
$this->start_controls_section(
|
330 |
'section_icon_style',
|
331 |
[
|
@@ -340,15 +340,15 @@ class TextSeparator extends EAE_Widget_Base {
|
|
340 |
'label' => __( 'Primary Color', 'wts-eae' ),
|
341 |
'type' => Controls_Manager::COLOR,
|
342 |
'scheme' => [
|
343 |
-
|
344 |
-
|
345 |
],
|
346 |
'selectors' => [
|
347 |
'{{WRAPPER}}.eae-icon-view-default i' => 'color: {{VALUE}};',
|
348 |
'{{WRAPPER}}.eae-icon-view-default svg' => 'fill: {{VALUE}};',
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
|
353 |
],
|
354 |
]
|
@@ -359,14 +359,14 @@ class TextSeparator extends EAE_Widget_Base {
|
|
359 |
[
|
360 |
'label' => __( 'Secondary Color', 'wts-eae' ),
|
361 |
'type' => Controls_Manager::COLOR,
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
'selectors' => [
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
],
|
371 |
]
|
372 |
);
|
@@ -462,80 +462,87 @@ class TextSeparator extends EAE_Widget_Base {
|
|
462 |
}
|
463 |
|
464 |
protected function render( ) {
|
465 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
466 |
|
467 |
-
$this->add_render_attribute('separator_wrapper','class','wts-eae-textseparator');
|
468 |
-
$this->add_render_attribute('separator_wrapper','class','sep-align-'.$settings['align']);
|
469 |
-
if(!empty($settings['icon_new'])){
|
470 |
-
$this->add_render_attribute('separator_wrapper','class','icon-yes');
|
471 |
-
$this->add_render_attribute('separator_wrapper','class','icon-'.$settings['icon_position']);
|
472 |
-
}
|
473 |
-
$icon_migrated = isset($settings['__fa4_migrated']['icon_new']);
|
474 |
-
$icon_is_new = empty($settings['icon']);
|
475 |
|
476 |
-
|
477 |
-
|
478 |
-
|
|
|
|
|
|
|
479 |
|
480 |
$this->add_render_attribute( 'title', 'class', 'eae-separator-title' );
|
481 |
|
482 |
$this->add_inline_editing_attributes( 'title' );
|
|
|
|
|
|
|
483 |
?>
|
484 |
<div <?php echo $this->get_render_attribute_string('separator_wrapper');?> >
|
485 |
<div class="eae-sep-holder sep-left">
|
486 |
<div class="eae-sep-lines"></div>
|
487 |
</div>
|
488 |
|
489 |
-
|
490 |
-
|
491 |
-
|
492 |
-
|
493 |
-
|
494 |
-
|
495 |
-
|
496 |
-
|
|
|
|
|
|
|
497 |
</div>
|
498 |
-
|
499 |
-
<?php } ?>
|
500 |
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
|
505 |
-
|
506 |
<div class="eae-separator-icon-wrapper">
|
507 |
<div class="eae-separator-icon-inner">
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
-
<i <?php $
|
512 |
-
|
513 |
</div>
|
514 |
</div>
|
515 |
-
|
516 |
|
517 |
<div class="eae-sep-holder sep-right">
|
518 |
<div class="eae-sep-lines"></div>
|
519 |
</div>
|
520 |
</div>
|
521 |
-
|
522 |
}
|
523 |
|
524 |
-
|
525 |
-
|
526 |
<#
|
527 |
view.addRenderAttribute( 'separator_wrapper','class','wts-eae-textseparator' );
|
528 |
view.addRenderAttribute('separator_wrapper','class','sep-align-'+settings.align);
|
529 |
if(settings.icon_new){
|
530 |
-
|
531 |
-
|
532 |
}
|
533 |
|
534 |
iconHTML = elementor.helpers.renderIcon( view, settings.icon_new, { 'aria-hidden': true }, 'i' , 'object' ),
|
535 |
migrated = elementor.helpers.isIconMigrated( settings, 'icon_new' );
|
536 |
|
537 |
if((settings.title)){
|
538 |
-
|
539 |
}
|
540 |
|
541 |
view.addRenderAttribute( 'title', 'class', 'eae-separator-title' );
|
@@ -543,42 +550,42 @@ class TextSeparator extends EAE_Widget_Base {
|
|
543 |
view.addInlineEditingAttributes( 'title' );
|
544 |
#>
|
545 |
<div {{{ view.getRenderAttributeString( 'separator_wrapper' ) }}}>
|
546 |
-
|
547 |
-
|
548 |
-
|
549 |
-
|
550 |
-
<# if((settings.icon_new) && settings.icon_position == 'before') { #>
|
551 |
-
<div class="eae-separator-icon-wrapper">
|
552 |
-
<div class="eae-separator-icon-inner">
|
553 |
-
<# if ( iconHTML.rendered && ( ! settings.icon || migrated ) ) { #>
|
554 |
-
{{{ iconHTML.value }}}
|
555 |
-
<# } else { #>
|
556 |
-
<i class="{{ settings.icon }}" aria-hidden="true"></i>
|
557 |
-
<# } #>
|
558 |
-
</div>
|
559 |
-
</div>
|
560 |
-
<# } #>
|
561 |
-
|
562 |
-
<{{{settings.html_tag}}} {{{ view.getRenderAttributeString( 'title' ) }}} >{{{ settings.title }}}</{{{settings.html_tag}}}>
|
563 |
-
|
564 |
-
<# if((settings.icon_new) && settings.icon_position == 'after') { #>
|
565 |
-
<div class="eae-separator-icon-wrapper">
|
566 |
-
<div class="eae-separator-icon-inner">
|
567 |
-
<# if ( iconHTML.rendered && ( ! settings.icon || migrated ) ) { #>
|
568 |
-
{{{ iconHTML.value }}}
|
569 |
-
<# } else { #>
|
570 |
-
<i class="{{ settings.icon }}" aria-hidden="true"></i>
|
571 |
-
<# } #>
|
572 |
-
</div>
|
573 |
-
</div>
|
574 |
-
<# } #>
|
575 |
|
576 |
-
|
577 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
578 |
</div>
|
579 |
</div>
|
580 |
-
|
581 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
582 |
public function on_import( $element ) {
|
583 |
return Icons_Manager::on_import_migration( $element, 'icon', 'icon_new', true );
|
584 |
}
|
24 |
return 'eicon-divider wts-eae-pe';
|
25 |
}
|
26 |
|
27 |
+
public function get_categories() {
|
28 |
return [ 'wts-eae' ];
|
29 |
}
|
30 |
|
43 |
'type' => Controls_Manager::TEXTAREA,
|
44 |
'dynamic' => [
|
45 |
'active' => true,
|
46 |
+
],
|
47 |
+
'label_block' => true,
|
48 |
'placeholder' => __( 'Enter text', 'wts-eae' ),
|
49 |
'default' => __( 'This is text separator', 'wts-eae' )
|
50 |
]
|
70 |
]
|
71 |
);
|
72 |
|
73 |
+
$this->add_responsive_control(
|
74 |
'align',
|
75 |
[
|
76 |
'label' => __( 'Alignment', 'wts-eae' ),
|
93 |
]
|
94 |
);
|
95 |
|
96 |
+
$this->end_controls_section();
|
97 |
|
98 |
+
$this->start_controls_section(
|
99 |
'section_icon',
|
100 |
[
|
101 |
'label' => __( 'Icon', 'wts-eae' ),
|
109 |
[
|
110 |
'label' => __( 'Icon', 'wts-eae' ),
|
111 |
'type' => Controls_Manager::ICONS,
|
112 |
+
'fa4compatibility' => 'icon',
|
113 |
+
'default' => [
|
114 |
+
'value' => 'fas fa-star',
|
115 |
+
'library' => 'fa-solid',
|
116 |
+
],
|
117 |
]
|
118 |
);
|
119 |
|
150 |
);
|
151 |
|
152 |
$this->add_control(
|
153 |
+
'icon_position',
|
154 |
+
[
|
155 |
+
'label' => __('Icon Position','wts-eae'),
|
156 |
+
'type' => Controls_Manager::SELECT,
|
157 |
+
'options' => [
|
158 |
'before' => __( 'Before Text', 'wts-eae' ),
|
159 |
'after' => __( 'After Text', 'wts-eae' )
|
160 |
+
],
|
161 |
+
'default' => 'before',
|
162 |
+
]
|
163 |
);
|
164 |
|
165 |
+
$this->end_controls_section();
|
166 |
|
167 |
+
$this->start_controls_section(
|
168 |
'section_divider',
|
169 |
[
|
170 |
'label' => __( 'Divider', 'wts-eae' ),
|
213 |
|
214 |
|
215 |
|
216 |
+
$this->end_controls_section();
|
217 |
|
218 |
$this->start_controls_section(
|
219 |
'section_title_style',
|
229 |
'label' => __( 'Text Color', 'wts-eae' ),
|
230 |
'type' => Controls_Manager::COLOR,
|
231 |
'scheme' => [
|
232 |
+
'type' => Scheme_Color::get_type(),
|
233 |
+
'value' => Scheme_Color::COLOR_1,
|
234 |
],
|
235 |
'selectors' => [
|
236 |
'{{WRAPPER}} .eae-separator-title' => 'color: {{VALUE}};',
|
241 |
$this->add_group_control(
|
242 |
Group_Control_Typography::get_type(),
|
243 |
[
|
244 |
+
'name' => 'typography',
|
245 |
'scheme' => Scheme_Typography::TYPOGRAPHY_1,
|
246 |
'selector' => '{{WRAPPER}} .eae-separator-title',
|
247 |
]
|
248 |
);
|
249 |
|
250 |
+
$this->end_controls_section();
|
251 |
$this->start_controls_section(
|
252 |
'section_divider_style',
|
253 |
[
|
262 |
'label' => __( 'Divider Color', 'wts-eae' ),
|
263 |
'type' => Controls_Manager::COLOR,
|
264 |
'scheme' => [
|
265 |
+
'type' => Scheme_Color::get_type(),
|
266 |
+
'value' => Scheme_Color::COLOR_1,
|
267 |
],
|
268 |
'selectors' => [
|
269 |
'{{WRAPPER}} .eae-sep-lines' => 'border-top-color: {{VALUE}};',
|
320 |
],
|
321 |
'default' => '',
|
322 |
'selectors' => [
|
323 |
+
'{{WRAPPER}} .wts-eae-textseparator' => 'float: {{VALUE}};',
|
324 |
+
]
|
325 |
]
|
326 |
);
|
327 |
|
328 |
+
$this->end_controls_section();
|
329 |
$this->start_controls_section(
|
330 |
'section_icon_style',
|
331 |
[
|
340 |
'label' => __( 'Primary Color', 'wts-eae' ),
|
341 |
'type' => Controls_Manager::COLOR,
|
342 |
'scheme' => [
|
343 |
+
'type' => Scheme_Color::get_type(),
|
344 |
+
'value' => Scheme_Color::COLOR_1,
|
345 |
],
|
346 |
'selectors' => [
|
347 |
'{{WRAPPER}}.eae-icon-view-default i' => 'color: {{VALUE}};',
|
348 |
'{{WRAPPER}}.eae-icon-view-default svg' => 'fill: {{VALUE}};',
|
349 |
+
'{{WRAPPER}}.eae-icon-view-stacked .eae-separator-icon-inner' => 'background-color: {{VALUE}};',
|
350 |
+
'{{WRAPPER}}.eae-icon-view-framed .eae-separator-icon-inner, {{WRAPPER}}.eae-icon-view-framed .eae-separator-icon-inner i' => 'color: {{VALUE}}; border-color: {{VALUE}};',
|
351 |
+
'{{WRAPPER}}.eae-icon-view-framed .eae-separator-icon-inner svg ' => 'fill: {{VALUE}};',
|
352 |
|
353 |
],
|
354 |
]
|
359 |
[
|
360 |
'label' => __( 'Secondary Color', 'wts-eae' ),
|
361 |
'type' => Controls_Manager::COLOR,
|
362 |
+
'default' => '',
|
363 |
+
'condition' => [
|
364 |
+
'view!' => 'default',
|
365 |
+
],
|
366 |
'selectors' => [
|
367 |
+
'{{WRAPPER}}.eae-icon-view-framed .eae-separator-icon-inner' => 'background-color: {{VALUE}};',
|
368 |
+
'{{WRAPPER}}.eae-icon-view-stacked .eae-separator-icon-inner i' => 'color: {{VALUE}};',
|
369 |
+
'{{WRAPPER}}.eae-icon-view-stacked .eae-separator-icon-inner svg' => 'fill: {{VALUE}};',
|
370 |
],
|
371 |
]
|
372 |
);
|
462 |
}
|
463 |
|
464 |
protected function render( ) {
|
465 |
+
$settings = $this->get_settings_for_display();
|
466 |
+
//echo '<pre>'; print_r($settings); echo '</pre>';
|
467 |
+
$this->add_render_attribute('separator_wrapper','class','wts-eae-textseparator');
|
468 |
+
$this->add_render_attribute('separator_wrapper','class','sep-align-'.$settings['align']);
|
469 |
+
if(!empty($settings['icon_new']) ){
|
470 |
+
$this->add_render_attribute('separator_wrapper','class','icon-yes');
|
471 |
+
$this->add_render_attribute('separator_wrapper','class','icon-'.$settings['icon_position']);
|
472 |
+
}
|
473 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
474 |
|
475 |
+
$icon_migrated = isset($settings['__fa4_migrated']['icon_new']);
|
476 |
+
$icon_is_new = empty($settings['icon']) && Icons_Manager::is_migration_allowed();
|
477 |
+
|
478 |
+
if(!empty($settings['title'])){
|
479 |
+
$this->add_render_attribute('separator_wrapper','class','title-yes');
|
480 |
+
}
|
481 |
|
482 |
$this->add_render_attribute( 'title', 'class', 'eae-separator-title' );
|
483 |
|
484 |
$this->add_inline_editing_attributes( 'title' );
|
485 |
+
if(isset($settings['icon']) && empty($settings['icon'])){
|
486 |
+
$settings['icon_new'] = [];
|
487 |
+
}
|
488 |
?>
|
489 |
<div <?php echo $this->get_render_attribute_string('separator_wrapper');?> >
|
490 |
<div class="eae-sep-holder sep-left">
|
491 |
<div class="eae-sep-lines"></div>
|
492 |
</div>
|
493 |
|
494 |
+
<?php if(!empty($settings['icon_new']) && $settings['icon_position'] == 'before') { ?>
|
495 |
+
<div class="eae-separator-icon-wrapper">
|
496 |
+
<div class="eae-separator-icon-inner">
|
497 |
+
<?php //if(!empty($settings['icon'])){
|
498 |
+
if ( ($icon_migrated || $icon_is_new ) && !empty($settings['icon_new']) ) :
|
499 |
+
Icons_Manager::render_icon($settings['icon_new'], ['aria-hidden' => 'true']);
|
500 |
+
else:?>
|
501 |
+
<i class="<?php echo $settings['icon']; ?>"></i>
|
502 |
+
<?php endif; ?>
|
503 |
+
<?php //} ?>
|
504 |
+
</div>
|
505 |
</div>
|
506 |
+
<?php } ?>
|
|
|
507 |
|
508 |
+
<?php if($settings['title'] != ''){
|
509 |
+
echo sprintf( '<%1$s %2$s>%3$s</%1$s>', $settings['html_tag'], $this->get_render_attribute_string( 'title' ), $settings['title'] );
|
510 |
+
}?>
|
511 |
|
512 |
+
<?php if(!empty($settings['icon_new']) && $settings['icon_position'] == 'after') { ?>
|
513 |
<div class="eae-separator-icon-wrapper">
|
514 |
<div class="eae-separator-icon-inner">
|
515 |
+
<?php if ( ($icon_migrated || $icon_is_new ) && !empty($settings['icon_new']) ) :
|
516 |
+
Icons_Manager::render_icon($settings['icon_new'], ['aria-hidden' => 'true']);
|
517 |
+
else:?>
|
518 |
+
<i class="<?php echo $settings['icon']; ?>"></i>
|
519 |
+
<?php endif; ?>
|
520 |
</div>
|
521 |
</div>
|
522 |
+
<?php } ?>
|
523 |
|
524 |
<div class="eae-sep-holder sep-right">
|
525 |
<div class="eae-sep-lines"></div>
|
526 |
</div>
|
527 |
</div>
|
528 |
+
<?php
|
529 |
}
|
530 |
|
531 |
+
protected function _content_template() {
|
532 |
+
?>
|
533 |
<#
|
534 |
view.addRenderAttribute( 'separator_wrapper','class','wts-eae-textseparator' );
|
535 |
view.addRenderAttribute('separator_wrapper','class','sep-align-'+settings.align);
|
536 |
if(settings.icon_new){
|
537 |
+
view.addRenderAttribute('separator_wrapper','class','icon-yes');
|
538 |
+
view.addRenderAttribute('separator_wrapper','class','icon-'+settings.icon_position);
|
539 |
}
|
540 |
|
541 |
iconHTML = elementor.helpers.renderIcon( view, settings.icon_new, { 'aria-hidden': true }, 'i' , 'object' ),
|
542 |
migrated = elementor.helpers.isIconMigrated( settings, 'icon_new' );
|
543 |
|
544 |
if((settings.title)){
|
545 |
+
view.addRenderAttribute('separator_wrapper','class','title-yes');
|
546 |
}
|
547 |
|
548 |
view.addRenderAttribute( 'title', 'class', 'eae-separator-title' );
|
550 |
view.addInlineEditingAttributes( 'title' );
|
551 |
#>
|
552 |
<div {{{ view.getRenderAttributeString( 'separator_wrapper' ) }}}>
|
553 |
+
<div class="eae-sep-holder sep-left">
|
554 |
+
<div class="eae-sep-lines"></div>
|
555 |
+
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
556 |
|
557 |
+
<# if((settings.icon_new) && settings.icon_position == 'before') { #>
|
558 |
+
<div class="eae-separator-icon-wrapper">
|
559 |
+
<div class="eae-separator-icon-inner">
|
560 |
+
<# if ( iconHTML.rendered && ( ! settings.icon || migrated ) ) { #>
|
561 |
+
{{{ iconHTML.value }}}
|
562 |
+
<# } else { #>
|
563 |
+
<i class="{{ settings.icon }}" aria-hidden="true"></i>
|
564 |
+
<# } #>
|
565 |
+
</div>
|
566 |
+
</div>
|
567 |
+
<# } #>
|
568 |
+
|
569 |
+
<{{{settings.html_tag}}} {{{ view.getRenderAttributeString( 'title' ) }}} >{{{ settings.title }}}</{{{settings.html_tag}}}>
|
570 |
+
|
571 |
+
<# if((settings.icon_new) && settings.icon_position == 'after') { #>
|
572 |
+
<div class="eae-separator-icon-wrapper">
|
573 |
+
<div class="eae-separator-icon-inner">
|
574 |
+
<# if ( iconHTML.rendered && ( ! settings.icon || migrated ) ) { #>
|
575 |
+
{{{ iconHTML.value }}}
|
576 |
+
<# } else { #>
|
577 |
+
<i class="{{ settings.icon }}" aria-hidden="true"></i>
|
578 |
+
<# } #>
|
579 |
</div>
|
580 |
</div>
|
581 |
+
<# } #>
|
582 |
+
|
583 |
+
<div class="eae-sep-holder sep-right">
|
584 |
+
<div class="eae-sep-lines"></div>
|
585 |
+
</div>
|
586 |
+
</div>
|
587 |
+
<?php
|
588 |
+
}
|
589 |
public function on_import( $element ) {
|
590 |
return Icons_Manager::on_import_migration( $element, 'icon', 'icon_new', true );
|
591 |
}
|
modules/timeline/skins/skin-base.php
CHANGED
@@ -556,10 +556,10 @@ abstract class Skin_Base extends Elementor_Skin_Base {
|
|
556 |
'type' => Controls_Manager::COLOR,
|
557 |
'selectors' => [
|
558 |
'{{WRAPPER}} .eae-tl-item-content' => 'background: {{VALUE}};',
|
559 |
-
'{{WRAPPER}} .eae-layout-center.eae-timeline .eae-timeline-item:nth-child(even) .eae-tl-item-content::before' => 'border-color: transparent {{VALUE}} transparent transparent;',
|
560 |
-
'{{WRAPPER}} .eae-layout-center.eae-timeline .eae-timeline-item:nth-child(odd) .eae-tl-item-content::before' => 'border-color: transparent transparent transparent {{VALUE}};',
|
561 |
-
'{{WRAPPER}} .eae-layout-right.eae-timeline .eae-tl-item-content::before' => 'border-color: transparent transparent transparent {{VALUE}}
|
562 |
-
'{{WRAPPER}} .eae-layout-left.eae-timeline .eae-tl-item-content::before' => 'border-color: transparent {{VALUE}} transparent transparent
|
563 |
'(mobile){{WRAPPER}} .eae-layout-center.eae-timeline.eae-tl-res-layout-left .eae-timeline-item .eae-tl-item-content::before' => 'border-color: transparent {{VALUE}} transparent transparent !important;',
|
564 |
'(tablet){{WRAPPER}} .eae-layout-center.eae-timeline.eae-tl-res-layout-left .eae-timeline-item .eae-tl-item-content::before' => 'border-color: transparent {{VALUE}} transparent transparent !important;',
|
565 |
'(mobile){{WRAPPER}} .eae-layout-center.eae-timeline.eae-tl-res-layout-right .eae-timeline-item .eae-tl-item-content::before' => 'border-color: transparent transparent transparent {{VALUE}} !important;',
|
556 |
'type' => Controls_Manager::COLOR,
|
557 |
'selectors' => [
|
558 |
'{{WRAPPER}} .eae-tl-item-content' => 'background: {{VALUE}};',
|
559 |
+
'{{WRAPPER}} .eae-layout-center.eae-timeline .eae-timeline-item:nth-child(even) .eae-tl-item-content::before' => 'border-color: transparent {{VALUE}} transparent transparent !important;',
|
560 |
+
'{{WRAPPER}} .eae-layout-center.eae-timeline .eae-timeline-item:nth-child(odd) .eae-tl-item-content::before' => 'border-color: transparent transparent transparent {{VALUE}} !important;',
|
561 |
+
'{{WRAPPER}} .eae-layout-right.eae-timeline .eae-tl-item-content::before' => 'border-color: transparent transparent transparent {{VALUE}} !important;',
|
562 |
+
'{{WRAPPER}} .eae-layout-left.eae-timeline .eae-tl-item-content::before' => 'border-color: transparent {{VALUE}} transparent transparent !important;',
|
563 |
'(mobile){{WRAPPER}} .eae-layout-center.eae-timeline.eae-tl-res-layout-left .eae-timeline-item .eae-tl-item-content::before' => 'border-color: transparent {{VALUE}} transparent transparent !important;',
|
564 |
'(tablet){{WRAPPER}} .eae-layout-center.eae-timeline.eae-tl-res-layout-left .eae-timeline-item .eae-tl-item-content::before' => 'border-color: transparent {{VALUE}} transparent transparent !important;',
|
565 |
'(mobile){{WRAPPER}} .eae-layout-center.eae-timeline.eae-tl-res-layout-right .eae-timeline-item .eae-tl-item-content::before' => 'border-color: transparent transparent transparent {{VALUE}} !important;',
|
modules/timeline/widgets/timeline.php
CHANGED
@@ -12,6 +12,7 @@ use Elementor\Group_Control_Image_Size;
|
|
12 |
use WTS_EAE\Controls\Hover_Transition;
|
13 |
use WTS_EAE\Controls\Group\Group_Control_Icon;
|
14 |
use WTS_EAE\Modules\Timeline\Skins;
|
|
|
15 |
|
16 |
class Timeline extends EAE_Widget_Base {
|
17 |
|
@@ -229,6 +230,357 @@ class Timeline extends EAE_Widget_Base {
|
|
229 |
'label' => __( 'Style', 'wts-eae' ),
|
230 |
]
|
231 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
232 |
$repeater->add_control(
|
233 |
'tl_custom_image_style',
|
234 |
[
|
12 |
use WTS_EAE\Controls\Hover_Transition;
|
13 |
use WTS_EAE\Controls\Group\Group_Control_Icon;
|
14 |
use WTS_EAE\Modules\Timeline\Skins;
|
15 |
+
use Elementor\Scheme_Color;
|
16 |
|
17 |
class Timeline extends EAE_Widget_Base {
|
18 |
|
230 |
'label' => __( 'Style', 'wts-eae' ),
|
231 |
]
|
232 |
);
|
233 |
+
$repeater->add_control(
|
234 |
+
'tl_custom_card_style',
|
235 |
+
[
|
236 |
+
'label' => __( 'Custom Card Style', 'wts-eae' ),
|
237 |
+
'type' => Controls_Manager::SWITCHER,
|
238 |
+
'label_on' => __( 'Yes', 'wts-eae' ),
|
239 |
+
'label_off' => __( 'No', 'wts-eae' ),
|
240 |
+
'return_value' => 'yes',
|
241 |
+
'default' => 'no',
|
242 |
+
]
|
243 |
+
);
|
244 |
+
|
245 |
+
$repeater->add_control(
|
246 |
+
'tl_custom_card_style_default',
|
247 |
+
[
|
248 |
+
'label' => __( 'Default', 'wts-eae' ),
|
249 |
+
'type' => Controls_Manager::HEADING,
|
250 |
+
'separator' => 'before',
|
251 |
+
'condition' => [
|
252 |
+
'tl_custom_card_style' => 'yes'
|
253 |
+
]
|
254 |
+
]
|
255 |
+
);
|
256 |
+
|
257 |
+
$repeater->add_control(
|
258 |
+
'tl_custom_title_color',
|
259 |
+
[
|
260 |
+
'label' => __( 'Title Color', 'wts-eae' ),
|
261 |
+
'type' => Controls_Manager::COLOR,
|
262 |
+
'scheme' => [
|
263 |
+
'type' => Scheme_Color::get_type(),
|
264 |
+
'value' => Scheme_Color::COLOR_1,
|
265 |
+
],
|
266 |
+
'condition' => [
|
267 |
+
'tl_custom_card_style' => 'yes'
|
268 |
+
],
|
269 |
+
'selectors' => [
|
270 |
+
'{{WRAPPER}} {{CURRENT_ITEM}} .eae-tl-item-title' => 'color: {{VALUE}};',
|
271 |
+
],
|
272 |
+
]
|
273 |
+
);
|
274 |
+
|
275 |
+
$repeater->add_control(
|
276 |
+
'tl_custom_date_color',
|
277 |
+
[
|
278 |
+
'label' => __( 'Date Color', 'wts-eae' ),
|
279 |
+
'type' => Controls_Manager::COLOR,
|
280 |
+
'scheme' => [
|
281 |
+
'type' => Scheme_Color::get_type(),
|
282 |
+
'value' => Scheme_Color::COLOR_2,
|
283 |
+
],
|
284 |
+
'selectors' => [
|
285 |
+
'{{WRAPPER}} {{CURRENT_ITEM}} .eae-tl-item-meta' => 'color: {{VALUE}};',
|
286 |
+
'{{WRAPPER}} {{CURRENT_ITEM}} .eae-tl-content-wrapper .eae-tl-item-meta-inner' => 'color: {{VALUE}};',
|
287 |
+
],
|
288 |
+
'condition' => [
|
289 |
+
'tl_custom_card_style' => 'yes'
|
290 |
+
]
|
291 |
+
]
|
292 |
+
);
|
293 |
+
|
294 |
+
$repeater->add_control(
|
295 |
+
'tl_custom_content_color',
|
296 |
+
[
|
297 |
+
'label' => __( 'Content Color', 'wts-eae' ),
|
298 |
+
'type' => Controls_Manager::COLOR,
|
299 |
+
'scheme' => [
|
300 |
+
'type' => Scheme_Color::get_type(),
|
301 |
+
'value' => Scheme_Color::COLOR_3,
|
302 |
+
],
|
303 |
+
'selectors' => [
|
304 |
+
'{{WRAPPER}} {{CURRENT_ITEM}} .eae-tl-content' => 'color: {{VALUE}};',
|
305 |
+
],
|
306 |
+
'condition' => [
|
307 |
+
'tl_custom_card_style' => 'yes'
|
308 |
+
]
|
309 |
+
]
|
310 |
+
);
|
311 |
+
|
312 |
+
$repeater->add_control(
|
313 |
+
'tl_custom_background_color',
|
314 |
+
[
|
315 |
+
'label' => __( 'Background Color', 'wts-eae' ),
|
316 |
+
'type' => Controls_Manager::COLOR,
|
317 |
+
'selectors' => [
|
318 |
+
'{{WRAPPER}} {{CURRENT_ITEM}} .eae-tl-item-content' => 'background: {{VALUE}};',
|
319 |
+
'{{WRAPPER}} .eae-layout-center.eae-timeline {{CURRENT_ITEM}}.eae-timeline-item:nth-child(even) .eae-tl-item-content::before' => 'border-color: transparent {{VALUE}} transparent transparent !important;',
|
320 |
+
'{{WRAPPER}} .eae-layout-center.eae-timeline {{CURRENT_ITEM}}.eae-timeline-item:nth-child(odd) .eae-tl-item-content::before' => 'border-color: transparent transparent transparent {{VALUE}} !important;',
|
321 |
+
'{{WRAPPER}} .eae-layout-right.eae-timeline {{CURRENT_ITEM}} .eae-tl-item-content::before' => 'border-color: transparent transparent transparent {{VALUE}} !important;',
|
322 |
+
'{{WRAPPER}} .eae-layout-left.eae-timeline {{CURRENT_ITEM}} .eae-tl-item-content::before' => 'border-color: transparent {{VALUE}} transparent transparent !important;',
|
323 |
+
'(mobile){{WRAPPER}} .eae-layout-center.eae-timeline.eae-tl-res-layout-left {{CURRENT_ITEM}}.eae-timeline-item .eae-tl-item-content::before' => 'border-color: transparent {{VALUE}} transparent transparent !important;',
|
324 |
+
'(tablet){{WRAPPER}} .eae-layout-center.eae-timeline.eae-tl-res-layout-left {{CURRENT_ITEM}}.eae-timeline-item .eae-tl-item-content::before' => 'border-color: transparent {{VALUE}} transparent transparent !important;',
|
325 |
+
'(mobile){{WRAPPER}} .eae-layout-center.eae-timeline.eae-tl-res-layout-right {{CURRENT_ITEM}}.eae-timeline-item .eae-tl-item-content::before' => 'border-color: transparent transparent transparent {{VALUE}} !important;',
|
326 |
+
'(tablet){{WRAPPER}} .eae-layout-center.eae-timeline.eae-tl-res-layout-right {{CURRENT_ITEM}}.eae-timeline-item .eae-tl-item-content::before' => 'border-color: transparent transparent transparent {{VALUE}} !important;',
|
327 |
+
'(mobile){{WRAPPER}} .eae-timeline.eae-layout-center.eae-tl-res-style-mobile {{CURRENT_ITEM}}.eae-timeline-item:nth-child(odd) .eae-tl-item-content::before' => 'border-color: transparent transparent transparent {{VALUE}} !important;',
|
328 |
+
'(mobile){{WRAPPER}} .eae-timeline.eae-layout-center.eae-tl-res-style-mobile.eae-tl-res-layout-left {{CURRENT_ITEM}}.eae-timeline-item:nth-child(odd) .eae-tl-item-content::before' => 'border-color: transparent {{VALUE}} transparent transparent !important;',
|
329 |
+
'(tablet){{WRAPPER}} .eae-timeline.eae-layout-center.eae-tl-res-style-mobile {{CURRENT_ITEM}}.eae-timeline-item:nth-child(odd) .eae-tl-item-content::before' => 'border-color: transparent transparent transparent {{VALUE}} !important;',
|
330 |
+
],
|
331 |
+
'condition' => [
|
332 |
+
'tl_custom_card_style' => 'yes'
|
333 |
+
]
|
334 |
+
]
|
335 |
+
);
|
336 |
+
|
337 |
+
|
338 |
+
$repeater->add_control(
|
339 |
+
'tl_custom_card_style_hover',
|
340 |
+
[
|
341 |
+
'label' => __( 'Hover', 'wts-eae' ),
|
342 |
+
'type' => Controls_Manager::HEADING,
|
343 |
+
'separator' => 'before',
|
344 |
+
'condition' => [
|
345 |
+
'tl_custom_card_style' => 'yes'
|
346 |
+
]
|
347 |
+
]
|
348 |
+
);
|
349 |
+
|
350 |
+
$repeater->add_control(
|
351 |
+
'tl_custom_title_color_hover',
|
352 |
+
[
|
353 |
+
'label' => __( 'Title Color', 'wts-eae' ),
|
354 |
+
'type' => Controls_Manager::COLOR,
|
355 |
+
'scheme' => [
|
356 |
+
'type' => Scheme_Color::get_type(),
|
357 |
+
'value' => Scheme_Color::COLOR_1,
|
358 |
+
],
|
359 |
+
'condition' => [
|
360 |
+
'tl_custom_card_style' => 'yes'
|
361 |
+
],
|
362 |
+
'selectors' => [
|
363 |
+
'{{WRAPPER}} {{CURRENT_ITEM}} .eae-tl-content-wrapper:hover .eae-tl-item-title' => 'color: {{VALUE}};',
|
364 |
+
],
|
365 |
+
]
|
366 |
+
);
|
367 |
+
|
368 |
+
$repeater->add_control(
|
369 |
+
'tl_custom_date_color_hover',
|
370 |
+
[
|
371 |
+
'label' => __( 'Date Color', 'wts-eae' ),
|
372 |
+
'type' => Controls_Manager::COLOR,
|
373 |
+
'scheme' => [
|
374 |
+
'type' => Scheme_Color::get_type(),
|
375 |
+
'value' => Scheme_Color::COLOR_2,
|
376 |
+
],
|
377 |
+
'selectors' => [
|
378 |
+
'{{WRAPPER}} {{CURRENT_ITEM}}:hover .eae-tl-item-meta' => 'color: {{VALUE}};',
|
379 |
+
'{{WRAPPER}} {{CURRENT_ITEM}} .eae-tl-content-wrapper:hover .eae-tl-item-meta-inner' => 'color: {{VALUE}};',
|
380 |
+
],
|
381 |
+
'condition' => [
|
382 |
+
'tl_custom_card_style' => 'yes'
|
383 |
+
]
|
384 |
+
]
|
385 |
+
);
|
386 |
+
|
387 |
+
$repeater->add_control(
|
388 |
+
'tl_custom_content_color_hover',
|
389 |
+
[
|
390 |
+
'label' => __( 'Content Color', 'wts-eae' ),
|
391 |
+
'type' => Controls_Manager::COLOR,
|
392 |
+
'scheme' => [
|
393 |
+
'type' => Scheme_Color::get_type(),
|
394 |
+
'value' => Scheme_Color::COLOR_3,
|
395 |
+
],
|
396 |
+
'selectors' => [
|
397 |
+
'{{WRAPPER}} {{CURRENT_ITEM}} .eae-tl-content-wrapper:hover .eae-tl-content' => 'color: {{VALUE}};',
|
398 |
+
],
|
399 |
+
'condition' => [
|
400 |
+
'tl_custom_card_style' => 'yes'
|
401 |
+
]
|
402 |
+
]
|
403 |
+
);
|
404 |
+
|
405 |
+
$repeater->add_control(
|
406 |
+
'tl_custom_background_color_hover',
|
407 |
+
[
|
408 |
+
'label' => __( 'Background Color', 'wts-eae' ),
|
409 |
+
'type' => Controls_Manager::COLOR,
|
410 |
+
|
411 |
+
'selectors' => [
|
412 |
+
'{{WRAPPER}} {{CURRENT_ITEM}} .eae-tl-content-wrapper:hover .eae-tl-item-content' => 'background: {{VALUE}};',
|
413 |
+
'{{WRAPPER}} .eae-layout-center.eae-timeline {{CURRENT_ITEM}}.eae-timeline-item:nth-child(even) .eae-tl-content-wrapper:hover .eae-tl-item-content::before' => 'border-color: transparent {{VALUE}} transparent transparent ;',
|
414 |
+
'{{WRAPPER}} .eae-layout-center.eae-timeline {{CURRENT_ITEM}}.eae-timeline-item:nth-child(odd) .eae-tl-content-wrapper:hover .eae-tl-item-content::before' => 'border-color: transparent transparent transparent {{VALUE}} ;',
|
415 |
+
'{{WRAPPER}} .eae-layout-right.eae-timeline {{CURRENT_ITEM}} .eae-tl-content-wrapper:hover .eae-tl-item-content::before' => 'border-color: transparent transparent transparent {{VALUE}} !important;',
|
416 |
+
'{{WRAPPER}} .eae-layout-left.eae-timeline {{CURRENT_ITEM}} .eae-tl-content-wrapper:hover .eae-tl-item-content::before' => 'border-color: transparent {{VALUE}} transparent transparent !important;',
|
417 |
+
'(mobile){{WRAPPER}} .eae-layout-center.eae-timeline.eae-tl-res-layout-left {{CURRENT_ITEM}}.eae-timeline-item .eae-tl-content-wrapper:hover .eae-tl-item-content::before' => 'border-color: transparent {{VALUE}} transparent transparent !important;',
|
418 |
+
'(tablet){{WRAPPER}} .eae-layout-center.eae-timeline.eae-tl-res-layout-left {{CURRENT_ITEM}}.eae-timeline-item .eae-tl-content-wrapper:hover .eae-tl-item-content::before' => 'border-color: transparent {{VALUE}} transparent transparent !important;',
|
419 |
+
'(mobile){{WRAPPER}} .eae-layout-center.eae-timeline.eae-tl-res-layout-right {{CURRENT_ITEM}}.eae-timeline-item .eae-tl-content-wrapper:hover .eae-tl-item-content::before' => 'border-color: transparent transparent transparent {{VALUE}} !important;',
|
420 |
+
'(tablet){{WRAPPER}} .eae-layout-center.eae-timeline.eae-tl-res-layout-right {{CURRENT_ITEM}}.eae-timeline-item .eae-tl-content-wrapper:hover .eae-tl-item-content::before' => 'border-color: transparent transparent transparent {{VALUE}} !important;',
|
421 |
+
'(mobile){{WRAPPER}} .eae-timeline.eae-layout-center.eae-tl-res-style-mobile {{CURRENT_ITEM}}.eae-timeline-item:nth-child(odd) .eae-tl-content-wrapper:hover .eae-tl-item-content::before' => 'border-color: transparent transparent transparent {{VALUE}} !important;',
|
422 |
+
'(mobile){{WRAPPER}} .eae-timeline.eae-layout-center.eae-tl-res-style-mobile.eae-tl-res-layout-left {{CURRENT_ITEM}}.eae-timeline-item:nth-child(odd) .eae-tl-content-wrapper:hover .eae-tl-item-content::before' => 'border-color: transparent {{VALUE}} transparent transparent !important;',
|
423 |
+
'(tablet){{WRAPPER}} .eae-timeline.eae-layout-center.eae-tl-res-style-mobile {{CURRENT_ITEM}}.eae-timeline-item:nth-child(odd) .eae-tl-content-wrapper:hover .eae-tl-item-content::before' => 'border-color: transparent transparent transparent {{VALUE}} !important;',
|
424 |
+
|
425 |
+
|
426 |
+
// '{{WRAPPER}} {{CURRENT_ITEM}} .eae-tl-content-wrapper:hover .eae-tl-item-content' => 'background: {{VALUE}};',
|
427 |
+
// '{{WRAPPER}} .eae-layout-center.eae-timeline {{CURRENT_ITEM}} .eae-tl-content-wrapper:hover .eae-tl-item-content::before' => 'border-color: transparent {{VALUE}} transparent transparent !important;',
|
428 |
+
// '{{WRAPPER}} .eae-layout-right.eae-timeline {{CURRENT_ITEM}} .eae-tl-content-wrapper:hover .eae-tl-item-content::before' => 'border-color: transparent transparent transparent {{VALUE}} !important;',
|
429 |
+
// '{{WRAPPER}} .eae-layout-left.eae-timeline {{CURRENT_ITEM}} .eae-tl-content-wrapper:hover .eae-tl-item-content::before' => 'border-color: transparent {{VALUE}} transparent transparent !important;',
|
430 |
+
// '(mobile){{WRAPPER}} .eae-layout-center.eae-timeline.eae-tl-res-layout-left {{CURRENT_ITEM}} .eae-tl-content-wrapper:hover .eae-tl-item-content::before' => 'border-color: transparent {{VALUE}} transparent transparent !important;',
|
431 |
+
// '(tablet){{WRAPPER}} .eae-layout-center.eae-timeline.eae-tl-res-layout-left {{CURRENT_ITEM}} .eae-tl-content-wrapper:hover .eae-tl-item-content::before' => 'border-color: transparent {{VALUE}} transparent transparent !important;',
|
432 |
+
// '(mobile){{WRAPPER}} .eae-layout-center.eae-timeline.eae-tl-res-layout-right {{CURRENT_ITEM}} .eae-tl-content-wrapper:hover .eae-tl-item-content::before' => 'border-color: transparent transparent transparent {{VALUE}} !important;',
|
433 |
+
// '(tablet){{WRAPPER}} .eae-layout-center.eae-timeline.eae-tl-res-layout-right {{CURRENT_ITEM}} .eae-tl-content-wrapper:hover .eae-tl-item-content::before' => 'border-color: transparent transparent transparent {{VALUE}} !important;',
|
434 |
+
// '(mobile){{WRAPPER}} .eae-layout-center.eae-timeline.eae-tl-res-style-mobile.eae-tl-res-layout-left {{CURRENT_ITEM}} .eae-tl-content-wrapper:hover .eae-tl-item-content::before' => 'border-color: transparent {{VALUE}} transparent transparent !important;',
|
435 |
+
// '(mobile){{WRAPPER}} .eae-layout-center.eae-timeline.eae-tl-res-style-mobile.eae-tl-res-layout-right {{CURRENT_ITEM}} .eae-tl-content-wrapper:hover .eae-tl-item-content::before' => 'border-color: transparent transparent transparent {{VALUE}} !important;',
|
436 |
+
// '(tablet){{WRAPPER}} .eae-timeline.eae-layout-center.eae-tl-res-style-mobile.eae-tl-res-layout-left {{CURRENT_ITEM}} .eae-tl-content-wrapper:hover .eae-tl-item-content::before' => 'border-color: transparent {{VALUE}} transparent transparent !important;',
|
437 |
+
// '(tablet){{WRAPPER}} .eae-timeline.eae-layout-center.eae-tl-res-style-mobile..eae-tl-res-layout-right {{CURRENT_ITEM}} .eae-tl-content-wrapper:hover .eae-tl-item-content::before' => 'border-color: transparent transparent transparent {{VALUE}} !important;',
|
438 |
+
],
|
439 |
+
'condition' => [
|
440 |
+
'tl_custom_card_style' => 'yes'
|
441 |
+
]
|
442 |
+
]
|
443 |
+
);
|
444 |
+
|
445 |
+
/*Foucsed Start*/
|
446 |
+
|
447 |
+
$repeater->add_control(
|
448 |
+
'tl_custom_card_style_focused',
|
449 |
+
[
|
450 |
+
'label' => __( 'Focused', 'wts-eae' ),
|
451 |
+
'type' => Controls_Manager::HEADING,
|
452 |
+
'separator' => 'before',
|
453 |
+
'condition' => [
|
454 |
+
'tl_custom_card_style' => 'yes'
|
455 |
+
]
|
456 |
+
]
|
457 |
+
);
|
458 |
+
|
459 |
+
$repeater->add_control(
|
460 |
+
'tl_custom_title_color_focused',
|
461 |
+
[
|
462 |
+
'label' => __( 'Title Color', 'wts-eae' ),
|
463 |
+
'type' => Controls_Manager::COLOR,
|
464 |
+
'scheme' => [
|
465 |
+
'type' => Scheme_Color::get_type(),
|
466 |
+
'value' => Scheme_Color::COLOR_1,
|
467 |
+
],
|
468 |
+
'condition' => [
|
469 |
+
'tl_custom_card_style' => 'yes'
|
470 |
+
],
|
471 |
+
'selectors' => [
|
472 |
+
'{{WRAPPER}} {{CURRENT_ITEM}}.eae-tl-item-focused .eae-tl-content-wrapper .eae-tl-item-title' => 'color: {{VALUE}};',
|
473 |
+
],
|
474 |
+
]
|
475 |
+
);
|
476 |
+
$repeater->add_control(
|
477 |
+
'tl_custom_date_color_focused',
|
478 |
+
[
|
479 |
+
'label' => __( 'Date Color', 'wts-eae' ),
|
480 |
+
'type' => Controls_Manager::COLOR,
|
481 |
+
'scheme' => [
|
482 |
+
'type' => Scheme_Color::get_type(),
|
483 |
+
'value' => Scheme_Color::COLOR_2,
|
484 |
+
],
|
485 |
+
'selectors' => [
|
486 |
+
'{{WRAPPER}} {{CURRENT_ITEM}}.eae-tl-item-focused .eae-tl-content-wrapper:hover .eae-tl-item-meta-inner' => 'color: {{VALUE}};',
|
487 |
+
'{{WRAPPER}} {{CURRENT_ITEM}}.eae-tl-item-focused .eae-tl-item-meta' => 'color: {{VALUE}};',
|
488 |
+
],
|
489 |
+
'condition' => [
|
490 |
+
'tl_custom_card_style' => 'yes'
|
491 |
+
]
|
492 |
+
]
|
493 |
+
);
|
494 |
+
$repeater->add_control(
|
495 |
+
'tl_custom_content_color_focused',
|
496 |
+
[
|
497 |
+
'label' => __( 'Content Color', 'wts-eae' ),
|
498 |
+
'type' => Controls_Manager::COLOR,
|
499 |
+
'scheme' => [
|
500 |
+
'type' => Scheme_Color::get_type(),
|
501 |
+
'value' => Scheme_Color::COLOR_3,
|
502 |
+
],
|
503 |
+
'selectors' => [
|
504 |
+
'{{WRAPPER}} {{CURRENT_ITEM}}.eae-tl-item-focused .eae-tl-content-wrapper .eae-tl-content' => 'color: {{VALUE}};',
|
505 |
+
],
|
506 |
+
'condition' => [
|
507 |
+
'tl_custom_card_style' => 'yes'
|
508 |
+
]
|
509 |
+
]
|
510 |
+
);
|
511 |
+
|
512 |
+
$repeater->add_control(
|
513 |
+
'tl_custom_background_color_focused',
|
514 |
+
[
|
515 |
+
'label' => __( 'Background Color', 'wts-eae' ),
|
516 |
+
'type' => Controls_Manager::COLOR,
|
517 |
+
|
518 |
+
'selectors' => [
|
519 |
+
'{{WRAPPER}} {{CURRENT_ITEM}}.eae-tl-item-focused .eae-tl-item-content' => 'background: {{VALUE}} !important;',
|
520 |
+
'{{WRAPPER}} .eae-layout-center.eae-timeline {{CURRENT_ITEM}}.eae-tl-item-focused.eae-timeline-item:nth-child(even) .eae-tl-item-content::before' => 'border-color: transparent {{VALUE}} transparent transparent !important;',
|
521 |
+
'{{WRAPPER}} .eae-layout-center.eae-timeline {{CURRENT_ITEM}}.eae-tl-item-focused.eae-timeline-item:nth-child(odd) .eae-tl-item-content::before' => 'border-color: transparent transparent transparent {{VALUE}} !important;',
|
522 |
+
'{{WRAPPER}} .eae-layout-right.eae-timeline {{CURRENT_ITEM}}.eae-tl-item-focused .eae-tl-item-content::before' => 'border-color: transparent transparent transparent {{VALUE}} !important;',
|
523 |
+
'{{WRAPPER}} .eae-layout-left.eae-timeline {{CURRENT_ITEM}}.eae-tl-item-focused .eae-tl-item-content::before' => 'border-color: transparent {{VALUE}} transparent transparent !important;',
|
524 |
+
'(mobile){{WRAPPER}} .eae-layout-center.eae-timeline.eae-tl-res-layout-left {{CURRENT_ITEM}}.eae-tl-item-focused.eae-timeline-item .eae-tl-item-content::before' => 'border-color: transparent {{VALUE}} transparent transparent !important;',
|
525 |
+
'(tablet){{WRAPPER}} .eae-layout-center.eae-timeline.eae-tl-res-layout-left {{CURRENT_ITEM}}.eae-tl-item-focused.eae-timeline-item .eae-tl-item-content::before' => 'border-color: transparent {{VALUE}} transparent transparent !important;',
|
526 |
+
'(mobile){{WRAPPER}} .eae-layout-center.eae-timeline.eae-tl-res-layout-right {{CURRENT_ITEM}}.eae-tl-item-focused.eae-timeline-item .eae-tl-item-content::before' => 'border-color: transparent transparent transparent {{VALUE}} !important;',
|
527 |
+
'(tablet){{WRAPPER}} .eae-layout-center.eae-timeline.eae-tl-res-layout-right {{CURRENT_ITEM}}.eae-tl-item-focused.eae-timeline-item .eae-tl-item-content::before' => 'border-color: transparent transparent transparent {{VALUE}} !important;',
|
528 |
+
'(mobile){{WRAPPER}} .eae-timeline.eae-layout-center.eae-tl-res-style-mobile {{CURRENT_ITEM}}.eae-tl-item-focused.eae-timeline-item:nth-child(odd) .eae-tl-item-content::before' => 'border-color: transparent transparent transparent {{VALUE}} !important;',
|
529 |
+
'(mobile){{WRAPPER}} .eae-timeline.eae-layout-center.eae-tl-res-style-mobile.eae-tl-res-layout-left {{CURRENT_ITEM}}.eae-tl-item-focused.eae-timeline-item:nth-child(odd) .eae-tl-item-content::before' => 'border-color: transparent {{VALUE}} transparent transparent !important;',
|
530 |
+
'(tablet){{WRAPPER}} .eae-timeline.eae-layout-center.eae-tl-res-style-mobile {{CURRENT_ITEM}}.eae-tl-item-focused.eae-timeline-item:nth-child(odd) .eae-tl-item-content::before' => 'border-color: transparent transparent transparent {{VALUE}} !important;',
|
531 |
+
|
532 |
+
|
533 |
+
// '{{WRAPPER}} {{CURRENT_ITEM}}.eae-tl-item-focused .eae-tl-content-wrapper .eae-tl-item-content' => 'background: {{VALUE}} !important;',
|
534 |
+
// '{{WRAPPER}} .eae-layout-center.eae-timeline {{CURRENT_ITEM}}.eae-tl-item-focused .eae-tl-content-wrapper .eae-tl-item-content::before' => 'border-color: transparent {{VALUE}} transparent transparent !important;',
|
535 |
+
// '{{WRAPPER}} .eae-layout-right.eae-timeline {{CURRENT_ITEM}}.eae-tl-item-focused .eae-tl-item-content::before' => 'border-color: transparent transparent transparent {{VALUE}} !important;',
|
536 |
+
// '{{WRAPPER}} .eae-layout-left.eae-timeline {{CURRENT_ITEM}}.eae-tl-item-focused .eae-tl-content-wrapper .eae-tl-item-content::before' => 'border-color: transparent {{VALUE}} transparent transparent !important;',
|
537 |
+
// '(mobile){{WRAPPER}} .eae-layout-center.eae-timeline.eae-tl-res-layout-left {{CURRENT_ITEM}}.eae-tl-item-focused .eae-tl-content-wrapper .eae-tl-item-content::before' => 'border-color: transparent {{VALUE}} transparent transparent !important;',
|
538 |
+
// '(tablet){{WRAPPER}} .eae-layout-center.eae-timeline.eae-tl-res-layout-left {{CURRENT_ITEM}}.eae-tl-item-focused .eae-tl-content-wrapper .eae-tl-item-content::before' => 'border-color: transparent {{VALUE}} transparent transparent !important;',
|
539 |
+
// '(mobile){{WRAPPER}} .eae-layout-center.eae-timeline.eae-tl-res-layout-right {{CURRENT_ITEM}}.eae-tl-item-focused .eae-tl-content-wrapper .eae-tl-item-content::before' => 'border-color: transparent transparent transparent {{VALUE}} !important;',
|
540 |
+
// '(tablet){{WRAPPER}} .eae-layout-center.eae-timeline.eae-tl-res-layout-right {{CURRENT_ITEM}}.eae-tl-item-focused .eae-tl-content-wrapper .eae-tl-item-content::before' => 'border-color: transparent transparent transparent {{VALUE}} !important;',
|
541 |
+
// '(mobile){{WRAPPER}} .eae-layout-center.eae-timeline.eae-tl-res-style-mobile.eae-tl-res-layout-left {{CURRENT_ITEM}}.eae-tl-item-focused .eae-tl-content-wrapper .eae-tl-item-content::before' => 'border-color: transparent {{VALUE}} transparent transparent !important;',
|
542 |
+
// '(mobile){{WRAPPER}} .eae-layout-center.eae-timeline.eae-tl-res-style-mobile.eae-tl-res-layout-right {{CURRENT_ITEM}}.eae-tl-item-focused .eae-tl-content-wrapper .eae-tl-item-content::before' => 'border-color: transparent transparent transparent {{VALUE}} !important;',
|
543 |
+
// '(tablet){{WRAPPER}} .eae-timeline.eae-layout-center.eae-tl-res-style-mobile.eae-tl-res-layout-left {{CURRENT_ITEM}}.eae-tl-item-focused .eae-tl-content-wrapper .eae-tl-item-content::before' => 'border-color: transparent {{VALUE}} transparent transparent !important;',
|
544 |
+
// '(tablet){{WRAPPER}} .eae-timeline.eae-layout-center.eae-tl-res-style-mobile..eae-tl-res-layout-right {{CURRENT_ITEM}}.eae-tl-item-focused .eae-tl-content-wrapper .eae-tl-item-content::before' => 'border-color: transparent transparent transparent {{VALUE}} !important;',
|
545 |
+
],
|
546 |
+
'condition' => [
|
547 |
+
'tl_custom_card_style' => 'yes'
|
548 |
+
]
|
549 |
+
]
|
550 |
+
);
|
551 |
+
|
552 |
+
/* Focused End */
|
553 |
+
|
554 |
+
|
555 |
+
$repeater->add_responsive_control(
|
556 |
+
'tl_custom_content_align',
|
557 |
+
[
|
558 |
+
'label' => __( 'Alignment', 'wts-eae' ),
|
559 |
+
'type' => Controls_Manager::CHOOSE,
|
560 |
+
'default' => 'center',
|
561 |
+
'options' => [
|
562 |
+
'left' => [
|
563 |
+
'title' => __( 'Left', 'wts-eae' ),
|
564 |
+
'icon' => 'fa fa-align-left',
|
565 |
+
],
|
566 |
+
'center' => [
|
567 |
+
'title' => __( 'Top', 'wts-eae' ),
|
568 |
+
'icon' => 'fa fa-align-center',
|
569 |
+
],
|
570 |
+
'right' => [
|
571 |
+
'title' => __( 'Right', 'wts-eae' ),
|
572 |
+
'icon' => 'fa fa-align-right',
|
573 |
+
],
|
574 |
+
],
|
575 |
+
'selectors' => [
|
576 |
+
'{{WRAPPER}} {{CURRENT_ITEM}} .eae-tl-item-content' => 'text-align: {{VALUE}}',
|
577 |
+
],
|
578 |
+
'condition' => [
|
579 |
+
'tl_custom_card_style' => 'yes'
|
580 |
+
]
|
581 |
+
]
|
582 |
+
);
|
583 |
+
|
584 |
$repeater->add_control(
|
585 |
'tl_custom_image_style',
|
586 |
[
|
readme.txt
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
=== Elementor Addon Elements ===
|
2 |
-
Contributors: webtechstreet, satishprajapati, hardiksharma
|
3 |
Tags: page-builder, elementor, elementor addon
|
4 |
Requires at least: 4.4
|
5 |
Tested up to: 5.3
|
@@ -56,6 +56,12 @@ Note: This plugin is an addon of Elementor Page Builder (https://wordpress.org/p
|
|
56 |
|
57 |
New elements are added at the end of default elementor widget area.
|
58 |
|
|
|
|
|
|
|
|
|
|
|
|
|
59 |
|
60 |
== Screenshots ==
|
61 |
|
@@ -66,7 +72,15 @@ New elements are added at the end of default elementor widget area.
|
|
66 |
|
67 |
== Changelog ==
|
68 |
|
69 |
-
= 1.6.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
70 |
* Icon Migration from Font Awesome 4 to Font Awesome 5.
|
71 |
* Fixed issue with SVG display
|
72 |
* Modal Popup Close Button Spacing option added.
|
1 |
=== Elementor Addon Elements ===
|
2 |
+
Contributors: wpvibes, webtechstreet, satishprajapati, hardiksharma
|
3 |
Tags: page-builder, elementor, elementor addon
|
4 |
Requires at least: 4.4
|
5 |
Tested up to: 5.3
|
56 |
|
57 |
New elements are added at the end of default elementor widget area.
|
58 |
|
59 |
+
= How to set shape separator as full width. =
|
60 |
+
Setting up separator can be little tricky for you initially.
|
61 |
+
Under section settings set
|
62 |
+
Stretch Section => yes
|
63 |
+
Content width => full width
|
64 |
+
Column gap => No gap
|
65 |
|
66 |
== Screenshots ==
|
67 |
|
72 |
|
73 |
== Changelog ==
|
74 |
|
75 |
+
= 1.6.2 =
|
76 |
+
* Tweak : Added option to define Feature Heading and Button Heading in Comparison Table
|
77 |
+
* Tweak : Added capability to style individual cards in Timeline widget
|
78 |
+
* Tweak : Enhancements in Filterable Gallery
|
79 |
+
* Tweak : Automatic CSS Regenerated on plugin re-activation.
|
80 |
+
* Fix : Text Separator blank icon migration issue resolved
|
81 |
+
* Fix : Modal Popup Close button icon migration issue resolved
|
82 |
+
|
83 |
+
== 1.6.1 =
|
84 |
* Icon Migration from Font Awesome 4 to Font Awesome 5.
|
85 |
* Fixed issue with SVG display
|
86 |
* Modal Popup Close Button Spacing option added.
|