ecs-style.css
476 lines
| 1 | /* Elementor Custom Skin */ |
| 2 | /* https://www.dudaster.com */ |
| 3 | .swiper-container.swiper-initialized .ecs-posts{ |
| 4 | overflow:visible; |
| 5 | } |
| 6 | .ecs-post-loop .elementor-page-title{ |
| 7 | display:block; |
| 8 | } |
| 9 | |
| 10 | .ecs-loop-preview{ |
| 11 | height:100%; |
| 12 | width:100%; |
| 13 | background:lightgray; |
| 14 | border:solid 1px gray; |
| 15 | padding:5px; |
| 16 | } |
| 17 | .ecs-loop-preview h3{ |
| 18 | font-size:16px; |
| 19 | font-weight:500; |
| 20 | |
| 21 | } |
| 22 | .ecs-loop-preview span{ |
| 23 | font-size:12px; |
| 24 | } |
| 25 | .ecs-loop-preview .ecs-image-holder{ |
| 26 | width: 100%; |
| 27 | line-height: 113px; |
| 28 | background-color: #808080; |
| 29 | font-size: 45px; |
| 30 | text-align: center; |
| 31 | vertical-align: middle; |
| 32 | font-weight: 900; |
| 33 | color: #929191; |
| 34 | } |
| 35 | |
| 36 | .ecs-link-wrapper{ |
| 37 | cursor: pointer; |
| 38 | } |
| 39 | .elementor-widget-ele-loop-item, .elementor-widget-ele-loop-item > .elementor-widget-container, |
| 40 | .elementor-element-edit-mode.elementor-widget-ele-loop-item, .elementor-element-edit-mode.elementor-widget-ele-loop-item > .elementor-widget-container{ |
| 41 | |
| 42 | height: 100%; |
| 43 | |
| 44 | } |
| 45 | /* Fix for Elementor 3.4 */ |
| 46 | |
| 47 | .elementor-widget-posts .ecs-posts .elementor-button-wrapper { |
| 48 | margin-top: 0; |
| 49 | } |
| 50 | |
| 51 | /* Fix astra css issues */ |
| 52 | |
| 53 | .ecs-post-loop .ast-article-single{ |
| 54 | background-color: none; |
| 55 | border-bottom:none; |
| 56 | margin: 0; |
| 57 | padding: 0; |
| 58 | } |
| 59 | .ecs-post-loop.ast-article-post{ |
| 60 | width:100%; |
| 61 | } |
| 62 | /* fix storeforent css issues*/ |
| 63 | |
| 64 | .theme-storefront.elementor-editor-active #primary.content-area{ |
| 65 | float:none; |
| 66 | } |
| 67 | |
| 68 | /* Lazy Load Animations */ |
| 69 | |
| 70 | .elementor-editor-active .ecs-lazyload a,.elementor-editor-preview .ecs-lazyload a{ |
| 71 | display:none; |
| 72 | } |
| 73 | .animation-hidden .ecs-lazy-load-animation{ |
| 74 | height:0; |
| 75 | visibility:hidden; |
| 76 | } |
| 77 | |
| 78 | /* loading bar progresion */ |
| 79 | /* |
| 80 | <div class="barload-wrapper ecs-lazy-load-animation"><div class="barload-border ecs-ll-brcolor"><div class="barload-whitespace"><div class="barload-line ecs-ll-bgcolor"></div></div></div></div> |
| 81 | */ |
| 82 | .barload-wrapper { |
| 83 | width: 195px; |
| 84 | height: 1em; |
| 85 | position: relative; |
| 86 | display:inline-block; |
| 87 | font-size:16px; |
| 88 | padding:10px; |
| 89 | } |
| 90 | |
| 91 | .barload-border { |
| 92 | border: 3px solid rgb(34,34,34); |
| 93 | height: 100%; |
| 94 | width: 100%; |
| 95 | position: relative; |
| 96 | |
| 97 | top: -50%; |
| 98 | padding: 4px 3px; |
| 99 | } |
| 100 | |
| 101 | .barload-whitespace { |
| 102 | overflow: hidden; |
| 103 | height: 100%; |
| 104 | width: 100%; |
| 105 | margin: 0 auto; |
| 106 | overflow: hidden; |
| 107 | position: relative; |
| 108 | } |
| 109 | |
| 110 | .barload-line { |
| 111 | position: absolute; |
| 112 | height: 100%; |
| 113 | width: 100%; |
| 114 | background-color: rgb(0,0,0); |
| 115 | animation: barload-slide 2.75s steps(40) infinite; |
| 116 | -o-animation: barload-slide 2.75s steps(40) infinite; |
| 117 | -ms-animation: barload-slide 2.75s steps(40) infinite; |
| 118 | -webkit-animation: barload-slide 2.75s steps(40) infinite; |
| 119 | -moz-animation: barload-slide 2.75s steps(40) infinite; |
| 120 | } |
| 121 | |
| 122 | |
| 123 | |
| 124 | @keyframes barload-slide { |
| 125 | 0% { |
| 126 | left: -100%; |
| 127 | } |
| 128 | |
| 129 | 100% { |
| 130 | left: 100%; |
| 131 | } |
| 132 | } |
| 133 | |
| 134 | @-o-keyframes barload-slide { |
| 135 | 0% { |
| 136 | left: -100%; |
| 137 | } |
| 138 | |
| 139 | 100% { |
| 140 | left: 100%; |
| 141 | } |
| 142 | } |
| 143 | |
| 144 | @-ms-keyframes barload-slide { |
| 145 | 0% { |
| 146 | left: -100%; |
| 147 | } |
| 148 | |
| 149 | 100% { |
| 150 | left: 100%; |
| 151 | } |
| 152 | } |
| 153 | |
| 154 | @-webkit-keyframes barload-slide { |
| 155 | 0% { |
| 156 | left: -100%; |
| 157 | } |
| 158 | |
| 159 | 100% { |
| 160 | left: 100%; |
| 161 | } |
| 162 | } |
| 163 | |
| 164 | @-moz-keyframes barload-slide { |
| 165 | 0% { |
| 166 | left: -100%; |
| 167 | } |
| 168 | |
| 169 | 100% { |
| 170 | left: 100%; |
| 171 | } |
| 172 | } |
| 173 | /* four ball moving from left to right*/ |
| 174 | /* |
| 175 | <div class="ballsload-container ecs-lazy-load-animation"><div class="ecs-ll-bgcolor"></div><div class="ecs-ll-bgcolor"></div><div class="ecs-ll-bgcolor"></div><div class="ecs-ll-bgcolor"></div></div> |
| 176 | */ |
| 177 | |
| 178 | .barload-wrapper ,.barload-wrapper * { |
| 179 | box-sizing:content-box; |
| 180 | } |
| 181 | .ballsload-container{ |
| 182 | font-size:16px; |
| 183 | padding:10px; |
| 184 | position:relative; |
| 185 | } |
| 186 | |
| 187 | .ballsload-container div { |
| 188 | width: 1em; |
| 189 | height: 1em; |
| 190 | position: absolute; |
| 191 | background-color: rgb(0,0,0); |
| 192 | top: 0; |
| 193 | border-radius: 50%; |
| 194 | } |
| 195 | |
| 196 | .ballsload-container div:nth-child(1) { |
| 197 | |
| 198 | animation: ballsload-move 2.3s infinite cubic-bezier(0.2, 0.64, 0.81, 0.23); |
| 199 | -o-animation: ballsload-move 2.3s infinite cubic-bezier(0.2, 0.64, 0.81, 0.23); |
| 200 | -ms-animation: ballsload-move 2.3s infinite cubic-bezier(0.2, 0.64, 0.81, 0.23); |
| 201 | -webkit-animation: ballsload-move 2.3s infinite cubic-bezier(0.2, 0.64, 0.81, 0.23); |
| 202 | -moz-animation: ballsload-move 2.3s infinite cubic-bezier(0.2, 0.64, 0.81, 0.23); |
| 203 | } |
| 204 | |
| 205 | .ballsload-container div:nth-child(2) { |
| 206 | |
| 207 | animation: ballsload-move 2.3s 172.5ms infinite cubic-bezier(0.2, 0.64, 0.81, 0.23); |
| 208 | -o-animation: ballsload-move 2.3s 172.5ms infinite cubic-bezier(0.2, 0.64, 0.81, 0.23); |
| 209 | -ms-animation: ballsload-move 2.3s 172.5ms infinite cubic-bezier(0.2, 0.64, 0.81, 0.23); |
| 210 | -webkit-animation: ballsload-move 2.3s 172.5ms infinite cubic-bezier(0.2, 0.64, 0.81, 0.23); |
| 211 | -moz-animation: ballsload-move 2.3s 172.5ms infinite cubic-bezier(0.2, 0.64, 0.81, 0.23); |
| 212 | } |
| 213 | |
| 214 | .ballsload-container div:nth-child(3) { |
| 215 | |
| 216 | animation: ballsload-move 2.3s 345ms infinite cubic-bezier(0.2, 0.64, 0.81, 0.23); |
| 217 | -o-animation: ballsload-move 2.3s 345ms infinite cubic-bezier(0.2, 0.64, 0.81, 0.23); |
| 218 | -ms-animation: ballsload-move 2.3s 345ms infinite cubic-bezier(0.2, 0.64, 0.81, 0.23); |
| 219 | -webkit-animation: ballsload-move 2.3s 345ms infinite cubic-bezier(0.2, 0.64, 0.81, 0.23); |
| 220 | -moz-animation: ballsload-move 2.3s 345ms infinite cubic-bezier(0.2, 0.64, 0.81, 0.23); |
| 221 | } |
| 222 | |
| 223 | .ballsload-container div:nth-child(4) { |
| 224 | |
| 225 | animation: ballsload-move 2.3s 517.5ms infinite cubic-bezier(0.2, 0.64, 0.81, 0.23); |
| 226 | -o-animation: ballsload-move 2.3s 517.5ms infinite cubic-bezier(0.2, 0.64, 0.81, 0.23); |
| 227 | -ms-animation: ballsload-move 2.3s 517.5ms infinite cubic-bezier(0.2, 0.64, 0.81, 0.23); |
| 228 | -webkit-animation: ballsload-move 2.3s 517.5ms infinite cubic-bezier(0.2, 0.64, 0.81, 0.23); |
| 229 | -moz-animation: ballsload-move 2.3s 517.5ms infinite cubic-bezier(0.2, 0.64, 0.81, 0.23); |
| 230 | } |
| 231 | |
| 232 | |
| 233 | |
| 234 | @keyframes ballsload-move { |
| 235 | 0% { |
| 236 | left: 0%; |
| 237 | } |
| 238 | 100% { |
| 239 | left: 100%; |
| 240 | } |
| 241 | } |
| 242 | |
| 243 | @-o-keyframes ballsload-move { |
| 244 | 0% { |
| 245 | left: 0%; |
| 246 | } |
| 247 | 100% { |
| 248 | left: 100%; |
| 249 | } |
| 250 | } |
| 251 | |
| 252 | @-ms-keyframes ballsload-move { |
| 253 | 0% { |
| 254 | left: 0%; |
| 255 | } |
| 256 | 100% { |
| 257 | left: 100%; |
| 258 | } |
| 259 | } |
| 260 | |
| 261 | @-webkit-keyframes ballsload-move { |
| 262 | 0% { |
| 263 | left: 0%; |
| 264 | } |
| 265 | 100% { |
| 266 | left: 100%; |
| 267 | } |
| 268 | } |
| 269 | |
| 270 | @-moz-keyframes ballsload-move { |
| 271 | 0% { |
| 272 | left: 0%; |
| 273 | } |
| 274 | 100% { |
| 275 | left: 100%; |
| 276 | } |
| 277 | } |
| 278 | |
| 279 | |
| 280 | /* one ball sliding left to right */ |
| 281 | /* |
| 282 | <div id="movingBallG" class="ecs-lazy-load-animation"><div class="movingBallLineG ecs-ll-bgcolor"></div><div id="movingBallG_1" class="movingBallG ecs-ll-bgcolor"></div></div> |
| 283 | */ |
| 284 | |
| 285 | #movingBallG{ |
| 286 | position:relative; |
| 287 | width:250px; |
| 288 | height:19px; |
| 289 | display:inline-block; |
| 290 | font-size:16px; |
| 291 | } |
| 292 | |
| 293 | .movingBallLineG{ |
| 294 | position:absolute; |
| 295 | left:0px; |
| 296 | top:0.5em; |
| 297 | height:0.25em; |
| 298 | width:250px; |
| 299 | background-color:rgb(0,0,0); |
| 300 | } |
| 301 | |
| 302 | .movingBallG{ |
| 303 | background-color:rgb(0,0,0); |
| 304 | position:absolute; |
| 305 | top:0; |
| 306 | left:0; |
| 307 | width:1.188em; |
| 308 | height:1.188em; |
| 309 | border-radius:100px; |
| 310 | -o-border-radius:100px; |
| 311 | -ms-border-radius:100px; |
| 312 | -webkit-border-radius:100px; |
| 313 | -moz-border-radius:100px; |
| 314 | animation-name:bounce_movingBallG; |
| 315 | -o-animation-name:bounce_movingBallG; |
| 316 | -ms-animation-name:bounce_movingBallG; |
| 317 | -webkit-animation-name:bounce_movingBallG; |
| 318 | -moz-animation-name:bounce_movingBallG; |
| 319 | animation-duration:1.5s; |
| 320 | -o-animation-duration:1.5s; |
| 321 | -ms-animation-duration:1.5s; |
| 322 | -webkit-animation-duration:1.5s; |
| 323 | -moz-animation-duration:1.5s; |
| 324 | animation-iteration-count:infinite; |
| 325 | -o-animation-iteration-count:infinite; |
| 326 | -ms-animation-iteration-count:infinite; |
| 327 | -webkit-animation-iteration-count:infinite; |
| 328 | -moz-animation-iteration-count:infinite; |
| 329 | animation-direction:normal; |
| 330 | -o-animation-direction:normal; |
| 331 | -ms-animation-direction:normal; |
| 332 | -webkit-animation-direction:normal; |
| 333 | -moz-animation-direction:normal; |
| 334 | } |
| 335 | |
| 336 | |
| 337 | |
| 338 | @keyframes bounce_movingBallG{ |
| 339 | 0%{ |
| 340 | left:0px; |
| 341 | } |
| 342 | |
| 343 | 50%{ |
| 344 | left:230px; |
| 345 | } |
| 346 | |
| 347 | 100%{ |
| 348 | left:0px; |
| 349 | } |
| 350 | } |
| 351 | |
| 352 | @-o-keyframes bounce_movingBallG{ |
| 353 | 0%{ |
| 354 | left:0px; |
| 355 | } |
| 356 | |
| 357 | 50%{ |
| 358 | left:230px; |
| 359 | } |
| 360 | |
| 361 | 100%{ |
| 362 | left:0px; |
| 363 | } |
| 364 | } |
| 365 | |
| 366 | @-ms-keyframes bounce_movingBallG{ |
| 367 | 0%{ |
| 368 | left:0px; |
| 369 | } |
| 370 | |
| 371 | 50%{ |
| 372 | left:230px; |
| 373 | } |
| 374 | |
| 375 | 100%{ |
| 376 | left:0px; |
| 377 | } |
| 378 | } |
| 379 | |
| 380 | @-webkit-keyframes bounce_movingBallG{ |
| 381 | 0%{ |
| 382 | left:0px; |
| 383 | } |
| 384 | |
| 385 | 50%{ |
| 386 | left:230px; |
| 387 | } |
| 388 | |
| 389 | 100%{ |
| 390 | left:0px; |
| 391 | } |
| 392 | } |
| 393 | |
| 394 | @-moz-keyframes bounce_movingBallG{ |
| 395 | 0%{ |
| 396 | left:0px; |
| 397 | } |
| 398 | |
| 399 | 50%{ |
| 400 | left:230px; |
| 401 | } |
| 402 | |
| 403 | 100%{ |
| 404 | left:0px; |
| 405 | } |
| 406 | } |
| 407 | |
| 408 | |
| 409 | /* loading 3 dots moving form left to write */ |
| 410 | |
| 411 | /* |
| 412 | <div class="lds-ellipsis ecs-lazy-load-animation"><div class="ecs-ll-bgcolor"></div><div class="ecs-ll-bgcolor"></div><div class="ecs-ll-bgcolor"></div><div class="ecs-ll-bgcolor"></div></div> |
| 413 | */ |
| 414 | |
| 415 | .lds-ellipsis { |
| 416 | display: inline-block; |
| 417 | position: relative; |
| 418 | width: 8em; |
| 419 | height: 1em; |
| 420 | font-size:13px; |
| 421 | } |
| 422 | .lds-ellipsis div { |
| 423 | position: absolute; |
| 424 | top: 0px; |
| 425 | width: 1em; |
| 426 | height: 1em; |
| 427 | border-radius: 50%; |
| 428 | background: #000; |
| 429 | animation-timing-function: cubic-bezier(0, 1, 1, 0); |
| 430 | } |
| 431 | .lds-ellipsis div:nth-child(1) { |
| 432 | left: 1em; |
| 433 | animation: lds-ellipsis1 0.6s infinite; |
| 434 | } |
| 435 | .lds-ellipsis div:nth-child(2) { |
| 436 | left: 1em; |
| 437 | animation: lds-ellipsis2 0.6s infinite; |
| 438 | } |
| 439 | .lds-ellipsis div:nth-child(3) { |
| 440 | left: 4em; |
| 441 | animation: lds-ellipsis2 0.6s infinite; |
| 442 | } |
| 443 | .lds-ellipsis div:nth-child(4) { |
| 444 | left: 7em; |
| 445 | animation: lds-ellipsis3 0.6s infinite; |
| 446 | } |
| 447 | @keyframes lds-ellipsis1 { |
| 448 | 0% { |
| 449 | transform: scale(0); |
| 450 | } |
| 451 | 100% { |
| 452 | transform: scale(1); |
| 453 | } |
| 454 | } |
| 455 | @keyframes lds-ellipsis3 { |
| 456 | 0% { |
| 457 | transform: scale(1); |
| 458 | } |
| 459 | 100% { |
| 460 | transform: scale(0); |
| 461 | } |
| 462 | } |
| 463 | @keyframes lds-ellipsis2 { |
| 464 | 0% { |
| 465 | transform: translate(0, 0); |
| 466 | } |
| 467 | 100% { |
| 468 | transform: translate(3em, 0); |
| 469 | } |
| 470 | } |
| 471 | |
| 472 | |
| 473 | |
| 474 | |
| 475 | |
| 476 |