| @@ -1,4 +1,5 @@ | ||
| 1 | +/*! elementor - v3.7.3 - 29-08-2022 */ | |
| 1 | 2 | .elementor-control-unit-1 { |
| 2 | 3 | width: 27px; |
| 3 | 4 | } |
| 4 | 5 | |
| @@ -21,9 +22,10 @@ | ||
| 21 | 22 | |
| 22 | 23 | *, :before, :after { |
| 23 | 24 | margin: 0; |
| 24 | 25 | padding: 0; |
| 25 | - box-sizing: border-box; | |
| 26 | + -webkit-box-sizing: border-box; | |
| 27 | + box-sizing: border-box; | |
| 26 | 28 | } |
| 27 | 29 | |
| 28 | 30 | body, |
| 29 | 31 | html { |
| @@ -30,9 +32,9 @@ | ||
| 30 | 32 | height: 100%; |
| 31 | 33 | } |
| 32 | 34 | |
| 33 | 35 | html { |
| 34 | - background-color: var(--e-a-bg-loading); | |
| 36 | + background-color: #F1F1F1; | |
| 35 | 37 | } |
| 36 | 38 | |
| 37 | 39 | iframe, |
| 38 | 40 | img { |
| @@ -47,11 +49,10 @@ | ||
| 47 | 49 | text-decoration: none; |
| 48 | 50 | } |
| 49 | 51 | |
| 50 | 52 | body { |
| 51 | - background-color: var(--e-a-bg-default); | |
| 52 | - color: var(--e-a-color-txt); | |
| 53 | - font-family: var(--e-a-font-family); | |
| 53 | + color: #6d7882; | |
| 54 | + font-family: Roboto, Arial, Helvetica, Verdana, sans-serif; | |
| 54 | 55 | font-size: 13px; |
| 55 | 56 | font-weight: normal; |
| 56 | 57 | line-height: 1; |
| 57 | 58 | text-decoration: none; |
| @@ -60,29 +61,31 @@ | ||
| 60 | 61 | } |
| 61 | 62 | body:after { |
| 62 | 63 | content: ""; |
| 63 | 64 | position: absolute; |
| 64 | - inset-block-start: 0; | |
| 65 | - inset-inline-end: 0; | |
| 65 | + top: 0; | |
| 66 | + right: 0; | |
| 66 | 67 | height: 100%; |
| 67 | 68 | width: 0; |
| 68 | - background-color: var(--e-a-bg-default); | |
| 69 | + background-color: #71d7f7; | |
| 70 | + -webkit-transition: width 0.5s; | |
| 71 | + -o-transition: width 0.5s; | |
| 69 | 72 | transition: width 0.5s; |
| 70 | 73 | } |
| 71 | 74 | body a { |
| 72 | - color: var(--e-a-color-info); | |
| 75 | + color: #71d7f7; | |
| 73 | 76 | } |
| 74 | 77 | body a:hover { |
| 75 | - color: var(--e-a-color-primary-bold); | |
| 78 | + color: #93003c; | |
| 76 | 79 | } |
| 77 | -body.elementor-editor-active #elementor-mode-switcher-preview i { | |
| 78 | - scale: calc(1 * var(--direction-multiplier)) 1; | |
| 80 | +body.elementor-editor-active #elementor-mode-switcher-preview .eicon:before { | |
| 81 | + content: "\e89f"; | |
| 79 | 82 | } |
| 80 | 83 | body.elementor-editor-preview { |
| 81 | 84 | --e-preview-width: 100%; |
| 82 | 85 | } |
| 83 | -body.elementor-editor-preview #elementor-mode-switcher-preview i { | |
| 84 | - scale: calc(-1 * var(--direction-multiplier)) 1; | |
| 86 | +body.elementor-editor-preview #elementor-mode-switcher-preview .eicon:before { | |
| 87 | + content: "\e89e"; | |
| 85 | 88 | } |
| 86 | 89 | body.elementor-navigator--dock-hint:after { |
| 87 | 90 | width: 30px; |
| 88 | 91 | } |
| @@ -87,8 +90,10 @@ | ||
| 87 | 90 | width: 30px; |
| 88 | 91 | } |
| 89 | 92 | |
| 90 | 93 | #elementor-editor-wrapper { |
| 94 | + display: -webkit-box; | |
| 95 | + display: -ms-flexbox; | |
| 91 | 96 | display: flex; |
| 92 | 97 | width: 100%; |
| 93 | 98 | height: 100vh; |
| 94 | 99 | } |
| @@ -94,31 +99,59 @@ | ||
| 94 | 99 | } |
| 95 | 100 | |
| 96 | 101 | #elementor-panel:not(.ui-resizable-resizing), |
| 97 | 102 | #elementor-preview:not(.ui-resizable-resizing) { |
| 103 | + -webkit-transition: margin 0.5s ease-in-out, width 0.5s ease-in-out; | |
| 104 | + -o-transition: margin 0.5s ease-in-out, width 0.5s ease-in-out; | |
| 98 | 105 | transition: margin 0.5s ease-in-out, width 0.5s ease-in-out; |
| 99 | 106 | } |
| 100 | 107 | |
| 101 | 108 | #elementor-loading { |
| 102 | 109 | position: fixed; |
| 103 | - inset: 0; | |
| 104 | - background: var(--e-a-bg-default); | |
| 110 | + top: 0; | |
| 111 | + left: 0; | |
| 112 | + bottom: 0; | |
| 113 | + right: 0; | |
| 114 | + background: #f1f3f5; | |
| 105 | 115 | z-index: 9999; |
| 106 | 116 | } |
| 107 | 117 | |
| 108 | 118 | #elementor-preview-loading { |
| 119 | + display: -webkit-box; | |
| 120 | + display: -ms-flexbox; | |
| 109 | 121 | display: flex; |
| 110 | - align-items: center; | |
| 111 | - justify-content: center; | |
| 122 | + -webkit-box-align: center; | |
| 123 | + -ms-flex-align: center; | |
| 124 | + align-items: center; | |
| 125 | + -webkit-box-pack: center; | |
| 126 | + -ms-flex-pack: center; | |
| 127 | + justify-content: center; | |
| 112 | 128 | position: absolute; |
| 113 | - inset: 0; | |
| 114 | - background-color: var(--e-a-bg-default); | |
| 129 | + top: 0; | |
| 130 | + left: 0; | |
| 131 | + width: 100%; | |
| 132 | + height: 100%; | |
| 133 | + background-color: #fff; | |
| 115 | 134 | } |
| 116 | 135 | #elementor-preview-loading i { |
| 117 | - color: var(--e-a-color-txt-disabled); | |
| 136 | + color: #d5dadf; | |
| 118 | 137 | font-size: 50px; |
| 119 | 138 | } |
| 120 | 139 | |
| 140 | +#elementor-fatal-error-dialog button.dialog-ok { | |
| 141 | + color: #71d7f7; | |
| 142 | +} | |
| 143 | +#elementor-fatal-error-dialog .dialog-header { | |
| 144 | + color: #6d7882; | |
| 145 | +} | |
| 146 | + | |
| 147 | +#elementor-flexbox-attention-dialog .dialog-cancel { | |
| 148 | + color: #39b54a; | |
| 149 | +} | |
| 150 | +#elementor-flexbox-attention-dialog .dialog-ok { | |
| 151 | + color: #6d7882; | |
| 152 | +} | |
| 153 | + | |
| 121 | 154 | .elementor-nerd-box { |
| 122 | 155 | padding: 30px; |
| 123 | 156 | text-align: center; |
| 124 | 157 | } |
| @@ -123,33 +156,35 @@ | ||
| 123 | 156 | text-align: center; |
| 124 | 157 | } |
| 125 | 158 | .elementor-nerd-box-icon { |
| 126 | 159 | width: 100px; |
| 160 | + margin-right: 10px; | |
| 127 | 161 | } |
| 128 | 162 | .elementor-nerd-box-title { |
| 129 | - margin-block-start: 20px; | |
| 163 | + margin-top: 20px; | |
| 130 | 164 | font-size: 16px; |
| 131 | 165 | font-weight: bold; |
| 132 | 166 | line-height: 1.4; |
| 133 | 167 | } |
| 134 | 168 | .elementor-nerd-box-message { |
| 135 | - margin-block-start: 5px; | |
| 169 | + margin-top: 5px; | |
| 136 | 170 | line-height: 1.8; |
| 137 | 171 | font-size: 11px; |
| 138 | 172 | } |
| 139 | -.elementor-nerd-box .elementor-button { | |
| 140 | - margin-block-start: 20px; | |
| 173 | +.elementor-nerd-box .elementor-button.elementor-nerd-box-link { | |
| 174 | + background-color: #93003c; | |
| 175 | + color: #ffffff; | |
| 176 | + padding: 7px 25px; | |
| 177 | + margin-top: 20px; | |
| 178 | + -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1); | |
| 179 | + box-shadow: 0 0 1px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1); | |
| 180 | + -webkit-transition: 0.5s; | |
| 181 | + -o-transition: 0.5s; | |
| 182 | + transition: 0.5s; | |
| 141 | 183 | } |
| 142 | -.elementor-nerd-box--upsale { | |
| 143 | - padding: 15px 30px 30px; | |
| 184 | +.elementor-nerd-box .elementor-button.elementor-nerd-box-link:hover { | |
| 185 | + background-color: #c60051; | |
| 144 | 186 | } |
| 145 | -.elementor-nerd-box--upsale .elementor-nerd-box-title { | |
| 146 | - font-weight: 500; | |
| 147 | - line-height: 1.2; | |
| 148 | -} | |
| 149 | -.elementor-nerd-box--upsale .elementor-nerd-box-message { | |
| 150 | - line-height: 1.5; | |
| 151 | -} | |
| 152 | 187 | |
| 153 | 188 | .eicon-nerd:hover:before { |
| 154 | 189 | content: "\e8b7"; |
| 155 | 190 | } |
| @@ -157,19 +192,28 @@ | ||
| 157 | 192 | content: "\e8b6"; |
| 158 | 193 | } |
| 159 | 194 | |
| 160 | 195 | .e-group-control-header { |
| 196 | + display: -webkit-box; | |
| 197 | + display: -ms-flexbox; | |
| 161 | 198 | display: flex; |
| 162 | - justify-content: space-between; | |
| 163 | - align-items: center; | |
| 199 | + -webkit-box-pack: justify; | |
| 200 | + -ms-flex-pack: justify; | |
| 201 | + justify-content: space-between; | |
| 202 | + -webkit-box-align: center; | |
| 203 | + -ms-flex-align: center; | |
| 204 | + align-items: center; | |
| 164 | 205 | font-weight: bold; |
| 165 | 206 | font-size: 12px; |
| 166 | 207 | padding: 10px; |
| 167 | - box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); | |
| 168 | - margin-block-end: 15px; | |
| 208 | + -webkit-box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1); | |
| 209 | + box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1); | |
| 210 | + margin-bottom: 15px; | |
| 169 | 211 | } |
| 170 | 212 | |
| 171 | 213 | .e-control-tools { |
| 214 | + display: -webkit-box; | |
| 215 | + display: -ms-flexbox; | |
| 172 | 216 | display: flex; |
| 173 | 217 | } |
| 174 | 218 | |
| 175 | 219 | .e-control-tool { |
| @@ -174,50 +218,66 @@ | ||
| 174 | 218 | |
| 175 | 219 | .e-control-tool { |
| 176 | 220 | width: 20px; |
| 177 | 221 | height: 20px; |
| 222 | + display: -webkit-inline-box; | |
| 223 | + display: -ms-inline-flexbox; | |
| 178 | 224 | display: inline-flex; |
| 179 | 225 | border-radius: 3px; |
| 180 | 226 | margin: 0 3px 0; |
| 181 | 227 | border: 0; |
| 182 | 228 | position: relative; |
| 183 | - background-color: var(--e-a-bg-default); | |
| 229 | + background-color: #fff; | |
| 184 | 230 | } |
| 185 | 231 | .e-control-tool:not(.e-control-tool-disabled) { |
| 186 | - box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1); | |
| 232 | + -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1); | |
| 233 | + box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1); | |
| 187 | 234 | cursor: pointer; |
| 188 | 235 | } |
| 189 | 236 | .e-control-tool-disabled { |
| 190 | - background: var(--e-a-bg-default); | |
| 237 | + background: #e6e9ec; | |
| 191 | 238 | pointer-events: none; |
| 192 | 239 | } |
| 193 | 240 | .e-control-tool-disabled i { |
| 194 | - color: var(--e-a-color-txt-disabled); | |
| 241 | + color: #fff; | |
| 195 | 242 | } |
| 196 | 243 | .e-control-tool i { |
| 197 | 244 | position: absolute; |
| 198 | - position: absolute; | |
| 199 | - inset-block-start: 50%; | |
| 200 | - inset-inline-start: 50%; | |
| 201 | - transform: translate(calc(-50% * var(--direction-multiplier)), -50%); | |
| 202 | - color: var(--e-a-color-txt-default); | |
| 245 | + top: 50%; | |
| 246 | + left: 50%; | |
| 247 | + -webkit-transform: translateX(-50%) translateY(-50%); | |
| 248 | + -ms-transform: translateX(-50%) translateY(-50%); | |
| 249 | + transform: translateX(-50%) translateY(-50%); | |
| 250 | + color: #6d7882; | |
| 203 | 251 | font-size: 13px; |
| 204 | 252 | } |
| 205 | 253 | |
| 254 | +#e-enable-unfiltered-files-dialog .dialog-confirm-ok { | |
| 255 | + color: #39b54a; | |
| 256 | +} | |
| 257 | + | |
| 206 | 258 | i.eicon-tilted { |
| 207 | - transform: rotate(90deg); | |
| 259 | + -webkit-transform: rotate(90deg); | |
| 260 | + -ms-transform: rotate(90deg); | |
| 261 | + transform: rotate(90deg); | |
| 208 | 262 | } |
| 209 | 263 | |
| 210 | 264 | .elementor-loader-wrapper { |
| 211 | 265 | position: absolute; |
| 212 | - inset-block-start: 50%; | |
| 213 | - inset-inline-start: 50%; | |
| 214 | - transform: translate(calc(-50% * var(--direction-multiplier)), -50%); | |
| 266 | + top: 50%; | |
| 267 | + left: 50%; | |
| 268 | + -webkit-transform: translate(-50%, -50%); | |
| 269 | + -ms-transform: translate(-50%, -50%); | |
| 270 | + transform: translate(-50%, -50%); | |
| 215 | 271 | width: 300px; |
| 272 | + display: -webkit-box; | |
| 273 | + display: -ms-flexbox; | |
| 216 | 274 | display: flex; |
| 217 | - flex-direction: column; | |
| 218 | - align-items: center; | |
| 219 | - gap: 30px; | |
| 275 | + -ms-flex-wrap: wrap; | |
| 276 | + flex-wrap: wrap; | |
| 277 | + -webkit-box-pack: center; | |
| 278 | + -ms-flex-pack: center; | |
| 279 | + justify-content: center; | |
| 220 | 280 | } |
| 221 | 281 | |
| 222 | 282 | .elementor-loader { |
| 223 | 283 | border-radius: 50%; |
| @@ -223,11 +283,13 @@ | ||
| 223 | 283 | border-radius: 50%; |
| 224 | 284 | padding: 40px; |
| 225 | 285 | height: 150px; |
| 226 | 286 | width: 150px; |
| 227 | - background-color: var(--e-a-bg-active); | |
| 228 | - box-sizing: border-box; | |
| 229 | - box-shadow: 2px 2px 20px 4px rgba(0, 0, 0, 0.02); | |
| 287 | + background-color: rgba(255, 255, 255, 0.9); | |
| 288 | + -webkit-box-sizing: border-box; | |
| 289 | + box-sizing: border-box; | |
| 290 | + -webkit-box-shadow: 2px 2px 20px 4px rgba(0, 0, 0, 0.02); | |
| 291 | + box-shadow: 2px 2px 20px 4px rgba(0, 0, 0, 0.02); | |
| 230 | 292 | } |
| 231 | 293 | |
| 232 | 294 | .elementor-loader-boxes { |
| 233 | 295 | height: 100%; |
| @@ -236,10 +298,11 @@ | ||
| 236 | 298 | } |
| 237 | 299 | |
| 238 | 300 | .elementor-loader-box { |
| 239 | 301 | position: absolute; |
| 240 | - background-color: var(--e-a-color-txt-hover); | |
| 241 | - animation: load 1.8s linear infinite; | |
| 302 | + background-color: #d5dadf; | |
| 303 | + -webkit-animation: load 1.8s linear infinite; | |
| 304 | + animation: load 1.8s linear infinite; | |
| 242 | 305 | } |
| 243 | 306 | .elementor-loader-box:nth-of-type(1) { |
| 244 | 307 | width: 20%; |
| 245 | 308 | height: 100%; |
| @@ -252,23 +315,27 @@ | ||
| 252 | 315 | width: 60%; |
| 253 | 316 | } |
| 254 | 317 | .elementor-loader-box:nth-of-type(2) { |
| 255 | 318 | top: 0; |
| 256 | - animation-delay: calc(1.8s / 4 * -1); | |
| 319 | + -webkit-animation-delay: calc( 1.8s / 4 * -1 ); | |
| 320 | + animation-delay: calc( 1.8s / 4 * -1 ); | |
| 257 | 321 | } |
| 258 | 322 | .elementor-loader-box:nth-of-type(3) { |
| 259 | 323 | top: 40%; |
| 260 | - animation-delay: calc(1.8s / 4 * -2); | |
| 324 | + -webkit-animation-delay: calc( 1.8s / 4 * -2 ); | |
| 325 | + animation-delay: calc( 1.8s / 4 * -2 ); | |
| 261 | 326 | } |
| 262 | 327 | .elementor-loader-box:nth-of-type(4) { |
| 263 | 328 | bottom: 0; |
| 264 | - animation-delay: calc(1.8s / 4 * -3); | |
| 329 | + -webkit-animation-delay: calc( 1.8s / 4 * -3 ); | |
| 330 | + animation-delay: calc( 1.8s / 4 * -3 ); | |
| 265 | 331 | } |
| 266 | 332 | |
| 267 | 333 | .elementor-loading-title { |
| 268 | - color: var(--e-a-color-txt); | |
| 334 | + color: #a4afb7; | |
| 269 | 335 | text-align: center; |
| 270 | 336 | text-transform: uppercase; |
| 337 | + margin-top: 30px; | |
| 271 | 338 | letter-spacing: 7px; |
| 272 | 339 | text-indent: 7px; |
| 273 | 340 | font-size: 10px; |
| 274 | 341 | width: 100%; |
| @@ -273,375 +340,193 @@ | ||
| 273 | 340 | font-size: 10px; |
| 274 | 341 | width: 100%; |
| 275 | 342 | } |
| 276 | 343 | |
| 277 | -input, | |
| 278 | -select, | |
| 279 | -textarea, | |
| 280 | -.e-input-style { | |
| 281 | - color: var(--e-a-color-txt); | |
| 282 | - border-radius: var(--e-a-border-radius); | |
| 283 | - font-size: 12px; | |
| 284 | - width: 100%; | |
| 285 | - background: none; | |
| 286 | - background-color: var(--e-a-bg-default); | |
| 287 | - box-shadow: none; | |
| 288 | - border: var(--e-a-border-bold); | |
| 344 | +.elementor-button { | |
| 345 | + font-family: Roboto, Arial, Helvetica, Verdana, sans-serif; | |
| 346 | + font-weight: 500; | |
| 347 | + text-transform: uppercase; | |
| 289 | 348 | outline: none; |
| 290 | -} | |
| 291 | -input:focus, input:focus + .elementor-control-dynamic-switcher, | |
| 292 | -select:focus, | |
| 293 | -select:focus + .elementor-control-dynamic-switcher, | |
| 294 | -textarea:focus, | |
| 295 | -textarea:focus + .elementor-control-dynamic-switcher, | |
| 296 | -.e-input-style:focus, | |
| 297 | -.e-input-style:focus + .elementor-control-dynamic-switcher { | |
| 298 | - border-color: var(--e-a-border-color-focus); | |
| 299 | -} | |
| 300 | - | |
| 301 | -.elementor-error input, | |
| 302 | -.elementor-error select, | |
| 303 | -.elementor-error textarea { | |
| 304 | - border-color: var(--e-a-color-danger); | |
| 305 | -} | |
| 306 | - | |
| 307 | -input { | |
| 308 | - min-width: 0; | |
| 309 | -} | |
| 310 | - | |
| 311 | -input, textarea, .e-input-style { | |
| 312 | - padding: 5px; | |
| 313 | -} | |
| 314 | - | |
| 315 | -textarea, .e-input-style { | |
| 316 | - resize: vertical; | |
| 317 | -} | |
| 318 | - | |
| 319 | -input[type=checkbox], | |
| 320 | -input[type=radio] { | |
| 321 | - height: auto; | |
| 322 | - width: auto; | |
| 323 | -} | |
| 324 | - | |
| 325 | -input[type=checkbox] { | |
| 326 | - margin: 0; | |
| 327 | - padding: 0; | |
| 328 | - -webkit-appearance: none; | |
| 329 | - -moz-appearance: none; | |
| 330 | - appearance: none; | |
| 331 | - outline: none; | |
| 332 | - content: none; | |
| 333 | - height: 15px; | |
| 334 | - border-radius: var(--e-a-border-radius); | |
| 335 | - margin-inline-end: 5px; | |
| 336 | - width: 15px; | |
| 337 | - border: var(--e-a-border-bold); | |
| 338 | - display: inline-flex; | |
| 339 | - align-items: center; | |
| 340 | - justify-content: center; | |
| 341 | -} | |
| 342 | -input[type=checkbox]:checked { | |
| 343 | - background: var(--e-a-color-primary-bold); | |
| 344 | 349 | border: none; |
| 345 | -} | |
| 346 | -input[type=checkbox]:checked:before { | |
| 347 | - display: block; | |
| 348 | - content: ""; | |
| 349 | - width: 4px; | |
| 350 | - height: 7px; | |
| 351 | - border: solid white; | |
| 352 | - border-width: 0 2px 2px 0; | |
| 353 | - transform: rotate(45deg); | |
| 354 | -} | |
| 355 | - | |
| 356 | -input[disabled] { | |
| 357 | - background-color: var(--e-a-bg-hover); | |
| 358 | - cursor: not-allowed; | |
| 359 | - opacity: 1; | |
| 360 | -} | |
| 361 | - | |
| 362 | -select { | |
| 363 | - outline: none; | |
| 364 | - height: 27px; | |
| 365 | -} | |
| 366 | - | |
| 367 | -.dialog-widget-content { | |
| 368 | - background-color: var(--e-a-bg-default); | |
| 369 | - position: absolute; | |
| 370 | 350 | border-radius: 3px; |
| 371 | - box-shadow: 2px 8px 23px 3px rgba(0, 0, 0, 0.2); | |
| 372 | - overflow: hidden; | |
| 351 | + -webkit-transition-property: background, color, opacity, -webkit-box-shadow; | |
| 352 | + transition-property: background, color, opacity, -webkit-box-shadow; | |
| 353 | + -o-transition-property: background, color, box-shadow, opacity; | |
| 354 | + transition-property: background, color, box-shadow, opacity; | |
| 355 | + transition-property: background, color, box-shadow, opacity, -webkit-box-shadow; | |
| 356 | + -webkit-transition-duration: 0.3s; | |
| 357 | + -o-transition-duration: 0.3s; | |
| 358 | + transition-duration: 0.3s; | |
| 373 | 359 | } |
| 374 | - | |
| 375 | -.dialog-message { | |
| 376 | - line-height: 1.5; | |
| 377 | - box-sizing: border-box; | |
| 360 | +.elementor-button:hover { | |
| 361 | + border: none; | |
| 378 | 362 | } |
| 379 | - | |
| 380 | -.dialog-close-button { | |
| 363 | +.elementor-button:not([disabled]) { | |
| 381 | 364 | cursor: pointer; |
| 382 | - position: absolute; | |
| 383 | - margin-block-start: 15px; | |
| 384 | - inset-inline-end: 15px; | |
| 385 | - color: var(--e-a-color-txt); | |
| 386 | - font-size: 15px; | |
| 387 | - line-height: 1; | |
| 388 | - transition: var(--e-a-transition-hover); | |
| 389 | 365 | } |
| 390 | -.dialog-close-button:hover { | |
| 391 | - color: var(--e-a-color-txt-hover); | |
| 366 | +.elementor-button:not(.elementor-button-state) .elementor-state-icon { | |
| 367 | + display: none; | |
| 392 | 368 | } |
| 393 | - | |
| 394 | -.dialog-prevent-scroll { | |
| 395 | - overflow: hidden; | |
| 396 | - max-height: 100vh; | |
| 369 | +.elementor-button.elementor-button-success { | |
| 370 | + color: #fff; | |
| 397 | 371 | } |
| 398 | - | |
| 399 | -.dialog-type-lightbox { | |
| 400 | - position: fixed; | |
| 401 | - height: 100%; | |
| 402 | - width: 100%; | |
| 403 | - bottom: 0; | |
| 404 | - left: 0; | |
| 405 | - background-color: rgba(0, 0, 0, 0.8); | |
| 406 | - z-index: 9999; | |
| 407 | - -webkit-user-select: none; | |
| 408 | - -moz-user-select: none; | |
| 409 | - user-select: none; | |
| 372 | +.elementor-button.elementor-button-success[disabled] { | |
| 373 | + background-color: #c2cbd2; | |
| 410 | 374 | } |
| 411 | - | |
| 412 | -.elementor-editor-active .elementor-popup-modal { | |
| 413 | - background-color: initial; | |
| 375 | +.elementor-button.elementor-button-success:not([disabled]) { | |
| 376 | + background-color: #39b54a; | |
| 414 | 377 | } |
| 415 | - | |
| 416 | -.dialog-type-confirm .dialog-widget-content, | |
| 417 | -.dialog-type-alert .dialog-widget-content { | |
| 418 | - margin: auto; | |
| 419 | - width: 400px; | |
| 420 | - padding: 20px; | |
| 378 | +.elementor-button.elementor-button-success:not([disabled]):hover { | |
| 379 | + opacity: 0.85; | |
| 380 | + -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.12), 0 2px 2px rgba(0, 0, 0, 0.2); | |
| 381 | + box-shadow: 0 0 2px rgba(0, 0, 0, 0.12), 0 2px 2px rgba(0, 0, 0, 0.2); | |
| 421 | 382 | } |
| 422 | -.dialog-type-confirm .dialog-header, | |
| 423 | -.dialog-type-alert .dialog-header { | |
| 424 | - font-size: 15px; | |
| 425 | - font-weight: 500; | |
| 383 | +.elementor-button.elementor-button-success:not([disabled]):active { | |
| 384 | + -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.19), 0 3px 3px rgba(0, 0, 0, 0.1); | |
| 385 | + box-shadow: 0 5px 10px rgba(0, 0, 0, 0.19), 0 3px 3px rgba(0, 0, 0, 0.1); | |
| 426 | 386 | } |
| 427 | -.dialog-type-confirm .dialog-header:after, | |
| 428 | -.dialog-type-alert .dialog-header:after { | |
| 429 | - content: ""; | |
| 430 | - display: block; | |
| 431 | - border-block-end: var(--e-a-border); | |
| 432 | - padding-block-end: 10px; | |
| 433 | - margin-block-end: 10px; | |
| 434 | - margin-inline-start: -20px; | |
| 435 | - margin-inline-end: -20px; | |
| 387 | +.elementor-button.elementor-button-brand { | |
| 388 | + color: #ffffff; | |
| 436 | 389 | } |
| 437 | -.dialog-type-confirm .dialog-message, | |
| 438 | -.dialog-type-alert .dialog-message { | |
| 439 | - min-height: 50px; | |
| 390 | +.elementor-button.elementor-button-brand[disabled] { | |
| 391 | + background-color: #c2cbd2; | |
| 440 | 392 | } |
| 441 | -.dialog-type-confirm .dialog-buttons-wrapper, | |
| 442 | -.dialog-type-alert .dialog-buttons-wrapper { | |
| 443 | - padding-block-start: 10px; | |
| 444 | - display: flex; | |
| 445 | - justify-content: flex-end; | |
| 446 | - gap: 15px; | |
| 393 | +.elementor-button.elementor-button-brand:not([disabled]) { | |
| 394 | + background-color: #93003c; | |
| 447 | 395 | } |
| 448 | -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button, | |
| 449 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button { | |
| 450 | - font-size: 12px; | |
| 451 | - font-weight: 500; | |
| 452 | - line-height: 1.2; | |
| 453 | - padding: 8px 16px; | |
| 454 | - outline: none; | |
| 455 | - border: none; | |
| 456 | - border-radius: var(--e-a-border-radius); | |
| 457 | - background-color: var(--e-a-btn-bg); | |
| 458 | - color: var(--e-a-btn-color-invert); | |
| 459 | - transition: var(--e-a-transition-hover); | |
| 396 | +.elementor-button.elementor-button-brand:not([disabled]):hover { | |
| 397 | + opacity: 0.85; | |
| 398 | + -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.12), 0 2px 2px rgba(0, 0, 0, 0.2); | |
| 399 | + box-shadow: 0 0 2px rgba(0, 0, 0, 0.12), 0 2px 2px rgba(0, 0, 0, 0.2); | |
| 460 | 400 | } |
| 461 | -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button:hover, | |
| 462 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button:hover { | |
| 463 | - border: none; | |
| 401 | +.elementor-button.elementor-button-brand:not([disabled]):active { | |
| 402 | + -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.19), 0 3px 3px rgba(0, 0, 0, 0.1); | |
| 403 | + box-shadow: 0 5px 10px rgba(0, 0, 0, 0.19), 0 3px 3px rgba(0, 0, 0, 0.1); | |
| 464 | 404 | } |
| 465 | -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button:focus, | |
| 466 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button:hover, | |
| 467 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button:focus { | |
| 468 | - background-color: var(--e-a-btn-bg-hover); | |
| 469 | - color: var(--e-a-btn-color-invert); | |
| 405 | +.elementor-button.elementor-button-warning { | |
| 406 | + background-color: #a4afb7; | |
| 407 | + color: #fff; | |
| 470 | 408 | } |
| 471 | -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button:active, | |
| 472 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button:active { | |
| 473 | - background-color: var(--e-a-btn-bg-active); | |
| 409 | +.elementor-button.elementor-button-warning[disabled] { | |
| 410 | + background-color: #c2cbd2; | |
| 474 | 411 | } |
| 475 | -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button:not([disabled]), | |
| 476 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button:not([disabled]) { | |
| 477 | - cursor: pointer; | |
| 412 | +.elementor-button.elementor-button-warning:not([disabled]):hover { | |
| 413 | + background-color: #b01b1b; | |
| 414 | + opacity: 0.85; | |
| 415 | + -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.12), 0 2px 2px rgba(0, 0, 0, 0.2); | |
| 416 | + box-shadow: 0 0 2px rgba(0, 0, 0, 0.12), 0 2px 2px rgba(0, 0, 0, 0.2); | |
| 478 | 417 | } |
| 479 | -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button:disabled, | |
| 480 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button:disabled { | |
| 481 | - background-color: var(--e-a-btn-bg-disabled); | |
| 482 | - color: var(--e-a-btn-color-disabled); | |
| 418 | +.elementor-button.elementor-button-warning:not([disabled]):active { | |
| 419 | + -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.19), 0 3px 3px rgba(0, 0, 0, 0.1); | |
| 420 | + box-shadow: 0 5px 10px rgba(0, 0, 0, 0.19), 0 3px 3px rgba(0, 0, 0, 0.1); | |
| 483 | 421 | } |
| 484 | -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button:not(.elementor-button-state) .elementor-state-icon, | |
| 485 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button:not(.elementor-button-state) .elementor-state-icon { | |
| 486 | - display: none; | |
| 422 | +.elementor-button.elementor-button-danger { | |
| 423 | + background-color: #d72b3f; | |
| 424 | + color: #fff; | |
| 487 | 425 | } |
| 488 | -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-btn-txt, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-cancel, | |
| 489 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-btn-txt, | |
| 490 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-cancel { | |
| 491 | - background: transparent; | |
| 492 | - color: var(--e-a-color-txt); | |
| 426 | +.elementor-button.elementor-button-danger[disabled] { | |
| 427 | + background-color: #c2cbd2; | |
| 493 | 428 | } |
| 494 | -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-btn-txt:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-cancel:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-btn-txt:focus, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-cancel:focus, | |
| 495 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-btn-txt:hover, | |
| 496 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-cancel:hover, | |
| 497 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-btn-txt:focus, | |
| 498 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-cancel:focus { | |
| 499 | - background: var(--e-a-bg-hover); | |
| 500 | - color: var(--e-a-color-txt-hover); | |
| 429 | +.elementor-button.elementor-button-danger:not([disabled]):hover { | |
| 430 | + opacity: 0.85; | |
| 431 | + -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.12), 0 2px 2px rgba(0, 0, 0, 0.2); | |
| 432 | + box-shadow: 0 0 2px rgba(0, 0, 0, 0.12), 0 2px 2px rgba(0, 0, 0, 0.2); | |
| 501 | 433 | } |
| 502 | -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-btn-txt:disabled, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-cancel:disabled, | |
| 503 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-btn-txt:disabled, | |
| 504 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-cancel:disabled { | |
| 505 | - background: transparent; | |
| 506 | - color: var(--e-a-color-txt-disabled); | |
| 434 | +.elementor-button.elementor-button-danger:not([disabled]):active { | |
| 435 | + -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.19), 0 3px 3px rgba(0, 0, 0, 0.1); | |
| 436 | + box-shadow: 0 5px 10px rgba(0, 0, 0, 0.19), 0 3px 3px rgba(0, 0, 0, 0.1); | |
| 507 | 437 | } |
| 508 | -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-btn-txt-border, | |
| 509 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-btn-txt-border { | |
| 510 | - border: 1px solid var(--e-a-color-txt-muted); | |
| 438 | +.elementor-button.elementor-edit-template { | |
| 439 | + display: inline-block; | |
| 440 | + margin-top: 15px; | |
| 441 | + color: #fff; | |
| 511 | 442 | } |
| 512 | -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.elementor-button-success, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-success, | |
| 513 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.elementor-button-success, | |
| 514 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-success { | |
| 515 | - background-color: var(--e-a-btn-bg-success); | |
| 443 | +.elementor-button.elementor-button-default { | |
| 444 | + background-color: #a4afb7; | |
| 445 | + color: #fff; | |
| 446 | + font-size: 11px; | |
| 447 | + padding: 7px 21px; | |
| 516 | 448 | } |
| 517 | -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.elementor-button-success:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.elementor-button-success:focus, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-success:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-success:focus, | |
| 518 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.elementor-button-success:hover, | |
| 519 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.elementor-button-success:focus, | |
| 520 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-success:hover, | |
| 521 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-success:focus { | |
| 522 | - background-color: var(--e-a-btn-bg-success-hover); | |
| 449 | +.elementor-button.elementor-button-default:hover { | |
| 450 | + background-color: #6d7882; | |
| 451 | + -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.12), 0 2px 2px rgba(0, 0, 0, 0.2); | |
| 452 | + box-shadow: 0 0 2px rgba(0, 0, 0, 0.12), 0 2px 2px rgba(0, 0, 0, 0.2); | |
| 523 | 453 | } |
| 524 | -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-primary, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-take_over, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-ok, | |
| 525 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-primary, | |
| 526 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-take_over, | |
| 527 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-ok { | |
| 528 | - background-color: var(--e-a-btn-bg-primary); | |
| 529 | - color: var(--e-a-btn-color); | |
| 454 | +.elementor-button.elementor-button-default:active { | |
| 455 | + -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.19), 0 3px 3px rgba(0, 0, 0, 0.1); | |
| 456 | + box-shadow: 0 5px 10px rgba(0, 0, 0, 0.19), 0 3px 3px rgba(0, 0, 0, 0.1); | |
| 530 | 457 | } |
| 531 | -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-primary:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-take_over:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-ok:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-primary:focus, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-take_over:focus, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-ok:focus, | |
| 532 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-primary:hover, | |
| 533 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-take_over:hover, | |
| 534 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-ok:hover, | |
| 535 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-primary:focus, | |
| 536 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-take_over:focus, | |
| 537 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-ok:focus { | |
| 538 | - background-color: var(--e-a-btn-bg-primary-hover); | |
| 539 | - color: var(--e-a-btn-color); | |
| 458 | +.elementor-button.elementor-button-default:visited { | |
| 459 | + color: #fff; | |
| 540 | 460 | } |
| 541 | -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-primary.e-btn-txt, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-btn-txt.dialog-take_over, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-primary.dialog-cancel, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-cancel.dialog-take_over, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-btn-txt.dialog-ok, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-ok.dialog-cancel, | |
| 542 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-primary.e-btn-txt, | |
| 543 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-btn-txt.dialog-take_over, | |
| 544 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-primary.dialog-cancel, | |
| 545 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-cancel.dialog-take_over, | |
| 546 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-btn-txt.dialog-ok, | |
| 547 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-ok.dialog-cancel { | |
| 548 | - background: transparent; | |
| 549 | - color: var(--e-a-color-primary-bold); | |
| 461 | +.elementor-button.elementor-button-go-pro { | |
| 462 | + background-color: #93003c; | |
| 550 | 463 | } |
| 551 | -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-primary.e-btn-txt:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-btn-txt.dialog-take_over:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-primary.dialog-cancel:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-cancel.dialog-take_over:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-btn-txt.dialog-ok:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-ok.dialog-cancel:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-primary.e-btn-txt:focus, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-btn-txt.dialog-take_over:focus, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-primary.dialog-cancel:focus, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-cancel.dialog-take_over:focus, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-btn-txt.dialog-ok:focus, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-ok.dialog-cancel:focus, | |
| 552 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-primary.e-btn-txt:hover, | |
| 553 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-btn-txt.dialog-take_over:hover, | |
| 554 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-primary.dialog-cancel:hover, | |
| 555 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-cancel.dialog-take_over:hover, | |
| 556 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-btn-txt.dialog-ok:hover, | |
| 557 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-ok.dialog-cancel:hover, | |
| 558 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-primary.e-btn-txt:focus, | |
| 559 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-btn-txt.dialog-take_over:focus, | |
| 560 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-primary.dialog-cancel:focus, | |
| 561 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-cancel.dialog-take_over:focus, | |
| 562 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-btn-txt.dialog-ok:focus, | |
| 563 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-ok.dialog-cancel:focus { | |
| 564 | - background: var(--e-a-bg-primary); | |
| 464 | +.elementor-button i { | |
| 465 | + margin-right: 10px; | |
| 565 | 466 | } |
| 566 | -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.go-pro, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-accent, | |
| 567 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.go-pro, | |
| 568 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-accent { | |
| 569 | - background-color: var(--e-a-btn-bg-accent); | |
| 467 | + | |
| 468 | +input, select, textarea, .elementor-input-style { | |
| 469 | + border-radius: 3px; | |
| 470 | + font-size: 12px; | |
| 471 | + width: 100%; | |
| 472 | + background: none; | |
| 473 | + -webkit-box-shadow: none; | |
| 474 | + box-shadow: none; | |
| 475 | + color: #6d7882; | |
| 476 | + border: 1px solid; | |
| 477 | + outline: none; | |
| 570 | 478 | } |
| 571 | -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.go-pro:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.go-pro:focus, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-accent:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-accent:focus, | |
| 572 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.go-pro:hover, | |
| 573 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.go-pro:focus, | |
| 574 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-accent:hover, | |
| 575 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-accent:focus { | |
| 576 | - background-color: var(--e-a-btn-bg-accent-hover); | |
| 479 | +input:not(:focus), select:not(:focus), textarea:not(:focus), .elementor-input-style:not(:focus) { | |
| 480 | + border-color: #d5dadf; | |
| 577 | 481 | } |
| 578 | -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.go-pro:active, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-accent:active, | |
| 579 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.go-pro:active, | |
| 580 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-accent:active { | |
| 581 | - background-color: var(--e-a-btn-bg-accent-active); | |
| 482 | +input:focus, input:focus + .elementor-control-dynamic-switcher, select:focus, select:focus + .elementor-control-dynamic-switcher, textarea:focus, textarea:focus + .elementor-control-dynamic-switcher, .elementor-input-style:focus, .elementor-input-style:focus + .elementor-control-dynamic-switcher { | |
| 483 | + border-color: #a4afb7; | |
| 582 | 484 | } |
| 583 | -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.elementor-button-info, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-info, | |
| 584 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.elementor-button-info, | |
| 585 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-info { | |
| 586 | - background-color: var(--e-a-btn-bg-info); | |
| 485 | +input::-webkit-input-placeholder, select::-webkit-input-placeholder, textarea::-webkit-input-placeholder, .elementor-input-style::-webkit-input-placeholder { | |
| 486 | + color: #a4afb7; | |
| 587 | 487 | } |
| 588 | -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.elementor-button-info:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.elementor-button-info:focus, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-info:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-info:focus, | |
| 589 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.elementor-button-info:hover, | |
| 590 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.elementor-button-info:focus, | |
| 591 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-info:hover, | |
| 592 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-info:focus { | |
| 593 | - background-color: var(--e-a-btn-bg-info-hover); | |
| 488 | +input::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder, .elementor-input-style::-moz-placeholder { | |
| 489 | + color: #a4afb7; | |
| 594 | 490 | } |
| 595 | -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.elementor-button-warning, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-warning, | |
| 596 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.elementor-button-warning, | |
| 597 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-warning { | |
| 598 | - background-color: var(--e-a-btn-bg-warning); | |
| 491 | +input::-ms-input-placeholder, select::-ms-input-placeholder, textarea::-ms-input-placeholder, .elementor-input-style::-ms-input-placeholder { | |
| 492 | + color: #a4afb7; | |
| 599 | 493 | } |
| 600 | -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.elementor-button-warning:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.elementor-button-warning:focus, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-warning:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-warning:focus, | |
| 601 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.elementor-button-warning:hover, | |
| 602 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.elementor-button-warning:focus, | |
| 603 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-warning:hover, | |
| 604 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-warning:focus { | |
| 605 | - background-color: var(--e-a-btn-bg-warning-hover); | |
| 494 | +input::placeholder, select::placeholder, textarea::placeholder, .elementor-input-style::placeholder { | |
| 495 | + color: #a4afb7; | |
| 606 | 496 | } |
| 607 | -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.elementor-button-danger, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-danger, | |
| 608 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.elementor-button-danger, | |
| 609 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-danger { | |
| 610 | - background-color: var(--e-a-btn-bg-danger); | |
| 497 | + | |
| 498 | +.elementor-error input, .elementor-error select, .elementor-error textarea { | |
| 499 | + border-color: #b01b1b; | |
| 611 | 500 | } |
| 612 | -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.elementor-button-danger.color-white, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-danger.color-white, | |
| 613 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.elementor-button-danger.color-white, | |
| 614 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-danger.color-white { | |
| 615 | - color: var(--e-a-color-white); | |
| 501 | + | |
| 502 | +input { | |
| 503 | + min-width: 0; | |
| 616 | 504 | } |
| 617 | -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.elementor-button-danger:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.elementor-button-danger:focus, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-danger:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-danger:focus, | |
| 618 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.elementor-button-danger:hover, | |
| 619 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.elementor-button-danger:focus, | |
| 620 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-danger:hover, | |
| 621 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-danger:focus { | |
| 622 | - background-color: var(--e-a-btn-bg-danger-hover); | |
| 505 | + | |
| 506 | +input, textarea, .elementor-input-style { | |
| 507 | + padding: 5px; | |
| 623 | 508 | } |
| 624 | -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button i, | |
| 625 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button i { | |
| 626 | - margin-inline-end: 5px; | |
| 509 | + | |
| 510 | +textarea, .elementor-input-style { | |
| 511 | + resize: vertical; | |
| 627 | 512 | } |
| 628 | -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button:focus, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button:visited, | |
| 629 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button:hover, | |
| 630 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button:focus, | |
| 631 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button:visited { | |
| 632 | - color: initial; | |
| 513 | + | |
| 514 | +input[type=checkbox], | |
| 515 | +input[type=radio] { | |
| 516 | + height: auto; | |
| 517 | + width: auto; | |
| 633 | 518 | } |
| 634 | -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button[disabled]:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button[disabled]:focus, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button[disabled]:visited, | |
| 635 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button[disabled]:hover, | |
| 636 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button[disabled]:focus, | |
| 637 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button[disabled]:visited { | |
| 638 | - background-color: var(--e-a-btn-bg-disabled); | |
| 519 | + | |
| 520 | +input[disabled] { | |
| 521 | + background-color: #e6e9ec; | |
| 522 | + cursor: not-allowed; | |
| 523 | + opacity: 1; | |
| 639 | 524 | } |
| 640 | -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button[disabled], | |
| 641 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button[disabled] { | |
| 642 | - background-color: var(--e-a-btn-bg-disabled); | |
| 643 | - cursor: not-allowed; | |
| 525 | + | |
| 526 | +select { | |
| 527 | + outline: none; | |
| 528 | + height: 27px; | |
| 644 | 529 | } |
| 645 | 530 | |
| 646 | 531 | /* |
| 647 | 532 | * Container style |
| @@ -648,9 +533,10 @@ | ||
| 648 | 533 | */ |
| 649 | 534 | .ps { |
| 650 | 535 | overflow: hidden !important; |
| 651 | 536 | overflow-anchor: none; |
| 652 | - touch-action: auto; | |
| 537 | + -ms-touch-action: auto; | |
| 538 | + touch-action: auto; | |
| 653 | 539 | } |
| 654 | 540 | |
| 655 | 541 | /* |
| 656 | 542 | * Scrollbar rail styles |
| @@ -657,8 +543,10 @@ | ||
| 657 | 543 | */ |
| 658 | 544 | .ps__rail-y { |
| 659 | 545 | display: none; |
| 660 | 546 | opacity: 0; |
| 547 | + -webkit-transition: background-color 0.2s linear, opacity 0.2s linear; | |
| 548 | + -o-transition: background-color 0.2s linear, opacity 0.2s linear; | |
| 661 | 549 | transition: background-color 0.2s linear, opacity 0.2s linear; |
| 662 | 550 | width: 15px; |
| 663 | 551 | /* there must be 'right' or 'left' for ps__rail-y */ |
| 664 | 552 | right: 0; |
| @@ -686,8 +574,10 @@ | ||
| 686 | 574 | |
| 687 | 575 | .ps__thumb-y { |
| 688 | 576 | background-color: #aaa; |
| 689 | 577 | border-radius: 6px; |
| 578 | + -webkit-transition: background-color 0.2s linear, width 0.2s ease-in-out; | |
| 579 | + -o-transition: background-color 0.2s linear, width 0.2s ease-in-out; | |
| 690 | 580 | transition: background-color 0.2s linear, width 0.2s ease-in-out; |
| 691 | 581 | width: 6px; |
| 692 | 582 | /* there must be 'right' for ps__thumb-y */ |
| 693 | 583 | right: 2px; |
| @@ -707,9 +597,9 @@ | ||
| 707 | 597 | pointer-events: none; |
| 708 | 598 | } |
| 709 | 599 | |
| 710 | 600 | #nprogress .bar { |
| 711 | - background: #D004D4; | |
| 601 | + background: #39b54a; | |
| 712 | 602 | position: fixed; |
| 713 | 603 | z-index: 1031; |
| 714 | 604 | top: 0; |
| 715 | 605 | left: 0; |
| @@ -723,11 +613,14 @@ | ||
| 723 | 613 | position: absolute; |
| 724 | 614 | right: 0; |
| 725 | 615 | width: 100px; |
| 726 | 616 | height: 100%; |
| 727 | - box-shadow: 0 0 10px #D004D4, 0 0 5px #D004D4; | |
| 617 | + -webkit-box-shadow: 0 0 10px #39b54a, 0 0 5px #39b54a; | |
| 618 | + box-shadow: 0 0 10px #39b54a, 0 0 5px #39b54a; | |
| 728 | 619 | opacity: 1; |
| 729 | - transform: rotate(3deg) translate(0px, -4px); | |
| 620 | + -webkit-transform: rotate(3deg) translate(0px, -4px); | |
| 621 | + -ms-transform: rotate(3deg) translate(0px, -4px); | |
| 622 | + transform: rotate(3deg) translate(0px, -4px); | |
| 730 | 623 | } |
| 731 | 624 | |
| 732 | 625 | /* Remove these to get rid of the spinner */ |
| 733 | 626 | #nprogress .spinner { |
| @@ -740,14 +633,16 @@ | ||
| 740 | 633 | |
| 741 | 634 | #nprogress .spinner-icon { |
| 742 | 635 | width: 18px; |
| 743 | 636 | height: 18px; |
| 744 | - box-sizing: border-box; | |
| 637 | + -webkit-box-sizing: border-box; | |
| 638 | + box-sizing: border-box; | |
| 745 | 639 | border: solid 2px transparent; |
| 746 | - border-block-start-color: #D004D4; | |
| 747 | - border-inline-start-color: #D004D4; | |
| 640 | + border-top-color: #39b54a; | |
| 641 | + border-left-color: #39b54a; | |
| 748 | 642 | border-radius: 50%; |
| 749 | - animation: nprogress-spinner 400ms linear infinite; | |
| 643 | + -webkit-animation: nprogress-spinner 400ms linear infinite; | |
| 644 | + animation: nprogress-spinner 400ms linear infinite; | |
| 750 | 645 | } |
| 751 | 646 | |
| 752 | 647 | .nprogress-custom-parent { |
| 753 | 648 | overflow: hidden; |
| @@ -758,14 +653,27 @@ | ||
| 758 | 653 | .nprogress-custom-parent #nprogress .bar { |
| 759 | 654 | position: absolute; |
| 760 | 655 | } |
| 761 | 656 | |
| 657 | +@-webkit-keyframes nprogress-spinner { | |
| 658 | + 0% { | |
| 659 | + -webkit-transform: rotate(0deg); | |
| 660 | + transform: rotate(0deg); | |
| 661 | + } | |
| 662 | + 100% { | |
| 663 | + -webkit-transform: rotate(360deg); | |
| 664 | + transform: rotate(360deg); | |
| 665 | + } | |
| 666 | +} | |
| 667 | + | |
| 762 | 668 | @keyframes nprogress-spinner { |
| 763 | 669 | 0% { |
| 764 | - transform: rotate(0deg); | |
| 670 | + -webkit-transform: rotate(0deg); | |
| 671 | + transform: rotate(0deg); | |
| 765 | 672 | } |
| 766 | 673 | 100% { |
| 767 | - transform: rotate(360deg); | |
| 674 | + -webkit-transform: rotate(360deg); | |
| 675 | + transform: rotate(360deg); | |
| 768 | 676 | } |
| 769 | 677 | } |
| 770 | 678 | #nprogress .bar, |
| 771 | 679 | #nprogress .spinner { |
| @@ -785,72 +693,86 @@ | ||
| 785 | 693 | --e-editor-panel-width: 300px; |
| 786 | 694 | } |
| 787 | 695 | } |
| 788 | 696 | |
| 789 | -.elementor-panel :where(#elementor-panel-state-loading, | |
| 790 | -#elementor-panel-header-wrapper, | |
| 791 | -#elementor-panel-content-wrapper, | |
| 792 | -#elementor-panel-footer) h1, | |
| 793 | -.elementor-panel :where(#elementor-panel-state-loading, | |
| 794 | -#elementor-panel-header-wrapper, | |
| 795 | -#elementor-panel-content-wrapper, | |
| 796 | -#elementor-panel-footer) h2, | |
| 797 | -.elementor-panel :where(#elementor-panel-state-loading, | |
| 798 | -#elementor-panel-header-wrapper, | |
| 799 | -#elementor-panel-content-wrapper, | |
| 800 | -#elementor-panel-footer) h3, | |
| 801 | -.elementor-panel :where(#elementor-panel-state-loading, | |
| 802 | -#elementor-panel-header-wrapper, | |
| 803 | -#elementor-panel-content-wrapper, | |
| 804 | -#elementor-panel-footer) h4, | |
| 805 | -.elementor-panel :where(#elementor-panel-state-loading, | |
| 806 | -#elementor-panel-header-wrapper, | |
| 807 | -#elementor-panel-content-wrapper, | |
| 808 | -#elementor-panel-footer) h5, | |
| 809 | -.elementor-panel :where(#elementor-panel-state-loading, | |
| 810 | -#elementor-panel-header-wrapper, | |
| 811 | -#elementor-panel-content-wrapper, | |
| 812 | -#elementor-panel-footer) h6 { | |
| 697 | +.elementor-panel { | |
| 698 | + position: relative; | |
| 699 | + height: 100%; | |
| 700 | + -webkit-margin-start: calc(-1 * var(--e-editor-panel-width) * var(--e-is-preview-mode)); | |
| 701 | + margin-inline-start: calc(-1 * var(--e-editor-panel-width) * var(--e-is-preview-mode)); | |
| 702 | + width: var(--e-editor-panel-width); | |
| 703 | + overflow: visible; | |
| 704 | + background-color: #e6e9ec; | |
| 705 | + z-index: 1; | |
| 706 | + font-family: Roboto, Arial, Helvetica, Verdana, sans-serif; | |
| 707 | + font-size: 13px; | |
| 708 | + left: 0; | |
| 709 | +} | |
| 710 | +.elementor-editor-preview .elementor-panel { | |
| 711 | + --e-is-preview-mode: 1; | |
| 712 | +} | |
| 713 | +.elementor-editor-preview .elementor-panel > .ui-resizable-e, .elementor-editor-preview .elementor-panel > .ui-resizable-w { | |
| 714 | + display: none; | |
| 715 | +} | |
| 716 | +.elementor-panel .ps__rail-y { | |
| 717 | + z-index: 2; | |
| 718 | +} | |
| 719 | +.elementor-panel .elementor-responsive-panel { | |
| 720 | + padding: 5px 10px; | |
| 721 | + display: grid; | |
| 722 | + gap: 10px; | |
| 723 | + grid-template-columns: repeat(auto-fill, minmax(min(135px, 50% - 5px), 1fr)); | |
| 724 | +} | |
| 725 | +.elementor-panel .elementor-responsive-panel > .e-responsive-panel-stretch { | |
| 726 | + grid-column: 1/-1; | |
| 727 | +} | |
| 728 | +.elementor-panel ::-moz-selection { | |
| 729 | + background: #5bc0de; | |
| 730 | + color: #ffffff; | |
| 731 | +} | |
| 732 | +.elementor-panel ::selection { | |
| 733 | + background: #5bc0de; | |
| 734 | + color: #ffffff; | |
| 735 | +} | |
| 736 | +.elementor-panel a { | |
| 737 | + color: #93003c; | |
| 738 | +} | |
| 739 | +.elementor-panel h1, | |
| 740 | +.elementor-panel h2, | |
| 741 | +.elementor-panel h3, | |
| 742 | +.elementor-panel h4, | |
| 743 | +.elementor-panel h5, | |
| 744 | +.elementor-panel h6 { | |
| 813 | 745 | font-size: 100%; |
| 814 | 746 | font-weight: normal; |
| 815 | 747 | } |
| 816 | -.elementor-panel :where(#elementor-panel-state-loading, | |
| 817 | -#elementor-panel-header-wrapper, | |
| 818 | -#elementor-panel-content-wrapper, | |
| 819 | -#elementor-panel-footer) abbr, | |
| 820 | -.elementor-panel :where(#elementor-panel-state-loading, | |
| 821 | -#elementor-panel-header-wrapper, | |
| 822 | -#elementor-panel-content-wrapper, | |
| 823 | -#elementor-panel-footer) acronym { | |
| 748 | +.elementor-panel abbr, | |
| 749 | +.elementor-panel acronym { | |
| 824 | 750 | border: 0; |
| 825 | 751 | font-variant: normal; |
| 826 | 752 | } |
| 827 | -.elementor-panel :where(#elementor-panel-state-loading, | |
| 828 | -#elementor-panel-header-wrapper, | |
| 829 | -#elementor-panel-content-wrapper, | |
| 830 | -#elementor-panel-footer) sup { | |
| 753 | +.elementor-panel sup { | |
| 831 | 754 | vertical-align: text-top; |
| 832 | 755 | } |
| 833 | -.elementor-panel :where(#elementor-panel-state-loading, | |
| 834 | -#elementor-panel-header-wrapper, | |
| 835 | -#elementor-panel-content-wrapper, | |
| 836 | -#elementor-panel-footer) sub { | |
| 756 | +.elementor-panel sub { | |
| 837 | 757 | vertical-align: text-bottom; |
| 838 | 758 | } |
| 839 | -.elementor-panel :where(#elementor-panel-state-loading, | |
| 840 | -#elementor-panel-header-wrapper, | |
| 841 | -#elementor-panel-content-wrapper, | |
| 842 | -#elementor-panel-footer) img { | |
| 759 | +.elementor-panel img { | |
| 843 | 760 | max-width: 100%; |
| 844 | 761 | height: auto; |
| 845 | 762 | border: 0; |
| 846 | 763 | } |
| 847 | -.elementor-panel :where(#elementor-panel-state-loading, | |
| 848 | -#elementor-panel-header-wrapper, | |
| 849 | -#elementor-panel-content-wrapper, | |
| 850 | -#elementor-panel-footer) :focus { | |
| 764 | +.elementor-panel ::-moz-focus-inner { | |
| 765 | + padding: 0; | |
| 766 | + border: 0; | |
| 767 | +} | |
| 768 | +.elementor-panel :focus { | |
| 851 | 769 | outline: 0; |
| 852 | 770 | } |
| 771 | +.elementor-panel .elementor-panel-box { | |
| 772 | + margin-top: 10px; | |
| 773 | + background-color: #fff; | |
| 774 | +} | |
| 853 | 775 | .elementor-panel .elementor-panel-box-content { |
| 854 | 776 | padding: 20px 20px 10px; |
| 855 | 777 | } |
| 856 | 778 | .elementor-panel .elementor-button { |
| @@ -856,66 +778,92 @@ | ||
| 856 | 778 | .elementor-panel .elementor-button { |
| 857 | 779 | display: inline-block; |
| 858 | 780 | } |
| 859 | 781 | .elementor-panel .elementor-panel-alert { |
| 860 | - background-color: var(--e-a-bg-primary); | |
| 782 | + background-color: #fcfcfc; | |
| 861 | 783 | padding: 15px; |
| 862 | - border-inline-start: 3px solid var(--e-a-color-primary); | |
| 784 | + border-left: 3px solid transparent; | |
| 863 | 785 | position: relative; |
| 864 | 786 | font-size: 12px; |
| 865 | 787 | font-weight: 300; |
| 866 | 788 | font-style: italic; |
| 867 | 789 | line-height: 1.5; |
| 868 | - text-align: start; | |
| 869 | - border-start-start-radius: 0; | |
| 870 | - border-start-end-radius: 3px; | |
| 871 | - border-end-start-radius: 0; | |
| 872 | - border-end-end-radius: 3px; | |
| 790 | + text-align: left; | |
| 791 | + border-radius: 0 3px 3px 0; | |
| 792 | + -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.07); | |
| 793 | + box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.07); | |
| 873 | 794 | } |
| 874 | 795 | .elementor-panel .elementor-panel-alert a { |
| 875 | 796 | color: inherit; |
| 876 | 797 | } |
| 877 | 798 | .elementor-panel .elementor-panel-alert.elementor-panel-alert-info { |
| 878 | - border-color: var(--e-a-color-info); | |
| 879 | - background: var(--e-a-bg-info); | |
| 799 | + border-color: #71d7f7; | |
| 800 | + background-color: #f3fcff; | |
| 880 | 801 | } |
| 881 | 802 | .elementor-panel .elementor-panel-alert.elementor-panel-alert-success { |
| 882 | - border-color: var(--e-a-color-success); | |
| 883 | - background: var(--e-a-bg-success); | |
| 803 | + border-color: #39b54a; | |
| 884 | 804 | } |
| 885 | 805 | .elementor-panel .elementor-panel-alert.elementor-panel-alert-warning { |
| 886 | - border-inline-start: 3px solid var(--e-a-color-warning); | |
| 887 | - background: var(--e-a-bg-warning); | |
| 806 | + border-color: #fcb92c; | |
| 888 | 807 | } |
| 889 | 808 | .elementor-panel .elementor-panel-alert.elementor-panel-alert-danger { |
| 890 | - border-color: var(--e-a-color-danger); | |
| 891 | - background: var(--e-a-bg-danger); | |
| 809 | + border-color: #d72b3f; | |
| 892 | 810 | } |
| 811 | +.elementor-panel .elementor-label { | |
| 812 | + display: inline; | |
| 813 | + padding: 0.2em 0.6em 0.3em; | |
| 814 | + font-size: 75%; | |
| 815 | + font-weight: 700; | |
| 816 | + line-height: 1; | |
| 817 | + color: #fff; | |
| 818 | + text-align: center; | |
| 819 | + white-space: nowrap; | |
| 820 | + vertical-align: baseline; | |
| 821 | + border-radius: 0.25em; | |
| 822 | + text-transform: capitalize; | |
| 823 | +} | |
| 824 | +.elementor-panel .elementor-label.elementor-label-default { | |
| 825 | + background-color: #a4afb7; | |
| 826 | +} | |
| 827 | +.elementor-panel .elementor-label.elementor-label-info { | |
| 828 | + background-color: #5bc0de; | |
| 829 | +} | |
| 830 | +.elementor-panel .elementor-label.elementor-label-success { | |
| 831 | + background-color: #5cb85c; | |
| 832 | +} | |
| 833 | +.elementor-panel .elementor-label.elementor-label-warning { | |
| 834 | + background-color: #f0ad4e; | |
| 835 | +} | |
| 836 | +.elementor-panel .elementor-label.elementor-label-danger { | |
| 837 | + background-color: #d9534f; | |
| 838 | +} | |
| 893 | 839 | .elementor-panel .elementor-descriptor, .elementor-panel .elementor-control-field-description { |
| 894 | 840 | font-size: 11px; |
| 895 | 841 | font-style: italic; |
| 896 | 842 | line-height: 1.4; |
| 897 | - color: var(--e-a-color-txt-muted); | |
| 843 | + color: #a4afb7; | |
| 898 | 844 | } |
| 899 | 845 | .elementor-panel .elementor-controls-popover { |
| 900 | 846 | display: none; |
| 901 | 847 | position: absolute; |
| 902 | - box-shadow: var(--e-a-popover-shadow); | |
| 903 | - border-radius: var(--e-a-border-radius); | |
| 904 | - inset-inline: 0; | |
| 848 | + -webkit-box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3); | |
| 849 | + box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3); | |
| 850 | + border-radius: 3px; | |
| 851 | + left: 0; | |
| 852 | + right: 0; | |
| 905 | 853 | margin: -4px auto 5px; |
| 906 | - padding-block-start: 15px; | |
| 854 | + padding-top: 15px; | |
| 907 | 855 | width: 90%; |
| 908 | 856 | z-index: 10000; |
| 909 | - background-color: var(--e-a-bg-default); | |
| 857 | + background-color: #fff; | |
| 910 | 858 | } |
| 911 | 859 | .elementor-panel .elementor-controls-popover:before { |
| 912 | 860 | content: ""; |
| 913 | 861 | position: absolute; |
| 914 | - inset-block-start: -16px; | |
| 915 | - inset-inline-end: 22px; | |
| 862 | + top: -16px; | |
| 863 | + right: 22px; | |
| 916 | 864 | border: 8px solid transparent; |
| 917 | - border-block-end-color: var(--e-a-bg-default); | |
| 865 | + border-bottom-color: #fff; | |
| 918 | 866 | } |
| 919 | 867 | .elementor-panel .elementor-controls-popover div.elementor-control { |
| 920 | 868 | background-color: transparent; |
| 921 | 869 | } |
| @@ -921,65 +869,28 @@ | ||
| 921 | 869 | } |
| 922 | 870 | .elementor-panel .elementor-controls-popover div.elementor-control:before { |
| 923 | 871 | content: none; |
| 924 | 872 | } |
| 925 | -.elementor-panel #elementor-panel-global .elementor-nerd-box .elementor-nerd-box-icon { | |
| 926 | - margin-block-start: 20px; | |
| 927 | -} | |
| 928 | -.elementor-panel { | |
| 929 | - position: relative; | |
| 930 | - height: 100%; | |
| 931 | - inset-inline-start: 0; | |
| 932 | - margin-inline-start: calc(-1 * var(--e-editor-panel-width) * var(--e-is-preview-mode)); | |
| 933 | - width: var(--e-editor-panel-width); | |
| 934 | - overflow: visible; | |
| 935 | - background-color: var(--e-a-bg-default); | |
| 936 | - z-index: 1; | |
| 937 | - font-family: var(--e-a-font-family); | |
| 938 | - font-size: 13px; | |
| 939 | -} | |
| 940 | -.elementor-editor-preview .elementor-panel { | |
| 941 | - --e-is-preview-mode: 1; | |
| 942 | -} | |
| 943 | -.elementor-editor-preview .elementor-panel > .ui-resizable-e, | |
| 944 | -.elementor-editor-preview .elementor-panel > .ui-resizable-w { | |
| 873 | +.elementor-panel #elementor-controls .pojo-widget-button-collapse { | |
| 945 | 874 | display: none; |
| 946 | 875 | } |
| 947 | -.elementor-editor-preview .elementor-panel #elementor-panel-elements-wrapper { | |
| 948 | - display: flex; | |
| 949 | - flex-direction: column; | |
| 876 | +.elementor-panel #elementor-panel-global .elementor-nerd-box .elementor-nerd-box-icon { | |
| 877 | + margin-top: 20px; | |
| 950 | 878 | } |
| 951 | -.elementor-panel .ps__rail-y { | |
| 952 | - z-index: 2; | |
| 953 | -} | |
| 954 | -.elementor-panel .elementor-responsive-panel { | |
| 955 | - padding: 0 15px; | |
| 956 | - display: grid; | |
| 957 | - gap: 10px; | |
| 958 | - grid-template-columns: repeat(auto-fill, minmax(min(135px, 50% - 5px), 1fr)); | |
| 959 | -} | |
| 960 | -.elementor-panel .elementor-responsive-panel > .e-responsive-panel-stretch { | |
| 961 | - grid-column: 1/-1; | |
| 962 | -} | |
| 963 | 879 | .elementor-panel #elementor-panel-header { |
| 964 | - display: flex; | |
| 965 | - align-items: center; | |
| 966 | - justify-content: space-between; | |
| 880 | + display: table; | |
| 967 | 881 | height: 40px; |
| 968 | 882 | width: 100%; |
| 969 | - background-color: var(--e-a-dark-bg); | |
| 970 | - color: var(--e-a-color-white); | |
| 883 | + background-color: #93003c; | |
| 884 | + color: #fff; | |
| 971 | 885 | } |
| 972 | 886 | .elementor-panel #elementor-panel-header > * { |
| 973 | - display: flex; | |
| 974 | - align-items: center; | |
| 975 | - justify-content: center; | |
| 887 | + display: table-cell; | |
| 888 | + vertical-align: middle; | |
| 889 | + text-align: center; | |
| 976 | 890 | } |
| 977 | 891 | .elementor-panel .elementor-header-button { |
| 978 | 892 | width: 40px; |
| 979 | - border: 0; | |
| 980 | - color: currentColor; | |
| 981 | - background-color: transparent; | |
| 982 | 893 | } |
| 983 | 894 | .elementor-panel .elementor-header-button .elementor-icon { |
| 984 | 895 | cursor: pointer; |
| 985 | 896 | display: block; |
| @@ -985,50 +896,189 @@ | ||
| 985 | 896 | display: block; |
| 986 | 897 | font-size: 19px; |
| 987 | 898 | height: 40px; |
| 988 | 899 | line-height: 40px; |
| 989 | - transition: var(--e-a-transition-hover); | |
| 900 | + -webkit-transition: all 0.3s; | |
| 901 | + -o-transition: all 0.3s; | |
| 902 | + transition: all 0.3s; | |
| 990 | 903 | } |
| 991 | 904 | .elementor-panel .elementor-header-button .elementor-icon.eicon-menu-bar { |
| 992 | 905 | font-size: 18px; |
| 993 | 906 | } |
| 994 | -.elementor-panel .elementor-header-button:hover, .elementor-panel .elementor-header-button:focus { | |
| 995 | - color: var(--e-a-dark-color-txt-hover); | |
| 907 | +.elementor-panel .elementor-header-button .elementor-icon:hover { | |
| 908 | + color: #d5dadf; | |
| 996 | 909 | } |
| 997 | 910 | .elementor-panel #elementor-panel-header-title { |
| 998 | - flex: 1; | |
| 999 | 911 | font-size: 15px; |
| 1000 | - font-weight: 700; | |
| 1001 | 912 | } |
| 1002 | 913 | .elementor-panel #elementor-panel-header-title img { |
| 1003 | 914 | width: 90px; |
| 1004 | 915 | } |
| 1005 | 916 | .elementor-panel #elementor-panel-elements-categories { |
| 1006 | - padding-block-end: 10px; | |
| 1007 | - position: relative; | |
| 917 | + padding-bottom: 10px; | |
| 1008 | 918 | } |
| 1009 | 919 | .elementor-panel .elementor-panel-category { |
| 1010 | 920 | position: relative; |
| 1011 | - border-block-end: var(--e-a-border); | |
| 1012 | 921 | } |
| 1013 | -.elementor-panel .elementor-panel-category .elementor-panel-heading { | |
| 1014 | - padding: 0 15px; | |
| 1015 | - border: none; | |
| 1016 | - background-color: transparent; | |
| 922 | +.elementor-panel .elementor-panel-category:first-child .elementor-panel-category-title { | |
| 923 | + padding-top: 14px; | |
| 1017 | 924 | } |
| 1018 | -.elementor-panel .elementor-panel-category.elementor-active .elementor-panel-heading { | |
| 1019 | - border: none; | |
| 925 | +.elementor-panel .elementor-panel-category.elementor-active .elementor-panel-category-title:before { | |
| 926 | + -webkit-transform: rotate(90deg); | |
| 927 | + -ms-transform: rotate(90deg); | |
| 928 | + transform: rotate(90deg); | |
| 1020 | 929 | } |
| 1021 | -.elementor-panel .elementor-panel-category.elementor-active-title { | |
| 1022 | - display: flex; | |
| 930 | +.elementor-panel .elementor-panel-category:not(.elementor-active):after { | |
| 931 | + content: ""; | |
| 932 | + position: absolute; | |
| 933 | + left: 15px; | |
| 934 | + right: 15px; | |
| 935 | + bottom: 0; | |
| 936 | + height: 8px; | |
| 937 | + background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.03)), to(transparent)); | |
| 938 | + background: -o-linear-gradient(rgba(0, 0, 0, 0.03), transparent); | |
| 939 | + background: linear-gradient(rgba(0, 0, 0, 0.03), transparent); | |
| 940 | + -webkit-transform: translateY(100%); | |
| 941 | + -ms-transform: translateY(100%); | |
| 942 | + transform: translateY(100%); | |
| 1023 | 943 | } |
| 944 | +.elementor-panel .elementor-panel-category-title { | |
| 945 | + margin: 0 15px; | |
| 946 | + padding: 20px 0; | |
| 947 | + position: relative; | |
| 948 | + text-transform: uppercase; | |
| 949 | + font-size: 11px; | |
| 950 | + cursor: pointer; | |
| 951 | +} | |
| 952 | +.elementor-panel .elementor-panel-category-title:before { | |
| 953 | + content: "\e87d"; | |
| 954 | + font-family: eicons; | |
| 955 | + position: absolute; | |
| 956 | + right: 0; | |
| 957 | + -webkit-transition: -webkit-transform 0.3s; | |
| 958 | + transition: -webkit-transform 0.3s; | |
| 959 | + -o-transition: transform 0.3s; | |
| 960 | + transition: transform 0.3s; | |
| 961 | + transition: transform 0.3s, -webkit-transform 0.3s; | |
| 962 | +} | |
| 1024 | 963 | .elementor-panel .elementor-panel-category-items { |
| 1025 | - padding-block-end: 20px; | |
| 964 | + padding: 0 10px; | |
| 1026 | 965 | } |
| 1027 | 966 | .elementor-panel .elementor-panel-category-items-empty { |
| 1028 | 967 | grid-column-start: 1; |
| 1029 | 968 | grid-column-end: 3; |
| 1030 | 969 | } |
| 970 | +.elementor-panel .elementor-panel-scheme-title { | |
| 971 | + padding: 10px 20px; | |
| 972 | + margin-top: 10px; | |
| 973 | +} | |
| 974 | +.elementor-panel .elementor-panel-scheme-description { | |
| 975 | + padding: 20px 20px 0; | |
| 976 | +} | |
| 977 | +.elementor-panel .elementor-panel-scheme-buttons { | |
| 978 | + padding: 0 20px; | |
| 979 | + display: table; | |
| 980 | + table-layout: fixed; | |
| 981 | + width: 100%; | |
| 982 | + height: 40px; | |
| 983 | + background-color: #fff; | |
| 984 | + -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.1); | |
| 985 | + box-shadow: 0 0 8px rgba(0, 0, 0, 0.1); | |
| 986 | +} | |
| 987 | +.elementor-panel .elementor-panel-scheme-buttons .elementor-button { | |
| 988 | + font-family: Roboto, Arial, Helvetica, Verdana, sans-serif; | |
| 989 | + font-size: 11px; | |
| 990 | + font-weight: 400; | |
| 991 | +} | |
| 992 | +.elementor-panel .elementor-panel-scheme-button-wrapper { | |
| 993 | + display: table-cell; | |
| 994 | + vertical-align: middle; | |
| 995 | + text-align: center; | |
| 996 | +} | |
| 997 | +.elementor-panel .elementor-panel-scheme-button-wrapper:first-child { | |
| 998 | + text-align: left; | |
| 999 | +} | |
| 1000 | +.elementor-panel .elementor-panel-scheme-button-wrapper:last-child { | |
| 1001 | + text-align: right; | |
| 1002 | +} | |
| 1003 | +.elementor-panel .elementor-panel-scheme-save .elementor-button { | |
| 1004 | + padding: 6px 18px; | |
| 1005 | +} | |
| 1006 | +.elementor-panel .elementor-panel-scheme-reset .elementor-button, .elementor-panel .elementor-panel-scheme-discard .elementor-button { | |
| 1007 | + color: #a4afb7; | |
| 1008 | + background: none; | |
| 1009 | +} | |
| 1010 | +.elementor-panel .elementor-panel-scheme-color .elementor-panel-scheme-items { | |
| 1011 | + position: relative; | |
| 1012 | + display: grid; | |
| 1013 | + grid-template-columns: repeat(4, 27px); | |
| 1014 | + -webkit-box-pack: justify; | |
| 1015 | + -ms-flex-pack: justify; | |
| 1016 | + justify-content: space-between; | |
| 1017 | +} | |
| 1018 | +.elementor-panel .elementor-panel-scheme-color-title { | |
| 1019 | + text-align: center; | |
| 1020 | + text-transform: uppercase; | |
| 1021 | + margin: 10px 0; | |
| 1022 | + color: #c2cbd2; | |
| 1023 | + font-size: 8px; | |
| 1024 | +} | |
| 1025 | +.elementor-panel .elementor-panel-scheme-typography-item { | |
| 1026 | + display: table; | |
| 1027 | + table-layout: fixed; | |
| 1028 | + width: 100%; | |
| 1029 | + margin-bottom: 15px; | |
| 1030 | +} | |
| 1031 | +.elementor-panel .elementor-panel-scheme-typography-item > * { | |
| 1032 | + display: table-cell; | |
| 1033 | + vertical-align: middle; | |
| 1034 | +} | |
| 1035 | +.elementor-panel .elementor-panel-scheme-typography-item-value select, .elementor-panel .elementor-panel-scheme-typography-item-value input { | |
| 1036 | + width: 100%; | |
| 1037 | +} | |
| 1038 | +.elementor-panel .elementor-panel-scheme-item:not(.elementor-open) .elementor-panel-scheme-typography-items { | |
| 1039 | + display: none; | |
| 1040 | +} | |
| 1041 | +.elementor-panel .elementor-panel-scheme-color-system-scheme { | |
| 1042 | + margin-bottom: 10px; | |
| 1043 | +} | |
| 1044 | +.elementor-panel .elementor-panel-scheme-color-system-scheme .elementor-title { | |
| 1045 | + font-size: 11px; | |
| 1046 | + color: #a4afb7; | |
| 1047 | + font-style: italic; | |
| 1048 | + margin-top: 5px; | |
| 1049 | +} | |
| 1050 | +.elementor-panel .elementor-panel-scheme-color-system-items { | |
| 1051 | + display: -webkit-box; | |
| 1052 | + display: -ms-flexbox; | |
| 1053 | + display: flex; | |
| 1054 | + -webkit-transition: border 0.5s; | |
| 1055 | + -o-transition: border 0.5s; | |
| 1056 | + transition: border 0.5s; | |
| 1057 | + overflow: hidden; | |
| 1058 | + padding: 3px; | |
| 1059 | + border-radius: 3px; | |
| 1060 | + border: 1px solid #d5dadf; | |
| 1061 | + cursor: pointer; | |
| 1062 | +} | |
| 1063 | +.elementor-panel .elementor-panel-scheme-color-system-items:hover { | |
| 1064 | + border: 1px solid #a4afb7; | |
| 1065 | +} | |
| 1066 | +.elementor-panel .elementor-panel-scheme-color-system-item { | |
| 1067 | + height: 20px; | |
| 1068 | + -webkit-box-flex: 1; | |
| 1069 | + -ms-flex-positive: 1; | |
| 1070 | + flex-grow: 1; | |
| 1071 | +} | |
| 1072 | +.elementor-panel #elementor-panel-schemes-disabled a { | |
| 1073 | + color: #39b54a; | |
| 1074 | +} | |
| 1075 | +.elementor-panel #elementor-panel-schemes-disabled a:hover { | |
| 1076 | + text-decoration: underline; | |
| 1077 | +} | |
| 1078 | +.elementor-panel #elementor-panel-schemes-disabled .elementor-nerd-box-icon { | |
| 1079 | + margin-top: 20px; | |
| 1080 | +} | |
| 1031 | 1081 | .elementor-panel #elementor-panel-page-menu { |
| 1032 | 1082 | padding: 25px 15px; |
| 1033 | 1083 | } |
| 1034 | 1084 | .elementor-panel .elementor-panel-menu-group-title { |
| @@ -1035,159 +1085,156 @@ | ||
| 1035 | 1085 | text-transform: uppercase; |
| 1036 | 1086 | font-size: 11px; |
| 1037 | 1087 | } |
| 1038 | 1088 | .elementor-panel .elementor-panel-menu-items { |
| 1039 | - border: var(--e-a-border); | |
| 1040 | 1089 | margin: 15px 0 25px; |
| 1041 | 1090 | border-radius: 5px; |
| 1042 | 1091 | overflow: hidden; |
| 1043 | 1092 | } |
| 1044 | 1093 | .elementor-panel .elementor-panel-menu-item { |
| 1045 | - display: flex; | |
| 1046 | - align-items: center; | |
| 1094 | + display: table; | |
| 1047 | 1095 | width: 100%; |
| 1048 | 1096 | height: 40px; |
| 1049 | - transition: var(--e-a-transition-hover); | |
| 1050 | - border: 0; | |
| 1051 | - background-color: transparent; | |
| 1052 | 1097 | cursor: pointer; |
| 1098 | + margin-bottom: 1px; | |
| 1099 | + background-color: #fff; | |
| 1053 | 1100 | } |
| 1054 | -.elementor-panel .elementor-panel-menu-item:not(:last-child) { | |
| 1055 | - border-block-end: var(--e-a-border); | |
| 1101 | +.elementor-panel .elementor-panel-menu-item:hover { | |
| 1102 | + background-color: rgba(255, 255, 255, 0.8); | |
| 1056 | 1103 | } |
| 1057 | -.elementor-panel .elementor-panel-menu-item:hover, .elementor-panel .elementor-panel-menu-item:focus { | |
| 1058 | - background-color: var(--e-a-bg-hover); | |
| 1104 | +.elementor-panel .elementor-panel-menu-item > * { | |
| 1105 | + display: table-cell; | |
| 1106 | + vertical-align: middle; | |
| 1059 | 1107 | } |
| 1060 | -.elementor-panel .elementor-panel-menu-item:active { | |
| 1061 | - background-color: var(--e-a-bg-active); | |
| 1062 | - color: var(--e-a-color-txt-accent); | |
| 1063 | -} | |
| 1064 | 1108 | .elementor-panel .elementor-panel-menu-item-icon { |
| 1065 | 1109 | text-align: center; |
| 1066 | - width: 30px; | |
| 1067 | - flex-shrink: 0; | |
| 1068 | - padding: 10px 0; | |
| 1069 | - margin: 0 10px; | |
| 1110 | + width: 50px; | |
| 1111 | + color: #a4afb7; | |
| 1070 | 1112 | font-size: 19px; |
| 1071 | 1113 | } |
| 1114 | +.elementor-panel .elementor-panel-menu-item-icon .eicon-editor-external-link { | |
| 1115 | + font-size: 18px; | |
| 1116 | +} | |
| 1072 | 1117 | .elementor-panel .elementor-panel-menu-item-title { |
| 1073 | - display: flex; | |
| 1074 | - flex-grow: 1; | |
| 1075 | 1118 | font-weight: 500; |
| 1076 | - justify-content: space-between; | |
| 1077 | 1119 | } |
| 1078 | -.elementor-panel .elementor-panel-menu-item-title-badge { | |
| 1079 | - margin: 0 10px; | |
| 1080 | - background: var(--e-a-color-white); | |
| 1081 | - border-radius: var(--e-a-border-radius); | |
| 1082 | -} | |
| 1083 | 1120 | .elementor-panel .elementor-panel-menu-item-title > span { |
| 1084 | - color: var(--e-a-color-accent); | |
| 1121 | + color: #39b54a; | |
| 1085 | 1122 | } |
| 1086 | 1123 | .elementor-panel .elementor-panel-menu-item a { |
| 1087 | - display: flex; | |
| 1088 | - align-items: center; | |
| 1089 | - color: inherit; | |
| 1090 | - width: 100%; | |
| 1091 | - height: 100%; | |
| 1092 | - padding-inline-start: 10px; | |
| 1093 | - padding: 10px 0; | |
| 1124 | + color: #6d7882; | |
| 1094 | 1125 | } |
| 1126 | +.elementor-panel .elementor-panel-menu-item-exit { | |
| 1127 | + background-color: #0085ba; | |
| 1128 | + color: #fff; | |
| 1129 | + text-transform: uppercase; | |
| 1130 | + font-size: 12px; | |
| 1131 | +} | |
| 1132 | +.elementor-panel .elementor-panel-menu-item-exit:hover { | |
| 1133 | + background-color: #0073a1; | |
| 1134 | +} | |
| 1135 | +.elementor-panel .elementor-panel-menu-item-exit .elementor-panel-menu-item-title, | |
| 1136 | +.elementor-panel .elementor-panel-menu-item-exit .elementor-panel-menu-item-icon { | |
| 1137 | + color: #fff; | |
| 1138 | +} | |
| 1139 | +.elementor-panel .elementor-panel-menu-item-settings-additional-settings { | |
| 1140 | + background-color: #f1f3f5; | |
| 1141 | +} | |
| 1095 | 1142 | .elementor-panel .elementor-control.elementor-control-clear_page { |
| 1096 | 1143 | background-color: transparent; |
| 1097 | 1144 | } |
| 1098 | 1145 | .elementor-panel .elementor-control.elementor-control-clear_page .elementor-control-raw-html { |
| 1146 | + display: -webkit-box; | |
| 1147 | + display: -ms-flexbox; | |
| 1099 | 1148 | display: flex; |
| 1100 | - align-items: center; | |
| 1101 | - justify-content: space-between; | |
| 1149 | + -webkit-box-align: center; | |
| 1150 | + -ms-flex-align: center; | |
| 1151 | + align-items: center; | |
| 1152 | + -webkit-box-pack: justify; | |
| 1153 | + -ms-flex-pack: justify; | |
| 1154 | + justify-content: space-between; | |
| 1102 | 1155 | } |
| 1103 | 1156 | .elementor-panel .elementor-panel-navigation { |
| 1104 | - display: flex; | |
| 1157 | + background-color: #ffffff; | |
| 1158 | + -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.1); | |
| 1159 | + box-shadow: 0 0 8px rgba(0, 0, 0, 0.1); | |
| 1160 | + display: table; | |
| 1161 | + table-layout: fixed; | |
| 1105 | 1162 | width: 100%; |
| 1106 | - border-block-end: var(--e-a-border); | |
| 1107 | 1163 | } |
| 1108 | 1164 | .elementor-panel .elementor-panel-navigation .elementor-panel-navigation-tab { |
| 1109 | - all: unset; | |
| 1110 | - flex: auto; | |
| 1111 | - transition: var(--e-a-transition-hover); | |
| 1112 | - border-block-end: 3px solid transparent; | |
| 1113 | - cursor: pointer; | |
| 1165 | + display: table-cell; | |
| 1114 | 1166 | } |
| 1115 | -.elementor-panel .elementor-panel-navigation .elementor-panel-navigation-tab:hover, .elementor-panel .elementor-panel-navigation .elementor-panel-navigation-tab:focus { | |
| 1116 | - background-color: var(--e-a-bg-hover); | |
| 1117 | -} | |
| 1118 | -.elementor-panel .elementor-panel-navigation .elementor-panel-navigation-tab:focus { | |
| 1119 | - outline: 0; | |
| 1120 | -} | |
| 1121 | 1167 | .elementor-panel .elementor-panel-navigation .elementor-panel-navigation-tab.elementor-active { |
| 1122 | - border-color: var(--e-a-border-color-accent); | |
| 1123 | - color: var(--e-a-color-txt-accent); | |
| 1168 | + background-image: -webkit-gradient(linear, left top, left bottom, from(#f1f3f5), to(#fff)); | |
| 1169 | + background-image: -o-linear-gradient(top, #f1f3f5, #fff); | |
| 1170 | + background-image: linear-gradient(to bottom, #f1f3f5, #fff); | |
| 1171 | + border-bottom: 3px solid #93003c; | |
| 1124 | 1172 | } |
| 1125 | -.elementor-panel .elementor-panel-navigation .elementor-panel-navigation-tab.elementor-active span { | |
| 1126 | - color: var(--e-a-color-txt-accent); | |
| 1127 | -} | |
| 1128 | -.elementor-panel .elementor-panel-navigation .elementor-panel-navigation-tab span { | |
| 1129 | - color: inherit; | |
| 1173 | +.elementor-panel .elementor-panel-navigation .elementor-panel-navigation-tab a { | |
| 1130 | 1174 | display: block; |
| 1131 | 1175 | text-align: center; |
| 1132 | 1176 | padding: 12px 0 8px; |
| 1133 | 1177 | font-size: 10px; |
| 1178 | + color: #6d7882; | |
| 1134 | 1179 | } |
| 1135 | -.elementor-panel .elementor-panel-navigation .elementor-panel-navigation-tab span:before { | |
| 1180 | +.elementor-panel .elementor-panel-navigation .elementor-panel-navigation-tab a:before { | |
| 1136 | 1181 | font-family: eicons; |
| 1137 | 1182 | font-size: 16px; |
| 1138 | 1183 | display: block; |
| 1139 | - margin-block-end: 8px; | |
| 1184 | + margin-bottom: 6px; | |
| 1140 | 1185 | } |
| 1141 | -.elementor-panel .elementor-tab-control-content span:before { | |
| 1186 | +.elementor-panel .elementor-tab-control-content a:before { | |
| 1142 | 1187 | content: "\e92c"; |
| 1143 | 1188 | } |
| 1144 | -.elementor-panel .elementor-tab-control-style span:before { | |
| 1189 | +.elementor-panel .elementor-tab-control-style a:before { | |
| 1145 | 1190 | content: "\e921"; |
| 1146 | 1191 | } |
| 1147 | -.elementor-panel .elementor-tab-control-settings span:before { | |
| 1148 | - content: "\e940"; | |
| 1149 | -} | |
| 1150 | -.elementor-panel .elementor-tab-control-advanced-tab-floating-buttons span:before, | |
| 1151 | -.elementor-panel .elementor-tab-control-advanced-tab-links-in-bio span:before, | |
| 1152 | -.elementor-panel .elementor-tab-control-advanced-tab-floating-bars span:before, | |
| 1153 | -.elementor-panel .elementor-tab-control-advanced span:before, | |
| 1154 | -.elementor-panel .elementor-tab-control-general_style span:before { | |
| 1192 | +.elementor-panel .elementor-tab-control-advanced a:before, .elementor-panel .elementor-tab-control-settings a:before, .elementor-panel .elementor-tab-control-general_style a:before { | |
| 1155 | 1193 | content: "\e916"; |
| 1156 | 1194 | } |
| 1157 | -.elementor-panel .elementor-tab-control-responsive span:before { | |
| 1195 | +.elementor-panel .elementor-tab-control-responsive a:before { | |
| 1158 | 1196 | content: "\e885"; |
| 1159 | 1197 | } |
| 1160 | -.elementor-panel .elementor-tab-control-lightbox span:before { | |
| 1198 | +.elementor-panel .elementor-tab-control-layout a:before, .elementor-panel .elementor-tab-control-column a:before { | |
| 1199 | + content: "\e899"; | |
| 1200 | +} | |
| 1201 | +.elementor-panel .elementor-tab-control-lightbox a:before { | |
| 1161 | 1202 | content: "\e922"; |
| 1162 | 1203 | } |
| 1163 | -.elementor-panel .elementor-tab-control-layout span:before, | |
| 1164 | -.elementor-panel .elementor-tab-control-column span:before { | |
| 1165 | - content: "\e899"; | |
| 1166 | -} | |
| 1167 | 1204 | .elementor-panel #elementor-panel__editor__help { |
| 1168 | 1205 | padding: 50px 25px; |
| 1206 | + display: -webkit-box; | |
| 1207 | + display: -ms-flexbox; | |
| 1169 | 1208 | display: flex; |
| 1170 | - align-items: center; | |
| 1171 | - justify-content: center; | |
| 1209 | + -webkit-box-align: center; | |
| 1210 | + -ms-flex-align: center; | |
| 1211 | + align-items: center; | |
| 1212 | + -webkit-box-pack: center; | |
| 1213 | + -ms-flex-pack: center; | |
| 1214 | + justify-content: center; | |
| 1172 | 1215 | } |
| 1173 | 1216 | .elementor-panel #elementor-panel__editor__help__link { |
| 1217 | + display: -webkit-inline-box; | |
| 1218 | + display: -ms-inline-flexbox; | |
| 1174 | 1219 | display: inline-flex; |
| 1175 | - align-items: center; | |
| 1176 | - justify-content: center; | |
| 1177 | - font-size: 85%; | |
| 1178 | - line-height: 2; | |
| 1179 | - padding-inline-start: 5px; | |
| 1180 | - color: inherit; | |
| 1220 | + -webkit-box-align: center; | |
| 1221 | + -ms-flex-align: center; | |
| 1222 | + align-items: center; | |
| 1223 | + -webkit-box-pack: center; | |
| 1224 | + -ms-flex-pack: center; | |
| 1225 | + justify-content: center; | |
| 1226 | + color: #6d7882; | |
| 1227 | + font-size: 12px; | |
| 1181 | 1228 | font-weight: 500; |
| 1182 | - transition: var(--e-a-transition-hover); | |
| 1229 | + -webkit-transition: all 0.3s; | |
| 1230 | + -o-transition: all 0.3s; | |
| 1231 | + transition: all 0.3s; | |
| 1183 | 1232 | } |
| 1184 | -.elementor-panel #elementor-panel__editor__help__link:hover, .elementor-panel #elementor-panel__editor__help__link:focus { | |
| 1185 | - color: var(--e-a-color-info); | |
| 1186 | -} | |
| 1187 | 1233 | .elementor-panel #elementor-panel__editor__help__link i { |
| 1188 | 1234 | padding: 0 5px; |
| 1189 | - font-size: 125%; | |
| 1235 | + color: #a4afb7; | |
| 1236 | + font-size: 18px; | |
| 1190 | 1237 | position: relative; |
| 1191 | 1238 | } |
| 1192 | 1239 | .elementor-panel #elementor-panel__editor__help__link i:after { |
| 1193 | 1240 | content: ""; |
| @@ -1193,69 +1240,157 @@ | ||
| 1193 | 1240 | content: ""; |
| 1194 | 1241 | position: absolute; |
| 1195 | 1242 | height: 13px; |
| 1196 | 1243 | width: 13px; |
| 1197 | - inset-block-start: 3px; | |
| 1198 | - inset-block-end: 0; | |
| 1199 | - inset-inline-start: 8px; | |
| 1200 | - inset-inline-end: 0; | |
| 1244 | + top: 3px; | |
| 1245 | + bottom: 0; | |
| 1246 | + left: 8px; | |
| 1247 | + right: 0; | |
| 1201 | 1248 | border-radius: 50%; |
| 1202 | 1249 | z-index: -1; |
| 1203 | 1250 | } |
| 1251 | +.elementor-panel #elementor-panel__editor__help__link:hover { | |
| 1252 | + color: #495157; | |
| 1253 | +} | |
| 1254 | +.elementor-panel #elementor-panel__editor__help__link:hover i { | |
| 1255 | + color: #71d7f7; | |
| 1256 | +} | |
| 1257 | +.elementor-panel #elementor-panel__editor__help__link:hover i:before { | |
| 1258 | + content: "\e941"; | |
| 1259 | +} | |
| 1260 | +.elementor-panel #elementor-panel__editor__help__link:hover i:after { | |
| 1261 | + background: #fff; | |
| 1262 | +} | |
| 1204 | 1263 | .elementor-panel #elementor-panel-footer { |
| 1205 | - position: relative; | |
| 1264 | + position: absolute; | |
| 1265 | + bottom: 0; | |
| 1266 | + left: 0; | |
| 1267 | + right: 0; | |
| 1206 | 1268 | height: 40px; |
| 1207 | - background-color: var(--e-a-dark-bg); | |
| 1208 | - color: var(--e-a-dark-color-txt); | |
| 1269 | + background-color: #495157; | |
| 1209 | 1270 | } |
| 1210 | 1271 | .elementor-panel #elementor-panel-footer-tools { |
| 1211 | - display: flex; | |
| 1212 | - justify-content: space-between; | |
| 1272 | + display: table; | |
| 1273 | + table-layout: fixed; | |
| 1274 | + width: 100%; | |
| 1213 | 1275 | height: 100%; |
| 1214 | 1276 | } |
| 1215 | 1277 | .elementor-panel .elementor-panel-footer-tool { |
| 1216 | - display: flex; | |
| 1217 | - align-items: center; | |
| 1218 | - justify-content: center; | |
| 1219 | - width: 15%; | |
| 1278 | + display: table-cell; | |
| 1279 | + vertical-align: middle; | |
| 1280 | + text-align: center; | |
| 1220 | 1281 | cursor: pointer; |
| 1221 | - transition: var(--e-a-transition-hover); | |
| 1222 | - border: 0; | |
| 1223 | - color: currentColor; | |
| 1224 | - background-color: transparent; | |
| 1282 | + color: #a4afb7; | |
| 1283 | + -webkit-transition: all 0.3s; | |
| 1284 | + -o-transition: all 0.3s; | |
| 1285 | + transition: all 0.3s; | |
| 1225 | 1286 | } |
| 1226 | -.elementor-panel .elementor-panel-footer-tool i { | |
| 1227 | - font-size: 15px; | |
| 1287 | +.elementor-panel .elementor-panel-footer-tool #elementor-panel-saver-button-update { | |
| 1288 | + border-right: 1px solid #2d8739; | |
| 1289 | + border-radius: 3px 0 0 3px; | |
| 1228 | 1290 | } |
| 1229 | -.elementor-panel .elementor-panel-footer-tool #elementor-panel-saver-button-save-options i.eicon-chevron-right { | |
| 1291 | +.elementor-panel .elementor-panel-footer-tool #elementor-panel-saver-button-update i { | |
| 1292 | + margin-right: 5px; | |
| 1293 | +} | |
| 1294 | +.elementor-panel .elementor-panel-footer-tool #elementor-panel-saver-button-save-options { | |
| 1295 | + float: left; | |
| 1296 | + border-radius: 0 3px 3px 0; | |
| 1297 | +} | |
| 1298 | +.elementor-panel .elementor-panel-footer-tool #elementor-panel-saver-button-save-options i { | |
| 1230 | 1299 | margin: auto; |
| 1231 | - transform: rotate(270deg); | |
| 1232 | 1300 | } |
| 1233 | -.elementor-panel .elementor-panel-footer-tool #elementor-panel-saver-button-save-options.elementor-disabled { | |
| 1234 | - cursor: inherit; | |
| 1301 | +.elementor-panel .elementor-panel-footer-tool.elementor-open { | |
| 1302 | + color: #fff; | |
| 1235 | 1303 | } |
| 1236 | -.elementor-panel .elementor-panel-footer-tool:not(.e-open):hover, .elementor-panel .elementor-panel-footer-tool:not(.e-open):focus { | |
| 1237 | - color: var(--e-a-dark-color-txt-hover); | |
| 1304 | +.elementor-panel .elementor-panel-footer-tool:not(.elementor-open):hover { | |
| 1305 | + color: #d5dadf; | |
| 1238 | 1306 | } |
| 1239 | -.elementor-panel .elementor-panel-footer-tool:not(.e-open) .elementor-panel-footer-sub-menu-wrapper { | |
| 1307 | +.elementor-panel .elementor-panel-footer-tool:not(.elementor-open) .elementor-panel-footer-sub-menu-wrapper { | |
| 1240 | 1308 | display: none; |
| 1241 | 1309 | } |
| 1310 | +.elementor-panel .elementor-panel-footer-sub-menu-wrapper { | |
| 1311 | + position: absolute; | |
| 1312 | + bottom: 100%; | |
| 1313 | + left: 0; | |
| 1314 | + width: 100%; | |
| 1315 | + background-color: #556068; | |
| 1316 | + padding: 10px; | |
| 1317 | + -webkit-box-shadow: -2px -5px 8px rgba(0, 0, 0, 0.1); | |
| 1318 | + box-shadow: -2px -5px 8px rgba(0, 0, 0, 0.1); | |
| 1319 | + cursor: default; | |
| 1320 | + z-index: 10000; | |
| 1321 | +} | |
| 1322 | +.elementor-panel .elementor-panel-footer-sub-menu { | |
| 1323 | + border-radius: 5px; | |
| 1324 | + overflow: hidden; | |
| 1325 | +} | |
| 1326 | +.elementor-panel .elementor-panel-footer-sub-menu-item { | |
| 1327 | + background-color: #495157; | |
| 1328 | + display: table; | |
| 1329 | + table-layout: fixed; | |
| 1330 | + width: 100%; | |
| 1331 | + cursor: pointer; | |
| 1332 | +} | |
| 1333 | +.elementor-panel .elementor-panel-footer-sub-menu-item.elementor-disabled .elementor-icon, | |
| 1334 | +.elementor-panel .elementor-panel-footer-sub-menu-item.elementor-disabled .elementor-title { | |
| 1335 | + color: #6d7882; | |
| 1336 | +} | |
| 1337 | +.elementor-panel .elementor-panel-footer-sub-menu-item:not(:last-child) { | |
| 1338 | + margin-bottom: 1px; | |
| 1339 | +} | |
| 1340 | +.elementor-panel .elementor-panel-footer-sub-menu-item:hover { | |
| 1341 | + background-color: rgba(0, 0, 0, 0.2); | |
| 1342 | +} | |
| 1343 | +.elementor-panel .elementor-panel-footer-sub-menu-item.active { | |
| 1344 | + background-color: rgba(0, 0, 0, 0.3); | |
| 1345 | +} | |
| 1346 | +.elementor-panel .elementor-panel-footer-sub-menu-item > * { | |
| 1347 | + display: table-cell; | |
| 1348 | + height: 40px; | |
| 1349 | + vertical-align: middle; | |
| 1350 | +} | |
| 1351 | +.elementor-panel .elementor-panel-footer-sub-menu-item .elementor-icon { | |
| 1352 | + width: 40px; | |
| 1353 | + color: #a4afb7; | |
| 1354 | +} | |
| 1355 | +.elementor-panel .elementor-panel-footer-sub-menu-item .elementor-title { | |
| 1356 | + text-align: left; | |
| 1357 | + color: #d5dadf; | |
| 1358 | +} | |
| 1359 | +.elementor-panel .elementor-panel-footer-sub-menu-item .elementor-description { | |
| 1360 | + width: 95px; | |
| 1361 | + text-align: left; | |
| 1362 | + font-size: 11px; | |
| 1363 | + font-style: italic; | |
| 1364 | + color: #a4afb7; | |
| 1365 | +} | |
| 1366 | +.elementor-panel #elementor-panel-footer-help-title { | |
| 1367 | + text-align: left; | |
| 1368 | + padding: 10px 0; | |
| 1369 | + color: #d5dadf; | |
| 1370 | +} | |
| 1371 | +.elementor-panel #elementor-panel-footer-responsive > i { | |
| 1372 | + display: block; | |
| 1373 | + height: 100%; | |
| 1374 | + line-height: 40px; | |
| 1375 | +} | |
| 1242 | 1376 | .elementor-panel #elementor-panel-footer-saver-publish { |
| 1243 | - width: 30%; | |
| 1244 | - margin-inline-start: auto; | |
| 1377 | + width: 80px; | |
| 1245 | 1378 | } |
| 1246 | 1379 | .elementor-panel #elementor-panel-footer-saver-publish .elementor-button-state i { |
| 1247 | - margin-inline-end: 0; | |
| 1380 | + margin-right: 0; | |
| 1248 | 1381 | } |
| 1249 | 1382 | .elementor-panel #elementor-panel-footer-saver-publish .elementor-button-state #elementor-panel-saver-button-publish-label { |
| 1250 | 1383 | display: none; |
| 1251 | 1384 | } |
| 1252 | 1385 | .elementor-panel #elementor-panel-footer-saver-options { |
| 1253 | - width: 10%; | |
| 1386 | + width: 35px; | |
| 1387 | + border-left: 1px solid #495157; | |
| 1254 | 1388 | } |
| 1255 | 1389 | .elementor-panel #elementor-panel-footer-saver-options .elementor-last-edited-wrapper { |
| 1256 | 1390 | font-size: 11px; |
| 1257 | 1391 | font-style: italic; |
| 1392 | + color: #a4afb7; | |
| 1258 | 1393 | padding: 5px 0 15px; |
| 1259 | 1394 | } |
| 1260 | 1395 | .elementor-panel #elementor-panel-footer-saver-options .elementor-last-edited-wrapper:not(.elementor-state-active) .elementor-state-icon { |
| 1261 | 1396 | display: none; |
| @@ -1260,80 +1395,45 @@ | ||
| 1260 | 1395 | .elementor-panel #elementor-panel-footer-saver-options .elementor-last-edited-wrapper:not(.elementor-state-active) .elementor-state-icon { |
| 1261 | 1396 | display: none; |
| 1262 | 1397 | } |
| 1263 | 1398 | .elementor-panel #elementor-panel-footer-saver-options .elementor-last-edited-wrapper time { |
| 1264 | - border-block-end: 1px dotted transparent; | |
| 1399 | + border-bottom: 1px dotted transparent; | |
| 1400 | + -webkit-transition: all ease-in-out 0.3s; | |
| 1401 | + -o-transition: all ease-in-out 0.3s; | |
| 1265 | 1402 | transition: all ease-in-out 0.3s; |
| 1266 | 1403 | cursor: pointer; |
| 1267 | 1404 | } |
| 1268 | 1405 | .elementor-panel #elementor-panel-footer-saver-options .elementor-last-edited-wrapper time:hover { |
| 1269 | - border-block-end-color: inherit; | |
| 1406 | + border-bottom-color: inherit; | |
| 1270 | 1407 | } |
| 1271 | -.elementor-panel #elementor-panel-footer-saver-options.e-open i.eicon-chevron-right { | |
| 1272 | - transform: rotate(90deg); | |
| 1408 | +.elementor-panel .elementor-disabled { | |
| 1409 | + cursor: default; | |
| 1273 | 1410 | } |
| 1411 | +.elementor-panel #elementor-panel-saver-button-preview a { | |
| 1412 | + color: #a4afb7; | |
| 1413 | +} | |
| 1274 | 1414 | .elementor-panel #elementor-panel-saver-button-publish, .elementor-panel #elementor-panel-saver-button-save-options { |
| 1275 | - padding: 0; | |
| 1276 | 1415 | font-size: 11px; |
| 1277 | - height: 100%; | |
| 1278 | - width: 100%; | |
| 1279 | - border-radius: 0; | |
| 1416 | + text-transform: uppercase; | |
| 1417 | + height: 26px; | |
| 1280 | 1418 | } |
| 1281 | 1419 | .elementor-panel #elementor-panel-saver-button-publish.elementor-disabled, .elementor-panel #elementor-panel-saver-button-save-options.elementor-disabled { |
| 1282 | - background-color: #1f2124; | |
| 1283 | - color: #9DA5AE; | |
| 1420 | + background-color: #556068; | |
| 1421 | + color: #a4afb7; | |
| 1284 | 1422 | } |
| 1285 | -.elementor-panel #elementor-panel-saver-button-publish:not(.elementor-disabled) { | |
| 1286 | - border-inline-end: 1px solid #F0ABFC; | |
| 1287 | -} | |
| 1288 | -.elementor-panel #elementor-panel-saver-button-publish.elementor-disabled { | |
| 1289 | - border-inline-end: 1px solid #3f444b; | |
| 1290 | -} | |
| 1291 | -.elementor-panel .elementor-panel-footer-sub-menu-wrapper { | |
| 1292 | - position: absolute; | |
| 1293 | - inset-block-end: 100%; | |
| 1294 | - inset-inline-start: 0; | |
| 1423 | +.elementor-panel #elementor-panel-saver-button-publish { | |
| 1295 | 1424 | width: 100%; |
| 1296 | - background-color: #1f2124; | |
| 1297 | - padding: 10px; | |
| 1298 | - box-shadow: -2px -5px 8px rgba(0, 0, 0, 0.1); | |
| 1299 | - cursor: default; | |
| 1300 | - z-index: 10000; | |
| 1425 | + border-radius: 3px 0 0 3px; | |
| 1301 | 1426 | } |
| 1302 | -.elementor-panel .elementor-panel-footer-sub-menu { | |
| 1303 | - border-radius: var(--e-border-radius); | |
| 1304 | - overflow: hidden; | |
| 1305 | - border: 1px solid #3f444b; | |
| 1427 | +.elementor-panel #elementor-panel-saver-button-save-options { | |
| 1428 | + width: 25px; | |
| 1306 | 1429 | } |
| 1307 | -.elementor-panel .elementor-panel-footer-sub-menu-item { | |
| 1308 | - display: flex; | |
| 1309 | - height: 40px; | |
| 1310 | - color: #D5D8DC; | |
| 1311 | - align-items: center; | |
| 1312 | - -moz-column-gap: 10px; | |
| 1313 | - column-gap: 10px; | |
| 1314 | - padding: 0 20px; | |
| 1315 | - transition: var(--e-a-transition-hover); | |
| 1316 | - cursor: pointer; | |
| 1317 | -} | |
| 1318 | -.elementor-panel .elementor-panel-footer-sub-menu-item.elementor-disabled { | |
| 1319 | - cursor: default; | |
| 1320 | - color: #69727D; | |
| 1321 | -} | |
| 1322 | -.elementor-panel .elementor-panel-footer-sub-menu-item:not(:last-child) { | |
| 1323 | - border-block-end: 1px solid #3f444b; | |
| 1324 | -} | |
| 1325 | -.elementor-panel .elementor-panel-footer-sub-menu-item:hover { | |
| 1326 | - background-color: rgba(255, 255, 255, 0.1); | |
| 1327 | -} | |
| 1328 | -.elementor-panel .elementor-panel-footer-sub-menu-item.active { | |
| 1329 | - background-color: rgba(255, 255, 255, 0.2); | |
| 1330 | -} | |
| 1331 | 1430 | |
| 1332 | 1431 | #elementor-panel-elements-navigation .elementor-panel-navigation-tab { |
| 1333 | 1432 | text-align: center; |
| 1334 | 1433 | padding: 10px 0; |
| 1335 | - font-size: 12px; | |
| 1434 | + font-size: 11px; | |
| 1435 | + text-transform: uppercase; | |
| 1336 | 1436 | cursor: pointer; |
| 1337 | 1437 | } |
| 1338 | 1438 | |
| 1339 | 1439 | #elementor-panel-elements { |
| @@ -1344,446 +1444,258 @@ | ||
| 1344 | 1444 | display: none; |
| 1345 | 1445 | } |
| 1346 | 1446 | body.elementor-panel-loading #elementor-panel-state-loading { |
| 1347 | 1447 | position: absolute; |
| 1348 | - inset: 0; | |
| 1448 | + top: 0; | |
| 1449 | + left: 0; | |
| 1450 | + height: 100%; | |
| 1451 | + width: 100%; | |
| 1452 | + display: -webkit-box; | |
| 1453 | + display: -ms-flexbox; | |
| 1349 | 1454 | display: flex; |
| 1350 | - align-items: center; | |
| 1351 | - justify-content: center; | |
| 1455 | + -webkit-box-align: center; | |
| 1456 | + -ms-flex-align: center; | |
| 1457 | + align-items: center; | |
| 1458 | + -webkit-box-pack: center; | |
| 1459 | + -ms-flex-pack: center; | |
| 1460 | + justify-content: center; | |
| 1352 | 1461 | background-color: rgba(255, 255, 255, 0.5); |
| 1353 | 1462 | z-index: 2; |
| 1354 | 1463 | } |
| 1355 | 1464 | #elementor-panel-state-loading .eicon-loading { |
| 1356 | 1465 | font-size: 25px; |
| 1357 | - color: var(--e-a-color-txt-accent); | |
| 1466 | + color: #71d7f7; | |
| 1358 | 1467 | } |
| 1359 | 1468 | |
| 1360 | 1469 | #elementor-panel-elements-search-area { |
| 1361 | - background-color: var(--e-a-bg-default); | |
| 1362 | 1470 | position: sticky; |
| 1363 | - inset-block-start: 0; | |
| 1364 | - padding: 15px; | |
| 1471 | + top: 0; | |
| 1472 | + padding: 10px; | |
| 1473 | + background-color: #e6e9ec; | |
| 1365 | 1474 | z-index: 1; |
| 1366 | 1475 | } |
| 1367 | 1476 | |
| 1368 | -#elementor-panel-elements-search-area:empty { | |
| 1369 | - display: none; | |
| 1370 | -} | |
| 1371 | - | |
| 1372 | 1477 | #elementor-panel-elements-search-wrapper { |
| 1373 | 1478 | position: relative; |
| 1374 | 1479 | } |
| 1375 | 1480 | |
| 1376 | 1481 | #elementor-panel-elements-search-input { |
| 1482 | + background-color: rgba(255, 255, 255, 0.7); | |
| 1377 | 1483 | font-size: 11px; |
| 1378 | - padding-block: 10px; | |
| 1379 | - padding-inline: 29px 10px; | |
| 1484 | + padding: 10px 10px 10px 29px; | |
| 1380 | 1485 | font-style: italic; |
| 1381 | - border: var(--e-a-border-bold); | |
| 1382 | - border-radius: 0; | |
| 1486 | + color: #a4afb7; | |
| 1487 | + border: none; | |
| 1488 | + -webkit-transition: all 1s; | |
| 1489 | + -o-transition: all 1s; | |
| 1383 | 1490 | transition: all 1s; |
| 1491 | + border-radius: 3px; | |
| 1492 | + appearance: none; | |
| 1384 | 1493 | -webkit-appearance: none; |
| 1385 | - -moz-appearance: none; | |
| 1386 | - appearance: none; | |
| 1494 | + -moz-appearance: none; | |
| 1387 | 1495 | } |
| 1388 | 1496 | #elementor-panel-elements-search-input + i { |
| 1389 | 1497 | position: absolute; |
| 1390 | - inset-block-start: 50%; | |
| 1391 | - inset-inline-start: 10px; | |
| 1392 | - transform: translateY(-50%); | |
| 1393 | - color: var(--e-a-color-txt-disabled); | |
| 1498 | + left: 10px; | |
| 1499 | + top: 50%; | |
| 1500 | + color: #a4afb7; | |
| 1501 | + -webkit-transform: translateY(-50%); | |
| 1502 | + -ms-transform: translateY(-50%); | |
| 1503 | + transform: translateY(-50%); | |
| 1394 | 1504 | } |
| 1395 | 1505 | #elementor-panel-elements-search-input:focus { |
| 1396 | - border-color: var(--e-a-border-color-focus); | |
| 1397 | - padding-inline-end: 15px; | |
| 1506 | + background-color: rgb(255, 255, 255); | |
| 1507 | + padding-right: 15px; | |
| 1398 | 1508 | } |
| 1399 | 1509 | |
| 1400 | -.e-free-badge-container { | |
| 1401 | - flex-grow: 1; | |
| 1402 | - margin-inline-start: 10px; | |
| 1403 | - margin-inline-end: 10px; | |
| 1404 | -} | |
| 1405 | -.e-free-badge-container .e-free-badge { | |
| 1406 | - border-radius: var(--e-a-border-radius); | |
| 1407 | - background-color: var(--e-a-btn-bg); | |
| 1408 | - color: var(--e-a-btn-color-invert); | |
| 1409 | - padding: 3px 5px; | |
| 1410 | -} | |
| 1411 | - | |
| 1412 | 1510 | .elementor-panel .elementor-element { |
| 1413 | - font-family: var(--e-a-font-family); | |
| 1414 | - color: var(--e-a-color-txt); | |
| 1415 | - line-height: 1; | |
| 1416 | - text-align: center; | |
| 1417 | - border: var(--e-a-border-bold); | |
| 1418 | 1511 | border-radius: 3px; |
| 1512 | + background-color: #fff; | |
| 1419 | 1513 | cursor: move; |
| 1420 | 1514 | position: relative; |
| 1421 | - transition: var(--e-a-transition-hover); | |
| 1422 | - width: 100%; | |
| 1423 | - background-color: transparent; | |
| 1424 | 1515 | } |
| 1516 | +.elementor-panel .elementor-element-wrapper { | |
| 1517 | + text-align: center; | |
| 1518 | + -webkit-box-sizing: border-box; | |
| 1519 | + box-sizing: border-box; | |
| 1520 | +} | |
| 1425 | 1521 | .elementor-panel .elementor-element--promotion .elementor-element { |
| 1426 | 1522 | cursor: pointer; |
| 1427 | 1523 | -webkit-user-select: none; |
| 1428 | 1524 | -moz-user-select: none; |
| 1525 | + -ms-user-select: none; | |
| 1429 | 1526 | user-select: none; |
| 1430 | 1527 | } |
| 1431 | -.elementor-panel .elementor-element .eicon-atomic { | |
| 1432 | - position: absolute; | |
| 1433 | - inset-block-start: 5px; | |
| 1434 | - inset-inline-end: 5px; | |
| 1435 | - color: var(--e-a-color-txt); | |
| 1528 | +.elementor-panel .elementor-element .icon, | |
| 1529 | +.elementor-panel .elementor-element .title { | |
| 1530 | + color: #556068; | |
| 1531 | + -webkit-transition: all 0.3s; | |
| 1532 | + -o-transition: all 0.3s; | |
| 1533 | + transition: all 0.3s; | |
| 1436 | 1534 | } |
| 1437 | -.elementor-panel .elementor-element:hover, .elementor-panel .elementor-element:focus { | |
| 1438 | - background-color: var(--e-a-bg-hover); | |
| 1439 | - border-color: var(--e-a-border-color-bold); | |
| 1535 | +.elementor-panel .elementor-element:hover { | |
| 1536 | + -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); | |
| 1537 | + box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); | |
| 1440 | 1538 | } |
| 1441 | -.elementor-panel .elementor-element:hover > .eicon-lock, .elementor-panel .elementor-element:focus > .eicon-lock { | |
| 1442 | - color: var(--e-a-color-accent); | |
| 1539 | +.elementor-panel .elementor-element:hover .icon, .elementor-panel .elementor-element:hover .title { | |
| 1540 | + color: #93003c; | |
| 1443 | 1541 | } |
| 1444 | -.elementor-panel .elementor-element:hover > .eicon-plug, .elementor-panel .elementor-element:focus > .eicon-plug { | |
| 1445 | - color: var(--e-a-color-info); | |
| 1446 | -} | |
| 1447 | 1542 | .elementor-panel .elementor-element .icon { |
| 1448 | 1543 | font-size: 28px; |
| 1449 | - padding-block-start: 15px; | |
| 1544 | + padding-top: 15px; | |
| 1450 | 1545 | } |
| 1451 | -.elementor-panel .elementor-element .title-wrapper { | |
| 1452 | - display: flex; | |
| 1453 | - height: 40px; | |
| 1454 | - align-items: center; | |
| 1455 | - justify-content: center; | |
| 1546 | +.elementor-panel .elementor-element .elementor-element-title-wrapper { | |
| 1547 | + display: table; | |
| 1548 | + width: 100%; | |
| 1456 | 1549 | } |
| 1457 | 1550 | .elementor-panel .elementor-element .title { |
| 1458 | - font-size: 12px; | |
| 1551 | + font-size: 11px; | |
| 1552 | + display: table-cell; | |
| 1553 | + vertical-align: middle; | |
| 1554 | + height: 40px; | |
| 1459 | 1555 | } |
| 1460 | -.elementor-panel .elementor-element > .eicon-lock, .elementor-panel .elementor-element .eicon-plug { | |
| 1556 | +.elementor-panel .elementor-element > .eicon-lock { | |
| 1461 | 1557 | position: absolute; |
| 1462 | - inset-block-start: 5px; | |
| 1463 | - inset-inline-end: 5px; | |
| 1464 | - color: var(--e-a-color-txt-disabled); | |
| 1558 | + top: 5px; | |
| 1559 | + right: 5px; | |
| 1560 | + color: #e6e9ec; | |
| 1465 | 1561 | } |
| 1466 | -.elementor-panel .elementor-element:active { | |
| 1467 | - background-color: var(--e-a-bg-hover); | |
| 1468 | - border-color: var(--e-a-border-color-accent); | |
| 1469 | - color: var(--e-a-color-txt-accent); | |
| 1470 | -} | |
| 1471 | 1562 | |
| 1472 | 1563 | #elementor-element--promotion__dialog { |
| 1473 | 1564 | position: absolute; |
| 1474 | 1565 | width: 300px; |
| 1475 | 1566 | z-index: 1; |
| 1476 | - background-color: var(--e-a-bg-default); | |
| 1477 | - box-shadow: var(--e-a-popover-shadow); | |
| 1478 | - border-radius: var(--e-a-border-radius); | |
| 1567 | + background-color: #fff; | |
| 1568 | + -webkit-box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3); | |
| 1569 | + box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3); | |
| 1570 | + border-radius: 3px; | |
| 1479 | 1571 | } |
| 1480 | 1572 | #elementor-element--promotion__dialog:after { |
| 1481 | 1573 | content: ""; |
| 1482 | 1574 | position: absolute; |
| 1483 | - inset-block-start: 15px; | |
| 1484 | - inset-inline-end: 100%; | |
| 1485 | - transform: scaleY(0.7); | |
| 1575 | + top: 15px; | |
| 1576 | + right: 100%; | |
| 1577 | + -webkit-transform: scaleY(0.7); | |
| 1578 | + -ms-transform: scaleY(0.7); | |
| 1579 | + transform: scaleY(0.7); | |
| 1486 | 1580 | border: 10px solid transparent; |
| 1487 | - border-inline-end-color: var(--e-a-bg-default); | |
| 1581 | + border-right-color: #fff; | |
| 1488 | 1582 | } |
| 1489 | 1583 | #elementor-element--promotion__dialog__title { |
| 1490 | 1584 | font-size: 14px; |
| 1491 | 1585 | } |
| 1492 | 1586 | #elementor-element--promotion__dialog .dialog-header { |
| 1587 | + display: -webkit-box; | |
| 1588 | + display: -ms-flexbox; | |
| 1493 | 1589 | display: flex; |
| 1494 | 1590 | padding: 20px; |
| 1495 | - border-block-end: var(--e-a-border); | |
| 1591 | + color: #495157; | |
| 1592 | + border-bottom: 1px solid #e6e9ec; | |
| 1496 | 1593 | font-weight: 500; |
| 1497 | 1594 | } |
| 1595 | +#elementor-element--promotion__dialog .dialog-header i { | |
| 1596 | + color: #a4afb7; | |
| 1597 | +} | |
| 1498 | 1598 | #elementor-element--promotion__dialog .dialog-header .eicon-pro-icon { |
| 1499 | - flex-grow: 1; | |
| 1500 | - margin-inline-start: 10px; | |
| 1599 | + -webkit-box-flex: 1; | |
| 1600 | + -ms-flex-positive: 1; | |
| 1601 | + flex-grow: 1; | |
| 1602 | + margin-left: 10px; | |
| 1501 | 1603 | font-size: 14px; |
| 1502 | - color: var(--e-a-color-accent); | |
| 1503 | 1604 | } |
| 1504 | 1605 | #elementor-element--promotion__dialog .dialog-header .eicon-close { |
| 1505 | 1606 | cursor: pointer; |
| 1506 | - color: var(--e-a-color-txt-disabled); | |
| 1507 | 1607 | } |
| 1508 | -#elementor-element--promotion__dialog .dialog-header .eicon-close:hover { | |
| 1509 | - color: var(--e-a-color-txt-muted); | |
| 1510 | -} | |
| 1511 | 1608 | #elementor-element--promotion__dialog .dialog-message { |
| 1512 | 1609 | padding: 20px; |
| 1513 | 1610 | } |
| 1514 | 1611 | #elementor-element--promotion__dialog .dialog-buttons-wrapper { |
| 1515 | - padding: 0 20px 20px; | |
| 1612 | + padding: 0 20px 20px 20px; | |
| 1516 | 1613 | } |
| 1517 | 1614 | #elementor-element--promotion__dialog .dialog-button { |
| 1518 | - padding: 7px 25px; | |
| 1615 | + width: 100%; | |
| 1616 | + padding: 6.5px; | |
| 1519 | 1617 | font-size: 12px; |
| 1520 | 1618 | } |
| 1521 | - | |
| 1522 | -.dialog-tooltip-widget { | |
| 1523 | - position: absolute; | |
| 1524 | - width: 300px; | |
| 1525 | - z-index: 1; | |
| 1526 | - background-color: var(--e-a-bg-default); | |
| 1527 | - box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3); | |
| 1528 | - border-radius: 3px; | |
| 1529 | -} | |
| 1530 | -.dialog-tooltip-widget:after { | |
| 1531 | - content: ""; | |
| 1532 | - position: absolute; | |
| 1533 | - inset-block-start: 15px; | |
| 1534 | - inset-inline-end: 100%; | |
| 1535 | - transform: scaleY(0.7); | |
| 1536 | - border: 10px solid transparent; | |
| 1537 | - border-inline-end-color: var(--e-a-bg-default); | |
| 1538 | -} | |
| 1539 | -.dialog-tooltip-widget__title { | |
| 1540 | - font-size: 14px; | |
| 1541 | -} | |
| 1542 | -.dialog-tooltip-widget .dialog-tooltip-header { | |
| 1543 | - display: flex; | |
| 1544 | - padding: 20px 20px 0; | |
| 1545 | - color: var(--e-a-color-txt); | |
| 1546 | - border-block-end: 1px solid var(--e-a-bg-default); | |
| 1547 | - font-weight: 500; | |
| 1548 | -} | |
| 1549 | -.dialog-tooltip-widget .dialog-tooltip-header .eicon-pro-icon { | |
| 1550 | - flex-grow: 1; | |
| 1551 | - margin-inline-start: 10px; | |
| 1552 | - font-size: 14px; | |
| 1553 | - color: #93003f; | |
| 1554 | -} | |
| 1555 | -.dialog-tooltip-widget .dialog-tooltip-header .eicon-close { | |
| 1556 | - cursor: pointer; | |
| 1557 | - margin-inline-start: auto; | |
| 1558 | - color: var(--e-a-color-txt); | |
| 1559 | -} | |
| 1560 | -.dialog-tooltip-widget .dialog-tooltip-message { | |
| 1561 | - padding: 20px; | |
| 1562 | -} | |
| 1563 | -.dialog-tooltip-widget .dialog-tooltip-buttons-wrapper { | |
| 1564 | - padding: 0 20px 20px 20px; | |
| 1565 | - text-align: end; | |
| 1566 | -} | |
| 1567 | -.dialog-tooltip-widget .dialog-tooltip-button { | |
| 1568 | - padding: 7px 25px; | |
| 1569 | - font-size: 12px; | |
| 1570 | -} | |
| 1571 | -.dialog-tooltip-widget .dialog-tooltip-button::-moz-focus-inner { | |
| 1619 | +#elementor-element--promotion__dialog .dialog-button::-moz-focus-inner { | |
| 1572 | 1620 | border: 0; |
| 1573 | 1621 | } |
| 1574 | 1622 | |
| 1575 | -#elementor-panel-elements-widget-creation-area:empty { | |
| 1576 | - display: none; | |
| 1577 | -} | |
| 1578 | - | |
| 1579 | -.elementor-panel-elements-widget-creation { | |
| 1580 | - text-align: center; | |
| 1581 | - padding: 30px 20px; | |
| 1582 | -} | |
| 1583 | -.elementor-panel-elements-widget-creation__title { | |
| 1584 | - font-size: 14px; | |
| 1585 | - font-weight: bold; | |
| 1586 | - line-height: 1.4; | |
| 1587 | - color: var(--e-a-color-txt); | |
| 1588 | -} | |
| 1589 | -.elementor-panel-elements-widget-creation__message { | |
| 1590 | - margin-block-start: 8px; | |
| 1591 | - font-size: 13px; | |
| 1592 | - line-height: 1.6; | |
| 1593 | - color: var(--e-a-color-txt-muted); | |
| 1594 | -} | |
| 1595 | -.elementor-panel-elements-widget-creation__cta { | |
| 1596 | - display: inline-flex; | |
| 1597 | - align-items: center; | |
| 1598 | - gap: 6px; | |
| 1599 | - margin-block-start: 16px; | |
| 1600 | - padding: 0; | |
| 1601 | - border: none; | |
| 1602 | - background: none; | |
| 1603 | - color: #C00BB9; | |
| 1604 | - font-size: 14px; | |
| 1605 | - font-weight: 500; | |
| 1606 | - cursor: pointer; | |
| 1607 | - font-family: var(--e-a-font-family); | |
| 1608 | -} | |
| 1609 | -.elementor-panel-elements-widget-creation__cta i { | |
| 1610 | - font-size: 16px; | |
| 1611 | -} | |
| 1612 | -.elementor-panel-elements-widget-creation__cta:hover { | |
| 1613 | - opacity: 0.8; | |
| 1614 | -} | |
| 1615 | -.elementor-panel-elements-widget-creation--search-footer { | |
| 1616 | - border-block-start: var(--e-a-border); | |
| 1617 | -} | |
| 1618 | - | |
| 1619 | -.elementor-panel-category-custom-widgets-empty { | |
| 1620 | - grid-column: 1/-1; | |
| 1621 | - width: 100%; | |
| 1622 | - padding: 0 16px 16px; | |
| 1623 | -} | |
| 1624 | -.elementor-panel-category-custom-widgets-empty__message { | |
| 1625 | - margin: 0; | |
| 1626 | - font-size: 12px; | |
| 1627 | - line-height: 1.6; | |
| 1628 | - color: var(--e-a-color-txt-muted); | |
| 1629 | -} | |
| 1630 | - | |
| 1631 | -.elementor-panel-heading.elementor-panel-category-title .elementor-panel-custom-widgets__cta--heading { | |
| 1632 | - margin-inline-start: auto; | |
| 1633 | - padding: 4px 10px; | |
| 1634 | - border: none; | |
| 1635 | - background: none; | |
| 1636 | - color: #C00BB9; | |
| 1637 | - font-size: 12px; | |
| 1638 | - font-weight: 500; | |
| 1639 | - cursor: pointer; | |
| 1640 | - font-family: var(--e-a-font-family); | |
| 1641 | - flex-shrink: 0; | |
| 1642 | -} | |
| 1643 | -.elementor-panel-heading.elementor-panel-category-title .elementor-panel-custom-widgets__cta--heading:hover { | |
| 1644 | - opacity: 0.8; | |
| 1645 | -} | |
| 1646 | - | |
| 1647 | 1623 | #elementor-panel-inner { |
| 1648 | 1624 | position: relative; |
| 1649 | 1625 | height: 100%; |
| 1650 | - display: flex; | |
| 1651 | - flex-direction: column; | |
| 1652 | - box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1); | |
| 1626 | + -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2); | |
| 1627 | + box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2); | |
| 1653 | 1628 | } |
| 1654 | 1629 | |
| 1655 | 1630 | #elementor-panel-content-wrapper { |
| 1656 | - position: relative; | |
| 1631 | + position: absolute; | |
| 1632 | + bottom: 40px; | |
| 1633 | + top: 40px; | |
| 1634 | + left: 0; | |
| 1657 | 1635 | width: 100%; |
| 1658 | - flex: 1; | |
| 1659 | 1636 | } |
| 1660 | 1637 | |
| 1661 | 1638 | .elementor-panel-container { |
| 1662 | 1639 | clear: both; |
| 1663 | - padding-inline-start: 15px; | |
| 1664 | - padding-inline-end: 15px; | |
| 1640 | + padding-left: 15px; | |
| 1641 | + padding-right: 15px; | |
| 1665 | 1642 | } |
| 1666 | 1643 | |
| 1667 | -#elementor-panel-get-pro-elements .elementor-nerd-box-message { | |
| 1668 | - margin-block-start: 10px; | |
| 1644 | +.media-modal.wp-core-ui input { | |
| 1645 | + width: auto; | |
| 1669 | 1646 | } |
| 1670 | -#elementor-panel-get-pro-elements .elementor-nerd-box-icon { | |
| 1671 | - margin-block-start: 20px; | |
| 1647 | +.media-modal.wp-core-ui select { | |
| 1648 | + width: initial; | |
| 1672 | 1649 | } |
| 1673 | - | |
| 1674 | -#elementor-panel-content-wrapper:has(> #elementor-panel-page-editor) { | |
| 1675 | - display: flex; | |
| 1676 | - flex-direction: column; | |
| 1650 | +.media-modal.wp-core-ui fieldset { | |
| 1651 | + padding: 0; | |
| 1652 | + border: 0; | |
| 1677 | 1653 | } |
| 1678 | -#elementor-panel-content-wrapper:has(> #elementor-panel-page-editor) #elementor-panel-page-editor { | |
| 1679 | - display: flex; | |
| 1680 | - flex-direction: column; | |
| 1681 | - flex: 1; | |
| 1682 | - min-height: 0; | |
| 1654 | +.media-modal.wp-core-ui .wp-clearfix::after { | |
| 1655 | + content: ""; | |
| 1656 | + display: table; | |
| 1657 | + clear: both; | |
| 1683 | 1658 | } |
| 1684 | -#elementor-panel-content-wrapper:has(> #elementor-panel-page-editor) .elementor-panel-editor-sticky-promotion { | |
| 1685 | - position: sticky; | |
| 1686 | - inset-block-end: 0; | |
| 1687 | - margin-block-start: auto; | |
| 1659 | +.media-modal.wp-core-ui .e-wp-media-elements-removed { | |
| 1660 | + /* Hack to change the media button selection text, because for some reason the text gets changed when switching tabs. */ | |
| 1688 | 1661 | } |
| 1689 | -#elementor-panel-content-wrapper:has(> #elementor-panel-page-editor) .elementor-panel-editor-sticky-promotion .elementor-get-pro-sticky-message { | |
| 1690 | - margin-block-start: 0; | |
| 1662 | +.media-modal.wp-core-ui .e-wp-media-elements-removed .embed-link-settings, | |
| 1663 | +.media-modal.wp-core-ui .e-wp-media-elements-removed .embed-media-settings > :not(.wp-clearfix):not(.alt-text):not(#alt-text-description) { | |
| 1664 | + display: none; | |
| 1691 | 1665 | } |
| 1692 | - | |
| 1693 | -#elementor-panel-get-pro-elements-sticky { | |
| 1694 | - position: sticky; | |
| 1695 | - inset-block-end: 0; | |
| 1696 | - margin-block-end: -10px; | |
| 1666 | +.media-modal.wp-core-ui .e-wp-media-elements-removed #embed-url-field { | |
| 1667 | + width: 70%; | |
| 1697 | 1668 | } |
| 1698 | -#elementor-panel-get-pro-elements-sticky .elementor-get-pro-sticky-message { | |
| 1699 | - margin-block-start: -14px; | |
| 1669 | +.media-modal.wp-core-ui .e-wp-media-elements-removed .media-embed .thumbnail { | |
| 1670 | + margin-top: 20px; | |
| 1700 | 1671 | } |
| 1701 | - | |
| 1702 | -#elementor-panel-page-elements:has(> #elementor-panel-get-pro-elements-sticky) { | |
| 1703 | - display: flex; | |
| 1704 | - flex-direction: column; | |
| 1705 | - min-height: 100%; | |
| 1672 | +.media-modal.wp-core-ui .e-wp-media-elements-removed .media-embed .thumbnail, | |
| 1673 | +.media-modal.wp-core-ui .e-wp-media-elements-removed .media-embed .thumbnail img { | |
| 1674 | + max-height: initial; | |
| 1706 | 1675 | } |
| 1707 | -#elementor-panel-page-elements:has(> #elementor-panel-get-pro-elements-sticky) > #elementor-panel-get-pro-elements-sticky { | |
| 1708 | - margin-block-start: auto; | |
| 1676 | +.media-modal.wp-core-ui .e-wp-media-elements-removed .media-embed .thumbnail::after { | |
| 1677 | + -webkit-box-shadow: none; | |
| 1678 | + box-shadow: none; | |
| 1709 | 1679 | } |
| 1710 | - | |
| 1711 | -#elementor-panel-get-pro-elements-sticky, | |
| 1712 | -.elementor-panel-editor-sticky-promotion { | |
| 1713 | - font-size: 14px; | |
| 1714 | - font-weight: 400; | |
| 1715 | - line-height: 1.6; | |
| 1716 | - background-color: var(--e-a-color-white); | |
| 1680 | +.media-modal.wp-core-ui .e-wp-media-elements-removed .media-button-select { | |
| 1681 | + font-size: 0; | |
| 1717 | 1682 | } |
| 1718 | -#elementor-panel-get-pro-elements-sticky .elementor-get-pro-sticky-message, | |
| 1719 | -.elementor-panel-editor-sticky-promotion .elementor-get-pro-sticky-message { | |
| 1720 | - min-height: 40px; | |
| 1721 | - display: block; | |
| 1722 | - padding: 9px min(35px, 5%); | |
| 1723 | - gap: 10px; | |
| 1724 | - background-color: var(--e-a-color-white); | |
| 1725 | - color: var(--e-a-color-black); | |
| 1726 | - text-align: center; | |
| 1727 | - box-shadow: 0px -10px 14px -6px rgba(0, 0, 0, 0.05); | |
| 1728 | -} | |
| 1729 | -#elementor-panel-get-pro-elements-sticky .elementor-get-pro-sticky-message a, | |
| 1730 | -.elementor-panel-editor-sticky-promotion .elementor-get-pro-sticky-message a { | |
| 1731 | - display: inline-block; | |
| 1683 | +.media-modal.wp-core-ui .e-wp-media-elements-removed .media-button-select::before { | |
| 1684 | + content: var(--button-text); | |
| 1732 | 1685 | font-size: 13px; |
| 1733 | - font-weight: 500; | |
| 1734 | - color: var(--e-a-btn-bg-accent); | |
| 1735 | 1686 | } |
| 1736 | -#elementor-panel-get-pro-elements-sticky img, | |
| 1737 | -.elementor-panel-editor-sticky-promotion img { | |
| 1738 | - margin-inline-start: 17px; | |
| 1739 | -} | |
| 1740 | 1687 | |
| 1741 | -#elementor-panel-notice-wrapper .elementor-panel-notice { | |
| 1742 | - width: 90%; | |
| 1743 | - margin: 0 auto; | |
| 1744 | - font-style: unset; | |
| 1745 | - margin-block-end: 15px; | |
| 1688 | +#elementor-panel-get-pro-elements .elementor-nerd-box-message { | |
| 1689 | + margin-top: 10px; | |
| 1746 | 1690 | } |
| 1747 | -#elementor-panel-notice-wrapper .elementor-panel-notice a { | |
| 1748 | - font-weight: bold; | |
| 1749 | - font-style: italic; | |
| 1750 | - border-block-end: 2px dotted var(--e-a-color-info); | |
| 1751 | - display: inline-block; | |
| 1691 | +#elementor-panel-get-pro-elements .elementor-nerd-box-icon { | |
| 1692 | + margin-top: 20px; | |
| 1752 | 1693 | } |
| 1753 | 1694 | |
| 1754 | -body.e-has-notification:not(.e-route-panel-menu) #elementor-panel-header-menu-button, | |
| 1755 | -body.e-has-notification .elementor-panel-menu-item.elementor-panel-menu-item-notification-center .elementor-panel-menu-item-icon { | |
| 1756 | - position: relative; | |
| 1757 | -} | |
| 1758 | -body.e-has-notification:not(.e-route-panel-menu) #elementor-panel-header-menu-button:after, | |
| 1759 | -body.e-has-notification .elementor-panel-menu-item.elementor-panel-menu-item-notification-center .elementor-panel-menu-item-icon:after { | |
| 1760 | - position: absolute; | |
| 1761 | - content: ""; | |
| 1762 | - display: block; | |
| 1763 | - background: var(--e-a-color-primary); | |
| 1764 | - border-radius: 50%; | |
| 1765 | - width: 8px; | |
| 1766 | - height: 8px; | |
| 1767 | - inset-block-start: 5px; | |
| 1768 | - inset-inline-end: 5px; | |
| 1769 | -} | |
| 1770 | - | |
| 1771 | -.media-modal.wp-core-ui { | |
| 1772 | - color-scheme: light; | |
| 1773 | - color: #515962; | |
| 1774 | -} | |
| 1775 | -.media-modal.wp-core-ui select { | |
| 1776 | - width: initial; | |
| 1777 | - padding-inline: 8px; | |
| 1778 | -} | |
| 1779 | -.media-modal.wp-core-ui fieldset { | |
| 1780 | - padding: 0; | |
| 1781 | - border: 0; | |
| 1782 | -} | |
| 1783 | - | |
| 1784 | 1695 | .elementor-control { |
| 1785 | 1696 | --control-title-size: 12px; |
| 1697 | + background-color: #fff; | |
| 1786 | 1698 | position: relative; |
| 1787 | 1699 | padding: 0 20px 15px; |
| 1788 | 1700 | } |
| 1789 | 1701 | .elementor-control a { |
| @@ -1788,68 +1700,92 @@ | ||
| 1788 | 1700 | } |
| 1789 | 1701 | .elementor-control a { |
| 1790 | 1702 | font-weight: 500; |
| 1791 | 1703 | text-decoration: none; |
| 1792 | - border-block-end: 1px dotted transparent; | |
| 1704 | + border-bottom: 1px dotted transparent; | |
| 1705 | + -webkit-transition: all ease-in-out 0.3s; | |
| 1706 | + -o-transition: all ease-in-out 0.3s; | |
| 1793 | 1707 | transition: all ease-in-out 0.3s; |
| 1794 | 1708 | } |
| 1795 | 1709 | .elementor-control a:hover { |
| 1796 | - border-block-end-color: inherit; | |
| 1710 | + border-bottom-color: inherit; | |
| 1797 | 1711 | } |
| 1712 | +.elementor-control a.elementor-responsive-switcher { | |
| 1713 | + border-bottom: 0; | |
| 1714 | +} | |
| 1798 | 1715 | .elementor-control .elementor-control-content { |
| 1716 | + display: -webkit-box; | |
| 1717 | + display: -ms-flexbox; | |
| 1799 | 1718 | display: flex; |
| 1800 | - flex-direction: column; | |
| 1719 | + -webkit-box-orient: vertical; | |
| 1720 | + -webkit-box-direction: normal; | |
| 1721 | + -ms-flex-direction: column; | |
| 1722 | + flex-direction: column; | |
| 1801 | 1723 | } |
| 1802 | 1724 | .elementor-control .elementor-control-title { |
| 1803 | 1725 | font-size: var(--control-title-size); |
| 1804 | 1726 | line-height: 1; |
| 1805 | - margin-inline-end: 5px; | |
| 1727 | + margin-right: 5px; | |
| 1806 | 1728 | } |
| 1807 | -.elementor-control .elementor-control-title:empty { | |
| 1808 | - display: none; | |
| 1809 | -} | |
| 1810 | 1729 | .elementor-control .elementor-control-spinner { |
| 1730 | + display: -webkit-box; | |
| 1731 | + display: -ms-flexbox; | |
| 1811 | 1732 | display: flex; |
| 1812 | - align-items: center; | |
| 1733 | + -webkit-box-align: center; | |
| 1734 | + -ms-flex-align: center; | |
| 1735 | + align-items: center; | |
| 1813 | 1736 | } |
| 1814 | 1737 | .elementor-control.elementor-control-type-divider { |
| 1815 | 1738 | padding: 0; |
| 1739 | + background-color: transparent; | |
| 1816 | 1740 | } |
| 1817 | 1741 | .elementor-control.elementor-control-type-divider .elementor-control-content { |
| 1818 | - margin-inline: 20px; | |
| 1819 | 1742 | border-width: 0; |
| 1820 | - border-block-start: var(--e-a-border); | |
| 1821 | - background-color: var(--e-a-bg-default); | |
| 1743 | + border-color: #e6e9ec; | |
| 1744 | + border-style: solid; | |
| 1745 | + border-top-width: 1px; | |
| 1746 | + background-color: #ffffff; | |
| 1822 | 1747 | height: 15px; |
| 1823 | 1748 | } |
| 1749 | +.elementor-control.elementor-control-separator-default:not(.elementor-control-type-divider).elementor-control-wp { | |
| 1750 | + margin-top: 15px; | |
| 1751 | +} | |
| 1752 | +.elementor-control.elementor-control-separator-default:not(.elementor-control-type-divider).elementor-control-wp:before { | |
| 1753 | + content: ""; | |
| 1754 | + height: 1px; | |
| 1755 | + display: block; | |
| 1756 | + margin-bottom: 15px; | |
| 1757 | + background-color: transparent; | |
| 1758 | +} | |
| 1824 | 1759 | .elementor-control.elementor-control-separator-before { |
| 1825 | - padding-block-start: 15px; | |
| 1760 | + padding-top: 15px; | |
| 1826 | 1761 | } |
| 1827 | 1762 | .elementor-control.elementor-control-separator-before:before { |
| 1828 | 1763 | content: ""; |
| 1829 | 1764 | position: absolute; |
| 1830 | - inset: 0 20px auto; | |
| 1831 | 1765 | height: 1px; |
| 1832 | - background-color: var(--e-a-border-color); | |
| 1766 | + width: 100%; | |
| 1767 | + top: 0; | |
| 1768 | + left: 0; | |
| 1769 | + background-color: #e6e9ec; | |
| 1833 | 1770 | } |
| 1834 | -.elementor-control.elementor-control-separator-after { | |
| 1835 | - padding-block-end: 15px; | |
| 1836 | -} | |
| 1837 | 1771 | .elementor-control.elementor-control-separator-after:after { |
| 1838 | 1772 | content: ""; |
| 1839 | 1773 | position: absolute; |
| 1840 | - inset: auto 20px 0; | |
| 1841 | 1774 | height: 1px; |
| 1842 | - background-color: var(--e-a-border-color); | |
| 1775 | + width: 100%; | |
| 1776 | + bottom: 0; | |
| 1777 | + left: 0; | |
| 1778 | + background-color: #e6e9ec; | |
| 1843 | 1779 | } |
| 1844 | 1780 | .elementor-control.elementor-control-separator-after + .elementor-control-type-tabs + .elementor-control-separator-default, .elementor-control.elementor-control-separator-after:not(.elementor-hidden-control) + .elementor-control-separator-default { |
| 1845 | - padding-block-start: 15px; | |
| 1781 | + padding-top: 15px; | |
| 1846 | 1782 | } |
| 1847 | 1783 | .elementor-control.elementor-control-deprecated { |
| 1848 | - color: var(--e-a-color-warning); | |
| 1784 | + color: #b01b1b; | |
| 1849 | 1785 | } |
| 1850 | 1786 | .elementor-control.elementor-control-deprecated .elementor-control-field-description { |
| 1851 | - color: var(--e-a-color-warning); | |
| 1787 | + color: #b01b1b; | |
| 1852 | 1788 | } |
| 1853 | 1789 | .elementor-control.elementor-control-hidden-label > * > .elementor-control-title, .elementor-control.elementor-control-hidden-label > * > * > .elementor-control-title { |
| 1854 | 1790 | display: none; |
| 1855 | 1791 | } |
| @@ -1880,390 +1816,362 @@ | ||
| 1880 | 1816 | } |
| 1881 | 1817 | body:not(.elementor-device-mobile) .elementor-control.elementor-control-responsive-mobile { |
| 1882 | 1818 | display: none; |
| 1883 | 1819 | } |
| 1884 | -.elementor-control-shape_divider_top .elementor-visual-choice-element-image label, .elementor-control-shape_divider_bottom .elementor-visual-choice-element-image label { | |
| 1885 | - padding: 4px; | |
| 1820 | +.elementor-control.elementor-control-type-select .elementor-control-input-wrapper { | |
| 1821 | + position: relative; | |
| 1886 | 1822 | } |
| 1887 | -.elementor-control-shape_divider_top img, .elementor-control-shape_divider_bottom img { | |
| 1888 | - aspect-ratio: 4/1; | |
| 1889 | - -o-object-fit: cover; | |
| 1890 | - object-fit: cover; | |
| 1891 | - -o-object-position: center; | |
| 1892 | - object-position: center; | |
| 1823 | +.elementor-control.elementor-control-type-select .elementor-control-input-wrapper select { | |
| 1824 | + appearance: none; | |
| 1825 | + -webkit-appearance: none; | |
| 1826 | + -moz-appearance: none; | |
| 1827 | + font-size: 12px; | |
| 1828 | + font-family: inherit; | |
| 1829 | + font-weight: inherit; | |
| 1830 | + font-style: inherit; | |
| 1831 | + text-transform: inherit; | |
| 1832 | + letter-spacing: inherit; | |
| 1833 | + line-height: inherit; | |
| 1834 | + -ms-flex-preferred-size: 100%; | |
| 1835 | + flex-basis: 100%; | |
| 1836 | + padding-left: 5px; | |
| 1837 | + padding-right: 20px; | |
| 1838 | + cursor: pointer; | |
| 1893 | 1839 | } |
| 1894 | -.elementor-control-shape_divider_bottom img { | |
| 1895 | - rotate: X 180deg; | |
| 1840 | +.elementor-control.elementor-control-type-select .elementor-control-input-wrapper select.e-select-placeholder { | |
| 1841 | + color: #a4afb7; | |
| 1896 | 1842 | } |
| 1843 | +.elementor-control.elementor-control-type-select .elementor-control-input-wrapper option.e-option-placeholder { | |
| 1844 | + display: none; | |
| 1845 | +} | |
| 1846 | +.elementor-control.elementor-control-type-select .elementor-control-input-wrapper:after { | |
| 1847 | + font-family: eicons; | |
| 1848 | + content: "\e8ad"; | |
| 1849 | + font-size: 12px; | |
| 1850 | + position: absolute; | |
| 1851 | + top: 50%; | |
| 1852 | + -webkit-transform: translateY(-50%); | |
| 1853 | + -ms-transform: translateY(-50%); | |
| 1854 | + transform: translateY(-50%); | |
| 1855 | + right: 5px; | |
| 1856 | + pointer-events: none; | |
| 1857 | +} | |
| 1897 | 1858 | .elementor-control-custom_css_pro .elementor-nerd-box-message, .elementor-control-custom_attributes_pro .elementor-nerd-box-message { |
| 1898 | - margin-block-start: 5px; | |
| 1859 | + margin-top: 5px; | |
| 1899 | 1860 | } |
| 1861 | +.elementor-control.elementor-control-custom_css_title { | |
| 1862 | + font-size: 12px; | |
| 1863 | +} | |
| 1900 | 1864 | |
| 1901 | -.elementor-control.e-open .elementor-panel-heading-toggle i, .elementor-control.elementor-active .elementor-panel-heading-toggle i, | |
| 1902 | -.elementor-panel-category.e-open .elementor-panel-heading-toggle i, | |
| 1903 | -.elementor-panel-category.elementor-active .elementor-panel-heading-toggle i, | |
| 1904 | -.elementor-panel-scheme-item.e-open .elementor-panel-heading-toggle i, | |
| 1905 | -.elementor-panel-scheme-item.elementor-active .elementor-panel-heading-toggle i { | |
| 1906 | - transform: rotate(90deg); | |
| 1865 | +.elementor-control.elementor-open .elementor-panel-heading-toggle .eicon:before, | |
| 1866 | +.elementor-panel-scheme-item.elementor-open .elementor-panel-heading-toggle .eicon:before { | |
| 1867 | + content: "\e92a"; | |
| 1907 | 1868 | } |
| 1908 | -.elementor-control:not(.e-open):not(.elementor-active) .elementor-panel-heading-toggle i, | |
| 1909 | -.elementor-panel-category:not(.e-open):not(.elementor-active) .elementor-panel-heading-toggle i, | |
| 1910 | -.elementor-panel-scheme-item:not(.e-open):not(.elementor-active) .elementor-panel-heading-toggle i { | |
| 1911 | - scale: calc(1 * var(--direction-multiplier)) 1; | |
| 1869 | +.elementor-control:not(.elementor-open) .elementor-panel-heading-toggle .eicon:before, | |
| 1870 | +.elementor-panel-scheme-item:not(.elementor-open) .elementor-panel-heading-toggle .eicon:before { | |
| 1871 | + content: "\e90a"; | |
| 1912 | 1872 | } |
| 1913 | 1873 | |
| 1914 | 1874 | .elementor-panel-heading { |
| 1915 | - display: flex; | |
| 1916 | - align-items: center; | |
| 1917 | - gap: 5px; | |
| 1918 | - height: 48px; | |
| 1919 | - padding-inline: 20px; | |
| 1875 | + display: table; | |
| 1876 | + table-layout: fixed; | |
| 1877 | + height: 40px; | |
| 1878 | + padding: 0 20px; | |
| 1920 | 1879 | width: 100%; |
| 1921 | - border: 0; | |
| 1922 | - border-block-start: var(--e-a-border); | |
| 1923 | - border-block-start-width: 2px; | |
| 1924 | - background-color: transparent; | |
| 1925 | - color: var(--e-a-color-txt-accent); | |
| 1880 | + border-bottom: 1px solid #e6e9ec; | |
| 1926 | 1881 | cursor: pointer; |
| 1927 | 1882 | } |
| 1883 | +.elementor-panel-heading > * { | |
| 1884 | + display: table-cell; | |
| 1885 | + vertical-align: middle; | |
| 1886 | +} | |
| 1928 | 1887 | .elementor-panel-heading-toggle { |
| 1929 | - width: 10px; | |
| 1930 | - display: flex; | |
| 1931 | - flex-direction: column; | |
| 1932 | - align-items: center; | |
| 1888 | + width: 20px; | |
| 1889 | + color: #495157; | |
| 1933 | 1890 | } |
| 1934 | 1891 | .elementor-panel-heading-title { |
| 1892 | + color: #495157; | |
| 1935 | 1893 | font-weight: bold; |
| 1936 | 1894 | } |
| 1937 | -.elementor-panel-heading-category-chip { | |
| 1938 | - margin-inline-start: auto; | |
| 1939 | - background-color: var(--e-a-bg-chip); | |
| 1940 | - border-radius: 100px; | |
| 1941 | - padding: 5px 8px; | |
| 1895 | + | |
| 1896 | +.elementor-control-wp { | |
| 1897 | + line-height: 1.5; | |
| 1942 | 1898 | } |
| 1943 | -.elementor-panel-heading-category-chip i { | |
| 1944 | - margin-inline-start: 4px; | |
| 1899 | +.elementor-control-wp p { | |
| 1900 | + margin: 15px 0; | |
| 1945 | 1901 | } |
| 1946 | -.elementor-panel-heading-promotion { | |
| 1947 | - margin-inline-start: auto; | |
| 1948 | -} | |
| 1949 | -.elementor-panel-heading-promotion a { | |
| 1950 | - color: var(--e-a-color-accent-promotion); | |
| 1951 | - font-family: "Roboto", sans-serif; | |
| 1952 | - font-weight: 500; | |
| 1953 | - font-size: 13px; | |
| 1954 | -} | |
| 1955 | -.elementor-panel-heading-promotion a i { | |
| 1956 | - margin-inline-end: 4px; | |
| 1957 | - font-size: 14px; | |
| 1958 | -} | |
| 1959 | -.elementor-panel-heading-promotion a:hover { | |
| 1960 | - color: var(--e-a-color-accent-promotion); | |
| 1961 | -} | |
| 1962 | -.elementor-panel-heading:focus-visible { | |
| 1963 | - color: var(--e-a-color-txt-hover); | |
| 1964 | -} | |
| 1965 | 1902 | |
| 1966 | -#elementor-controls .elementor-control-type-section:first-child .elementor-panel-heading, | |
| 1967 | -#elementor-panel-page-settings-controls .elementor-control-type-section:first-child .elementor-panel-heading, | |
| 1968 | -#elementor-panel-editorPreferences-settings-controls .elementor-control-type-section:first-child .elementor-panel-heading { | |
| 1969 | - border-block-start: none; | |
| 1970 | -} | |
| 1971 | - | |
| 1972 | 1903 | .elementor-control-field { |
| 1904 | + display: -webkit-box; | |
| 1905 | + display: -ms-flexbox; | |
| 1973 | 1906 | display: flex; |
| 1974 | - align-items: center; | |
| 1907 | + -webkit-box-align: center; | |
| 1908 | + -ms-flex-align: center; | |
| 1909 | + align-items: center; | |
| 1975 | 1910 | } |
| 1976 | 1911 | |
| 1977 | 1912 | .elementor-label-block > .elementor-control-content > .elementor-control-field { |
| 1978 | - flex-wrap: wrap; | |
| 1913 | + -ms-flex-wrap: wrap; | |
| 1914 | + flex-wrap: wrap; | |
| 1979 | 1915 | } |
| 1980 | 1916 | .elementor-label-block > .elementor-control-content > .elementor-control-field > .elementor-control-input-wrapper { |
| 1981 | 1917 | width: 100%; |
| 1982 | - max-width: 100%; | |
| 1983 | - margin-block-start: 10px; | |
| 1918 | + margin-top: 10px; | |
| 1984 | 1919 | } |
| 1985 | 1920 | .elementor-label-block > .elementor-control-content > .elementor-control-field > .elementor-control-input-wrapper > .elementor-choices label { |
| 1986 | 1921 | width: auto; |
| 1987 | - flex: 1 1 27px; | |
| 1922 | + -webkit-box-flex: 1; | |
| 1923 | + -ms-flex: 1 1 27px; | |
| 1924 | + flex: 1 1 27px; | |
| 1925 | + display: -webkit-box; | |
| 1926 | + display: -ms-flexbox; | |
| 1988 | 1927 | display: flex; |
| 1989 | - align-items: center; | |
| 1990 | - justify-content: center; | |
| 1928 | + -webkit-box-align: center; | |
| 1929 | + -ms-flex-align: center; | |
| 1930 | + align-items: center; | |
| 1931 | + -webkit-box-pack: center; | |
| 1932 | + -ms-flex-pack: center; | |
| 1933 | + justify-content: center; | |
| 1991 | 1934 | } |
| 1992 | 1935 | .elementor-label-block.elementor-control-hidden-label:not(.elementor-control-dynamic) > .elementor-control-content > .elementor-control-field > .elementor-control-input-wrapper { |
| 1993 | - margin-block-start: 0; | |
| 1936 | + margin-top: 0; | |
| 1994 | 1937 | } |
| 1995 | 1938 | .elementor-label-block.elementor-control-hidden-label.elementor-label-block > .elementor-control-content > .elementor-control-field > .elementor-control-input-wrapper { |
| 1996 | - margin-block-start: 0; | |
| 1939 | + margin-top: 0; | |
| 1997 | 1940 | } |
| 1998 | 1941 | |
| 1999 | 1942 | .elementor-label-inline > .elementor-control-content > .elementor-control-field > .elementor-control-title { |
| 2000 | - flex-shrink: 0; | |
| 2001 | - max-width: 60%; | |
| 1943 | + -ms-flex-negative: 0; | |
| 1944 | + flex-shrink: 0; | |
| 2002 | 1945 | } |
| 2003 | 1946 | .elementor-label-inline > .elementor-control-content > .elementor-control-field > .elementor-control-input-wrapper { |
| 2004 | - margin-inline-start: auto; | |
| 1947 | + margin-left: auto; | |
| 2005 | 1948 | } |
| 2006 | 1949 | |
| 2007 | 1950 | .elementor-control-field-description { |
| 2008 | - margin-block-start: 10px; | |
| 1951 | + margin-top: 10px; | |
| 2009 | 1952 | } |
| 2010 | 1953 | |
| 2011 | 1954 | .elementor-group-control-attachment_alert .elementor-control-field-description { |
| 2012 | - margin-block-start: 0; | |
| 1955 | + margin-top: 0; | |
| 2013 | 1956 | } |
| 2014 | 1957 | |
| 2015 | -.elementor-control-start-end .eicon-text-align-left, | |
| 2016 | -.elementor-control-start-end .eicon-text-align-right, | |
| 2017 | -.elementor-control-start-end .eicon-h-align-left, | |
| 2018 | -.elementor-control-start-end .eicon-h-align-right { | |
| 2019 | - scale: calc(1 * var(--direction-multiplier)) 1; | |
| 1958 | +.elementor-required { | |
| 1959 | + color: #b01b1b; | |
| 2020 | 1960 | } |
| 2021 | 1961 | |
| 2022 | -.elementor-update-preview { | |
| 2023 | - margin: 15px 15px 0; | |
| 2024 | - display: flex; | |
| 2025 | - align-items: center; | |
| 1962 | +.elementor-units-choices { | |
| 1963 | + -webkit-box-flex: 1; | |
| 1964 | + -ms-flex-positive: 1; | |
| 1965 | + flex-grow: 1; | |
| 1966 | + text-align: right; | |
| 1967 | + z-index: 3; | |
| 2026 | 1968 | } |
| 2027 | - | |
| 2028 | -.elementor-update-preview-button-wrapper { | |
| 2029 | - flex-grow: 1; | |
| 2030 | - text-align: end; | |
| 1969 | +.elementor-units-choices input { | |
| 1970 | + display: none; | |
| 2031 | 1971 | } |
| 2032 | - | |
| 2033 | -.elementor-update-preview-button { | |
| 2034 | - padding: 8px 15px; | |
| 1972 | +.elementor-units-choices input:not(:checked) + label { | |
| 1973 | + color: #a4afb7; | |
| 2035 | 1974 | } |
| 2036 | - | |
| 2037 | -.elementor-control-direction-ltr input, | |
| 2038 | -.elementor-control-direction-ltr textarea { | |
| 2039 | - direction: ltr; | |
| 1975 | +.elementor-units-choices input.e-units-placeholder + label { | |
| 1976 | + color: #c2cbd2; | |
| 1977 | + text-decoration: underline; | |
| 2040 | 1978 | } |
| 2041 | -.elementor-control-direction-rtl input, | |
| 2042 | -.elementor-control-direction-rtl textarea { | |
| 2043 | - direction: rtl; | |
| 1979 | +.elementor-units-choices input:checked + label { | |
| 1980 | + text-decoration: underline; | |
| 2044 | 1981 | } |
| 1982 | +.elementor-units-choices label { | |
| 1983 | + cursor: pointer; | |
| 1984 | + padding: 0 2px; | |
| 1985 | + text-transform: uppercase; | |
| 1986 | + font-size: 9px; | |
| 1987 | +} | |
| 2045 | 1988 | |
| 2046 | 1989 | .elementor-control-responsive-switchers { |
| 2047 | 1990 | --selected-option: 0; |
| 2048 | 1991 | --pointer-position: var(--selected-option); |
| 2049 | 1992 | position: relative; |
| 2050 | - width: 2.5em; | |
| 2051 | - height: 2.5em; | |
| 2052 | - margin: calc(-2.5em + 12px) 0; | |
| 2053 | - margin-inline-end: 5px; | |
| 1993 | + width: 2em; | |
| 1994 | + height: 2em; | |
| 1995 | + margin: calc( -2em + var(--control-title-size)) 0; | |
| 1996 | + margin-right: 5px; | |
| 2054 | 1997 | } |
| 2055 | 1998 | .elementor-control-responsive-switchers__holder { |
| 2056 | 1999 | position: absolute; |
| 2057 | 2000 | width: 100%; |
| 2058 | - inset-block-start: 0; | |
| 2059 | - background-color: var(--e-a-bg-default); | |
| 2060 | - border-radius: var(--e-a-border-radius); | |
| 2001 | + top: 0; | |
| 2002 | + background-color: #fff; | |
| 2003 | + border-radius: 3px; | |
| 2004 | + -webkit-transition: 0.15s; | |
| 2005 | + -o-transition: 0.15s; | |
| 2061 | 2006 | transition: 0.15s; |
| 2062 | - border: 1px solid transparent; | |
| 2007 | + border: 1px transparent solid; | |
| 2063 | 2008 | } |
| 2064 | 2009 | .elementor-control-responsive-switchers.elementor-responsive-switchers-open { |
| 2065 | 2010 | z-index: 11000; |
| 2066 | 2011 | } |
| 2067 | 2012 | .elementor-control-responsive-switchers.elementor-responsive-switchers-open .elementor-responsive-switcher { |
| 2068 | - height: 2.5em; | |
| 2069 | - transform: scale(1); | |
| 2013 | + height: 2em; | |
| 2014 | + -webkit-transform: scale(1); | |
| 2015 | + -ms-transform: scale(1); | |
| 2016 | + transform: scale(1); | |
| 2070 | 2017 | opacity: 1; |
| 2071 | 2018 | } |
| 2072 | 2019 | .elementor-control-responsive-switchers.elementor-responsive-switchers-open .elementor-responsive-switcher:hover { |
| 2073 | - color: var(--e-a-color-primary-bold); | |
| 2020 | + color: #71d7f7; | |
| 2074 | 2021 | } |
| 2075 | 2022 | .elementor-control-responsive-switchers.elementor-responsive-switchers-open .elementor-control-responsive-switchers__holder { |
| 2076 | - box-shadow: var(--e-a-dropdown-shadow); | |
| 2023 | + top: calc(-1 * var(--selected-option) * 2em); | |
| 2024 | + -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2); | |
| 2025 | + box-shadow: 0 0 3px rgba(0, 0, 0, 0.2); | |
| 2077 | 2026 | } |
| 2078 | 2027 | |
| 2079 | 2028 | .elementor-responsive-switcher { |
| 2080 | - all: unset; | |
| 2029 | + display: -webkit-box; | |
| 2030 | + display: -ms-flexbox; | |
| 2081 | 2031 | display: flex; |
| 2082 | - align-items: center; | |
| 2083 | - justify-content: center; | |
| 2032 | + -webkit-box-align: center; | |
| 2033 | + -ms-flex-align: center; | |
| 2034 | + align-items: center; | |
| 2035 | + -webkit-box-pack: center; | |
| 2036 | + -ms-flex-pack: center; | |
| 2037 | + justify-content: center; | |
| 2084 | 2038 | position: relative; |
| 2085 | 2039 | z-index: 2; |
| 2086 | 2040 | cursor: pointer; |
| 2087 | 2041 | height: 0; |
| 2088 | - width: 100%; | |
| 2089 | - transform: scale(0); | |
| 2042 | + -webkit-transform: scale(0); | |
| 2043 | + -ms-transform: scale(0); | |
| 2044 | + transform: scale(0); | |
| 2090 | 2045 | opacity: 0; |
| 2046 | + -webkit-transition: 0.15s; | |
| 2047 | + -o-transition: 0.15s; | |
| 2091 | 2048 | transition: 0.15s; |
| 2092 | 2049 | font-size: 12px; |
| 2093 | - color: inherit; | |
| 2094 | 2050 | } |
| 2095 | -.elementor-responsive-switcher:hover { | |
| 2096 | - color: var(--e-a-color-primary-bold); | |
| 2051 | + | |
| 2052 | +a.elementor-responsive-switcher { | |
| 2053 | + color: #a4afb7; | |
| 2097 | 2054 | } |
| 2055 | +a.elementor-responsive-switcher:hover { | |
| 2056 | + color: #71d7f7; | |
| 2057 | +} | |
| 2098 | 2058 | |
| 2099 | 2059 | .elementor-device-widescreen .elementor-responsive-switcher.elementor-responsive-switcher-widescreen { |
| 2100 | - height: 2.5em; | |
| 2101 | - transform: scale(1); | |
| 2060 | + height: 2em; | |
| 2061 | + -webkit-transform: scale(1); | |
| 2062 | + -ms-transform: scale(1); | |
| 2063 | + transform: scale(1); | |
| 2102 | 2064 | opacity: 1; |
| 2103 | 2065 | } |
| 2104 | 2066 | .elementor-device-widescreen .elementor-responsive-switchers-open:not(:hover) .elementor-responsive-switcher.elementor-responsive-switcher-widescreen { |
| 2105 | - color: var(--e-a-color-primary-bold); | |
| 2067 | + color: #71d7f7; | |
| 2106 | 2068 | } |
| 2107 | 2069 | |
| 2108 | 2070 | .elementor-device-desktop .elementor-responsive-switcher.elementor-responsive-switcher-desktop { |
| 2109 | - height: 2.5em; | |
| 2110 | - transform: scale(1); | |
| 2071 | + height: 2em; | |
| 2072 | + -webkit-transform: scale(1); | |
| 2073 | + -ms-transform: scale(1); | |
| 2074 | + transform: scale(1); | |
| 2111 | 2075 | opacity: 1; |
| 2112 | 2076 | } |
| 2113 | 2077 | .elementor-device-desktop .elementor-responsive-switchers-open:not(:hover) .elementor-responsive-switcher.elementor-responsive-switcher-desktop { |
| 2114 | - color: var(--e-a-color-primary-bold); | |
| 2078 | + color: #71d7f7; | |
| 2115 | 2079 | } |
| 2116 | 2080 | |
| 2117 | 2081 | .elementor-device-laptop .elementor-responsive-switcher.elementor-responsive-switcher-laptop { |
| 2118 | - height: 2.5em; | |
| 2119 | - transform: scale(1); | |
| 2082 | + height: 2em; | |
| 2083 | + -webkit-transform: scale(1); | |
| 2084 | + -ms-transform: scale(1); | |
| 2085 | + transform: scale(1); | |
| 2120 | 2086 | opacity: 1; |
| 2121 | 2087 | } |
| 2122 | 2088 | .elementor-device-laptop .elementor-responsive-switchers-open:not(:hover) .elementor-responsive-switcher.elementor-responsive-switcher-laptop { |
| 2123 | - color: var(--e-a-color-primary-bold); | |
| 2089 | + color: #71d7f7; | |
| 2124 | 2090 | } |
| 2125 | 2091 | |
| 2126 | 2092 | .elementor-device-tablet_extra .elementor-responsive-switcher.elementor-responsive-switcher-tablet_extra { |
| 2127 | - height: 2.5em; | |
| 2128 | - transform: scale(1); | |
| 2093 | + height: 2em; | |
| 2094 | + -webkit-transform: scale(1); | |
| 2095 | + -ms-transform: scale(1); | |
| 2096 | + transform: scale(1); | |
| 2129 | 2097 | opacity: 1; |
| 2130 | 2098 | } |
| 2131 | 2099 | .elementor-device-tablet_extra .elementor-responsive-switchers-open:not(:hover) .elementor-responsive-switcher.elementor-responsive-switcher-tablet_extra { |
| 2132 | - color: var(--e-a-color-primary-bold); | |
| 2100 | + color: #71d7f7; | |
| 2133 | 2101 | } |
| 2134 | 2102 | |
| 2135 | 2103 | .elementor-device-tablet .elementor-responsive-switcher.elementor-responsive-switcher-tablet { |
| 2136 | - height: 2.5em; | |
| 2137 | - transform: scale(1); | |
| 2104 | + height: 2em; | |
| 2105 | + -webkit-transform: scale(1); | |
| 2106 | + -ms-transform: scale(1); | |
| 2107 | + transform: scale(1); | |
| 2138 | 2108 | opacity: 1; |
| 2139 | 2109 | } |
| 2140 | 2110 | .elementor-device-tablet .elementor-responsive-switchers-open:not(:hover) .elementor-responsive-switcher.elementor-responsive-switcher-tablet { |
| 2141 | - color: var(--e-a-color-primary-bold); | |
| 2111 | + color: #71d7f7; | |
| 2142 | 2112 | } |
| 2143 | 2113 | |
| 2144 | 2114 | .elementor-device-mobile_extra .elementor-responsive-switcher.elementor-responsive-switcher-mobile_extra { |
| 2145 | - height: 2.5em; | |
| 2146 | - transform: scale(1); | |
| 2115 | + height: 2em; | |
| 2116 | + -webkit-transform: scale(1); | |
| 2117 | + -ms-transform: scale(1); | |
| 2118 | + transform: scale(1); | |
| 2147 | 2119 | opacity: 1; |
| 2148 | 2120 | } |
| 2149 | 2121 | .elementor-device-mobile_extra .elementor-responsive-switchers-open:not(:hover) .elementor-responsive-switcher.elementor-responsive-switcher-mobile_extra { |
| 2150 | - color: var(--e-a-color-primary-bold); | |
| 2122 | + color: #71d7f7; | |
| 2151 | 2123 | } |
| 2152 | 2124 | |
| 2153 | 2125 | .elementor-device-mobile .elementor-responsive-switcher.elementor-responsive-switcher-mobile { |
| 2154 | - height: 2.5em; | |
| 2155 | - transform: scale(1); | |
| 2126 | + height: 2em; | |
| 2127 | + -webkit-transform: scale(1); | |
| 2128 | + -ms-transform: scale(1); | |
| 2129 | + transform: scale(1); | |
| 2156 | 2130 | opacity: 1; |
| 2157 | 2131 | } |
| 2158 | 2132 | .elementor-device-mobile .elementor-responsive-switchers-open:not(:hover) .elementor-responsive-switcher.elementor-responsive-switcher-mobile { |
| 2159 | - color: var(--e-a-color-primary-bold); | |
| 2133 | + color: #71d7f7; | |
| 2160 | 2134 | } |
| 2161 | 2135 | |
| 2162 | -.e-units-wrapper { | |
| 2163 | - position: relative; | |
| 2164 | - margin-inline-start: auto; | |
| 2136 | +.elementor-update-preview { | |
| 2137 | + margin: 15px 15px 0; | |
| 2138 | + display: -webkit-box; | |
| 2139 | + display: -ms-flexbox; | |
| 2140 | + display: flex; | |
| 2141 | + -webkit-box-align: center; | |
| 2142 | + -ms-flex-align: center; | |
| 2143 | + align-items: center; | |
| 2165 | 2144 | } |
| 2166 | -.e-units-wrapper .e-units-switcher { | |
| 2167 | - cursor: pointer; | |
| 2168 | - font-size: 10px; | |
| 2169 | - padding: 0.5em; | |
| 2170 | - margin: -0.5em 0; | |
| 2171 | - transition: all ease-in-out 0.15s; | |
| 2172 | -} | |
| 2173 | -.e-units-wrapper .e-units-switcher:hover { | |
| 2174 | - color: var(--e-a-color-primary-bold); | |
| 2175 | - background-color: var(--e-a-bg-hover); | |
| 2176 | - border-radius: var(--e-a-border-radius); | |
| 2177 | -} | |
| 2178 | -.e-units-wrapper .e-units-switcher:not([data-selected=custom]) i.eicon-edit { | |
| 2179 | - display: none; | |
| 2180 | -} | |
| 2181 | -.e-units-wrapper .e-units-switcher[data-selected=custom] span { | |
| 2182 | - display: none; | |
| 2183 | -} | |
| 2184 | -.e-units-wrapper .e-units-switcher i.eicon-angle-right { | |
| 2185 | - transform: rotate(90deg); | |
| 2186 | -} | |
| 2187 | 2145 | |
| 2188 | -.e-units-choices input { | |
| 2189 | - display: none; | |
| 2146 | +.elementor-update-preview-button-wrapper { | |
| 2147 | + -webkit-box-flex: 1; | |
| 2148 | + -ms-flex-positive: 1; | |
| 2149 | + flex-grow: 1; | |
| 2150 | + text-align: right; | |
| 2190 | 2151 | } |
| 2191 | -.e-units-choices input:checked + label { | |
| 2192 | - color: var(--e-a-color-primary-bold); | |
| 2193 | -} | |
| 2194 | -.e-units-choices label { | |
| 2195 | - cursor: pointer; | |
| 2196 | - display: block; | |
| 2197 | -} | |
| 2198 | -.e-units-choices { | |
| 2199 | - display: none; | |
| 2200 | - overflow: hidden; | |
| 2201 | - max-height: 0; | |
| 2202 | - position: absolute; | |
| 2203 | - inset-block-start: -0.8em; | |
| 2204 | - inset-inline-start: -0.5em; | |
| 2205 | - width: 2.5em; | |
| 2206 | - text-align: center; | |
| 2207 | - background-color: var(--e-a-bg-default); | |
| 2208 | - border-radius: var(--e-a-border-radius); | |
| 2209 | - box-shadow: var(--e-a-dropdown-shadow); | |
| 2210 | - animation-timing-function: linear; | |
| 2211 | - animation-delay: 0s; | |
| 2212 | - animation-fill-mode: forwards; | |
| 2213 | - z-index: 11000; | |
| 2214 | -} | |
| 2215 | -.e-units-choices .elementor-units-choices-label { | |
| 2216 | - display: flex; | |
| 2217 | - align-items: center; | |
| 2218 | - height: 3em; | |
| 2219 | - justify-content: center; | |
| 2220 | - font-size: 10px; | |
| 2221 | - transition: 0.15s; | |
| 2222 | -} | |
| 2223 | -.e-units-choices .elementor-units-choices-label:hover { | |
| 2224 | - color: var(--e-a-color-primary-bold); | |
| 2225 | -} | |
| 2226 | -.e-units-choices.e-units-choices-open { | |
| 2227 | - display: block; | |
| 2228 | - animation-duration: 1s; | |
| 2229 | - animation-name: e-units-choices-open; | |
| 2230 | -} | |
| 2231 | 2152 | |
| 2232 | -.e-units-custom input { | |
| 2233 | - font-family: monospace; | |
| 2234 | - font-size: 0.85em; | |
| 2153 | +.elementor-update-preview-button { | |
| 2154 | + padding: 8px 15px; | |
| 2155 | + text-transform: uppercase; | |
| 2235 | 2156 | } |
| 2236 | 2157 | |
| 2237 | -@keyframes e-units-choices-open { | |
| 2238 | - from { | |
| 2239 | - max-height: 0; | |
| 2240 | - } | |
| 2241 | - to { | |
| 2242 | - max-height: 100vh; | |
| 2243 | - } | |
| 2158 | +.elementor-control-direction-ltr input, | |
| 2159 | +.elementor-control-direction-ltr textarea { | |
| 2160 | + direction: ltr; | |
| 2244 | 2161 | } |
| 2245 | -.elementor-control-alert { | |
| 2246 | - display: flex; | |
| 2247 | - flex-direction: column; | |
| 2248 | - justify-content: flex-start; | |
| 2249 | - align-items: flex-start; | |
| 2250 | - gap: 8px; | |
| 2162 | +.elementor-control-direction-rtl input, | |
| 2163 | +.elementor-control-direction-rtl textarea { | |
| 2164 | + direction: rtl; | |
| 2251 | 2165 | } |
| 2252 | -.elementor-control-alert-heading { | |
| 2253 | - font-weight: bold; | |
| 2254 | -} | |
| 2255 | 2166 | |
| 2256 | 2167 | .elementor-control-type-button .elementor-control-input-wrapper { |
| 2257 | - text-align: end; | |
| 2168 | + text-align: right; | |
| 2258 | 2169 | } |
| 2259 | 2170 | .elementor-control-type-button .elementor-button { |
| 2260 | 2171 | width: auto; |
| 2172 | + height: 26px; | |
| 2261 | 2173 | } |
| 2262 | -.elementor-control-type-button .elementor-button.elementor-button-center { | |
| 2263 | - display: block; | |
| 2264 | - margin: 0 auto; | |
| 2265 | -} | |
| 2266 | 2174 | |
| 2267 | 2175 | .elementor-control-type-choose.elementor-label-block .elementor-choices { |
| 2268 | 2176 | width: 100%; |
| 2269 | 2177 | } |
| @@ -2268,80 +2176,108 @@ | ||
| 2268 | 2176 | width: 100%; |
| 2269 | 2177 | } |
| 2270 | 2178 | |
| 2271 | 2179 | .elementor-choices { |
| 2180 | + display: -webkit-box; | |
| 2181 | + display: -ms-flexbox; | |
| 2272 | 2182 | display: flex; |
| 2273 | 2183 | height: 27px; |
| 2274 | 2184 | line-height: 27px; |
| 2275 | 2185 | text-align: center; |
| 2276 | 2186 | border-spacing: 1px; |
| 2277 | - border-radius: var(--e-a-border-radius); | |
| 2187 | + border-radius: 3px; | |
| 2278 | 2188 | overflow: hidden; |
| 2279 | 2189 | } |
| 2280 | 2190 | .elementor-choices .elementor-choices-label { |
| 2281 | - border-block-start: var(--e-a-border-bold); | |
| 2282 | - border-block-end: var(--e-a-border-bold); | |
| 2283 | - border-inline-start: var(--e-a-border-bold); | |
| 2284 | - border-inline-end: none; | |
| 2191 | + border-top: 1px solid #d5dadf; | |
| 2192 | + border-bottom: 1px solid #d5dadf; | |
| 2193 | + border-left: 1px solid #d5dadf; | |
| 2194 | + border-right: none; | |
| 2285 | 2195 | font-size: 12px; |
| 2286 | - transition: var(--e-a-transition-hover); | |
| 2196 | + -webkit-transition: all 0.5s; | |
| 2197 | + -o-transition: all 0.5s; | |
| 2198 | + transition: all 0.5s; | |
| 2287 | 2199 | cursor: pointer; |
| 2288 | 2200 | overflow: hidden; |
| 2289 | 2201 | } |
| 2290 | 2202 | .elementor-choices .elementor-choices-label:nth-child(2) { |
| 2291 | - border-start-start-radius: var(--e-a-border-radius); | |
| 2292 | - border-end-start-radius: var(--e-a-border-radius); | |
| 2203 | + border-top-left-radius: 3px; | |
| 2204 | + border-bottom-left-radius: 3px; | |
| 2293 | 2205 | } |
| 2294 | 2206 | .elementor-choices .elementor-choices-label:last-child { |
| 2295 | - border-inline-end: var(--e-a-border-bold); | |
| 2296 | - border-start-end-radius: var(--e-a-border-radius); | |
| 2297 | - border-end-end-radius: var(--e-a-border-radius); | |
| 2207 | + border-right: 1px solid #d5dadf; | |
| 2208 | + border-top-right-radius: 3px; | |
| 2209 | + border-bottom-right-radius: 3px; | |
| 2298 | 2210 | } |
| 2299 | 2211 | .elementor-choices input { |
| 2300 | 2212 | display: none; |
| 2301 | 2213 | } |
| 2302 | -.elementor-choices input:hover + .elementor-choices-label { | |
| 2303 | - background-color: var(--e-a-bg-hover); | |
| 2214 | +.elementor-choices input.e-choose-placeholder + .elementor-choices-label { | |
| 2215 | + color: #ffffff; | |
| 2216 | + background-color: #c2cbd2; | |
| 2217 | + border-color: #c2cbd2; | |
| 2304 | 2218 | } |
| 2305 | -.elementor-choices input.e-choose-placeholder + .elementor-choices-label, .elementor-choices input:checked + .elementor-choices-label { | |
| 2306 | - background-color: var(--e-a-bg-active-bold); | |
| 2307 | - color: var(--e-a-color-txt-accent); | |
| 2219 | +.elementor-choices input:checked + .elementor-choices-label { | |
| 2220 | + color: #fff; | |
| 2221 | + background-color: #a4afb7; | |
| 2222 | + border-color: #a4afb7; | |
| 2308 | 2223 | } |
| 2309 | 2224 | |
| 2310 | 2225 | .elementor-label-inline .elementor-choices { |
| 2311 | - justify-content: flex-end; | |
| 2226 | + -webkit-box-pack: end; | |
| 2227 | + -ms-flex-pack: end; | |
| 2228 | + justify-content: flex-end; | |
| 2312 | 2229 | } |
| 2313 | 2230 | |
| 2314 | -.elementor-control-type-color.e-control-global .pickr { | |
| 2315 | - border-start-start-radius: 0; | |
| 2316 | - border-start-end-radius: var(--e-a-border-radius); | |
| 2317 | - border-end-start-radius: 0; | |
| 2318 | - border-end-end-radius: var(--e-a-border-radius); | |
| 2319 | - flex-shrink: 0; | |
| 2320 | - border-color: var(--e-a-border-color-bold); | |
| 2321 | - transition: var(--e-a-transition-hover); | |
| 2231 | +.rtl .elementor-control-type-choose[class*=elementor-control-text_align] .elementor-choices, .rtl .elementor-control-type-choose[class*=elementor-control-align] .elementor-choices, .rtl .elementor-control-type-choose[class*=elementor-control-position] .elementor-choices { | |
| 2232 | + -webkit-box-orient: horizontal; | |
| 2233 | + -webkit-box-direction: reverse; | |
| 2234 | + -ms-flex-direction: row-reverse; | |
| 2235 | + flex-direction: row-reverse; | |
| 2322 | 2236 | } |
| 2323 | -.elementor-control-type-color.e-control-global .pickr:hover { | |
| 2324 | - background-color: var(--e-a-bg-hover); | |
| 2237 | +.rtl .elementor-control-type-choose[class*=elementor-control-text_align] .elementor-choices .elementor-choices-label:nth-child(2), .rtl .elementor-control-type-choose[class*=elementor-control-align] .elementor-choices .elementor-choices-label:nth-child(2), .rtl .elementor-control-type-choose[class*=elementor-control-position] .elementor-choices .elementor-choices-label:nth-child(2) { | |
| 2238 | + border-right: 1px solid #d5dadf; | |
| 2239 | + border-radius: 3px 0 0 3px; | |
| 2325 | 2240 | } |
| 2326 | -.elementor-control-type-color.e-control-global .e-global__popover-toggle:not(.e-global__popover-toggle--active) ~ .pickr { | |
| 2327 | - background-color: var(--e-a-bg-active-bold); | |
| 2241 | +.rtl .elementor-control-type-choose[class*=elementor-control-text_align] .elementor-choices .elementor-choices-label:last-child, .rtl .elementor-control-type-choose[class*=elementor-control-align] .elementor-choices .elementor-choices-label:last-child, .rtl .elementor-control-type-choose[class*=elementor-control-position] .elementor-choices .elementor-choices-label:last-child { | |
| 2242 | + border-right: none; | |
| 2243 | + border-radius: 0 3px 3px 0; | |
| 2328 | 2244 | } |
| 2245 | + | |
| 2246 | +.elementor-control-type-color.e-control-global .e-global__popover-toggle ~ .pickr { | |
| 2247 | + border-radius: 0px 3px 3px 0; | |
| 2248 | + -ms-flex-negative: 0; | |
| 2249 | + flex-shrink: 0; | |
| 2250 | +} | |
| 2329 | 2251 | .elementor-control-type-color .elementor-control-title { |
| 2330 | - flex-grow: 1; | |
| 2252 | + -webkit-box-flex: 1; | |
| 2253 | + -ms-flex-positive: 1; | |
| 2254 | + flex-grow: 1; | |
| 2331 | 2255 | } |
| 2332 | 2256 | .elementor-control-type-color .elementor-control-input-wrapper { |
| 2257 | + display: -webkit-box; | |
| 2258 | + display: -ms-flexbox; | |
| 2333 | 2259 | display: flex; |
| 2334 | - justify-content: flex-end; | |
| 2260 | + -webkit-box-pack: end; | |
| 2261 | + -ms-flex-pack: end; | |
| 2262 | + justify-content: flex-end; | |
| 2335 | 2263 | } |
| 2264 | +.elementor-control-type-color .elementor-control-dynamic-switcher { | |
| 2265 | + border-left-width: 0; | |
| 2266 | + border-radius: 0 3px 3px 0; | |
| 2267 | +} | |
| 2268 | +.elementor-control-type-color.elementor-control-dynamic .pickr { | |
| 2269 | + border-radius: 3px 0 0 3px; | |
| 2270 | +} | |
| 2336 | 2271 | |
| 2337 | 2272 | .elementor-group-control-css-filter .elementor-slider { |
| 2338 | 2273 | height: 6px; |
| 2339 | - box-shadow: 0 0 1px 1px inset rgba(0, 0, 0, 0.2); | |
| 2274 | + -webkit-box-shadow: 0 0 1px 1px inset rgba(0, 0, 0, 0.2); | |
| 2275 | + box-shadow: 0 0 1px 1px inset rgba(0, 0, 0, 0.2); | |
| 2340 | 2276 | } |
| 2341 | 2277 | .elementor-group-control-css-filter .elementor-control-content > .elementor-control-field > .elementor-control-input-wrapper { |
| 2342 | - margin-block-start: 0; | |
| 2343 | - margin-block-end: 5px; | |
| 2278 | + margin-top: 0; | |
| 2279 | + margin-bottom: 5px; | |
| 2344 | 2280 | } |
| 2345 | 2281 | |
| 2346 | 2282 | .elementor-group-control-blur .elementor-slider { |
| 2347 | 2283 | background: url("../images/blur.png"); |
| @@ -2354,224 +2290,31 @@ | ||
| 2354 | 2290 | background-size: 100% 100%; |
| 2355 | 2291 | } |
| 2356 | 2292 | |
| 2357 | 2293 | .elementor-group-control-hue .elementor-slider { |
| 2294 | + background-image: -webkit-gradient(linear, left top, right top, from(red), color-stop(orange), color-stop(yellow), color-stop(greenyellow), color-stop(limegreen), color-stop(deepskyblue), color-stop(blue), color-stop(95%, darkviolet)); | |
| 2295 | + background-image: -o-linear-gradient(left, red, orange, yellow, greenyellow, limegreen, deepskyblue, blue, darkviolet 95%); | |
| 2358 | 2296 | background-image: linear-gradient(to right, red, orange, yellow, greenyellow, limegreen, deepskyblue, blue, darkviolet 95%); |
| 2359 | 2297 | } |
| 2360 | 2298 | |
| 2361 | 2299 | .elementor-group-control-saturate .elementor-slider { |
| 2300 | + background-image: -webkit-gradient(linear, left top, right top, from(gray), to(red)); | |
| 2301 | + background-image: -o-linear-gradient(left, gray, red); | |
| 2362 | 2302 | background-image: linear-gradient(to right, gray, red); |
| 2363 | 2303 | } |
| 2364 | 2304 | |
| 2365 | 2305 | .elementor-group-control-brightness .elementor-slider { |
| 2306 | + background-image: -webkit-gradient(linear, left top, right top, from(black), to(white)); | |
| 2307 | + background-image: -o-linear-gradient(left, black, white); | |
| 2366 | 2308 | background-image: linear-gradient(to right, black, white); |
| 2367 | 2309 | } |
| 2368 | 2310 | |
| 2369 | -.elementor-control-responsive-switchers { | |
| 2370 | - --selected-option: 0; | |
| 2371 | - --pointer-position: var(--selected-option); | |
| 2372 | - position: relative; | |
| 2373 | - width: 2.5em; | |
| 2374 | - height: 2.5em; | |
| 2375 | - margin: calc(-2.5em + 12px) 0; | |
| 2376 | - margin-inline-end: 5px; | |
| 2377 | -} | |
| 2378 | -.elementor-control-responsive-switchers__holder { | |
| 2379 | - position: absolute; | |
| 2380 | - width: 100%; | |
| 2381 | - inset-block-start: 0; | |
| 2382 | - background-color: var(--e-a-bg-default); | |
| 2383 | - border-radius: var(--e-a-border-radius); | |
| 2384 | - transition: 0.15s; | |
| 2385 | - border: 1px solid transparent; | |
| 2386 | -} | |
| 2387 | -.elementor-control-responsive-switchers.elementor-responsive-switchers-open { | |
| 2388 | - z-index: 11000; | |
| 2389 | -} | |
| 2390 | -.elementor-control-responsive-switchers.elementor-responsive-switchers-open .elementor-responsive-switcher { | |
| 2391 | - height: 2.5em; | |
| 2392 | - transform: scale(1); | |
| 2393 | - opacity: 1; | |
| 2394 | -} | |
| 2395 | -.elementor-control-responsive-switchers.elementor-responsive-switchers-open .elementor-responsive-switcher:hover { | |
| 2396 | - color: var(--e-a-color-primary-bold); | |
| 2397 | -} | |
| 2398 | -.elementor-control-responsive-switchers.elementor-responsive-switchers-open .elementor-control-responsive-switchers__holder { | |
| 2399 | - box-shadow: var(--e-a-dropdown-shadow); | |
| 2400 | -} | |
| 2401 | - | |
| 2402 | -.elementor-responsive-switcher { | |
| 2403 | - all: unset; | |
| 2404 | - display: flex; | |
| 2405 | - align-items: center; | |
| 2406 | - justify-content: center; | |
| 2407 | - position: relative; | |
| 2408 | - z-index: 2; | |
| 2409 | - cursor: pointer; | |
| 2410 | - height: 0; | |
| 2411 | - width: 100%; | |
| 2412 | - transform: scale(0); | |
| 2413 | - opacity: 0; | |
| 2414 | - transition: 0.15s; | |
| 2415 | - font-size: 12px; | |
| 2416 | - color: inherit; | |
| 2417 | -} | |
| 2418 | -.elementor-responsive-switcher:hover { | |
| 2419 | - color: var(--e-a-color-primary-bold); | |
| 2420 | -} | |
| 2421 | - | |
| 2422 | -.elementor-device-widescreen .elementor-responsive-switcher.elementor-responsive-switcher-widescreen { | |
| 2423 | - height: 2.5em; | |
| 2424 | - transform: scale(1); | |
| 2425 | - opacity: 1; | |
| 2426 | -} | |
| 2427 | -.elementor-device-widescreen .elementor-responsive-switchers-open:not(:hover) .elementor-responsive-switcher.elementor-responsive-switcher-widescreen { | |
| 2428 | - color: var(--e-a-color-primary-bold); | |
| 2429 | -} | |
| 2430 | - | |
| 2431 | -.elementor-device-desktop .elementor-responsive-switcher.elementor-responsive-switcher-desktop { | |
| 2432 | - height: 2.5em; | |
| 2433 | - transform: scale(1); | |
| 2434 | - opacity: 1; | |
| 2435 | -} | |
| 2436 | -.elementor-device-desktop .elementor-responsive-switchers-open:not(:hover) .elementor-responsive-switcher.elementor-responsive-switcher-desktop { | |
| 2437 | - color: var(--e-a-color-primary-bold); | |
| 2438 | -} | |
| 2439 | - | |
| 2440 | -.elementor-device-laptop .elementor-responsive-switcher.elementor-responsive-switcher-laptop { | |
| 2441 | - height: 2.5em; | |
| 2442 | - transform: scale(1); | |
| 2443 | - opacity: 1; | |
| 2444 | -} | |
| 2445 | -.elementor-device-laptop .elementor-responsive-switchers-open:not(:hover) .elementor-responsive-switcher.elementor-responsive-switcher-laptop { | |
| 2446 | - color: var(--e-a-color-primary-bold); | |
| 2447 | -} | |
| 2448 | - | |
| 2449 | -.elementor-device-tablet_extra .elementor-responsive-switcher.elementor-responsive-switcher-tablet_extra { | |
| 2450 | - height: 2.5em; | |
| 2451 | - transform: scale(1); | |
| 2452 | - opacity: 1; | |
| 2453 | -} | |
| 2454 | -.elementor-device-tablet_extra .elementor-responsive-switchers-open:not(:hover) .elementor-responsive-switcher.elementor-responsive-switcher-tablet_extra { | |
| 2455 | - color: var(--e-a-color-primary-bold); | |
| 2456 | -} | |
| 2457 | - | |
| 2458 | -.elementor-device-tablet .elementor-responsive-switcher.elementor-responsive-switcher-tablet { | |
| 2459 | - height: 2.5em; | |
| 2460 | - transform: scale(1); | |
| 2461 | - opacity: 1; | |
| 2462 | -} | |
| 2463 | -.elementor-device-tablet .elementor-responsive-switchers-open:not(:hover) .elementor-responsive-switcher.elementor-responsive-switcher-tablet { | |
| 2464 | - color: var(--e-a-color-primary-bold); | |
| 2465 | -} | |
| 2466 | - | |
| 2467 | -.elementor-device-mobile_extra .elementor-responsive-switcher.elementor-responsive-switcher-mobile_extra { | |
| 2468 | - height: 2.5em; | |
| 2469 | - transform: scale(1); | |
| 2470 | - opacity: 1; | |
| 2471 | -} | |
| 2472 | -.elementor-device-mobile_extra .elementor-responsive-switchers-open:not(:hover) .elementor-responsive-switcher.elementor-responsive-switcher-mobile_extra { | |
| 2473 | - color: var(--e-a-color-primary-bold); | |
| 2474 | -} | |
| 2475 | - | |
| 2476 | -.elementor-device-mobile .elementor-responsive-switcher.elementor-responsive-switcher-mobile { | |
| 2477 | - height: 2.5em; | |
| 2478 | - transform: scale(1); | |
| 2479 | - opacity: 1; | |
| 2480 | -} | |
| 2481 | -.elementor-device-mobile .elementor-responsive-switchers-open:not(:hover) .elementor-responsive-switcher.elementor-responsive-switcher-mobile { | |
| 2482 | - color: var(--e-a-color-primary-bold); | |
| 2483 | -} | |
| 2484 | - | |
| 2485 | -.e-units-wrapper { | |
| 2486 | - position: relative; | |
| 2487 | - margin-inline-start: auto; | |
| 2488 | -} | |
| 2489 | -.e-units-wrapper .e-units-switcher { | |
| 2490 | - cursor: pointer; | |
| 2491 | - font-size: 10px; | |
| 2492 | - padding: 0.5em; | |
| 2493 | - margin: -0.5em 0; | |
| 2494 | - transition: all ease-in-out 0.15s; | |
| 2495 | -} | |
| 2496 | -.e-units-wrapper .e-units-switcher:hover { | |
| 2497 | - color: var(--e-a-color-primary-bold); | |
| 2498 | - background-color: var(--e-a-bg-hover); | |
| 2499 | - border-radius: var(--e-a-border-radius); | |
| 2500 | -} | |
| 2501 | -.e-units-wrapper .e-units-switcher:not([data-selected=custom]) i.eicon-edit { | |
| 2502 | - display: none; | |
| 2503 | -} | |
| 2504 | -.e-units-wrapper .e-units-switcher[data-selected=custom] span { | |
| 2505 | - display: none; | |
| 2506 | -} | |
| 2507 | -.e-units-wrapper .e-units-switcher i.eicon-angle-right { | |
| 2508 | - transform: rotate(90deg); | |
| 2509 | -} | |
| 2510 | - | |
| 2511 | -.e-units-choices input { | |
| 2512 | - display: none; | |
| 2513 | -} | |
| 2514 | -.e-units-choices input:checked + label { | |
| 2515 | - color: var(--e-a-color-primary-bold); | |
| 2516 | -} | |
| 2517 | -.e-units-choices label { | |
| 2518 | - cursor: pointer; | |
| 2519 | - display: block; | |
| 2520 | -} | |
| 2521 | -.e-units-choices { | |
| 2522 | - display: none; | |
| 2311 | +.elementor-control-type-dimensions .elementor-control-dimensions { | |
| 2523 | 2312 | overflow: hidden; |
| 2524 | - max-height: 0; | |
| 2525 | - position: absolute; | |
| 2526 | - inset-block-start: -0.8em; | |
| 2527 | - inset-inline-start: -0.5em; | |
| 2528 | - width: 2.5em; | |
| 2529 | - text-align: center; | |
| 2530 | - background-color: var(--e-a-bg-default); | |
| 2531 | - border-radius: var(--e-a-border-radius); | |
| 2532 | - box-shadow: var(--e-a-dropdown-shadow); | |
| 2533 | - animation-timing-function: linear; | |
| 2534 | - animation-delay: 0s; | |
| 2535 | - animation-fill-mode: forwards; | |
| 2536 | - z-index: 11000; | |
| 2537 | 2313 | } |
| 2538 | -.e-units-choices .elementor-units-choices-label { | |
| 2539 | - display: flex; | |
| 2540 | - align-items: center; | |
| 2541 | - height: 3em; | |
| 2542 | - justify-content: center; | |
| 2543 | - font-size: 10px; | |
| 2544 | - transition: 0.15s; | |
| 2545 | -} | |
| 2546 | -.e-units-choices .elementor-units-choices-label:hover { | |
| 2547 | - color: var(--e-a-color-primary-bold); | |
| 2548 | -} | |
| 2549 | -.e-units-choices.e-units-choices-open { | |
| 2550 | - display: block; | |
| 2551 | - animation-duration: 1s; | |
| 2552 | - animation-name: e-units-choices-open; | |
| 2553 | -} | |
| 2554 | - | |
| 2555 | -.e-units-custom input { | |
| 2556 | - font-family: monospace; | |
| 2557 | - font-size: 0.85em; | |
| 2558 | -} | |
| 2559 | - | |
| 2560 | -@keyframes e-units-choices-open { | |
| 2561 | - from { | |
| 2562 | - max-height: 0; | |
| 2563 | - } | |
| 2564 | - to { | |
| 2565 | - max-height: 100vh; | |
| 2566 | - } | |
| 2567 | -} | |
| 2568 | -.elementor-control-type-dimensions .elementor-control-dimensions { | |
| 2569 | - display: flex; | |
| 2570 | -} | |
| 2571 | 2314 | .elementor-control-type-dimensions li { |
| 2572 | - flex: 1; | |
| 2573 | - transition: flex-grow 0.3s ease-in-out; | |
| 2315 | + float: left; | |
| 2316 | + width: 20%; | |
| 2574 | 2317 | } |
| 2575 | 2318 | .elementor-control-type-dimensions li input, |
| 2576 | 2319 | .elementor-control-type-dimensions li .elementor-link-dimensions { |
| 2577 | 2320 | display: block; |
| @@ -2576,361 +2319,79 @@ | ||
| 2576 | 2319 | .elementor-control-type-dimensions li .elementor-link-dimensions { |
| 2577 | 2320 | display: block; |
| 2578 | 2321 | text-align: center; |
| 2579 | 2322 | width: 100%; |
| 2323 | + border-color: #d5dadf; | |
| 2580 | 2324 | height: 27px; |
| 2581 | 2325 | } |
| 2582 | 2326 | .elementor-control-type-dimensions li input { |
| 2583 | - border-inline-start: none; | |
| 2327 | + border-left: none; | |
| 2584 | 2328 | border-radius: 0; |
| 2585 | - padding: var(--e-a-border-radius); | |
| 2329 | + padding: 4px 0; | |
| 2586 | 2330 | } |
| 2587 | 2331 | .elementor-control-type-dimensions li input:focus { |
| 2588 | - border-inline-start: var(--e-a-border-bold); | |
| 2589 | - margin-inline-start: -1px; | |
| 2332 | + border-left: solid 1px; | |
| 2333 | + border-color: #a4afb7; | |
| 2334 | + margin-left: -1px; | |
| 2590 | 2335 | width: calc(100% + 1px); |
| 2591 | 2336 | } |
| 2592 | 2337 | .elementor-control-type-dimensions li input:focus + .elementor-control-dimension-label { |
| 2593 | - color: var(--e-a-color-txt); | |
| 2338 | + color: #a4afb7; | |
| 2594 | 2339 | } |
| 2595 | 2340 | .elementor-control-type-dimensions li .elementor-link-dimensions { |
| 2596 | - border: var(--e-a-border-bold); | |
| 2597 | - border-inline-start: none; | |
| 2598 | - background-color: var(--e-a-bg-default); | |
| 2341 | + border: 1px solid #d5dadf; | |
| 2342 | + border-left: none; | |
| 2343 | + background-color: #fff; | |
| 2599 | 2344 | padding: 0; |
| 2600 | 2345 | outline: none; |
| 2601 | - border-start-start-radius: 0; | |
| 2602 | - border-start-end-radius: var(--e-a-border-radius); | |
| 2603 | - border-end-start-radius: 0; | |
| 2604 | - border-end-end-radius: var(--e-a-border-radius); | |
| 2346 | + border-radius: 0 3px 3px 0; | |
| 2605 | 2347 | cursor: pointer; |
| 2606 | 2348 | } |
| 2607 | 2349 | .elementor-control-type-dimensions li:first-child input { |
| 2608 | - border-inline-start: 1px solid var(--e-a-border-color-bold); | |
| 2609 | - border-start-start-radius: var(--e-a-border-radius); | |
| 2610 | - border-start-end-radius: 0; | |
| 2611 | - border-end-start-radius: var(--e-a-border-radius); | |
| 2612 | - border-end-end-radius: 0; | |
| 2350 | + border-left: 1px solid #d5dadf; | |
| 2351 | + border-radius: 3px 0 0 3px; | |
| 2613 | 2352 | } |
| 2614 | 2353 | .elementor-control-type-dimensions li:first-child input:focus { |
| 2615 | - border-color: var(--e-a-border-color-focus); | |
| 2616 | - margin-inline-start: 0; | |
| 2354 | + border-color: #a4afb7; | |
| 2355 | + margin-left: 0; | |
| 2617 | 2356 | width: 100%; |
| 2618 | 2357 | } |
| 2619 | -.elementor-control-type-dimensions li:last-child { | |
| 2620 | - max-width: 27px; | |
| 2621 | -} | |
| 2622 | -.elementor-control-type-dimensions.e-units-custom li.elementor-control-dimension:focus-within { | |
| 2623 | - flex: 2.5; | |
| 2624 | -} | |
| 2625 | 2358 | .elementor-control-type-dimensions .elementor-control-dimension-label { |
| 2626 | - color: var(--e-a-color-txt-muted); | |
| 2627 | 2359 | display: block; |
| 2628 | 2360 | text-align: center; |
| 2361 | + color: #d5dadf; | |
| 2629 | 2362 | font-size: 9px; |
| 2630 | - padding-block-start: 5px; | |
| 2363 | + text-transform: uppercase; | |
| 2364 | + padding-top: 5px; | |
| 2631 | 2365 | } |
| 2632 | 2366 | .elementor-control-type-dimensions .elementor-link-dimensions.unlinked { |
| 2633 | - background-color: var(--e-a-bg-default); | |
| 2367 | + background-color: #fff; | |
| 2634 | 2368 | } |
| 2635 | 2369 | .elementor-control-type-dimensions .elementor-link-dimensions.unlinked .elementor-linked { |
| 2636 | 2370 | display: none; |
| 2637 | 2371 | } |
| 2638 | 2372 | .elementor-control-type-dimensions .elementor-link-dimensions:not(.unlinked) { |
| 2639 | - background-color: var(--e-a-bg-active-bold); | |
| 2640 | - color: var(--e-a-color-txt-accent); | |
| 2641 | - border-color: var(--e-a-border-color-bold); | |
| 2373 | + background-color: #a4afb7; | |
| 2374 | + border-color: #a4afb7; | |
| 2642 | 2375 | } |
| 2643 | 2376 | .elementor-control-type-dimensions .elementor-link-dimensions:not(.unlinked) .elementor-unlinked { |
| 2644 | 2377 | display: none; |
| 2645 | 2378 | } |
| 2646 | - | |
| 2647 | -.elementor-control-responsive-switchers { | |
| 2648 | - --selected-option: 0; | |
| 2649 | - --pointer-position: var(--selected-option); | |
| 2650 | - position: relative; | |
| 2651 | - width: 2.5em; | |
| 2652 | - height: 2.5em; | |
| 2653 | - margin: calc(-2.5em + 12px) 0; | |
| 2654 | - margin-inline-end: 5px; | |
| 2379 | +.elementor-control-type-dimensions .elementor-link-dimensions .elementor-linked { | |
| 2380 | + color: #fff; | |
| 2655 | 2381 | } |
| 2656 | -.elementor-control-responsive-switchers__holder { | |
| 2657 | - position: absolute; | |
| 2658 | - width: 100%; | |
| 2659 | - inset-block-start: 0; | |
| 2660 | - background-color: var(--e-a-bg-default); | |
| 2661 | - border-radius: var(--e-a-border-radius); | |
| 2662 | - transition: 0.15s; | |
| 2663 | - border: 1px solid transparent; | |
| 2664 | -} | |
| 2665 | -.elementor-control-responsive-switchers.elementor-responsive-switchers-open { | |
| 2666 | - z-index: 11000; | |
| 2667 | -} | |
| 2668 | -.elementor-control-responsive-switchers.elementor-responsive-switchers-open .elementor-responsive-switcher { | |
| 2669 | - height: 2.5em; | |
| 2670 | - transform: scale(1); | |
| 2671 | - opacity: 1; | |
| 2672 | -} | |
| 2673 | -.elementor-control-responsive-switchers.elementor-responsive-switchers-open .elementor-responsive-switcher:hover { | |
| 2674 | - color: var(--e-a-color-primary-bold); | |
| 2675 | -} | |
| 2676 | -.elementor-control-responsive-switchers.elementor-responsive-switchers-open .elementor-control-responsive-switchers__holder { | |
| 2677 | - box-shadow: var(--e-a-dropdown-shadow); | |
| 2678 | -} | |
| 2679 | 2382 | |
| 2680 | -.elementor-responsive-switcher { | |
| 2681 | - all: unset; | |
| 2682 | - display: flex; | |
| 2683 | - align-items: center; | |
| 2684 | - justify-content: center; | |
| 2685 | - position: relative; | |
| 2686 | - z-index: 2; | |
| 2687 | - cursor: pointer; | |
| 2688 | - height: 0; | |
| 2689 | - width: 100%; | |
| 2690 | - transform: scale(0); | |
| 2691 | - opacity: 0; | |
| 2692 | - transition: 0.15s; | |
| 2693 | - font-size: 12px; | |
| 2694 | - color: inherit; | |
| 2695 | -} | |
| 2696 | -.elementor-responsive-switcher:hover { | |
| 2697 | - color: var(--e-a-color-primary-bold); | |
| 2698 | -} | |
| 2699 | - | |
| 2700 | -.elementor-device-widescreen .elementor-responsive-switcher.elementor-responsive-switcher-widescreen { | |
| 2701 | - height: 2.5em; | |
| 2702 | - transform: scale(1); | |
| 2703 | - opacity: 1; | |
| 2704 | -} | |
| 2705 | -.elementor-device-widescreen .elementor-responsive-switchers-open:not(:hover) .elementor-responsive-switcher.elementor-responsive-switcher-widescreen { | |
| 2706 | - color: var(--e-a-color-primary-bold); | |
| 2707 | -} | |
| 2708 | - | |
| 2709 | -.elementor-device-desktop .elementor-responsive-switcher.elementor-responsive-switcher-desktop { | |
| 2710 | - height: 2.5em; | |
| 2711 | - transform: scale(1); | |
| 2712 | - opacity: 1; | |
| 2713 | -} | |
| 2714 | -.elementor-device-desktop .elementor-responsive-switchers-open:not(:hover) .elementor-responsive-switcher.elementor-responsive-switcher-desktop { | |
| 2715 | - color: var(--e-a-color-primary-bold); | |
| 2716 | -} | |
| 2717 | - | |
| 2718 | -.elementor-device-laptop .elementor-responsive-switcher.elementor-responsive-switcher-laptop { | |
| 2719 | - height: 2.5em; | |
| 2720 | - transform: scale(1); | |
| 2721 | - opacity: 1; | |
| 2722 | -} | |
| 2723 | -.elementor-device-laptop .elementor-responsive-switchers-open:not(:hover) .elementor-responsive-switcher.elementor-responsive-switcher-laptop { | |
| 2724 | - color: var(--e-a-color-primary-bold); | |
| 2725 | -} | |
| 2726 | - | |
| 2727 | -.elementor-device-tablet_extra .elementor-responsive-switcher.elementor-responsive-switcher-tablet_extra { | |
| 2728 | - height: 2.5em; | |
| 2729 | - transform: scale(1); | |
| 2730 | - opacity: 1; | |
| 2731 | -} | |
| 2732 | -.elementor-device-tablet_extra .elementor-responsive-switchers-open:not(:hover) .elementor-responsive-switcher.elementor-responsive-switcher-tablet_extra { | |
| 2733 | - color: var(--e-a-color-primary-bold); | |
| 2734 | -} | |
| 2735 | - | |
| 2736 | -.elementor-device-tablet .elementor-responsive-switcher.elementor-responsive-switcher-tablet { | |
| 2737 | - height: 2.5em; | |
| 2738 | - transform: scale(1); | |
| 2739 | - opacity: 1; | |
| 2740 | -} | |
| 2741 | -.elementor-device-tablet .elementor-responsive-switchers-open:not(:hover) .elementor-responsive-switcher.elementor-responsive-switcher-tablet { | |
| 2742 | - color: var(--e-a-color-primary-bold); | |
| 2743 | -} | |
| 2744 | - | |
| 2745 | -.elementor-device-mobile_extra .elementor-responsive-switcher.elementor-responsive-switcher-mobile_extra { | |
| 2746 | - height: 2.5em; | |
| 2747 | - transform: scale(1); | |
| 2748 | - opacity: 1; | |
| 2749 | -} | |
| 2750 | -.elementor-device-mobile_extra .elementor-responsive-switchers-open:not(:hover) .elementor-responsive-switcher.elementor-responsive-switcher-mobile_extra { | |
| 2751 | - color: var(--e-a-color-primary-bold); | |
| 2752 | -} | |
| 2753 | - | |
| 2754 | -.elementor-device-mobile .elementor-responsive-switcher.elementor-responsive-switcher-mobile { | |
| 2755 | - height: 2.5em; | |
| 2756 | - transform: scale(1); | |
| 2757 | - opacity: 1; | |
| 2758 | -} | |
| 2759 | -.elementor-device-mobile .elementor-responsive-switchers-open:not(:hover) .elementor-responsive-switcher.elementor-responsive-switcher-mobile { | |
| 2760 | - color: var(--e-a-color-primary-bold); | |
| 2761 | -} | |
| 2762 | - | |
| 2763 | -.e-units-wrapper { | |
| 2764 | - position: relative; | |
| 2765 | - margin-inline-start: auto; | |
| 2766 | -} | |
| 2767 | -.e-units-wrapper .e-units-switcher { | |
| 2768 | - cursor: pointer; | |
| 2769 | - font-size: 10px; | |
| 2770 | - padding: 0.5em; | |
| 2771 | - margin: -0.5em 0; | |
| 2772 | - transition: all ease-in-out 0.15s; | |
| 2773 | -} | |
| 2774 | -.e-units-wrapper .e-units-switcher:hover { | |
| 2775 | - color: var(--e-a-color-primary-bold); | |
| 2776 | - background-color: var(--e-a-bg-hover); | |
| 2777 | - border-radius: var(--e-a-border-radius); | |
| 2778 | -} | |
| 2779 | -.e-units-wrapper .e-units-switcher:not([data-selected=custom]) i.eicon-edit { | |
| 2780 | - display: none; | |
| 2781 | -} | |
| 2782 | -.e-units-wrapper .e-units-switcher[data-selected=custom] span { | |
| 2783 | - display: none; | |
| 2784 | -} | |
| 2785 | -.e-units-wrapper .e-units-switcher i.eicon-angle-right { | |
| 2786 | - transform: rotate(90deg); | |
| 2787 | -} | |
| 2788 | - | |
| 2789 | -.e-units-choices input { | |
| 2790 | - display: none; | |
| 2791 | -} | |
| 2792 | -.e-units-choices input:checked + label { | |
| 2793 | - color: var(--e-a-color-primary-bold); | |
| 2794 | -} | |
| 2795 | -.e-units-choices label { | |
| 2796 | - cursor: pointer; | |
| 2797 | - display: block; | |
| 2798 | -} | |
| 2799 | -.e-units-choices { | |
| 2800 | - display: none; | |
| 2801 | - overflow: hidden; | |
| 2802 | - max-height: 0; | |
| 2803 | - position: absolute; | |
| 2804 | - inset-block-start: -0.8em; | |
| 2805 | - inset-inline-start: -0.5em; | |
| 2806 | - width: 2.5em; | |
| 2807 | - text-align: center; | |
| 2808 | - background-color: var(--e-a-bg-default); | |
| 2809 | - border-radius: var(--e-a-border-radius); | |
| 2810 | - box-shadow: var(--e-a-dropdown-shadow); | |
| 2811 | - animation-timing-function: linear; | |
| 2812 | - animation-delay: 0s; | |
| 2813 | - animation-fill-mode: forwards; | |
| 2814 | - z-index: 11000; | |
| 2815 | -} | |
| 2816 | -.e-units-choices .elementor-units-choices-label { | |
| 2817 | - display: flex; | |
| 2818 | - align-items: center; | |
| 2819 | - height: 3em; | |
| 2820 | - justify-content: center; | |
| 2821 | - font-size: 10px; | |
| 2822 | - transition: 0.15s; | |
| 2823 | -} | |
| 2824 | -.e-units-choices .elementor-units-choices-label:hover { | |
| 2825 | - color: var(--e-a-color-primary-bold); | |
| 2826 | -} | |
| 2827 | -.e-units-choices.e-units-choices-open { | |
| 2828 | - display: block; | |
| 2829 | - animation-duration: 1s; | |
| 2830 | - animation-name: e-units-choices-open; | |
| 2831 | -} | |
| 2832 | - | |
| 2833 | -.e-units-custom input { | |
| 2834 | - font-family: monospace; | |
| 2835 | - font-size: 0.85em; | |
| 2836 | -} | |
| 2837 | - | |
| 2838 | -@keyframes e-units-choices-open { | |
| 2839 | - from { | |
| 2840 | - max-height: 0; | |
| 2841 | - } | |
| 2842 | - to { | |
| 2843 | - max-height: 100vh; | |
| 2844 | - } | |
| 2845 | -} | |
| 2846 | -.elementor-control-type-gaps .elementor-control-gaps { | |
| 2847 | - display: flex; | |
| 2848 | -} | |
| 2849 | -.elementor-control-type-gaps li { | |
| 2850 | - flex: 1; | |
| 2851 | - transition: flex-grow 0.3s ease-in-out; | |
| 2852 | -} | |
| 2853 | -.elementor-control-type-gaps li input, | |
| 2854 | -.elementor-control-type-gaps li .elementor-link-gaps { | |
| 2855 | - display: block; | |
| 2856 | - text-align: center; | |
| 2857 | - width: 100%; | |
| 2858 | - height: 27px; | |
| 2859 | -} | |
| 2860 | -.elementor-control-type-gaps li input { | |
| 2861 | - border-inline-start: none; | |
| 2862 | - border-radius: 0; | |
| 2863 | - padding: var(--e-a-border-radius); | |
| 2864 | -} | |
| 2865 | -.elementor-control-type-gaps li input:focus { | |
| 2866 | - border-inline-start: var(--e-a-border-bold); | |
| 2867 | - margin-inline-start: -1px; | |
| 2868 | - width: calc(100% + 1px); | |
| 2869 | -} | |
| 2870 | -.elementor-control-type-gaps li input:focus + .elementor-control-gap-label { | |
| 2871 | - color: var(--e-a-color-txt); | |
| 2872 | -} | |
| 2873 | -.elementor-control-type-gaps li .elementor-link-gaps { | |
| 2874 | - border: var(--e-a-border-bold); | |
| 2875 | - border-inline-start: none; | |
| 2876 | - background-color: var(--e-a-bg-default); | |
| 2877 | - padding: 0; | |
| 2878 | - outline: none; | |
| 2879 | - border-start-start-radius: 0; | |
| 2880 | - border-start-end-radius: var(--e-a-border-radius); | |
| 2881 | - border-end-start-radius: 0; | |
| 2882 | - border-end-end-radius: var(--e-a-border-radius); | |
| 2883 | - cursor: pointer; | |
| 2884 | -} | |
| 2885 | -.elementor-control-type-gaps li:first-child input { | |
| 2886 | - border-inline-start: 1px solid var(--e-a-border-color-bold); | |
| 2887 | - border-start-start-radius: var(--e-a-border-radius); | |
| 2888 | - border-start-end-radius: 0; | |
| 2889 | - border-end-start-radius: var(--e-a-border-radius); | |
| 2890 | - border-end-end-radius: 0; | |
| 2891 | -} | |
| 2892 | -.elementor-control-type-gaps li:first-child input:focus { | |
| 2893 | - border-color: var(--e-a-border-color-focus); | |
| 2894 | - margin-inline-start: 0; | |
| 2895 | - width: 100%; | |
| 2896 | -} | |
| 2897 | -.elementor-control-type-gaps li:last-child { | |
| 2898 | - max-width: 27px; | |
| 2899 | -} | |
| 2900 | -.elementor-control-type-gaps.e-units-custom li.elementor-control-gap:focus-within { | |
| 2901 | - flex: 2.5; | |
| 2902 | -} | |
| 2903 | -.elementor-control-type-gaps .elementor-control-gap-label { | |
| 2904 | - color: var(--e-a-color-txt-muted); | |
| 2905 | - display: block; | |
| 2906 | - text-align: center; | |
| 2907 | - font-size: 9px; | |
| 2908 | - padding-block-start: 5px; | |
| 2909 | -} | |
| 2910 | -.elementor-control-type-gaps .elementor-link-gaps.unlinked { | |
| 2911 | - background-color: var(--e-a-bg-default); | |
| 2912 | -} | |
| 2913 | -.elementor-control-type-gaps .elementor-link-gaps.unlinked .elementor-linked { | |
| 2914 | - display: none; | |
| 2915 | -} | |
| 2916 | -.elementor-control-type-gaps .elementor-link-gaps:not(.unlinked) { | |
| 2917 | - background-color: var(--e-a-bg-active-bold); | |
| 2918 | - color: var(--e-a-color-txt-accent); | |
| 2919 | - border-color: var(--e-a-border-color-bold); | |
| 2920 | -} | |
| 2921 | -.elementor-control-type-gaps .elementor-link-gaps:not(.unlinked) .elementor-unlinked { | |
| 2922 | - display: none; | |
| 2923 | -} | |
| 2924 | - | |
| 2925 | 2383 | .elementor-control-type-icons .elementor-control-media__preview > * { |
| 2926 | 2384 | position: absolute; |
| 2927 | - inset-block-start: 50%; | |
| 2928 | - inset-inline-start: 50%; | |
| 2929 | - transform: translate(calc(-50% * var(--direction-multiplier)), -50%); | |
| 2385 | + top: 50%; | |
| 2386 | + left: 50%; | |
| 2387 | + -webkit-transform: translate(-50%, -50%); | |
| 2388 | + -ms-transform: translate(-50%, -50%); | |
| 2389 | + transform: translate(-50%, -50%); | |
| 2930 | 2390 | } |
| 2931 | 2391 | .elementor-control-type-icons .elementor-control-media__preview i { |
| 2932 | 2392 | font-size: 70px; |
| 2393 | + color: #6d7882; | |
| 2933 | 2394 | } |
| 2934 | 2395 | .elementor-control-type-icons .elementor-control-media__preview svg { |
| 2935 | 2396 | height: 75%; |
| 2936 | 2397 | } |
| @@ -2938,29 +2399,40 @@ | ||
| 2938 | 2399 | font-size: 15px; |
| 2939 | 2400 | } |
| 2940 | 2401 | |
| 2941 | 2402 | .elementor-control-type-gallery .elementor-control-media__content { |
| 2942 | - border: var(--e-a-border-bold); | |
| 2403 | + border: 1px solid #d5dadf; | |
| 2943 | 2404 | border-radius: 3px; |
| 2944 | 2405 | } |
| 2945 | 2406 | .elementor-control-type-gallery .elementor-control-gallery-status { |
| 2946 | 2407 | font-size: 12px; |
| 2947 | 2408 | height: 27px; |
| 2948 | - padding-inline-start: 10px; | |
| 2949 | - border-block-end: var(--e-a-border-bold); | |
| 2409 | + padding-left: 10px; | |
| 2410 | + border-bottom: 1px solid #d5dadf; | |
| 2411 | + display: -webkit-box; | |
| 2412 | + display: -ms-flexbox; | |
| 2950 | 2413 | display: flex; |
| 2951 | 2414 | } |
| 2952 | 2415 | .elementor-control-type-gallery .elementor-control-gallery-status > * { |
| 2416 | + display: -webkit-box; | |
| 2417 | + display: -ms-flexbox; | |
| 2953 | 2418 | display: flex; |
| 2954 | - align-items: center; | |
| 2419 | + -webkit-box-align: center; | |
| 2420 | + -ms-flex-align: center; | |
| 2421 | + align-items: center; | |
| 2955 | 2422 | } |
| 2956 | 2423 | .elementor-control-type-gallery .elementor-control-gallery-status-title { |
| 2957 | - flex-grow: 1; | |
| 2424 | + -webkit-box-flex: 1; | |
| 2425 | + -ms-flex-positive: 1; | |
| 2426 | + flex-grow: 1; | |
| 2958 | 2427 | } |
| 2959 | 2428 | .elementor-control-type-gallery .elementor-control-gallery-content { |
| 2960 | 2429 | position: relative; |
| 2961 | 2430 | overflow: hidden; |
| 2962 | 2431 | } |
| 2432 | +.elementor-control-type-gallery .elementor-control-gallery-content:not(:hover) .elementor-control-gallery-edit { | |
| 2433 | + opacity: 0; | |
| 2434 | +} | |
| 2963 | 2435 | .elementor-control-type-gallery .elementor-control-gallery-thumbnails { |
| 2964 | 2436 | display: grid; |
| 2965 | 2437 | grid-template-columns: repeat(auto-fill, minmax(48px, 1fr)); |
| 2966 | 2438 | grid-gap: 10px; |
| @@ -2966,58 +2438,60 @@ | ||
| 2966 | 2438 | grid-gap: 10px; |
| 2967 | 2439 | cursor: pointer; |
| 2968 | 2440 | padding: 10px; |
| 2969 | 2441 | } |
| 2970 | -.elementor-control-type-gallery .elementor-control-gallery-thumbnails:hover + .elementor-control-gallery-edit, .elementor-control-type-gallery .elementor-control-gallery-thumbnails:focus + .elementor-control-gallery-edit { | |
| 2971 | - opacity: 1; | |
| 2972 | -} | |
| 2973 | 2442 | .elementor-control-type-gallery .elementor-control-gallery-thumbnail { |
| 2974 | 2443 | width: 48px; |
| 2975 | 2444 | height: 48px; |
| 2976 | - -o-object-fit: cover; | |
| 2977 | - object-fit: cover; | |
| 2978 | - border: var(--e-a-border); | |
| 2445 | + background-size: cover; | |
| 2446 | + background-position: 50% 50%; | |
| 2979 | 2447 | } |
| 2980 | -.elementor-control-type-gallery .elementor-control-gallery-thumbnail + .unoptimized__image { | |
| 2981 | - outline: 2px solid var(--e-a-btn-bg-danger-active); | |
| 2982 | - opacity: 0.6; | |
| 2983 | -} | |
| 2984 | 2448 | .elementor-control-type-gallery .elementor-control-gallery-edit { |
| 2985 | 2449 | position: absolute; |
| 2986 | - inset: 0; | |
| 2987 | - background-color: rgba(0, 0, 0, 0.2); | |
| 2450 | + top: 0; | |
| 2451 | + bottom: 0; | |
| 2452 | + left: 0; | |
| 2453 | + right: 0; | |
| 2454 | + background-color: rgba(109, 120, 130, 0.3); | |
| 2988 | 2455 | padding: 10px; |
| 2989 | 2456 | font-size: 11px; |
| 2457 | + -webkit-transition: all 0.3s ease-in-out; | |
| 2458 | + -o-transition: all 0.3s ease-in-out; | |
| 2990 | 2459 | transition: all 0.3s ease-in-out; |
| 2991 | 2460 | pointer-events: none; |
| 2992 | 2461 | cursor: pointer; |
| 2993 | - opacity: 0; | |
| 2462 | + opacity: 1; | |
| 2994 | 2463 | } |
| 2995 | 2464 | .elementor-control-type-gallery .elementor-control-gallery-edit span { |
| 2996 | 2465 | position: absolute; |
| 2997 | - inset-block-start: 10px; | |
| 2998 | - inset-inline-end: 10px; | |
| 2466 | + top: 10px; | |
| 2467 | + right: 10px; | |
| 2999 | 2468 | width: 21px; |
| 3000 | 2469 | height: 21px; |
| 3001 | - color: var(--e-a-color-white); | |
| 3002 | - background-color: rgba(0, 0, 0, 0.5); | |
| 3003 | - box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.2); | |
| 3004 | - transition: var(--e-a-transition-hover); | |
| 2470 | + background-color: rgba(255, 255, 255, 0.9); | |
| 2471 | + color: #a4afb7; | |
| 2472 | + -webkit-box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.2); | |
| 2473 | + box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.2); | |
| 2474 | + border-radius: 3px; | |
| 3005 | 2475 | } |
| 3006 | 2476 | .elementor-control-type-gallery .elementor-control-gallery-edit span i { |
| 3007 | 2477 | font-size: 11px; |
| 3008 | 2478 | padding: 5px; |
| 3009 | 2479 | } |
| 3010 | -.elementor-control-type-gallery .elementor-control-gallery-edit span:hover { | |
| 3011 | - background-color: rgba(0, 0, 0, 0.6); | |
| 3012 | -} | |
| 3013 | 2480 | .elementor-control-type-gallery .elementor-control-gallery-add { |
| 3014 | 2481 | width: 48px; |
| 3015 | 2482 | height: 48px; |
| 2483 | + color: #fff; | |
| 2484 | + background-color: #d5dadf; | |
| 3016 | 2485 | font-size: 14px; |
| 2486 | + border-radius: 0; | |
| 3017 | 2487 | } |
| 2488 | +.elementor-control-type-gallery .elementor-control-gallery-add:hover { | |
| 2489 | + background-color: #c2cbd2; | |
| 2490 | +} | |
| 3018 | 2491 | .elementor-control-type-gallery .elementor-control-gallery-add i { |
| 3019 | 2492 | margin: 0; |
| 2493 | + color: #a4afb7; | |
| 3020 | 2494 | } |
| 3021 | 2495 | .elementor-control-type-gallery.elementor-gallery-empty .elementor-control-gallery-clear, |
| 3022 | 2496 | .elementor-control-type-gallery.elementor-gallery-empty .elementor-control-gallery-thumbnails, |
| 3023 | 2497 | .elementor-control-type-gallery.elementor-gallery-empty .elementor-control-gallery-edit { |
| @@ -3029,25 +2503,24 @@ | ||
| 3029 | 2503 | .elementor-control-type-gallery.elementor-gallery-has-images .elementor-control-gallery-add { |
| 3030 | 2504 | display: none; |
| 3031 | 2505 | } |
| 3032 | 2506 | .elementor-control-type-gallery.elementor-control-dynamic .elementor-control-gallery-clear { |
| 3033 | - border-inline-start: var(--e-a-border); | |
| 2507 | + border-left: 1px solid #d5dadf; | |
| 3034 | 2508 | } |
| 3035 | 2509 | .elementor-control-type-gallery .elementor-control-gallery-clear { |
| 3036 | - color: currentColor; | |
| 3037 | - background-color: transparent; | |
| 3038 | - border: none; | |
| 3039 | 2510 | cursor: pointer; |
| 3040 | - justify-content: center; | |
| 2511 | + -webkit-box-pack: center; | |
| 2512 | + -ms-flex-pack: center; | |
| 2513 | + justify-content: center; | |
| 3041 | 2514 | } |
| 3042 | -.elementor-control-type-gallery .elementor-control-gallery-clear:hover, .elementor-control-type-gallery .elementor-control-gallery-clear:focus { | |
| 3043 | - color: var(--e-a-color-danger); | |
| 2515 | +.elementor-control-type-gallery .elementor-control-gallery-clear:hover { | |
| 2516 | + color: #b01b1b; | |
| 3044 | 2517 | } |
| 3045 | 2518 | .elementor-control-type-gallery .elementor-control-dynamic-switcher { |
| 3046 | - border-width: 0; | |
| 3047 | - border-inline-start-width: 1px; | |
| 3048 | - border-block-end-width: 1px; | |
| 3049 | - border-radius: 0; | |
| 2519 | + border: none; | |
| 2520 | + border-bottom: 1px solid #d5dadf; | |
| 2521 | + border-left: 1px solid #d5dadf; | |
| 2522 | + border-radius: 0 3px 0 0; | |
| 3050 | 2523 | } |
| 3051 | 2524 | |
| 3052 | 2525 | .e-global__popover { |
| 3053 | 2526 | width: 288px; |
| @@ -3052,49 +2525,55 @@ | ||
| 3052 | 2525 | .e-global__popover { |
| 3053 | 2526 | width: 288px; |
| 3054 | 2527 | z-index: 1; |
| 3055 | 2528 | font-size: 12px; |
| 3056 | - padding-inline-start: 10px; | |
| 2529 | + padding-left: 10px; | |
| 3057 | 2530 | } |
| 3058 | 2531 | .e-global__popover-toggle { |
| 3059 | - border: var(--e-a-border-bold); | |
| 3060 | - border-inline-end: 0; | |
| 3061 | - border-start-start-radius: 3px; | |
| 3062 | - border-start-end-radius: 0; | |
| 3063 | - border-end-start-radius: 3px; | |
| 3064 | - border-end-end-radius: 0; | |
| 2532 | + border: 1px solid #d5dadf; | |
| 2533 | + border-right: 0; | |
| 2534 | + border-radius: 3px 0 0 3px; | |
| 2535 | + display: -webkit-box; | |
| 2536 | + display: -ms-flexbox; | |
| 3065 | 2537 | display: flex; |
| 3066 | - align-items: center; | |
| 3067 | - justify-content: center; | |
| 2538 | + -webkit-box-align: center; | |
| 2539 | + -ms-flex-align: center; | |
| 2540 | + align-items: center; | |
| 2541 | + -webkit-box-pack: center; | |
| 2542 | + -ms-flex-pack: center; | |
| 2543 | + justify-content: center; | |
| 3068 | 2544 | cursor: pointer; |
| 3069 | - transition: var(--e-a-transition-hover); | |
| 3070 | 2545 | } |
| 3071 | -.e-global__popover-toggle:hover { | |
| 3072 | - background-color: var(--e-a-bg-hover); | |
| 2546 | +.e-global__popover-toggle--active i { | |
| 2547 | + color: #71d7f7; | |
| 3073 | 2548 | } |
| 3074 | -.e-global__popover-toggle--active { | |
| 3075 | - color: var(--e-a-color-primary-bold); | |
| 3076 | - background-color: var(--e-a-bg-active-bold); | |
| 3077 | -} | |
| 3078 | 2549 | .e-global__popover-container { |
| 3079 | - box-shadow: var(--e-a-popover-shadow); | |
| 3080 | - border-radius: var(--e-a-border-radius); | |
| 3081 | - background-color: var(--e-a-bg-default); | |
| 2550 | + -webkit-box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3); | |
| 2551 | + box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3); | |
| 2552 | + border-radius: 3px; | |
| 2553 | + background-color: #fff; | |
| 2554 | + padding-bottom: 5px; | |
| 3082 | 2555 | } |
| 3083 | 2556 | .e-global__popover-title { |
| 3084 | 2557 | padding: 15px 20px; |
| 3085 | 2558 | font-weight: 500; |
| 3086 | - border-block-end: var(--e-a-border); | |
| 2559 | + color: #6d7882; | |
| 2560 | + border-bottom: 1px solid #e6e9ec; | |
| 2561 | + display: -webkit-box; | |
| 2562 | + display: -ms-flexbox; | |
| 3087 | 2563 | display: flex; |
| 3088 | 2564 | } |
| 3089 | 2565 | .e-global__popover-title > i { |
| 3090 | - margin-inline-end: 5px; | |
| 2566 | + margin-right: 5px; | |
| 2567 | + color: #d5dadf; | |
| 3091 | 2568 | } |
| 3092 | 2569 | .e-global__popover-title-text { |
| 3093 | - flex-grow: 1; | |
| 2570 | + -webkit-box-flex: 1; | |
| 2571 | + -ms-flex-positive: 1; | |
| 2572 | + flex-grow: 1; | |
| 3094 | 2573 | } |
| 3095 | 2574 | .e-global__popover-info { |
| 3096 | - margin-inline-end: 10px; | |
| 2575 | + margin-right: 5px; | |
| 3097 | 2576 | display: inline-block; |
| 3098 | 2577 | } |
| 3099 | 2578 | .e-global__popover-info-tooltip { |
| 3100 | 2579 | width: 270px; |
| @@ -3099,9 +2578,9 @@ | ||
| 3099 | 2578 | .e-global__popover-info-tooltip { |
| 3100 | 2579 | width: 270px; |
| 3101 | 2580 | z-index: 1; |
| 3102 | 2581 | background-color: rgba(0, 0, 0, 0.9); |
| 3103 | - color: var(--e-a-color-white); | |
| 2582 | + color: #fff; | |
| 3104 | 2583 | padding: 20px; |
| 3105 | 2584 | border-radius: 3px; |
| 3106 | 2585 | } |
| 3107 | 2586 | .e-global__popover-info-tooltip:after { |
| @@ -3106,48 +2585,44 @@ | ||
| 3106 | 2585 | } |
| 3107 | 2586 | .e-global__popover-info-tooltip:after { |
| 3108 | 2587 | content: ""; |
| 3109 | 2588 | position: absolute; |
| 3110 | - inset-block-end: -17px; | |
| 3111 | - inset-inline-start: 16px; | |
| 2589 | + bottom: -17px; | |
| 2590 | + left: 16px; | |
| 3112 | 2591 | border: 10px solid transparent; |
| 3113 | - border-block-start-color: rgba(0, 0, 0, 0.9); | |
| 2592 | + border-top-color: rgba(0, 0, 0, 0.9); | |
| 3114 | 2593 | } |
| 3115 | 2594 | .e-global__popover-info i { |
| 2595 | + color: #d5dadf; | |
| 3116 | 2596 | font-size: 13px; |
| 3117 | 2597 | } |
| 3118 | 2598 | .e-global__preview-items-container { |
| 3119 | - max-height: 400px; | |
| 2599 | + max-height: 260px; | |
| 3120 | 2600 | overflow-y: auto; |
| 3121 | - padding: 5px 0; | |
| 2601 | + margin-top: 5px; | |
| 3122 | 2602 | } |
| 3123 | 2603 | .e-global__preview-items-container::-webkit-scrollbar { |
| 3124 | 2604 | width: 7px; |
| 3125 | 2605 | } |
| 3126 | 2606 | .e-global__preview-items-container::-webkit-scrollbar-thumb { |
| 3127 | - background-color: #BABFC5; | |
| 2607 | + background-color: #c2cbd2; | |
| 3128 | 2608 | border-radius: 10px; |
| 3129 | 2609 | } |
| 3130 | -.e-global__group-header { | |
| 3131 | - padding: 12px 20px 5px; | |
| 2610 | +.e-global__manage-button { | |
| 3132 | 2611 | font-weight: 500; |
| 3133 | - font-size: 11px; | |
| 3134 | - color: var(--e-a-color-txt-muted); | |
| 2612 | + cursor: pointer; | |
| 3135 | 2613 | } |
| 3136 | -.e-global__group-divider { | |
| 3137 | - height: 1px; | |
| 3138 | - background-color: var(--e-a-border-color); | |
| 3139 | - margin: 10px 20px; | |
| 2614 | +.e-global__manage-button:hover i { | |
| 2615 | + color: #4ab7f4; | |
| 3140 | 2616 | } |
| 3141 | -.e-global__manage-button { | |
| 3142 | - font-weight: 500; | |
| 3143 | - cursor: pointer; | |
| 2617 | +.e-global__manage-button i { | |
| 2618 | + color: #6d7882; | |
| 3144 | 2619 | } |
| 3145 | 2620 | .e-global__typography { |
| 3146 | - padding-block: 10px; | |
| 3147 | - padding-inline: 35px 20px; | |
| 2621 | + padding: 5px 10px 5px 35px; | |
| 3148 | 2622 | white-space: nowrap; |
| 3149 | - text-overflow: ellipsis; | |
| 2623 | + -o-text-overflow: ellipsis; | |
| 2624 | + text-overflow: ellipsis; | |
| 3150 | 2625 | overflow: hidden; |
| 3151 | 2626 | } |
| 3152 | 2627 | .e-global__typography.e-global__preview-item--selected:before { |
| 3153 | 2628 | font-family: "eicons"; |
| @@ -3153,61 +2628,91 @@ | ||
| 3153 | 2628 | font-family: "eicons"; |
| 3154 | 2629 | font-size: 13px; |
| 3155 | 2630 | content: "\e90e"; |
| 3156 | 2631 | position: absolute; |
| 3157 | - transform: translateY(-50%); | |
| 3158 | - inset-block-start: 50%; | |
| 3159 | - inset-inline-start: 13px; | |
| 2632 | + -webkit-transform: translateY(-50%); | |
| 2633 | + -ms-transform: translateY(-50%); | |
| 2634 | + transform: translateY(-50%); | |
| 2635 | + top: 50%; | |
| 2636 | + left: 12px; | |
| 3160 | 2637 | } |
| 3161 | 2638 | .e-global__color { |
| 3162 | - padding: 10px 20px; | |
| 2639 | + margin: 5px auto; | |
| 2640 | + padding: 5px 20px; | |
| 2641 | + display: -webkit-box; | |
| 2642 | + display: -ms-flexbox; | |
| 3163 | 2643 | display: flex; |
| 3164 | - align-items: center; | |
| 2644 | + -webkit-box-align: center; | |
| 2645 | + -ms-flex-align: center; | |
| 2646 | + align-items: center; | |
| 3165 | 2647 | } |
| 2648 | +.e-global__color:first-child { | |
| 2649 | + margin-top: 5px; | |
| 2650 | +} | |
| 2651 | +.e-global__color:last-child { | |
| 2652 | + margin-bottom: 10px; | |
| 2653 | +} | |
| 3166 | 2654 | .e-global__color-preview-container { |
| 3167 | 2655 | height: 20px; |
| 3168 | 2656 | width: 20px; |
| 3169 | 2657 | border-radius: 3px; |
| 3170 | 2658 | border: 1px solid rgba(0, 0, 0, 0.1); |
| 3171 | - margin-inline-end: 10px; | |
| 3172 | - flex-shrink: 0; | |
| 2659 | + margin-right: 10px; | |
| 2660 | + -ms-flex-negative: 0; | |
| 2661 | + flex-shrink: 0; | |
| 3173 | 2662 | position: relative; |
| 3174 | 2663 | } |
| 3175 | 2664 | .e-global__color-preview-color, .e-global__color-preview-transparent-bg { |
| 3176 | 2665 | border-radius: 3px; |
| 2666 | + height: 100%; | |
| 2667 | + width: 100%; | |
| 3177 | 2668 | position: absolute; |
| 3178 | - inset: 0; | |
| 2669 | + top: 0; | |
| 2670 | + left: 0; | |
| 3179 | 2671 | } |
| 3180 | 2672 | .e-global__color-preview-transparent-bg { |
| 3181 | - background-image: linear-gradient(45deg, var(--e-a-border-color-bold) 25%, transparent 0, transparent 75%, var(--e-a-border-color-bold) 0, var(--e-a-border-color-bold)), linear-gradient(45deg, var(--e-a-border-color-bold) 25%, transparent 0, transparent 75%, var(--e-a-border-color-bold) 0, var(--e-a-border-color-bold)); | |
| 2673 | + background-image: -o-linear-gradient(45deg, #ddd 25%, transparent 0, transparent 75%, #ddd 0, #ddd), -o-linear-gradient(45deg, #ddd 25%, transparent 0, transparent 75%, #ddd 0, #ddd); | |
| 2674 | + background-image: linear-gradient(45deg, #ddd 25%, transparent 0, transparent 75%, #ddd 0, #ddd), linear-gradient(45deg, #ddd 25%, transparent 0, transparent 75%, #ddd 0, #ddd); | |
| 3182 | 2675 | background-size: 12px 12px; |
| 3183 | - background-position: 0 0, calc(12px / 2) calc(12px / 2); | |
| 2676 | + background-position: 0 0, calc( 12px / 2 ) calc( 12px / 2 ); | |
| 3184 | 2677 | } |
| 3185 | 2678 | .e-global__color-title { |
| 3186 | - flex-grow: 1; | |
| 2679 | + font-weight: 500; | |
| 2680 | + color: #6d7882; | |
| 2681 | + -webkit-box-flex: 1; | |
| 2682 | + -ms-flex-positive: 1; | |
| 2683 | + flex-grow: 1; | |
| 3187 | 2684 | white-space: nowrap; |
| 3188 | - text-overflow: ellipsis; | |
| 2685 | + -o-text-overflow: ellipsis; | |
| 2686 | + text-overflow: ellipsis; | |
| 3189 | 2687 | overflow: hidden; |
| 3190 | - padding-inline-end: 10px; | |
| 2688 | + padding-right: 10px; | |
| 3191 | 2689 | } |
| 3192 | 2690 | .e-global__color-hex { |
| 3193 | 2691 | font-size: 10px; |
| 3194 | - color: var(--e-a-color-txt-muted); | |
| 2692 | + font-weight: 500; | |
| 2693 | + color: #c2cbd2; | |
| 3195 | 2694 | } |
| 3196 | 2695 | .e-global__color .pcr-button { |
| 3197 | - background-color: var(--e-a-bg-default); | |
| 2696 | + background-color: #fff; | |
| 3198 | 2697 | } |
| 3199 | 2698 | .e-global__color.e-global__preview-item--selected .e-global__color-preview-container { |
| 2699 | + display: -webkit-box; | |
| 2700 | + display: -ms-flexbox; | |
| 3200 | 2701 | display: flex; |
| 3201 | - justify-content: center; | |
| 3202 | - align-items: center; | |
| 3203 | - color: var(--e-a-color-white); | |
| 2702 | + -webkit-box-pack: center; | |
| 2703 | + -ms-flex-pack: center; | |
| 2704 | + justify-content: center; | |
| 2705 | + -webkit-box-align: center; | |
| 2706 | + -ms-flex-align: center; | |
| 2707 | + align-items: center; | |
| 2708 | + color: #ffffff; | |
| 3204 | 2709 | } |
| 3205 | 2710 | .e-global__color.e-global__preview-item--selected .e-global__color-preview-container:before { |
| 3206 | 2711 | font-family: "eicons"; |
| 3207 | 2712 | font-size: 13px; |
| 3208 | 2713 | content: "\e90e"; |
| 3209 | - text-shadow: 0 0 1px #000; | |
| 2714 | + text-shadow: 0px 0px 1px #000; | |
| 3210 | 2715 | z-index: 1; |
| 3211 | 2716 | } |
| 3212 | 2717 | .e-global__preview-item { |
| 3213 | 2718 | cursor: pointer; |
| @@ -3213,23 +2718,37 @@ | ||
| 3213 | 2718 | cursor: pointer; |
| 3214 | 2719 | position: relative; |
| 3215 | 2720 | } |
| 3216 | 2721 | .e-global__preview-item:hover { |
| 3217 | - background-color: var(--e-a-bg-hover); | |
| 2722 | + background-color: #f1f3f5; | |
| 3218 | 2723 | } |
| 3219 | -.e-global__confirm-delete i, .e-global__confirm-message-text i { | |
| 3220 | - color: var(--e-a-color-warning); | |
| 2724 | +.e-global__preview-item:hover .e-global__color-hex { | |
| 2725 | + color: #a4afb7; | |
| 3221 | 2726 | } |
| 2727 | +.e-global__confirm-add .dialog-buttons-wrapper > .dialog-button.dialog-confirm-ok { | |
| 2728 | + color: #39b54a; | |
| 2729 | +} | |
| 2730 | +.e-global__confirm-delete i { | |
| 2731 | + color: #b01b1b; | |
| 2732 | +} | |
| 2733 | +.e-global__confirm-message-text i { | |
| 2734 | + color: #fcb92c; | |
| 2735 | +} | |
| 3222 | 2736 | .e-global__confirm-input-wrapper { |
| 2737 | + display: -webkit-box; | |
| 2738 | + display: -ms-flexbox; | |
| 3223 | 2739 | display: flex; |
| 3224 | - align-items: center; | |
| 3225 | - border: var(--e-a-border); | |
| 3226 | - border-radius: var(--e-a-border-radius); | |
| 3227 | - margin: 15px 0; | |
| 2740 | + -webkit-box-align: center; | |
| 2741 | + -ms-flex-align: center; | |
| 2742 | + align-items: center; | |
| 2743 | + border: 1px solid #a4afb7; | |
| 2744 | + border-radius: 3px; | |
| 2745 | + margin-top: 10px; | |
| 3228 | 2746 | padding: 2px; |
| 3229 | 2747 | } |
| 3230 | 2748 | .e-global__confirm-input-wrapper input { |
| 3231 | - font-family: var(--e-a-font-family); | |
| 2749 | + font-family: Roboto, Arial, sans-serif; | |
| 2750 | + font-weight: 500; | |
| 3232 | 2751 | font-size: 12px; |
| 3233 | 2752 | padding: 2px; |
| 3234 | 2753 | border: 0; |
| 3235 | 2754 | } |
| @@ -3234,20 +2753,22 @@ | ||
| 3234 | 2753 | border: 0; |
| 3235 | 2754 | } |
| 3236 | 2755 | |
| 3237 | 2756 | .e-control-global .elementor-control-input-wrapper { |
| 2757 | + display: -webkit-box; | |
| 2758 | + display: -ms-flexbox; | |
| 3238 | 2759 | display: flex; |
| 3239 | - justify-content: flex-end; | |
| 2760 | + -webkit-box-pack: end; | |
| 2761 | + -ms-flex-pack: end; | |
| 2762 | + justify-content: flex-end; | |
| 3240 | 2763 | max-width: 135px; |
| 3241 | 2764 | width: 100%; |
| 3242 | 2765 | } |
| 3243 | 2766 | .e-control-global.elementor-control .elementor-control-input-wrapper { |
| 3244 | - display: flex; | |
| 3245 | - flex-direction: row; | |
| 3246 | - align-items: stretch; | |
| 2767 | + direction: ltr; | |
| 3247 | 2768 | } |
| 3248 | 2769 | .e-control-global .elementor-control-spinner { |
| 3249 | - margin-inline-end: 4px; | |
| 2770 | + margin-right: 4px; | |
| 3250 | 2771 | } |
| 3251 | 2772 | |
| 3252 | 2773 | .elementor-control-type-hidden { |
| 3253 | 2774 | display: none !important; |
| @@ -3253,9 +2774,9 @@ | ||
| 3253 | 2774 | display: none !important; |
| 3254 | 2775 | } |
| 3255 | 2776 | |
| 3256 | 2777 | .elementor-control-type-icon .select2-selection__rendered .eicon { |
| 3257 | - margin-inline-end: 3px; | |
| 2778 | + margin-right: 3px; | |
| 3258 | 2779 | } |
| 3259 | 2780 | |
| 3260 | 2781 | .elementor-control-type-image_dimensions .elementor-control-field-description { |
| 3261 | 2782 | margin: 0 0 15px; |
| @@ -3261,52 +2782,58 @@ | ||
| 3261 | 2782 | margin: 0 0 15px; |
| 3262 | 2783 | line-height: 1.4; |
| 3263 | 2784 | } |
| 3264 | 2785 | .elementor-control-type-image_dimensions .elementor-control-input-wrapper { |
| 3265 | - display: flex; | |
| 3266 | - align-items: flex-start; | |
| 2786 | + overflow: hidden; | |
| 3267 | 2787 | } |
| 3268 | 2788 | .elementor-control-type-image_dimensions .elementor-image-dimensions-field { |
| 3269 | 2789 | width: 65px; |
| 2790 | + float: left; | |
| 3270 | 2791 | } |
| 3271 | 2792 | .elementor-control-type-image_dimensions .elementor-image-dimensions-field input:focus + .elementor-image-dimensions-field-description { |
| 3272 | - color: var(--e-a-color-txt); | |
| 2793 | + color: #a4afb7; | |
| 3273 | 2794 | } |
| 3274 | 2795 | .elementor-control-type-image_dimensions .elementor-image-dimensions-separator { |
| 3275 | 2796 | width: 20px; |
| 3276 | 2797 | text-align: center; |
| 3277 | - padding-block-start: 4px; | |
| 2798 | + float: left; | |
| 2799 | + padding-top: 4px; | |
| 3278 | 2800 | } |
| 3279 | 2801 | .elementor-control-type-image_dimensions .elementor-image-dimensions-field-description { |
| 3280 | 2802 | display: block; |
| 3281 | - margin-block-start: 5px; | |
| 3282 | - color: var(--e-a-color-txt-disabled); | |
| 3283 | - font-size: 10px; | |
| 2803 | + text-transform: uppercase; | |
| 2804 | + margin-top: 5px; | |
| 2805 | + color: #d5dadf; | |
| 2806 | + font-size: 9px; | |
| 3284 | 2807 | text-align: center; |
| 3285 | 2808 | } |
| 3286 | 2809 | .elementor-control-type-image_dimensions .elementor-image-dimensions-apply-button { |
| 3287 | - margin-inline-start: auto; | |
| 2810 | + float: right; | |
| 2811 | + height: 27px; | |
| 2812 | + width: 65px; | |
| 3288 | 2813 | } |
| 3289 | 2814 | |
| 3290 | -.elementor-control-media.e-media-empty .elementor-control-media-area .elementor-control-media__remove, .elementor-control-media.e-media-empty .elementor-control-media-area .elementor-control-media__content__remove { | |
| 2815 | +.elementor-control-media.elementor-media-empty .elementor-control-media-area .elementor-control-media__remove, .elementor-control-media.elementor-media-empty .elementor-control-media-area .elementor-control-media__content__remove { | |
| 3291 | 2816 | display: none; |
| 3292 | 2817 | } |
| 3293 | -.elementor-control-media.e-media-empty-placeholder .e-control-image-size { | |
| 2818 | +.elementor-control-media:not(.elementor-media-empty) .elementor-control-media__content__upload-button { | |
| 3294 | 2819 | display: none; |
| 3295 | 2820 | } |
| 3296 | -.elementor-control-media:not(.e-media-empty) .elementor-control-media__content__upload-button { | |
| 3297 | - display: none; | |
| 2821 | +.elementor-control-media .elementor-control-input-wrapper { | |
| 2822 | + border: 1px solid #d5dadf; | |
| 3298 | 2823 | } |
| 3299 | 2824 | .elementor-control-media .eicon-plus-circle { |
| 3300 | 2825 | position: absolute; |
| 3301 | - inset-block-start: 50%; | |
| 3302 | - inset-inline-start: 50%; | |
| 3303 | - transform: translate(calc(-50% * var(--direction-multiplier)), -50%); | |
| 3304 | - color: var(--e-a-color-white); | |
| 2826 | + top: 50%; | |
| 2827 | + left: 50%; | |
| 2828 | + -webkit-transform: translate(-50%, -50%); | |
| 2829 | + -ms-transform: translate(-50%, -50%); | |
| 2830 | + transform: translate(-50%, -50%); | |
| 2831 | + color: #fff; | |
| 3305 | 2832 | font-size: 20px; |
| 3306 | 2833 | } |
| 3307 | 2834 | .elementor-control-media__content__upload-button { |
| 3308 | - background-color: var(--e-a-bg-active-bold); | |
| 2835 | + background-color: #d5dadf; | |
| 3309 | 2836 | } |
| 3310 | 2837 | .elementor-control-media__preview { |
| 3311 | 2838 | height: 100%; |
| 3312 | 2839 | background-size: cover; |
| @@ -3312,14 +2839,13 @@ | ||
| 3312 | 2839 | background-size: cover; |
| 3313 | 2840 | background-position: center; |
| 3314 | 2841 | } |
| 3315 | 2842 | .elementor-control-media-area { |
| 3316 | - background-image: linear-gradient(45deg, var(--e-a-border-color-bold) 25%, transparent 0, transparent 75%, var(--e-a-border-color-bold) 0, var(--e-a-border-color-bold)), linear-gradient(45deg, var(--e-a-border-color-bold) 25%, transparent 0, transparent 75%, var(--e-a-border-color-bold) 0, var(--e-a-border-color-bold)); | |
| 2843 | + background-image: -o-linear-gradient(45deg, #ddd 25%, transparent 0, transparent 75%, #ddd 0, #ddd), -o-linear-gradient(45deg, #ddd 25%, transparent 0, transparent 75%, #ddd 0, #ddd); | |
| 2844 | + background-image: linear-gradient(45deg, #ddd 25%, transparent 0, transparent 75%, #ddd 0, #ddd), linear-gradient(45deg, #ddd 25%, transparent 0, transparent 75%, #ddd 0, #ddd); | |
| 3317 | 2845 | background-size: 16px 16px; |
| 3318 | - background-position: 0 0, calc(16px / 2) calc(16px / 2); | |
| 3319 | - background-color: var(--e-a-bg-default); | |
| 3320 | - border: var(--e-a-border-bold); | |
| 3321 | - aspect-ratio: 21/9; | |
| 2846 | + background-position: 0 0, calc( 16px / 2 ) calc( 16px / 2 ); | |
| 2847 | + background-color: #f6f6f6; | |
| 3322 | 2848 | } |
| 3323 | 2849 | .elementor-control-media-area:not(:hover) .elementor-control-media__remove { |
| 3324 | 2850 | display: none; |
| 3325 | 2851 | } |
| @@ -3324,17 +2850,17 @@ | ||
| 3324 | 2850 | display: none; |
| 3325 | 2851 | } |
| 3326 | 2852 | .elementor-control-media-area .eicon-video-camera { |
| 3327 | 2853 | position: absolute; |
| 3328 | - inset-block-start: 50%; | |
| 3329 | - inset-inline-start: 50%; | |
| 3330 | - transform: translate(calc(-50% * var(--direction-multiplier)), -50%); | |
| 2854 | + top: 50%; | |
| 2855 | + left: 50%; | |
| 2856 | + -webkit-transform: translate(-50%, -50%); | |
| 2857 | + -ms-transform: translate(-50%, -50%); | |
| 2858 | + transform: translate(-50%, -50%); | |
| 3331 | 2859 | color: rgba(255, 255, 255, 0.7); |
| 3332 | 2860 | font-size: 21px; |
| 3333 | 2861 | } |
| 3334 | 2862 | .elementor-control-media .elementor-control-media__content { |
| 3335 | - aspect-ratio: 21/9; | |
| 3336 | - position: relative; | |
| 3337 | 2863 | cursor: pointer; |
| 3338 | 2864 | overflow: hidden; |
| 3339 | 2865 | } |
| 3340 | 2866 | .elementor-control-media .elementor-control-media__content:hover:after { |
| @@ -3339,141 +2865,171 @@ | ||
| 3339 | 2865 | } |
| 3340 | 2866 | .elementor-control-media .elementor-control-media__content:hover:after { |
| 3341 | 2867 | content: ""; |
| 3342 | 2868 | position: absolute; |
| 3343 | - inset: 0; | |
| 2869 | + top: 0; | |
| 2870 | + bottom: 0; | |
| 2871 | + left: 0; | |
| 2872 | + right: 0; | |
| 3344 | 2873 | background-color: rgba(0, 0, 0, 0.2); |
| 3345 | 2874 | pointer-events: none; |
| 3346 | 2875 | } |
| 3347 | 2876 | .elementor-control-media .elementor-control-media__content:not(:hover) .elementor-control-media__tools { |
| 3348 | - inset-block-end: -30px; | |
| 2877 | + bottom: -30px; | |
| 3349 | 2878 | } |
| 3350 | 2879 | .elementor-control-media__content { |
| 2880 | + -webkit-transition: all 0.2s ease-in-out; | |
| 2881 | + -o-transition: all 0.2s ease-in-out; | |
| 3351 | 2882 | transition: all 0.2s ease-in-out; |
| 3352 | 2883 | } |
| 3353 | 2884 | .elementor-control-media__tools { |
| 3354 | 2885 | position: absolute; |
| 3355 | - inset-block-end: 0; | |
| 3356 | - inset-inline: 0; | |
| 2886 | + bottom: 0; | |
| 2887 | + left: 0; | |
| 2888 | + right: 0; | |
| 3357 | 2889 | height: 27px; |
| 2890 | + -webkit-transition: all 0.2s ease-in-out; | |
| 2891 | + -o-transition: all 0.2s ease-in-out; | |
| 3358 | 2892 | transition: all 0.2s ease-in-out; |
| 3359 | 2893 | } |
| 3360 | 2894 | .elementor-control-media__tools > *:not(:first-child) { |
| 3361 | - margin-inline-start: 1px; | |
| 2895 | + margin-left: 1px; | |
| 3362 | 2896 | } |
| 3363 | 2897 | .elementor-control-media__tool { |
| 2898 | + display: -webkit-box; | |
| 2899 | + display: -ms-flexbox; | |
| 3364 | 2900 | display: flex; |
| 3365 | - align-items: center; | |
| 3366 | - justify-content: center; | |
| 3367 | - flex-grow: 1; | |
| 3368 | - color: var(--e-a-color-white); | |
| 3369 | - background-color: rgba(0, 0, 0, 0.9); | |
| 2901 | + -webkit-box-align: center; | |
| 2902 | + -ms-flex-align: center; | |
| 2903 | + align-items: center; | |
| 2904 | + -webkit-box-pack: center; | |
| 2905 | + -ms-flex-pack: center; | |
| 2906 | + justify-content: center; | |
| 2907 | + -webkit-box-flex: 1; | |
| 2908 | + -ms-flex-positive: 1; | |
| 2909 | + flex-grow: 1; | |
| 2910 | + color: #fff; | |
| 2911 | + background-color: rgba(109, 120, 130, 0.85); | |
| 3370 | 2912 | font-size: 11px; |
| 3371 | - transition: var(--e-a-transition-hover); | |
| 2913 | + -webkit-transition: background 0.3s; | |
| 2914 | + -o-transition: background 0.3s; | |
| 2915 | + transition: background 0.3s; | |
| 3372 | 2916 | } |
| 3373 | 2917 | .elementor-control-media__tool:hover { |
| 3374 | - background-color: rgba(0, 0, 0, 0.8); | |
| 2918 | + background-color: rgba(109, 120, 130, 0.95); | |
| 3375 | 2919 | } |
| 3376 | 2920 | .elementor-control-media__remove { |
| 2921 | + display: -webkit-box; | |
| 2922 | + display: -ms-flexbox; | |
| 3377 | 2923 | display: flex; |
| 3378 | - align-items: center; | |
| 3379 | - justify-content: center; | |
| 2924 | + -webkit-box-align: center; | |
| 2925 | + -ms-flex-align: center; | |
| 2926 | + align-items: center; | |
| 2927 | + -webkit-box-pack: center; | |
| 2928 | + -ms-flex-pack: center; | |
| 2929 | + justify-content: center; | |
| 2930 | + -webkit-transition: all 0.3s ease-in-out; | |
| 2931 | + -o-transition: all 0.3s ease-in-out; | |
| 3380 | 2932 | transition: all 0.3s ease-in-out; |
| 3381 | 2933 | } |
| 3382 | 2934 | .elementor-control-media__content__remove { |
| 3383 | 2935 | position: absolute; |
| 3384 | 2936 | z-index: 1; |
| 3385 | - inset-block-start: 10px; | |
| 3386 | - inset-inline-end: 10px; | |
| 2937 | + top: 10px; | |
| 2938 | + right: 10px; | |
| 3387 | 2939 | width: 20px; |
| 3388 | 2940 | height: 20px; |
| 3389 | 2941 | font-size: 11px; |
| 3390 | - color: var(--e-a-color-white); | |
| 3391 | - background-color: rgba(0, 0, 0, 0.5); | |
| 3392 | - border-radius: var(--e-border-radius); | |
| 3393 | - box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.2); | |
| 3394 | - transition: var(--e-a-transition-hover); | |
| 2942 | + color: #a4afb7; | |
| 2943 | + background-color: rgba(255, 255, 255, 0.9); | |
| 2944 | + border-radius: 3px; | |
| 2945 | + -webkit-box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.1); | |
| 2946 | + box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.1); | |
| 3395 | 2947 | } |
| 3396 | 2948 | .elementor-control-media__content__remove:hover { |
| 3397 | - background-color: rgba(0, 0, 0, 0.6); | |
| 2949 | + background-color: white; | |
| 2950 | + -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4); | |
| 2951 | + box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4); | |
| 3398 | 2952 | } |
| 3399 | -.elementor-control-media.e-media-empty .elementor-control-file-area { | |
| 2953 | +.elementor-control-media.elementor-media-empty .elementor-control-file-area { | |
| 3400 | 2954 | display: none; |
| 3401 | 2955 | } |
| 3402 | -.elementor-control-media__warnings:empty { | |
| 3403 | - display: none; | |
| 3404 | -} | |
| 3405 | -.elementor-control-media__warnings:not(:empty) { | |
| 3406 | - margin-block-start: 10px; | |
| 3407 | -} | |
| 3408 | 2956 | .elementor-control-media__file { |
| 2957 | + display: -webkit-box; | |
| 2958 | + display: -ms-flexbox; | |
| 3409 | 2959 | display: flex; |
| 3410 | - justify-content: space-between; | |
| 3411 | - align-items: center; | |
| 2960 | + -webkit-box-pack: justify; | |
| 2961 | + -ms-flex-pack: justify; | |
| 2962 | + justify-content: space-between; | |
| 2963 | + -webkit-box-align: center; | |
| 2964 | + -ms-flex-align: center; | |
| 2965 | + align-items: center; | |
| 3412 | 2966 | width: 100%; |
| 3413 | - margin-block-start: 10px; | |
| 3414 | - border: var(--e-a-border); | |
| 2967 | + margin-top: 10px; | |
| 2968 | + border: 1px solid #d5dadf; | |
| 3415 | 2969 | } |
| 3416 | 2970 | .elementor-control-media__file__content { |
| 3417 | - padding-inline-start: 5px; | |
| 2971 | + padding-left: 5px; | |
| 3418 | 2972 | font-size: 12px; |
| 3419 | 2973 | } |
| 3420 | 2974 | .elementor-control-media__file__content__label { |
| 3421 | - color: #9DA5AE; | |
| 2975 | + color: #a4afb7; | |
| 3422 | 2976 | } |
| 3423 | 2977 | .elementor-control-media__file__content__info { |
| 2978 | + display: -webkit-box; | |
| 2979 | + display: -ms-flexbox; | |
| 3424 | 2980 | display: flex; |
| 3425 | - align-items: center; | |
| 2981 | + -webkit-box-align: center; | |
| 2982 | + -ms-flex-align: center; | |
| 2983 | + align-items: center; | |
| 3426 | 2984 | font-weight: 500; |
| 3427 | 2985 | } |
| 3428 | 2986 | .elementor-control-media__file__content__info__icon { |
| 3429 | - margin-inline-end: 5px; | |
| 2987 | + margin-right: 5px; | |
| 3430 | 2988 | } |
| 3431 | 2989 | .elementor-control-media__file__controls { |
| 2990 | + display: -webkit-box; | |
| 2991 | + display: -ms-flexbox; | |
| 3432 | 2992 | display: flex; |
| 3433 | - border-inline-start: var(--e-a-border); | |
| 2993 | + border-left: 1px solid #d5dadf; | |
| 3434 | 2994 | } |
| 3435 | 2995 | .elementor-control-media__file__controls__upload-button, .elementor-control-media__file__controls__remove { |
| 3436 | 2996 | width: 27px; |
| 3437 | 2997 | height: 27px; |
| 3438 | 2998 | cursor: pointer; |
| 3439 | - align-items: center; | |
| 2999 | + -webkit-box-align: center; | |
| 3000 | + -ms-flex-align: center; | |
| 3001 | + align-items: center; | |
| 3440 | 3002 | } |
| 3441 | 3003 | .elementor-control-media__file__controls__upload-button { |
| 3004 | + display: -webkit-box; | |
| 3005 | + display: -ms-flexbox; | |
| 3442 | 3006 | display: flex; |
| 3443 | - justify-content: center; | |
| 3007 | + -webkit-box-pack: center; | |
| 3008 | + -ms-flex-pack: center; | |
| 3009 | + justify-content: center; | |
| 3444 | 3010 | } |
| 3445 | 3011 | .elementor-control-media__file__controls__remove { |
| 3446 | - border-inline-end: var(--e-a-border); | |
| 3012 | + border-right: 1px solid #d5dadf; | |
| 3447 | 3013 | } |
| 3448 | -.elementor-control-media:not(.e-media-empty) .elementor-control-media__file__content__label { | |
| 3014 | +.elementor-control-media:not(.elementor-media-empty) .elementor-control-media__file__content__label { | |
| 3449 | 3015 | display: none; |
| 3450 | 3016 | } |
| 3451 | -.elementor-control-media.e-media-empty .elementor-control-media__file__content__info { | |
| 3017 | +.elementor-control-media.elementor-media-empty .elementor-control-media__file__content__info { | |
| 3452 | 3018 | display: none; |
| 3453 | 3019 | } |
| 3454 | -.elementor-control-media.e-media-empty .elementor-control-media__file__controls__remove { | |
| 3020 | +.elementor-control-media.elementor-media-empty .elementor-control-media__file__controls__remove { | |
| 3455 | 3021 | display: none; |
| 3456 | 3022 | } |
| 3457 | 3023 | .elementor-control-media .elementor-control-dynamic-switcher { |
| 3458 | 3024 | border: none; |
| 3459 | 3025 | border-radius: 0; |
| 3460 | - background-color: rgba(0, 0, 0, 0.9); | |
| 3461 | - color: var(--e-a-color-white); | |
| 3026 | + background-color: rgba(109, 120, 130, 0.85); | |
| 3027 | + color: #fff; | |
| 3462 | 3028 | } |
| 3463 | 3029 | .elementor-control-media .elementor-control-dynamic-switcher:hover { |
| 3464 | - background-color: rgba(0, 0, 0, 0.8); | |
| 3465 | - color: var(--e-a-color-white); | |
| 3030 | + background-color: rgba(109, 120, 130, 0.95); | |
| 3466 | 3031 | } |
| 3467 | -.elementor-control-media .e-control-image-size { | |
| 3468 | - display: flex; | |
| 3469 | - flex-direction: column; | |
| 3470 | - width: 100%; | |
| 3471 | - padding-block-start: 20px; | |
| 3472 | -} | |
| 3473 | -.elementor-control-media .e-control-image-size .elementor-control-input-wrapper { | |
| 3474 | - margin-inline-start: auto; | |
| 3475 | -} | |
| 3476 | 3032 | |
| 3477 | 3033 | .elementor-control-type-media.elementor-control-dynamic-value .elementor-control-input-wrapper { |
| 3478 | 3034 | border: none; |
| 3479 | 3035 | } |
| @@ -3478,81 +3034,60 @@ | ||
| 3478 | 3034 | border: none; |
| 3479 | 3035 | } |
| 3480 | 3036 | |
| 3481 | 3037 | .elementor-control:not(.elementor-control-type-icons) .elementor-control-media__preview { |
| 3482 | - background-color: var(--e-a-bg-active-bold); | |
| 3038 | + background-color: #d5dadf; | |
| 3483 | 3039 | } |
| 3484 | 3040 | |
| 3485 | -.elementor-control-notice { | |
| 3486 | - display: flex; | |
| 3487 | - justify-content: flex-start; | |
| 3488 | - align-items: flex-start; | |
| 3489 | - gap: 8px; | |
| 3490 | - padding: 16px; | |
| 3491 | - border-radius: 3px; | |
| 3492 | - border: 1px solid var(--notice-control-color, var(--e-a-color-txt)); | |
| 3493 | - color: var(--e-a-color-txt); | |
| 3494 | - font-size: 12px; | |
| 3495 | - font-weight: 400; | |
| 3496 | - line-height: 1.5; | |
| 3497 | - text-align: start; | |
| 3498 | - margin-block-start: 10px; | |
| 3041 | +.elementor-control-type-number.elementor-control-dynamic input { | |
| 3042 | + border-radius: 3px 0 0 3px; | |
| 3043 | + border-right: none; | |
| 3499 | 3044 | } |
| 3500 | -.elementor-control-notice-type-info { | |
| 3501 | - --notice-control-color: var(--e-a-color-info); | |
| 3045 | +.elementor-control-type-number.elementor-control-dynamic .elementor-control-dynamic-switcher { | |
| 3046 | + border-radius: 0 3px 3px 0; | |
| 3502 | 3047 | } |
| 3503 | -.elementor-control-notice-type-success { | |
| 3504 | - --notice-control-color: var(--e-a-color-success); | |
| 3505 | -} | |
| 3506 | -.elementor-control-notice-type-warning { | |
| 3507 | - --notice-control-color: var(--e-a-color-warning); | |
| 3508 | -} | |
| 3509 | -.elementor-control-notice-type-danger { | |
| 3510 | - --notice-control-color: var(--e-a-color-danger); | |
| 3511 | -} | |
| 3512 | -.elementor-control-notice-icon { | |
| 3513 | - flex-basis: 18px; | |
| 3514 | - color: var(--notice-control-color); | |
| 3515 | -} | |
| 3516 | -.elementor-control-notice-main { | |
| 3048 | + | |
| 3049 | +.elementor-control-type-order .elementor-control-oreder-wrapper { | |
| 3050 | + display: -webkit-box; | |
| 3051 | + display: -ms-flexbox; | |
| 3517 | 3052 | display: flex; |
| 3518 | - flex-direction: column; | |
| 3519 | - justify-content: flex-start; | |
| 3520 | - align-items: flex-start; | |
| 3521 | - gap: 6px; | |
| 3522 | - flex: 1; | |
| 3523 | 3053 | } |
| 3524 | -.elementor-control-notice-main-heading { | |
| 3525 | - font-weight: 700; | |
| 3526 | - font-style: italic; | |
| 3054 | +.elementor-control-type-order input { | |
| 3055 | + display: none; | |
| 3527 | 3056 | } |
| 3528 | -.elementor-control-notice-main-content { | |
| 3529 | - font-style: italic; | |
| 3530 | - line-height: 1.5; | |
| 3057 | +.elementor-control-type-order input:checked + .elementor-control-order-label { | |
| 3058 | + -webkit-transform: scale(1, -1); | |
| 3059 | + -ms-transform: scale(1, -1); | |
| 3060 | + transform: scale(1, -1); | |
| 3531 | 3061 | } |
| 3532 | -.elementor-control-notice-main-actions { | |
| 3533 | - display: flex; | |
| 3534 | - gap: 10px; | |
| 3535 | - padding-block-start: 8px; | |
| 3062 | +.elementor-control-type-order select { | |
| 3063 | + border-radius: 3px 0 0 3px; | |
| 3536 | 3064 | } |
| 3537 | -.elementor-control-notice-main a { | |
| 3538 | - color: inherit; | |
| 3539 | - font-weight: 700; | |
| 3540 | - cursor: pointer; | |
| 3065 | +.elementor-control-type-order select:not(:focus) ~ .elementor-control-order-label { | |
| 3066 | + border-color: #d5dadf; | |
| 3541 | 3067 | } |
| 3542 | -.elementor-control-notice-main a:hover, .elementor-control-notice-main a:focus { | |
| 3543 | - color: inherit; | |
| 3068 | +.elementor-control-type-order select:focus ~ .elementor-control-order-label { | |
| 3069 | + border-color: #a4afb7; | |
| 3544 | 3070 | } |
| 3545 | -.elementor-control-notice-dismiss { | |
| 3546 | - -webkit-appearance: none; | |
| 3547 | - -moz-appearance: none; | |
| 3548 | - appearance: none; | |
| 3549 | - background-color: transparent; | |
| 3550 | - border: 0; | |
| 3071 | +.elementor-control-type-order .elementor-control-order-label { | |
| 3072 | + position: relative; | |
| 3551 | 3073 | padding: 0; |
| 3552 | - margin: 0; | |
| 3074 | + width: 40px; | |
| 3075 | + border: 1px solid; | |
| 3076 | + font-size: 10px; | |
| 3077 | + border-radius: 0 3px 3px 0; | |
| 3078 | + margin-left: -3px; | |
| 3079 | + background-color: #fff; | |
| 3553 | 3080 | cursor: pointer; |
| 3554 | 3081 | } |
| 3082 | +.elementor-control-type-order .elementor-control-order-label i { | |
| 3083 | + position: absolute; | |
| 3084 | + top: 50%; | |
| 3085 | + left: 50%; | |
| 3086 | + -webkit-transform: translate(-50%, -50%); | |
| 3087 | + -ms-transform: translate(-50%, -50%); | |
| 3088 | + transform: translate(-50%, -50%); | |
| 3089 | +} | |
| 3555 | 3090 | |
| 3556 | 3091 | .elementor-control-type-popover_toggle input { |
| 3557 | 3092 | display: none; |
| 3558 | 3093 | } |
| @@ -3559,107 +3094,104 @@ | ||
| 3559 | 3094 | .elementor-control-type-popover_toggle label { |
| 3560 | 3095 | cursor: pointer; |
| 3561 | 3096 | } |
| 3562 | 3097 | .elementor-control-type-popover_toggle .elementor-control-input-wrapper { |
| 3563 | - display: flex; | |
| 3564 | - flex-direction: row-reverse; | |
| 3565 | - align-items: center; | |
| 3098 | + direction: rtl; | |
| 3566 | 3099 | } |
| 3567 | 3100 | .elementor-control-type-popover_toggle .elementor-control-popover-toggle-toggle:checked + .elementor-control-popover-toggle-toggle-label { |
| 3568 | - color: var(--e-a-color-txt-active); | |
| 3569 | - background-color: var(--e-a-bg-active-bold); | |
| 3101 | + color: #71d7f7; | |
| 3570 | 3102 | } |
| 3571 | 3103 | .elementor-control-type-popover_toggle .elementor-control-popover-toggle-toggle:not(:checked) ~ .elementor-control-popover-toggle-reset-label { |
| 3572 | 3104 | display: none; |
| 3573 | 3105 | } |
| 3106 | +.elementor-control-type-popover_toggle .elementor-control-popover-toggle-reset-label { | |
| 3107 | + color: #c2cbd2; | |
| 3108 | + margin-right: 5px; | |
| 3109 | +} | |
| 3574 | 3110 | .elementor-control-type-popover_toggle .elementor-control-popover-toggle-toggle-label { |
| 3575 | 3111 | height: 27px; |
| 3112 | + display: -webkit-inline-box; | |
| 3113 | + display: -ms-inline-flexbox; | |
| 3576 | 3114 | display: inline-flex; |
| 3577 | - align-items: center; | |
| 3578 | - justify-content: center; | |
| 3579 | - border-radius: var(--e-a-border-radius); | |
| 3580 | - border: var(--e-a-border-bold); | |
| 3581 | - transition: var(--e-a-transition-hover); | |
| 3115 | + -webkit-box-align: center; | |
| 3116 | + -ms-flex-align: center; | |
| 3117 | + align-items: center; | |
| 3118 | + -webkit-box-pack: center; | |
| 3119 | + -ms-flex-pack: center; | |
| 3120 | + justify-content: center; | |
| 3121 | + border-radius: 3px; | |
| 3122 | + border: 1px solid #d5dadf; | |
| 3582 | 3123 | } |
| 3583 | -.elementor-control-type-popover_toggle .elementor-control-popover-toggle-toggle-label:hover { | |
| 3584 | - background-color: var(--e-a-bg-hover); | |
| 3585 | -} | |
| 3586 | -.elementor-control-type-popover_toggle .elementor-control-popover-toggle-reset-label { | |
| 3587 | - color: var(--e-a-color-txt-muted); | |
| 3588 | - margin-inline-end: 5px; | |
| 3589 | -} | |
| 3590 | -.elementor-control-type-popover_toggle .elementor-control-popover-toggle-reset-label:hover { | |
| 3591 | - color: var(--e-a-color-txt); | |
| 3592 | -} | |
| 3593 | 3124 | |
| 3594 | 3125 | .elementor-controls-popover.e-controls-popover--typography { |
| 3595 | - padding-block-start: 0; | |
| 3126 | + padding-top: 0; | |
| 3596 | 3127 | } |
| 3597 | 3128 | |
| 3598 | 3129 | .e-control-global .elementor-control-popover-toggle-toggle-label { |
| 3599 | - border-start-start-radius: 0; | |
| 3600 | - border-start-end-radius: var(--e-a-border-radius); | |
| 3601 | - border-end-start-radius: 0; | |
| 3602 | - border-end-end-radius: var(--e-a-border-radius); | |
| 3603 | - flex-shrink: 0; | |
| 3130 | + border-radius: 0 3px 3px 0; | |
| 3131 | + -ms-flex-negative: 0; | |
| 3132 | + flex-shrink: 0; | |
| 3604 | 3133 | } |
| 3605 | 3134 | |
| 3606 | 3135 | .elementor-control-type-repeater .elementor-control:not(.elementor-control-type-tab) { |
| 3607 | - padding-inline-start: 10px; | |
| 3608 | - padding-inline-end: 10px; | |
| 3609 | - padding-block-end: 10px; | |
| 3136 | + padding-right: 10px; | |
| 3137 | + padding-left: 10px; | |
| 3138 | + padding-bottom: 10px; | |
| 3610 | 3139 | } |
| 3611 | 3140 | .elementor-control-type-repeater.elementor-repeater-has-minimum-rows .elementor-repeater-tool-remove { |
| 3612 | 3141 | display: none; |
| 3613 | 3142 | } |
| 3614 | -.elementor-control-type-repeater.elementor-repeater-has-maximum-rows .elementor-repeater-tool-duplicate, | |
| 3615 | -.elementor-control-type-repeater.elementor-repeater-has-maximum-rows .elementor-repeater-add { | |
| 3616 | - display: none; | |
| 3617 | -} | |
| 3618 | 3143 | .elementor-control-type-repeater .elementor-repeater-fields { |
| 3619 | 3144 | margin: 10px 0; |
| 3620 | 3145 | } |
| 3621 | 3146 | .elementor-control-type-repeater .elementor-repeater-row-controls { |
| 3622 | - border: var(--e-a-border-bold); | |
| 3623 | - border-block-start-width: 0; | |
| 3624 | - padding-block-start: 15px; | |
| 3147 | + border: 1px solid #d5dadf; | |
| 3148 | + border-top-width: 0; | |
| 3149 | + padding-top: 15px; | |
| 3625 | 3150 | } |
| 3626 | 3151 | .elementor-control-type-repeater .elementor-repeater-row-controls:not(.editable) { |
| 3627 | 3152 | display: none; |
| 3628 | 3153 | } |
| 3629 | 3154 | .elementor-control-type-repeater .elementor-repeater-row-tools { |
| 3630 | - display: flex; | |
| 3631 | - align-items: center; | |
| 3155 | + display: table; | |
| 3156 | + table-layout: fixed; | |
| 3632 | 3157 | width: 100%; |
| 3633 | - border: 1px solid var(--e-a-border-color-bold); | |
| 3634 | - transition: var(--e-a-transition-hover); | |
| 3158 | + color: #556068; | |
| 3159 | + background-color: #d5dadf; | |
| 3160 | + height: 40px; | |
| 3161 | + border-spacing: 1px; | |
| 3162 | + -webkit-transition: all 0.5s; | |
| 3163 | + -o-transition: all 0.5s; | |
| 3164 | + transition: all 0.5s; | |
| 3635 | 3165 | } |
| 3636 | -.elementor-control-type-repeater .elementor-repeater-row-tools > button { | |
| 3637 | - display: flex; | |
| 3638 | - align-items: center; | |
| 3639 | - justify-content: center; | |
| 3640 | - height: 40px; | |
| 3641 | - border: none; | |
| 3642 | - background-color: transparent; | |
| 3643 | - color: currentColor; | |
| 3166 | +.elementor-control-type-repeater .elementor-repeater-row-tools:hover { | |
| 3167 | + background-color: #a4afb7; | |
| 3168 | +} | |
| 3169 | +.elementor-control-type-repeater .elementor-repeater-row-tools > div { | |
| 3170 | + display: table-cell; | |
| 3171 | + text-align: center; | |
| 3172 | + vertical-align: middle; | |
| 3644 | 3173 | cursor: pointer; |
| 3645 | 3174 | } |
| 3646 | -.elementor-control-type-repeater .elementor-repeater-row-tools > button:hover, .elementor-control-type-repeater .elementor-repeater-row-tools > button:focus { | |
| 3647 | - background-color: var(--e-a-bg-hover); | |
| 3175 | +.elementor-control-type-repeater .elementor-repeater-row-tools > div:not(.elementor-repeater-row-handle-sortable) { | |
| 3176 | + background-color: #fff; | |
| 3648 | 3177 | } |
| 3178 | +.elementor-control-type-repeater .elementor-repeater-row-tools > div:hover { | |
| 3179 | + opacity: 0.95; | |
| 3180 | +} | |
| 3649 | 3181 | .elementor-control-type-repeater .elementor-repeater-row-tools .elementor-repeater-row-item-title { |
| 3650 | - flex: 1; | |
| 3651 | - justify-content: flex-start; | |
| 3182 | + text-align: left; | |
| 3652 | 3183 | padding: 0 10px; |
| 3653 | - font-size: var(--control-title-size); | |
| 3184 | + font-size: 12px; | |
| 3654 | 3185 | white-space: nowrap; |
| 3655 | - text-overflow: ellipsis; | |
| 3186 | + -o-text-overflow: ellipsis; | |
| 3187 | + text-overflow: ellipsis; | |
| 3656 | 3188 | overflow: hidden; |
| 3657 | 3189 | } |
| 3658 | 3190 | .elementor-control-type-repeater .elementor-repeater-row-tools .elementor-repeater-row-item-title .eicon, |
| 3659 | 3191 | .elementor-control-type-repeater .elementor-repeater-row-tools .elementor-repeater-row-item-title i, |
| 3660 | 3192 | .elementor-control-type-repeater .elementor-repeater-row-tools .elementor-repeater-row-item-title svg { |
| 3661 | - margin-inline-end: 5px; | |
| 3193 | + margin-right: 5px; | |
| 3662 | 3194 | } |
| 3663 | 3195 | .elementor-control-type-repeater .elementor-repeater-row-tools .elementor-repeater-row-item-title img[src$=svg] { |
| 3664 | 3196 | width: 1em; |
| 3665 | 3197 | } |
| @@ -3664,90 +3196,41 @@ | ||
| 3664 | 3196 | width: 1em; |
| 3665 | 3197 | } |
| 3666 | 3198 | .elementor-control-type-repeater .elementor-repeater-row-tools .elementor-repeater-row-tool { |
| 3667 | 3199 | width: 40px; |
| 3668 | - border-inline-start: 1px solid var(--e-a-border-color-bold); | |
| 3669 | 3200 | } |
| 3670 | 3201 | .elementor-control-type-repeater .elementor-repeater-row-tools .elementor-repeater-row-handle-sortable { |
| 3202 | + cursor: move; | |
| 3671 | 3203 | width: 10px; |
| 3672 | - border-inline-end: 1px solid var(--e-a-border-color-bold); | |
| 3673 | - cursor: move; | |
| 3204 | + color: #fff; | |
| 3674 | 3205 | } |
| 3675 | 3206 | .elementor-control-type-repeater .elementor-button-wrapper { |
| 3676 | 3207 | text-align: center; |
| 3677 | - padding-block-start: 5px; | |
| 3208 | + padding-top: 5px; | |
| 3678 | 3209 | } |
| 3679 | 3210 | |
| 3680 | -#elementor-controls, | |
| 3681 | -#elementor-panel-page-settings-controls, | |
| 3682 | -#elementor-panel-editorPreferences-settings-controls { | |
| 3683 | - padding-block-start: 15px; | |
| 3684 | -} | |
| 3685 | - | |
| 3686 | 3211 | .elementor-control-type-section { |
| 3212 | + margin-top: 10px; | |
| 3687 | 3213 | padding: 0; |
| 3688 | 3214 | } |
| 3689 | -.elementor-control-type-section.e-open { | |
| 3690 | - padding-block-end: 10px; | |
| 3215 | +.elementor-control-type-section.elementor-open { | |
| 3216 | + padding-bottom: 15px; | |
| 3691 | 3217 | } |
| 3692 | 3218 | .elementor-control-type-section + .elementor-control:not(.elementor-control-type-section):before { |
| 3693 | 3219 | display: none; |
| 3694 | 3220 | } |
| 3695 | -.elementor-control-type-section:not(:first-child):not(.elementor-control-type-section + .elementor-control-type-section) { | |
| 3696 | - margin-block-start: 25px; | |
| 3697 | -} | |
| 3698 | 3221 | |
| 3699 | -.elementor-control-type-select .elementor-control-input-wrapper { | |
| 3700 | - position: relative; | |
| 3701 | -} | |
| 3702 | -.elementor-control-type-select .elementor-control-input-wrapper select { | |
| 3703 | - -webkit-appearance: none; | |
| 3704 | - -moz-appearance: none; | |
| 3705 | - appearance: none; | |
| 3706 | - font-size: var(--control-title-size); | |
| 3707 | - font-family: inherit; | |
| 3708 | - font-weight: inherit; | |
| 3709 | - font-style: inherit; | |
| 3710 | - text-transform: inherit; | |
| 3711 | - letter-spacing: inherit; | |
| 3712 | - line-height: inherit; | |
| 3713 | - flex-basis: 100%; | |
| 3714 | - padding-inline-start: 5px; | |
| 3715 | - padding-inline-end: 20px; | |
| 3716 | - cursor: pointer; | |
| 3717 | -} | |
| 3718 | -.elementor-control-type-select .elementor-control-input-wrapper select.e-select-placeholder { | |
| 3719 | - color: var(--e-a-color-txt-disabled); | |
| 3720 | -} | |
| 3721 | -.elementor-control-type-select .elementor-control-input-wrapper option.e-option-placeholder { | |
| 3722 | - display: none; | |
| 3723 | -} | |
| 3724 | -.elementor-control-type-select .elementor-control-input-wrapper:after { | |
| 3725 | - font-family: eicons; | |
| 3726 | - content: "\e8ad"; | |
| 3727 | - font-size: 12px; | |
| 3728 | - position: absolute; | |
| 3729 | - inset-block-start: 50%; | |
| 3730 | - inset-inline-end: 5px; | |
| 3731 | - transform: translateY(-50%); | |
| 3732 | - pointer-events: none; | |
| 3733 | -} | |
| 3734 | -.elementor-control-type-select .elementor-control-field.elementor-control-field-select-small .elementor-control-input-wrapper { | |
| 3735 | - max-width: 80px; | |
| 3736 | -} | |
| 3737 | - | |
| 3738 | 3222 | .elementor-shadow-box .elementor-shadow-slider { |
| 3739 | - margin-block-start: 10px; | |
| 3223 | + margin-top: 10px; | |
| 3740 | 3224 | } |
| 3741 | 3225 | .elementor-shadow-box .elementor-color-picker-wrapper .elementor-control-title { |
| 3742 | - flex-grow: 1; | |
| 3226 | + -webkit-box-flex: 1; | |
| 3227 | + -ms-flex-positive: 1; | |
| 3228 | + flex-grow: 1; | |
| 3743 | 3229 | } |
| 3744 | 3230 | |
| 3745 | 3231 | .elementor-control-type-slider.elementor-control-dynamic input { |
| 3746 | - border-start-start-radius: var(--e-a-border-radius); | |
| 3747 | - border-start-end-radius: 0; | |
| 3748 | - border-end-start-radius: var(--e-a-border-radius); | |
| 3749 | - border-end-end-radius: 0; | |
| 3232 | + border-radius: 3px 0 0 3px; | |
| 3750 | 3233 | } |
| 3751 | 3234 | .elementor-control-type-slider .elementor-control-unit-2 { |
| 3752 | 3235 | width: 21%; |
| 3753 | 3236 | } |
| @@ -3754,64 +3237,65 @@ | ||
| 3754 | 3237 | .elementor-control-type-slider.elementor-control-type-slider--multiple .elementor-control-input-wrapper { |
| 3755 | 3238 | display: block; |
| 3756 | 3239 | } |
| 3757 | 3240 | .elementor-control-type-slider--multiple { |
| 3758 | - padding-block-end: 40px; | |
| 3241 | + padding-bottom: 40px; | |
| 3759 | 3242 | } |
| 3760 | 3243 | .elementor-control-type-slider--multiple .elementor-slider { |
| 3761 | - margin-block-start: 12px; | |
| 3244 | + margin-top: 12px; | |
| 3762 | 3245 | width: 98%; |
| 3763 | 3246 | } |
| 3764 | 3247 | .elementor-control-type-slider--handles-range .elementor-slider .noUi-handle { |
| 3765 | 3248 | border-radius: 0; |
| 3766 | 3249 | width: 10px; |
| 3767 | - transform: translateY(calc(50% - 14px)) translateX(calc(4px * var(--direction-multiplier))); | |
| 3250 | + -webkit-transform: translateY(calc(50% - 14px)) translateX(4px); | |
| 3251 | + -ms-transform: translateY(calc(50% - 14px)) translateX(4px); | |
| 3252 | + transform: translateY(calc(50% - 14px)) translateX(4px); | |
| 3768 | 3253 | } |
| 3769 | 3254 | .elementor-control-type-slider--handles-range .elementor-slider .noUi-handle:after { |
| 3770 | 3255 | content: ""; |
| 3771 | 3256 | position: absolute; |
| 3772 | - inset-block-start: 2px; | |
| 3257 | + top: 2px; | |
| 3773 | 3258 | height: 12px; |
| 3774 | 3259 | width: 11px; |
| 3775 | - transform: rotate(45deg); | |
| 3776 | - background-color: var(--e-a-color-white); | |
| 3260 | + -webkit-transform: rotate(45deg); | |
| 3261 | + -ms-transform: rotate(45deg); | |
| 3262 | + transform: rotate(45deg); | |
| 3263 | + background-color: #fff; | |
| 3777 | 3264 | border-radius: 3px; |
| 3778 | 3265 | } |
| 3779 | 3266 | .elementor-control-type-slider--handles-range .elementor-slider .noUi-handle-lower:after { |
| 3780 | 3267 | left: 5px; |
| 3781 | - box-shadow: 2px -2px 3px 0px rgba(0, 0, 0, 0.1); | |
| 3268 | + -webkit-box-shadow: 2px -2px 3px 0px rgba(0, 0, 0, 0.1); | |
| 3269 | + box-shadow: 2px -2px 3px 0px rgba(0, 0, 0, 0.1); | |
| 3782 | 3270 | } |
| 3783 | 3271 | .elementor-control-type-slider--handles-range .elementor-slider .noUi-handle-upper:after { |
| 3784 | 3272 | right: 5px; |
| 3785 | - box-shadow: -2px 2px 3px 0px rgba(0, 0, 0, 0.1); | |
| 3273 | + -webkit-box-shadow: -2px 2px 3px 0px rgba(0, 0, 0, 0.1); | |
| 3274 | + box-shadow: -2px 2px 3px 0px rgba(0, 0, 0, 0.1); | |
| 3786 | 3275 | } |
| 3787 | 3276 | .elementor-control-type-slider .elementor-control-dynamic-switcher { |
| 3788 | - border-inline-start-width: 0; | |
| 3789 | - border-start-start-radius: 0; | |
| 3790 | - border-start-end-radius: var(--e-a-border-radius); | |
| 3791 | - border-end-start-radius: 0; | |
| 3792 | - border-end-end-radius: var(--e-a-border-radius); | |
| 3277 | + border-left-width: 0; | |
| 3278 | + border-radius: 0 3px 3px 0; | |
| 3793 | 3279 | } |
| 3794 | 3280 | .elementor-control-type-slider .elementor-control-input-wrapper { |
| 3281 | + display: -webkit-box; | |
| 3282 | + display: -ms-flexbox; | |
| 3795 | 3283 | display: flex; |
| 3796 | - align-items: center; | |
| 3284 | + -webkit-box-align: center; | |
| 3285 | + -ms-flex-align: center; | |
| 3286 | + align-items: center; | |
| 3797 | 3287 | } |
| 3798 | 3288 | .elementor-control-type-slider .elementor-dynamic-cover { |
| 3799 | - margin-block-start: 10px; | |
| 3289 | + margin-top: 10px; | |
| 3800 | 3290 | } |
| 3801 | -.elementor-control-type-slider.e-units-custom .elementor-slider { | |
| 3802 | - display: none; | |
| 3803 | -} | |
| 3804 | -.elementor-control-type-slider.e-units-custom .elementor-slider-input { | |
| 3805 | - width: 100%; | |
| 3806 | - margin: 0; | |
| 3807 | - transition: none; | |
| 3808 | -} | |
| 3809 | 3291 | |
| 3810 | 3292 | .elementor-slider { |
| 3811 | - flex-grow: 1; | |
| 3293 | + -webkit-box-flex: 1; | |
| 3294 | + -ms-flex-positive: 1; | |
| 3295 | + flex-grow: 1; | |
| 3812 | 3296 | height: 4px; |
| 3813 | - background-color: var(--e-a-border-color-bold); | |
| 3297 | + background-color: #d5dadf; | |
| 3814 | 3298 | border-radius: 5px; |
| 3815 | 3299 | position: relative; |
| 3816 | 3300 | cursor: pointer; |
| 3817 | 3301 | } |
| @@ -3817,42 +3301,52 @@ | ||
| 3817 | 3301 | } |
| 3818 | 3302 | .elementor-slider-input { |
| 3819 | 3303 | width: 21%; |
| 3820 | 3304 | min-width: 54px; |
| 3821 | - margin-inline-start: 12px; | |
| 3822 | - transition: width 0.3s ease-in-out; | |
| 3305 | + margin-left: 12px; | |
| 3823 | 3306 | } |
| 3824 | 3307 | .elementor-slider__extra { |
| 3825 | 3308 | position: relative; |
| 3826 | 3309 | } |
| 3827 | 3310 | .elementor-slider__labels { |
| 3311 | + display: -webkit-box; | |
| 3312 | + display: -ms-flexbox; | |
| 3828 | 3313 | display: flex; |
| 3829 | - justify-content: space-between; | |
| 3314 | + -webkit-box-pack: justify; | |
| 3315 | + -ms-flex-pack: justify; | |
| 3316 | + justify-content: space-between; | |
| 3830 | 3317 | } |
| 3831 | 3318 | .elementor-slider__label { |
| 3832 | 3319 | font-size: 9px; |
| 3833 | - color: var(--e-a-color-txt-disabled); | |
| 3320 | + color: #c2cbd2; | |
| 3834 | 3321 | } |
| 3835 | 3322 | .elementor-slider__scales { |
| 3836 | 3323 | position: absolute; |
| 3324 | + display: -webkit-box; | |
| 3325 | + display: -ms-flexbox; | |
| 3837 | 3326 | display: flex; |
| 3838 | - justify-content: space-evenly; | |
| 3327 | + -webkit-box-pack: space-evenly; | |
| 3328 | + -ms-flex-pack: space-evenly; | |
| 3329 | + justify-content: space-evenly; | |
| 3839 | 3330 | width: 100%; |
| 3840 | - margin-block-start: 4px; | |
| 3331 | + margin-top: 4px; | |
| 3841 | 3332 | } |
| 3842 | 3333 | .elementor-slider__scale { |
| 3843 | 3334 | width: 1px; |
| 3844 | 3335 | height: 21px; |
| 3845 | - background-color: var(--e-a-border-color-focus); | |
| 3336 | + background-color: #a4afb7; | |
| 3846 | 3337 | } |
| 3847 | 3338 | .elementor-slider .noUi-handle { |
| 3848 | 3339 | height: 16px; |
| 3849 | 3340 | width: 16px; |
| 3850 | - background-color: var(--e-a-color-white); | |
| 3341 | + background-color: #fff; | |
| 3342 | + right: 0; | |
| 3343 | + -webkit-transform: translateY(calc(50% - 14px)) translateX(8px); | |
| 3344 | + -ms-transform: translateY(calc(50% - 14px)) translateX(8px); | |
| 3345 | + transform: translateY(calc(50% - 14px)) translateX(8px); | |
| 3851 | 3346 | position: absolute; |
| 3852 | - inset-inline-end: 0; | |
| 3853 | - transform: translateY(calc(50% - 14px)) translateX(calc(8px * var(--direction-multiplier))); | |
| 3854 | - box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3); | |
| 3347 | + -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3); | |
| 3348 | + box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3); | |
| 3855 | 3349 | border-radius: 50%; |
| 3856 | 3350 | } |
| 3857 | 3351 | .elementor-slider .noUi-connects { |
| 3858 | 3352 | position: absolute; |
| @@ -3861,18 +3355,25 @@ | ||
| 3861 | 3355 | } |
| 3862 | 3356 | .elementor-slider .noUi-connect { |
| 3863 | 3357 | position: absolute; |
| 3864 | 3358 | z-index: 0; |
| 3865 | - inset: 0; | |
| 3359 | + top: 0; | |
| 3360 | + left: 0; | |
| 3361 | + height: 100%; | |
| 3362 | + width: 100%; | |
| 3866 | 3363 | will-change: transform; |
| 3867 | - transform-origin: 0 0; | |
| 3868 | - background-color: var(--e-a-border-color-focus); | |
| 3364 | + -webkit-transform-origin: 0 0; | |
| 3365 | + -ms-transform-origin: 0 0; | |
| 3366 | + transform-origin: 0 0; | |
| 3367 | + background-color: #a4afb7; | |
| 3869 | 3368 | } |
| 3870 | 3369 | .elementor-slider .noUi-tooltip { |
| 3871 | 3370 | position: absolute; |
| 3872 | - inset-block-start: calc(100% + 5px); | |
| 3371 | + top: calc(100% + 5px); | |
| 3873 | 3372 | left: calc(50% - 4px); |
| 3874 | - transform: translateX(-50%); | |
| 3373 | + -webkit-transform: translateX(-50%); | |
| 3374 | + -ms-transform: translateX(-50%); | |
| 3375 | + transform: translateX(-50%); | |
| 3875 | 3376 | font-size: 10px; |
| 3876 | 3377 | } |
| 3877 | 3378 | |
| 3878 | 3379 | .elementor-control-type-structure .elementor-control-field { |
| @@ -3879,9 +3380,9 @@ | ||
| 3879 | 3380 | display: initial; |
| 3880 | 3381 | } |
| 3881 | 3382 | .elementor-control-type-structure .elementor-control-structure-preset { |
| 3882 | 3383 | padding: 3px; |
| 3883 | - border-radius: var(--e-border-radius); | |
| 3384 | + border-radius: 3px; | |
| 3884 | 3385 | display: inline-block; |
| 3885 | 3386 | cursor: pointer; |
| 3886 | 3387 | height: 50px; |
| 3887 | 3388 | } |
| @@ -3888,52 +3389,55 @@ | ||
| 3888 | 3389 | .elementor-control-type-structure .elementor-control-structure-preset svg { |
| 3889 | 3390 | height: 100%; |
| 3890 | 3391 | } |
| 3891 | 3392 | .elementor-control-type-structure .elementor-control-structure-preset path { |
| 3892 | - fill: var(--e-a-border-color-bold); | |
| 3393 | + fill: #e6e9ec; | |
| 3893 | 3394 | } |
| 3894 | 3395 | .elementor-control-type-structure .elementor-control-structure-reset { |
| 3895 | 3396 | padding: 15px 20px 0; |
| 3896 | 3397 | font-size: 11px; |
| 3897 | 3398 | cursor: pointer; |
| 3898 | - color: var(--e-a-color-txt-muted); | |
| 3899 | - border-block-start: var(--e-a-border); | |
| 3399 | + color: #a4afb7; | |
| 3400 | + border-top: 1px solid #e6e9ec; | |
| 3900 | 3401 | margin: 0 -20px; |
| 3901 | 3402 | } |
| 3902 | -.elementor-control-type-structure .elementor-control-structure-reset:hover { | |
| 3903 | - color: var(--e-a-color-txt); | |
| 3904 | -} | |
| 3905 | 3403 | .elementor-control-type-structure .elementor-control-structure-title { |
| 3906 | 3404 | margin: 10px -20px 0; |
| 3907 | 3405 | } |
| 3908 | 3406 | .elementor-control-type-structure .elementor-control-structure-title:before { |
| 3909 | 3407 | height: 10px; |
| 3910 | - box-shadow: inset 0 2px 4px rgba(127, 127, 127, 0.1); | |
| 3408 | + -webkit-box-shadow: inset 0 2px 4px rgba(127, 127, 127, 0.1); | |
| 3409 | + box-shadow: inset 0 2px 4px rgba(127, 127, 127, 0.1); | |
| 3911 | 3410 | } |
| 3912 | 3411 | .elementor-control-type-structure .elementor-control-structure-presets { |
| 3412 | + display: -webkit-box; | |
| 3413 | + display: -ms-flexbox; | |
| 3913 | 3414 | display: flex; |
| 3914 | - flex-wrap: wrap; | |
| 3915 | - justify-content: space-between; | |
| 3415 | + -ms-flex-wrap: wrap; | |
| 3416 | + flex-wrap: wrap; | |
| 3417 | + -webkit-box-pack: justify; | |
| 3418 | + -ms-flex-pack: justify; | |
| 3419 | + justify-content: space-between; | |
| 3916 | 3420 | } |
| 3917 | 3421 | .elementor-control-type-structure .elementor-control-structure-presets input { |
| 3918 | 3422 | display: none; |
| 3919 | 3423 | } |
| 3920 | 3424 | .elementor-control-type-structure .elementor-control-structure-presets input:checked + .elementor-control-structure-preset path { |
| 3921 | - fill: var(--e-a-border-color-focus); | |
| 3425 | + fill: #a4afb7; | |
| 3922 | 3426 | } |
| 3923 | 3427 | .elementor-control-type-structure .elementor-control-structure-preset-wrapper { |
| 3924 | - margin-block-end: 15px; | |
| 3428 | + margin-bottom: 15px; | |
| 3925 | 3429 | } |
| 3926 | 3430 | .elementor-control-type-structure .elementor-control-structure-preset-title { |
| 3927 | 3431 | text-align: center; |
| 3928 | - padding-block-start: 5px; | |
| 3432 | + padding-top: 5px; | |
| 3929 | 3433 | font-style: italic; |
| 3930 | 3434 | font-size: 11px; |
| 3931 | - color: #9DA5AE; | |
| 3435 | + color: #a4afb7; | |
| 3932 | 3436 | } |
| 3933 | 3437 | |
| 3934 | 3438 | .elementor-control-type-switcher .elementor-control-input-wrapper { |
| 3935 | - text-align: end; | |
| 3439 | + text-align: right; | |
| 3936 | 3440 | } |
| 3937 | 3441 | .elementor-control-type-switcher .elementor-switch { |
| 3938 | 3442 | position: relative; |
| 3939 | 3443 | display: inline-block; |
| @@ -3938,9 +3442,9 @@ | ||
| 3938 | 3442 | position: relative; |
| 3939 | 3443 | display: inline-block; |
| 3940 | 3444 | vertical-align: top; |
| 3941 | 3445 | height: 20px; |
| 3942 | - background-color: var(--e-a-bg-default); | |
| 3446 | + background-color: white; | |
| 3943 | 3447 | border-radius: 18px; |
| 3944 | 3448 | cursor: pointer; |
| 3945 | 3449 | } |
| 3946 | 3450 | .elementor-control-type-switcher .elementor-switch-input { |
| @@ -3949,35 +3453,48 @@ | ||
| 3949 | 3453 | .elementor-control-type-switcher .elementor-switch-label { |
| 3950 | 3454 | position: relative; |
| 3951 | 3455 | display: block; |
| 3952 | 3456 | height: inherit; |
| 3953 | - font-size: 10px; | |
| 3954 | - background: var(--e-a-bg-active-bold); | |
| 3457 | + font-size: 7px; | |
| 3458 | + text-transform: uppercase; | |
| 3459 | + background: #eceeef; | |
| 3955 | 3460 | border-radius: inherit; |
| 3461 | + -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.12), inset 0 0 2px rgba(0, 0, 0, 0.15); | |
| 3462 | + box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.12), inset 0 0 2px rgba(0, 0, 0, 0.15); | |
| 3463 | + -webkit-transition: 0.15s ease-out; | |
| 3464 | + -o-transition: 0.15s ease-out; | |
| 3956 | 3465 | transition: 0.15s ease-out; |
| 3466 | + -webkit-transition-property: opacity, background; | |
| 3467 | + -o-transition-property: opacity, background; | |
| 3957 | 3468 | transition-property: opacity, background; |
| 3958 | 3469 | } |
| 3959 | 3470 | .elementor-control-type-switcher .elementor-switch-label:before, .elementor-control-type-switcher .elementor-switch-label:after { |
| 3960 | 3471 | position: absolute; |
| 3961 | - inset-block-start: 0; | |
| 3472 | + top: 0; | |
| 3962 | 3473 | width: 50%; |
| 3963 | 3474 | text-align: center; |
| 3964 | 3475 | line-height: 20px; |
| 3476 | + -webkit-transition: inherit; | |
| 3477 | + -o-transition: inherit; | |
| 3965 | 3478 | transition: inherit; |
| 3966 | 3479 | } |
| 3967 | 3480 | .elementor-control-type-switcher .elementor-switch-label:before { |
| 3968 | 3481 | content: attr(data-off); |
| 3969 | - inset-inline-end: 5px; | |
| 3970 | - color: var(--e-a-color-txt-muted); | |
| 3482 | + right: 3px; | |
| 3483 | + color: #a4afb7; | |
| 3484 | + text-shadow: 0 1px rgba(255, 255, 255, 0.5); | |
| 3971 | 3485 | } |
| 3972 | 3486 | .elementor-control-type-switcher .elementor-switch-label:after { |
| 3973 | 3487 | content: attr(data-on); |
| 3974 | - inset-inline-start: 5px; | |
| 3975 | - color: var(--e-a-btn-color); | |
| 3488 | + left: 3px; | |
| 3489 | + color: white; | |
| 3490 | + text-shadow: 0 1px rgba(0, 0, 0, 0.2); | |
| 3976 | 3491 | opacity: 0; |
| 3977 | 3492 | } |
| 3978 | 3493 | .elementor-control-type-switcher .elementor-switch-input:checked ~ .elementor-switch-label { |
| 3979 | - background: var(--e-a-btn-bg-primary); | |
| 3494 | + background: #71d7f7; | |
| 3495 | + -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15), inset 0 0 3px rgba(0, 0, 0, 0.2); | |
| 3496 | + box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15), inset 0 0 3px rgba(0, 0, 0, 0.2); | |
| 3980 | 3497 | } |
| 3981 | 3498 | .elementor-control-type-switcher .elementor-switch-input:checked ~ .elementor-switch-label:before { |
| 3982 | 3499 | opacity: 0; |
| 3983 | 3500 | } |
| @@ -3985,26 +3502,30 @@ | ||
| 3985 | 3502 | opacity: 1; |
| 3986 | 3503 | } |
| 3987 | 3504 | .elementor-control-type-switcher .elementor-switch-handle { |
| 3988 | 3505 | position: absolute; |
| 3989 | - inset-block-start: 1px; | |
| 3990 | - inset-inline-start: 1px; | |
| 3506 | + top: 1px; | |
| 3507 | + left: 1px; | |
| 3991 | 3508 | width: 18px; |
| 3992 | 3509 | height: 18px; |
| 3993 | 3510 | background: white; |
| 3994 | 3511 | border-radius: 10px; |
| 3995 | - transition: inset-inline-start 0.15s ease-out; | |
| 3512 | + -webkit-transition: left 0.15s ease-out; | |
| 3513 | + -o-transition: left 0.15s ease-out; | |
| 3514 | + transition: left 0.15s ease-out; | |
| 3996 | 3515 | } |
| 3997 | 3516 | .elementor-control-type-switcher .elementor-switch-input:checked ~ .elementor-switch-handle { |
| 3998 | - inset-inline-start: initial; | |
| 3999 | - inset-inline-end: 1px; | |
| 3517 | + left: initial; | |
| 3518 | + right: 1px; | |
| 3519 | + -webkit-box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2); | |
| 3520 | + box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2); | |
| 4000 | 3521 | } |
| 4001 | 3522 | |
| 4002 | 3523 | .elementor-control-type-tabs { |
| 4003 | - display: none; | |
| 4004 | - font-size: var(--control-title-size); | |
| 4005 | -} | |
| 4006 | -.elementor-control-type-tabs:has(> :not(.elementor-control-type-tab.elementor-hidden-control)) { | |
| 3524 | + font-size: 0.8em; | |
| 3525 | + text-transform: uppercase; | |
| 3526 | + display: -webkit-box; | |
| 3527 | + display: -ms-flexbox; | |
| 4007 | 3528 | display: flex; |
| 4008 | 3529 | } |
| 4009 | 3530 | |
| 4010 | 3531 | .elementor-control-type-tab { |
| @@ -4011,49 +3532,47 @@ | ||
| 4011 | 3532 | text-align: center; |
| 4012 | 3533 | width: 100%; |
| 4013 | 3534 | padding: 0; |
| 4014 | 3535 | line-height: 25px; |
| 4015 | - border-block-start: var(--e-a-border-bold); | |
| 4016 | - border-block-end: var(--e-a-border-bold); | |
| 4017 | - border-inline-end: var(--e-a-border-bold); | |
| 4018 | - transition: var(--e-a-transition-hover); | |
| 3536 | + border-top: 1px solid #d5dadf; | |
| 3537 | + border-bottom: 1px solid #d5dadf; | |
| 3538 | + border-right: 1px solid #d5dadf; | |
| 4019 | 3539 | cursor: pointer; |
| 4020 | 3540 | } |
| 4021 | 3541 | .elementor-control-type-tab:first-child { |
| 4022 | - border-inline-start: var(--e-a-border-bold); | |
| 4023 | - border-start-start-radius: var(--e-a-border-radius); | |
| 4024 | - border-end-start-radius: var(--e-a-border-radius); | |
| 3542 | + border-left: 1px solid #d5dadf; | |
| 3543 | + border-top-left-radius: 3px; | |
| 3544 | + border-bottom-left-radius: 3px; | |
| 4025 | 3545 | } |
| 4026 | 3546 | .elementor-control-type-tab:last-child { |
| 4027 | - border-start-end-radius: var(--e-a-border-radius); | |
| 4028 | - border-end-end-radius: var(--e-a-border-radius); | |
| 3547 | + border-top-right-radius: 3px; | |
| 3548 | + border-bottom-right-radius: 3px; | |
| 4029 | 3549 | } |
| 4030 | -.elementor-control-type-tab:hover { | |
| 4031 | - background-color: var(--e-a-bg-hover); | |
| 3550 | +.elementor-control-type-tab.elementor-tab-active { | |
| 3551 | + background-color: #a4afb7; | |
| 3552 | + border-color: #a4afb7; | |
| 3553 | + color: #ffffff; | |
| 4032 | 3554 | } |
| 4033 | -.elementor-control-type-tab.e-tab-active { | |
| 4034 | - background-color: var(--e-a-bg-active-bold); | |
| 4035 | - color: var(--e-a-color-txt-accent); | |
| 4036 | -} | |
| 4037 | 3555 | |
| 4038 | -.e-tab-close { | |
| 3556 | +.elementor-tab-close { | |
| 4039 | 3557 | display: none !important; |
| 4040 | 3558 | } |
| 4041 | 3559 | |
| 3560 | +.elementor-control-type-textarea.elementor-control-dynamic-value .elementor-control-dynamic-switcher, | |
| 3561 | +.elementor-control-type-code.elementor-control-dynamic-value .elementor-control-dynamic-switcher { | |
| 3562 | + border-radius: 0 3px 3px 0; | |
| 3563 | + border-left-width: 0; | |
| 3564 | +} | |
| 4042 | 3565 | .elementor-control-type-textarea .elementor-control-dynamic-switcher, |
| 4043 | 3566 | .elementor-control-type-code .elementor-control-dynamic-switcher { |
| 4044 | - border-inline-start-width: 1px; | |
| 4045 | - border-start-start-radius: 0; | |
| 4046 | - border-start-end-radius: 0; | |
| 4047 | - border-end-end-radius: 0; | |
| 4048 | - border-end-start-radius: var(--e-a-border-radius); | |
| 3567 | + border-radius: 0 3px; | |
| 4049 | 3568 | } |
| 4050 | 3569 | .elementor-control-type-textarea:not(.elementor-control-dynamic-value) .elementor-control-dynamic-switcher, |
| 4051 | 3570 | .elementor-control-type-code:not(.elementor-control-dynamic-value) .elementor-control-dynamic-switcher { |
| 4052 | 3571 | position: absolute; |
| 4053 | - inset-block-start: 0; | |
| 4054 | - inset-inline-end: 0; | |
| 3572 | + top: 0; | |
| 4055 | 3573 | z-index: 1; |
| 3574 | + right: 0; | |
| 4056 | 3575 | } |
| 4057 | 3576 | .elementor-control-type-textarea .elementor-control-input-wrapper, |
| 4058 | 3577 | .elementor-control-type-code .elementor-control-input-wrapper { |
| 4059 | 3578 | position: relative; |
| @@ -4071,34 +3590,40 @@ | ||
| 4071 | 3590 | .elementor-control-type-code pre:focus-within + .elementor-control-dynamic-switcher { |
| 4072 | 3591 | display: none; |
| 4073 | 3592 | } |
| 4074 | 3593 | |
| 3594 | +.elementor-control-type-url.elementor-control-dynamic .elementor-input { | |
| 3595 | + border-radius: 3px 0 0 3px; | |
| 3596 | +} | |
| 4075 | 3597 | .elementor-control-type-url .elementor-control-field { |
| 4076 | 3598 | position: relative; |
| 4077 | 3599 | } |
| 3600 | +.elementor-control-type-url:not(.elementor-control-dynamic) .elementor-control-url-more, .elementor-control-type-url.elementor-control-dynamic-value .elementor-control-url-more { | |
| 3601 | + border-radius: 0 3px 3px 0; | |
| 3602 | +} | |
| 4078 | 3603 | .elementor-control-type-url .elementor-control-input-wrapper { |
| 3604 | + display: -webkit-box; | |
| 3605 | + display: -ms-flexbox; | |
| 4079 | 3606 | display: flex; |
| 3607 | + -webkit-box-orient: horizontal; | |
| 3608 | + -webkit-box-direction: normal; | |
| 3609 | + -ms-flex-direction: row; | |
| 3610 | + flex-direction: row; | |
| 4080 | 3611 | } |
| 4081 | -.elementor-control-type-url.elementor-control-dynamic .elementor-control-url-more-options input { | |
| 4082 | - border-radius: var(--e-a-border-radius); | |
| 4083 | -} | |
| 4084 | -.elementor-control-type-url.elementor-control-dynamic-value .e-input-style { | |
| 4085 | - border-start-end-radius: 0; | |
| 4086 | - border-end-end-radius: 0; | |
| 4087 | -} | |
| 4088 | -.elementor-control-type-url.elementor-control-dynamic-value .elementor-control-url-more { | |
| 4089 | - border-start-end-radius: var(--e-a-border-radius); | |
| 4090 | - border-end-end-radius: var(--e-a-border-radius); | |
| 4091 | -} | |
| 4092 | 3612 | .elementor-control-type-url .elementor-control-url-more { |
| 3613 | + display: -webkit-box; | |
| 3614 | + display: -ms-flexbox; | |
| 4093 | 3615 | display: flex; |
| 4094 | - align-items: center; | |
| 4095 | - justify-content: center; | |
| 4096 | - flex-shrink: 0; | |
| 4097 | - border: var(--e-a-border-bold); | |
| 4098 | - color: currentColor; | |
| 4099 | - background-color: transparent; | |
| 4100 | - border-inline-start-width: 0; | |
| 3616 | + -webkit-box-align: center; | |
| 3617 | + -ms-flex-align: center; | |
| 3618 | + align-items: center; | |
| 3619 | + -webkit-box-pack: center; | |
| 3620 | + -ms-flex-pack: center; | |
| 3621 | + justify-content: center; | |
| 3622 | + -ms-flex-negative: 0; | |
| 3623 | + flex-shrink: 0; | |
| 3624 | + border: 1px solid #d5dadf; | |
| 3625 | + border-left: none; | |
| 4101 | 3626 | cursor: pointer; |
| 4102 | 3627 | } |
| 4103 | 3628 | .elementor-control-type-url .elementor-control-url-more i { |
| 4104 | 3629 | font-size: 12px; |
| @@ -4104,56 +3629,114 @@ | ||
| 4104 | 3629 | font-size: 12px; |
| 4105 | 3630 | } |
| 4106 | 3631 | .elementor-control-type-url .elementor-control-url-more-options { |
| 4107 | 3632 | display: none; |
| 4108 | - padding-block-start: 10px; | |
| 3633 | + padding-top: 10px; | |
| 4109 | 3634 | } |
| 4110 | 3635 | .elementor-control-type-url .elementor-control-url-more-options .elementor-control-field-description { |
| 4111 | - margin-block-start: 10px; | |
| 3636 | + margin-top: 10px; | |
| 4112 | 3637 | } |
| 4113 | -.elementor-control-type-url .elementor-control-url-more:hover { | |
| 4114 | - color: var(--e-a-color-txt-hover); | |
| 4115 | -} | |
| 4116 | -.elementor-control-type-url .elementor-control-url-more:focus { | |
| 4117 | - color: var(--e-a-color-txt-active); | |
| 4118 | - border-color: var(--e-a-border-color-focus); | |
| 4119 | -} | |
| 4120 | 3638 | .elementor-control-type-url .elementor-control-url-option { |
| 3639 | + display: -webkit-box; | |
| 3640 | + display: -ms-flexbox; | |
| 4121 | 3641 | display: flex; |
| 4122 | - align-items: center; | |
| 3642 | + -webkit-box-align: center; | |
| 3643 | + -ms-flex-align: center; | |
| 3644 | + align-items: center; | |
| 4123 | 3645 | } |
| 4124 | 3646 | .elementor-control-type-url .elementor-control-url-option:not(:last-child) { |
| 4125 | - padding-block-end: 10px; | |
| 3647 | + padding-bottom: 10px; | |
| 4126 | 3648 | } |
| 4127 | 3649 | .elementor-control-type-url .elementor-control-url-option input, |
| 4128 | 3650 | .elementor-control-type-url .elementor-control-url-option label { |
| 4129 | 3651 | cursor: pointer; |
| 4130 | 3652 | } |
| 3653 | +.elementor-control-type-url .elementor-control-url-option-input { | |
| 3654 | + margin: 0; | |
| 3655 | + padding: 0; | |
| 3656 | + border-radius: 2px; | |
| 3657 | + margin-right: 5px; | |
| 3658 | + -webkit-appearance: none; | |
| 3659 | + -moz-appearance: none; | |
| 3660 | + outline: none; | |
| 3661 | + content: none; | |
| 3662 | + height: 15px; | |
| 3663 | + width: 15px; | |
| 3664 | + border: 1px solid #d5dadf; | |
| 3665 | + display: -webkit-inline-box; | |
| 3666 | + display: -ms-inline-flexbox; | |
| 3667 | + display: inline-flex; | |
| 3668 | + -webkit-box-align: center; | |
| 3669 | + -ms-flex-align: center; | |
| 3670 | + align-items: center; | |
| 3671 | + -webkit-box-pack: center; | |
| 3672 | + -ms-flex-pack: center; | |
| 3673 | + justify-content: center; | |
| 3674 | +} | |
| 3675 | +.elementor-control-type-url .elementor-control-url-option-input:checked { | |
| 3676 | + background: #71d7f7; | |
| 3677 | + border: none; | |
| 3678 | +} | |
| 3679 | +.elementor-control-type-url .elementor-control-url-option-input:checked:before { | |
| 3680 | + display: block; | |
| 3681 | + content: ""; | |
| 3682 | + width: 4px; | |
| 3683 | + height: 7px; | |
| 3684 | + border: solid white; | |
| 3685 | + border-width: 0 2px 2px 0; | |
| 3686 | + -webkit-transform: rotate(45deg); | |
| 3687 | + -ms-transform: rotate(45deg); | |
| 3688 | + transform: rotate(45deg); | |
| 3689 | +} | |
| 3690 | +.elementor-control-type-url .elementor-control-url-option label { | |
| 3691 | + font-size: 12px; | |
| 3692 | +} | |
| 3693 | +.elementor-control-type-url .elementor-control-url-external-hide .elementor-control-url-more { | |
| 3694 | + display: none; | |
| 3695 | +} | |
| 3696 | +.elementor-control-type-url .elementor-control-url-external-show .elementor-input, | |
| 3697 | +.elementor-control-type-url .elementor-control-url-external-show .elementor-dynamic-cover { | |
| 3698 | + border-radius: 3px 0 0 3px; | |
| 3699 | +} | |
| 4131 | 3700 | .elementor-control-type-url .elementor-control-url-autocomplete-spinner { |
| 4132 | 3701 | display: none; |
| 4133 | 3702 | position: absolute; |
| 4134 | - inset-block-start: 5px; | |
| 4135 | - inset-inline-end: 0; | |
| 3703 | + top: 5px; | |
| 3704 | + right: 0px; | |
| 4136 | 3705 | width: 10px; |
| 4137 | 3706 | height: 10px; |
| 4138 | 3707 | font-size: 10px; |
| 4139 | - color: var(--e-a-color-txt-disabled); | |
| 3708 | + color: #D4D4D4; | |
| 4140 | 3709 | } |
| 3710 | +.elementor-control-type-url .elementor-control-url__custom-attributes { | |
| 3711 | + margin-top: 5px; | |
| 3712 | +} | |
| 4141 | 3713 | .elementor-control-type-url .elementor-control-url__custom-attributes label { |
| 4142 | - font-size: var(--control-title-size); | |
| 3714 | + font-size: 12px; | |
| 4143 | 3715 | } |
| 4144 | 3716 | .elementor-control-type-url .elementor-control-url__custom-attributes input { |
| 4145 | 3717 | width: 100%; |
| 4146 | - margin-block-start: 10px; | |
| 3718 | + margin-top: 10px; | |
| 4147 | 3719 | } |
| 3720 | +.elementor-control-type-url .elementor-input { | |
| 3721 | + direction: ltr; | |
| 3722 | +} | |
| 3723 | +.elementor-control-type-url .elementor-input:not(:focus) + .elementor-control-url-more { | |
| 3724 | + border-color: #d5dadf; | |
| 3725 | +} | |
| 4148 | 3726 | .elementor-control-type-url .elementor-input:focus ~ div { |
| 4149 | - border-color: var(--e-a-border-color-focus); | |
| 3727 | + border-color: #a4afb7; | |
| 4150 | 3728 | } |
| 3729 | +.elementor-control-type-url .elementor-control-dynamic-switcher { | |
| 3730 | + border-left: none; | |
| 3731 | + border-radius: 0 3px 3px 0; | |
| 3732 | +} | |
| 4151 | 3733 | |
| 4152 | 3734 | .elementor-autocomplete-menu { |
| 4153 | 3735 | position: absolute; |
| 4154 | - background: var(--e-a-bg-default); | |
| 4155 | - border: var(--e-a-border); | |
| 3736 | + background: #fff; | |
| 3737 | + color: #495157; | |
| 3738 | + border: 1px solid #a4afb7; | |
| 4156 | 3739 | margin: 0; |
| 4157 | 3740 | list-style: none; |
| 4158 | 3741 | padding: 4px 0; |
| 4159 | 3742 | height: auto; |
| @@ -4162,16 +3745,23 @@ | ||
| 4162 | 3745 | max-width: 300px; |
| 4163 | 3746 | max-height: 200px; |
| 4164 | 3747 | overflow-y: auto; |
| 4165 | 3748 | border-radius: 3px; |
| 4166 | - transition: var(--e-a-transition-hover); | |
| 3749 | + -webkit-transition: all 0.3s ease-in-out; | |
| 3750 | + -o-transition: all 0.3s ease-in-out; | |
| 3751 | + transition: all 0.3s ease-in-out; | |
| 4167 | 3752 | cursor: default; |
| 4168 | 3753 | z-index: 1; |
| 4169 | 3754 | } |
| 4170 | 3755 | .elementor-autocomplete-menu .ui-menu-item { |
| 3756 | + display: -webkit-box; | |
| 3757 | + display: -ms-flexbox; | |
| 4171 | 3758 | display: flex; |
| 4172 | - justify-content: space-between; | |
| 4173 | - align-self: baseline; | |
| 3759 | + -webkit-box-pack: justify; | |
| 3760 | + -ms-flex-pack: justify; | |
| 3761 | + justify-content: space-between; | |
| 3762 | + -ms-flex-item-align: baseline; | |
| 3763 | + align-self: baseline; | |
| 4174 | 3764 | padding: 5px 8px; |
| 4175 | 3765 | font-size: 12px; |
| 4176 | 3766 | width: 100%; |
| 4177 | 3767 | line-height: 1.2; |
| @@ -4177,86 +3767,16 @@ | ||
| 4177 | 3767 | line-height: 1.2; |
| 4178 | 3768 | cursor: pointer; |
| 4179 | 3769 | } |
| 4180 | 3770 | .elementor-autocomplete-menu .ui-menu-item.ui-state-hover, .elementor-autocomplete-menu .ui-menu-item.ui-state-active, .elementor-autocomplete-menu .ui-menu-item.ui-state-focus { |
| 4181 | - background: var(--e-a-bg-hover); | |
| 3771 | + background: #e6e9ec; | |
| 4182 | 3772 | } |
| 4183 | 3773 | .elementor-autocomplete-menu .elementor-autocomplete-item-info { |
| 4184 | 3774 | font-size: 10px; |
| 4185 | - padding-block-start: 2px; | |
| 3775 | + padding-top: 2px; | |
| 4186 | 3776 | } |
| 4187 | 3777 | |
| 4188 | -.elementor-control-type-visual_choice { | |
| 4189 | - width: 100%; | |
| 4190 | -} | |
| 4191 | - | |
| 4192 | -.elementor-visual-choice-choices { | |
| 4193 | - display: grid; | |
| 4194 | - gap: 8px; | |
| 4195 | - grid-template-columns: repeat(var(--elementor-visual-choice-columns), 1fr); | |
| 4196 | - text-align: center; | |
| 4197 | - border-radius: var(--e-a-border-radius); | |
| 4198 | - overflow: hidden; | |
| 4199 | -} | |
| 4200 | - | |
| 4201 | -.elementor-visual-choice-element { | |
| 4202 | - display: flex; | |
| 4203 | - flex-direction: column; | |
| 4204 | - align-items: center; | |
| 4205 | - justify-content: center; | |
| 4206 | - gap: 8px; | |
| 4207 | - width: auto; | |
| 4208 | -} | |
| 4209 | -.elementor-visual-choice-element-image label { | |
| 4210 | - border: var(--e-a-border-bold); | |
| 4211 | - border-radius: var(--e-a-border-radius); | |
| 4212 | - font-size: 12px; | |
| 4213 | - transition: var(--e-a-transition-hover); | |
| 4214 | - cursor: pointer; | |
| 4215 | - overflow: hidden; | |
| 4216 | - width: 100%; | |
| 4217 | - padding: 8px; | |
| 4218 | -} | |
| 4219 | -.elementor-visual-choice-element-image input.e-visual-choice-placeholder + label, .elementor-visual-choice-element-image input:checked + label, .elementor-visual-choice-element-image input:hover + label { | |
| 4220 | - background-color: var(--e-a-bg-active-bold); | |
| 4221 | - opacity: 1; | |
| 4222 | -} | |
| 4223 | -.elementor-visual-choice-element-image input:checked + label { | |
| 4224 | - border-color: var(--e-a-color-primary-bold); | |
| 4225 | -} | |
| 4226 | -.elementor-visual-choice-element-image input:not(:checked) + label { | |
| 4227 | - background-color: var(--e-a-color-white); | |
| 4228 | - opacity: 0.5; | |
| 4229 | -} | |
| 4230 | -.elementor-visual-choice-element-image img { | |
| 4231 | - width: 100%; | |
| 4232 | - height: auto; | |
| 4233 | -} | |
| 4234 | -.elementor-visual-choice-element-button { | |
| 4235 | - grid-column: span var(--elementor-visual-choice-columns); | |
| 4236 | -} | |
| 4237 | -.elementor-visual-choice-element-button label { | |
| 4238 | - width: -moz-fit-content; | |
| 4239 | - width: fit-content; | |
| 4240 | -} | |
| 4241 | -.elementor-visual-choice-element-button input:checked + .elementor-button, .elementor-visual-choice-element-button input:hover + .elementor-button { | |
| 4242 | - background-color: var(--e-a-bg-active-bold); | |
| 4243 | -} | |
| 4244 | -.elementor-visual-choice-element-button input:checked + .elementor-button { | |
| 4245 | - border-color: var(--e-a-color-primary-bold); | |
| 4246 | -} | |
| 4247 | - | |
| 4248 | -.elementor-label-inline .elementor-visual-choice-choices { | |
| 4249 | - justify-content: flex-end; | |
| 4250 | -} | |
| 4251 | - | |
| 4252 | -.tipsy-inner { | |
| 4253 | - white-space: pre-line; | |
| 4254 | -} | |
| 4255 | - | |
| 4256 | 3778 | .elementor-control-type-wp_widget .widget-inside { |
| 4257 | - line-height: 2; | |
| 4258 | - background-color: inherit; | |
| 4259 | 3779 | display: block; |
| 4260 | 3780 | } |
| 4261 | 3781 | .elementor-control-type-wp_widget .quicktags-toolbar input { |
| 4262 | 3782 | width: auto; |
| @@ -4262,31 +3782,26 @@ | ||
| 4262 | 3782 | width: auto; |
| 4263 | 3783 | } |
| 4264 | 3784 | |
| 4265 | 3785 | .elementor-control-type-wysiwyg * { |
| 4266 | - box-sizing: content-box; | |
| 3786 | + -webkit-box-sizing: content-box; | |
| 3787 | + box-sizing: content-box; | |
| 4267 | 3788 | } |
| 4268 | 3789 | .elementor-control-type-wysiwyg .wp-editor-container { |
| 4269 | - border: var(--e-a-border); | |
| 3790 | + border: 1px solid #e6e9ec; | |
| 4270 | 3791 | } |
| 4271 | 3792 | .elementor-control-type-wysiwyg .wp-editor-tabs { |
| 4272 | - border: var(--e-a-border-bold); | |
| 4273 | - border-block-end: none; | |
| 4274 | - border-start-start-radius: var(--e-a-border-radius); | |
| 4275 | - border-start-end-radius: var(--e-a-border-radius); | |
| 4276 | - border-end-end-radius: 0; | |
| 4277 | - border-end-start-radius: 0; | |
| 3793 | + border: 1px solid #d5dadf; | |
| 3794 | + border-bottom: none; | |
| 3795 | + border-radius: 3px 3px 0 0; | |
| 4278 | 3796 | } |
| 4279 | -.elementor-control-type-wysiwyg .wp-editor-tabs button:hover { | |
| 4280 | - background-color: var(--e-a-bg-hover); | |
| 4281 | -} | |
| 4282 | 3797 | .elementor-control-type-wysiwyg #insert-media-button { |
| 4283 | 3798 | height: initial; |
| 4284 | 3799 | line-height: 24px; |
| 4285 | 3800 | font-size: 10px; |
| 4286 | - color: var(--e-a-color-txt); | |
| 4287 | - border-color: var(--e-a-border-color-bold); | |
| 4288 | - background-color: var(--e-a-bg-default); | |
| 3801 | + color: #6d7882; | |
| 3802 | + border-color: #d5dadf; | |
| 3803 | + background-color: #e6e9ec; | |
| 4289 | 3804 | min-height: initial; |
| 4290 | 3805 | } |
| 4291 | 3806 | .elementor-control-type-wysiwyg .ed_button { |
| 4292 | 3807 | height: 22px; |
| @@ -4302,14 +3817,14 @@ | ||
| 4302 | 3817 | .elementor-control-type-wysiwyg .wp-switch-editor { |
| 4303 | 3818 | position: static; |
| 4304 | 3819 | border: none; |
| 4305 | 3820 | margin: 0; |
| 4306 | - color: var(--e-a-color-txt); | |
| 3821 | + color: #6d7882; | |
| 4307 | 3822 | font-size: 10px; |
| 4308 | 3823 | padding: 3px 9px 4px; |
| 4309 | 3824 | } |
| 4310 | 3825 | .elementor-control-type-wysiwyg .switch-html { |
| 4311 | - border: solid var(--e-a-border-color-bold); | |
| 3826 | + border: solid #d5dadf; | |
| 4312 | 3827 | border-width: 0 1px; |
| 4313 | 3828 | } |
| 4314 | 3829 | .elementor-control-type-wysiwyg .html-active .switch-tmce { |
| 4315 | 3830 | background-color: transparent; |
| @@ -4314,44 +3829,36 @@ | ||
| 4314 | 3829 | .elementor-control-type-wysiwyg .html-active .switch-tmce { |
| 4315 | 3830 | background-color: transparent; |
| 4316 | 3831 | } |
| 4317 | 3832 | .elementor-control-type-wysiwyg .html-active .switch-html { |
| 4318 | - background-color: var(--e-a-bg-active); | |
| 3833 | + background-color: #e6e9ec; | |
| 4319 | 3834 | } |
| 4320 | 3835 | .elementor-control-type-wysiwyg .tmce-active .switch-tmce { |
| 4321 | - background-color: var(--e-a-bg-active); | |
| 3836 | + background-color: #e6e9ec; | |
| 4322 | 3837 | } |
| 4323 | 3838 | .elementor-control-type-wysiwyg .tmce-active .switch-html { |
| 4324 | 3839 | background-color: transparent; |
| 4325 | 3840 | } |
| 4326 | -.elementor-control-type-wysiwyg .mce-toolbar-grp, | |
| 4327 | -.elementor-control-type-wysiwyg .quicktags-toolbar { | |
| 4328 | - background-color: var(--e-a-bg-default); | |
| 3841 | +.elementor-control-type-wysiwyg .mce-toolbar-grp, .elementor-control-type-wysiwyg .quicktags-toolbar { | |
| 3842 | + background-color: #e6e9ec; | |
| 4329 | 3843 | } |
| 4330 | -.elementor-control-type-wysiwyg .mce-toolbar .mce-btn-group .mce-btn.mce-listbox { | |
| 4331 | - background-color: var(--e-a-bg-default); | |
| 4332 | -} | |
| 4333 | -.elementor-control-type-wysiwyg .mce-toolbar .mce-btn-group .mce-btn.mce-listbox button { | |
| 4334 | - color: var(--e-a-color-txt); | |
| 4335 | -} | |
| 4336 | 3844 | .elementor-control-type-wysiwyg .mce-toolbar-grp > div { |
| 4337 | 3845 | padding: 0 3px; |
| 4338 | 3846 | } |
| 4339 | 3847 | .elementor-control-type-wysiwyg .elementor-wp-editor { |
| 4340 | - box-sizing: border-box; | |
| 3848 | + -webkit-box-sizing: border-box; | |
| 3849 | + box-sizing: border-box; | |
| 4341 | 3850 | } |
| 4342 | 3851 | .elementor-control-type-wysiwyg .mce-ico { |
| 4343 | - color: var(--e-a-color-txt); | |
| 3852 | + color: #6d7882; | |
| 4344 | 3853 | font-size: 16px; |
| 4345 | 3854 | } |
| 4346 | -.elementor-control-type-wysiwyg .mce-btn-group .mce-btn:hover, .elementor-control-type-wysiwyg .mce-btn-group .mce-btn:active, .elementor-control-type-wysiwyg .mce-btn-group .mce-btn.mce-active { | |
| 4347 | - color: var(--e-a-color-txt-active); | |
| 4348 | - background: var(--e-a-bg-hover); | |
| 4349 | - border-color: var(--e-a-border-color); | |
| 4350 | - box-shadow: none; | |
| 3855 | +.elementor-control-type-wysiwyg .mce-btn { | |
| 3856 | + margin-right: 0; | |
| 3857 | + margin-left: 0; | |
| 4351 | 3858 | } |
| 4352 | -.elementor-control-type-wysiwyg .mce-btn-group .mce-btn:hover i, .elementor-control-type-wysiwyg .mce-btn-group .mce-btn:active i, .elementor-control-type-wysiwyg .mce-btn-group .mce-btn.mce-active i { | |
| 4353 | - color: var(--e-a-color-txt-active); | |
| 3859 | +.elementor-control-type-wysiwyg .mce-btn:hover, .elementor-control-type-wysiwyg .mce-btn:active, .elementor-control-type-wysiwyg .mce-btn.mce-active { | |
| 3860 | + border-color: #d5dadf; | |
| 4354 | 3861 | } |
| 4355 | 3862 | .elementor-control-type-wysiwyg .mce-path { |
| 4356 | 3863 | padding: 5px 10px; |
| 4357 | 3864 | } |
| @@ -4356,95 +3863,300 @@ | ||
| 4356 | 3863 | padding: 5px 10px; |
| 4357 | 3864 | } |
| 4358 | 3865 | .elementor-control-type-wysiwyg .mce-path-item { |
| 4359 | 3866 | font-size: 12px; |
| 4360 | - color: var(--e-a-color-txt); | |
| 3867 | + color: #6d7882; | |
| 4361 | 3868 | } |
| 4362 | -.elementor-control-type-wysiwyg .mce-top-part:before { | |
| 4363 | - box-shadow: none; | |
| 4364 | -} | |
| 4365 | 3869 | .elementor-control-type-wysiwyg .elementor-control-dynamic-switcher { |
| 4366 | 3870 | border: none; |
| 4367 | 3871 | } |
| 4368 | 3872 | |
| 4369 | -@media screen and (prefers-color-scheme: dark) { | |
| 4370 | - #wp-link-wrap { | |
| 4371 | - color-scheme: light; | |
| 4372 | - --e-a-color-txt: #515962; | |
| 4373 | - --e-a-bg-default: #ffffff; | |
| 4374 | - --e-a-border-color-bold: #D5D8DC; | |
| 4375 | - --e-a-color-primary-bold: #D004D4; | |
| 4376 | - } | |
| 4377 | - #wp-link { | |
| 4378 | - color: var(--e-a-color-txt); | |
| 4379 | - } | |
| 4380 | - #wp-link input { | |
| 4381 | - background-color: var(--e-a-bg-default); | |
| 4382 | - border-color: var(--e-a-border-color-bold); | |
| 4383 | - } | |
| 4384 | - #wp-link input[type=checkbox] { | |
| 4385 | - border-color: var(--e-a-border-color-bold); | |
| 4386 | - } | |
| 4387 | - #wp-link input[type=checkbox]:checked { | |
| 4388 | - background: var(--e-a-color-primary-bold); | |
| 4389 | - } | |
| 4390 | - #wp-link input.button-primary { | |
| 4391 | - background: #2271b1; | |
| 4392 | - border-color: #2271b1; | |
| 4393 | - color: #fff; | |
| 4394 | - } | |
| 3873 | +.elementor-control-type-text .elementor-control-dynamic-switcher { | |
| 3874 | + border-left-width: 0; | |
| 3875 | + border-radius: 0 3px 3px 0; | |
| 4395 | 3876 | } |
| 3877 | +.elementor-control-type-text.elementor-control-dynamic input { | |
| 3878 | + border-radius: 3px 0 0 3px; | |
| 3879 | +} | |
| 3880 | + | |
| 4396 | 3881 | #elementor-mode-switcher { |
| 4397 | - --e-a-mode-switcher-width: 15px; | |
| 4398 | - --e-a-mode-switcher-height: 50px; | |
| 4399 | - --e-a-mode-switcher-icon-size: 15px; | |
| 4400 | 3882 | position: absolute; |
| 4401 | - inset-block-start: 50%; | |
| 4402 | - inset-inline-start: 100%; | |
| 4403 | - transform: translateY(-50%); | |
| 4404 | - background-color: var(--e-a-bg-default); | |
| 4405 | - box-shadow: calc(3px * var(--direction-multiplier, 1)) 1px 3px rgba(0, 0, 0, 0.05); | |
| 4406 | - transition: 0.3s opacity; | |
| 3883 | + left: 100%; | |
| 3884 | + top: 50%; | |
| 3885 | + width: 15px; | |
| 3886 | + height: 50px; | |
| 3887 | + -webkit-transform: translateY(-50%); | |
| 3888 | + -ms-transform: translateY(-50%); | |
| 3889 | + transform: translateY(-50%); | |
| 3890 | + background-color: #e6e9ec; | |
| 3891 | + font-size: 15px; | |
| 3892 | + -webkit-box-shadow: 3px 1px 5px rgba(0, 0, 0, 0.1); | |
| 3893 | + box-shadow: 3px 1px 5px rgba(0, 0, 0, 0.1); | |
| 3894 | + cursor: pointer; | |
| 4407 | 3895 | } |
| 4408 | 3896 | #elementor-mode-switcher:hover { |
| 4409 | - background-color: var(--e-a-bg-hover); | |
| 3897 | + background-color: #93003c; | |
| 3898 | + color: #FFFFFF; | |
| 4410 | 3899 | } |
| 4411 | -#elementor-mode-switcher:focus-within { | |
| 4412 | - background-color: var(--e-a-bg-active); | |
| 3900 | + | |
| 3901 | +#elementor-mode-switcher-inner, #elementor-mode-switcher-preview { | |
| 3902 | + width: 100%; | |
| 3903 | + height: 100%; | |
| 3904 | + position: absolute; | |
| 3905 | + top: 0; | |
| 3906 | + left: 0; | |
| 4413 | 3907 | } |
| 4414 | -.e-panel-block-interactions #elementor-mode-switcher { | |
| 4415 | - opacity: 0; | |
| 4416 | - pointer-events: none; | |
| 3908 | + | |
| 3909 | +#elementor-mode-switcher-preview { | |
| 3910 | + cursor: pointer; | |
| 4417 | 3911 | } |
| 4418 | -#elementor-mode-switcher-preview i { | |
| 3912 | +#elementor-mode-switcher-preview .eicon { | |
| 3913 | + position: absolute; | |
| 3914 | + top: 50%; | |
| 3915 | + left: 50%; | |
| 3916 | + -webkit-transform: translate(-50%, -50%); | |
| 3917 | + -ms-transform: translate(-50%, -50%); | |
| 3918 | + transform: translate(-50%, -50%); | |
| 3919 | +} | |
| 3920 | + | |
| 3921 | +#elementor-mode-switcher-preview-input { | |
| 3922 | + display: none; | |
| 3923 | +} | |
| 3924 | + | |
| 3925 | +:root { | |
| 3926 | + --e-is-device-mode: 0; | |
| 3927 | +} | |
| 3928 | + | |
| 3929 | +.e-is-device-mode { | |
| 3930 | + --e-is-device-mode: 1; | |
| 3931 | +} | |
| 3932 | + | |
| 3933 | +#elementor-responsive-bar { | |
| 3934 | + position: sticky; | |
| 3935 | + height: calc(40px * var(--e-is-device-mode)); | |
| 3936 | + -ms-flex-item-align: stretch; | |
| 3937 | + align-self: stretch; | |
| 3938 | + -ms-flex-negative: 0; | |
| 3939 | + flex-shrink: 0; | |
| 3940 | + -webkit-transition: height 0.2s ease-in-out, opacity 0.1s; | |
| 3941 | + -o-transition: height 0.2s ease-in-out, opacity 0.1s; | |
| 3942 | + transition: height 0.2s ease-in-out, opacity 0.1s; | |
| 3943 | + left: 0; | |
| 3944 | + top: 0; | |
| 3945 | + z-index: 100; | |
| 3946 | + opacity: var(--e-is-device-mode); | |
| 3947 | + -webkit-box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.33), 0 0 2px 1px rgba(0, 0, 0, 0.25), 0 0 6px -3px rgba(255, 255, 255, 0.5); | |
| 3948 | + box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.33), 0 0 2px 1px rgba(0, 0, 0, 0.25), 0 0 6px -3px rgba(255, 255, 255, 0.5); | |
| 3949 | +} | |
| 3950 | +#elementor-responsive-bar:before { | |
| 3951 | + content: ""; | |
| 3952 | + position: absolute; | |
| 3953 | + left: 0; | |
| 3954 | + top: 0; | |
| 3955 | + width: 100%; | |
| 3956 | + height: 100%; | |
| 3957 | + z-index: -1; | |
| 3958 | + -webkit-transform: scaleX(var(--e-preview-scale, 1)); | |
| 3959 | + -ms-transform: scaleX(var(--e-preview-scale, 1)); | |
| 3960 | + transform: scaleX(var(--e-preview-scale, 1)); | |
| 3961 | +} | |
| 3962 | + | |
| 3963 | +.e-responsive-bar-switcher__option { | |
| 3964 | + cursor: pointer; | |
| 3965 | + text-align: center; | |
| 3966 | + width: 22px; | |
| 3967 | + height: 22px; | |
| 3968 | + margin: 0 4px; | |
| 3969 | + line-height: 22px; | |
| 3970 | + border-radius: 3px; | |
| 3971 | + font-size: 16px; | |
| 3972 | + -webkit-transition: background-color 0.3s ease-out; | |
| 3973 | + -o-transition: background-color 0.3s ease-out; | |
| 3974 | + transition: background-color 0.3s ease-out; | |
| 3975 | +} | |
| 3976 | +.e-responsive-bar-switcher__option:hover, .e-responsive-bar-switcher__option[aria-selected=true] { | |
| 3977 | + color: #c2cbd2; | |
| 3978 | + background-color: rgba(255, 255, 255, 0.1); | |
| 3979 | +} | |
| 3980 | +.e-responsive-bar-switcher__option input { | |
| 3981 | + display: none; | |
| 3982 | +} | |
| 3983 | +.e-responsive-bar-switcher__option input:checked + i { | |
| 3984 | + color: #71d7f7; | |
| 3985 | +} | |
| 3986 | +.e-responsive-bar-switcher__option:not(:last-child) { | |
| 3987 | + -webkit-margin-end: 6px; | |
| 3988 | + margin-inline-end: 6px; | |
| 3989 | +} | |
| 3990 | +.e-responsive-bar__button { | |
| 3991 | + -webkit-appearance: none; | |
| 3992 | + -moz-appearance: none; | |
| 3993 | + appearance: none; | |
| 3994 | + background: none; | |
| 3995 | + border: 0 none; | |
| 3996 | + cursor: pointer; | |
| 3997 | + color: inherit; | |
| 3998 | +} | |
| 3999 | +.e-responsive-bar__button:focus:not(:focus-visible) { | |
| 4000 | + outline: none; | |
| 4001 | +} | |
| 4002 | +.e-responsive-bar__button:hover { | |
| 4003 | + color: #c2cbd2; | |
| 4004 | + background-color: rgba(255, 255, 255, 0.1); | |
| 4005 | +} | |
| 4006 | +.e-responsive-bar--pipe { | |
| 4007 | + position: relative; | |
| 4008 | +} | |
| 4009 | +.e-responsive-bar--pipe::before { | |
| 4010 | + content: ""; | |
| 4011 | + display: block; | |
| 4012 | + height: 20px; | |
| 4013 | + width: 1px; | |
| 4014 | + background-color: #6d7882; | |
| 4015 | + position: absolute; | |
| 4016 | + right: -5px; | |
| 4017 | + top: calc(50% - 10px); | |
| 4018 | +} | |
| 4019 | +.e-responsive-bar__input-size { | |
| 4020 | + background-color: transparent; | |
| 4021 | + color: #a4afb7; | |
| 4022 | + border: 1px solid #6d7882 !important; | |
| 4023 | + padding: 0 3px; | |
| 4024 | + width: 60px; | |
| 4025 | + font-size: 12px; | |
| 4026 | + line-height: 16px; | |
| 4027 | + height: 18px; | |
| 4028 | + margin: auto 8px auto 4px; | |
| 4029 | +} | |
| 4030 | +.e-responsive-bar__input-size-separator { | |
| 4031 | + color: #6d7882; | |
| 4032 | +} | |
| 4033 | +.e-responsive-bar__input-size[disabled] { | |
| 4034 | + background-color: transparent; | |
| 4035 | + color: #6d7882; | |
| 4036 | + cursor: default; | |
| 4037 | +} | |
| 4038 | + | |
| 4039 | +#e-responsive-bar { | |
| 4040 | + width: 100%; | |
| 4041 | + margin-top: calc(-40px + 40px * var(--e-is-device-mode)); | |
| 4042 | + z-index: 1; | |
| 4043 | + -webkit-transition: margin-top 0.2s ease-in-out; | |
| 4044 | + -o-transition: margin-top 0.2s ease-in-out; | |
| 4045 | + transition: margin-top 0.2s ease-in-out; | |
| 4046 | + display: -webkit-box; | |
| 4047 | + display: -ms-flexbox; | |
| 4419 | 4048 | display: flex; |
| 4420 | - flex-direction: column; | |
| 4421 | - justify-content: center; | |
| 4422 | - width: var(--e-a-mode-switcher-width); | |
| 4423 | - height: var(--e-a-mode-switcher-height); | |
| 4424 | - font-size: var(--e-a-mode-switcher-icon-size); | |
| 4049 | + -webkit-box-align: center; | |
| 4050 | + -ms-flex-align: center; | |
| 4051 | + align-items: center; | |
| 4052 | + -webkit-box-pack: justify; | |
| 4053 | + -ms-flex-pack: justify; | |
| 4054 | + justify-content: space-between; | |
| 4055 | + color: #a4afb7; | |
| 4056 | + background-color: #495157; | |
| 4057 | +} | |
| 4058 | +#e-responsive-bar__center, #e-responsive-bar__end, #e-responsive-bar-scale, #e-responsive-bar-switcher { | |
| 4059 | + display: -webkit-box; | |
| 4060 | + display: -ms-flexbox; | |
| 4061 | + display: flex; | |
| 4062 | + -webkit-box-pack: center; | |
| 4063 | + -ms-flex-pack: center; | |
| 4064 | + justify-content: center; | |
| 4065 | + -webkit-box-align: center; | |
| 4066 | + -ms-flex-align: center; | |
| 4067 | + align-items: center; | |
| 4068 | + font-size: 13px; | |
| 4069 | + background-color: #495157; | |
| 4070 | + padding: 2px 0; | |
| 4071 | +} | |
| 4072 | +@media (min-width: 1400px) { | |
| 4073 | + #e-responsive-bar__center { | |
| 4074 | + margin-left: 50%; | |
| 4075 | + -webkit-transform: translate(-50%, 0); | |
| 4076 | + -ms-transform: translate(-50%, 0); | |
| 4077 | + transform: translate(-50%, 0); | |
| 4078 | + } | |
| 4079 | +} | |
| 4080 | +#e-responsive-bar__close-button, #e-responsive-bar__settings-button { | |
| 4081 | + width: 22px; | |
| 4082 | + height: 22px; | |
| 4083 | + border-radius: 3px; | |
| 4084 | + margin: 7px 5px; | |
| 4085 | + font-size: 16px; | |
| 4086 | +} | |
| 4087 | +#e-responsive-bar__size-inputs-wrapper { | |
| 4088 | + display: -webkit-box; | |
| 4089 | + display: -ms-flexbox; | |
| 4090 | + display: flex; | |
| 4091 | + -webkit-box-align: center; | |
| 4092 | + -ms-flex-align: center; | |
| 4093 | + align-items: center; | |
| 4094 | + -webkit-margin-end: 8px; | |
| 4095 | + margin-inline-end: 8px; | |
| 4096 | + color: #6d7882; | |
| 4097 | +} | |
| 4098 | +#e-responsive-bar-switcher { | |
| 4099 | + padding: 0 20px; | |
| 4100 | +} | |
| 4101 | +#e-responsive-bar-scale { | |
| 4102 | + padding: 0 20px; | |
| 4103 | +} | |
| 4104 | +#e-responsive-bar-scale__value-wrapper { | |
| 4105 | + margin: 0 14px; | |
| 4106 | + min-width: 32px; | |
| 4107 | + text-align: center; | |
| 4108 | +} | |
| 4109 | +#e-responsive-bar-scale__plus, #e-responsive-bar-scale__minus, #e-responsive-bar-scale__reset { | |
| 4425 | 4110 | cursor: pointer; |
| 4111 | + width: 20px; | |
| 4112 | + height: 20px; | |
| 4113 | + display: -webkit-box; | |
| 4114 | + display: -ms-flexbox; | |
| 4115 | + display: flex; | |
| 4116 | + -webkit-box-align: center; | |
| 4117 | + -ms-flex-align: center; | |
| 4118 | + align-items: center; | |
| 4119 | + -webkit-box-pack: center; | |
| 4120 | + -ms-flex-pack: center; | |
| 4121 | + justify-content: center; | |
| 4426 | 4122 | } |
| 4427 | -#elementor-mode-switcher-preview-input { | |
| 4428 | - display: none; | |
| 4123 | +#e-responsive-bar-scale__minus:before { | |
| 4124 | + content: ""; | |
| 4125 | + display: block; | |
| 4126 | + width: 13px; | |
| 4127 | + height: 2px; | |
| 4128 | + background: #a4afb7; | |
| 4129 | + border-radius: 3px; | |
| 4429 | 4130 | } |
| 4131 | +#e-responsive-bar-scale__reset { | |
| 4132 | + margin: 0px 8px; | |
| 4133 | +} | |
| 4430 | 4134 | |
| 4431 | 4135 | .elementor-revision-item__wrapper { |
| 4136 | + display: -webkit-box; | |
| 4137 | + display: -ms-flexbox; | |
| 4432 | 4138 | display: flex; |
| 4433 | - align-items: center; | |
| 4434 | - text-align: start; | |
| 4435 | - width: 100%; | |
| 4436 | - border: var(--e-a-border); | |
| 4437 | - border-radius: var(--e-a-border-radius); | |
| 4139 | + -webkit-box-align: center; | |
| 4140 | + -ms-flex-align: center; | |
| 4141 | + align-items: center; | |
| 4142 | + border: 1px solid #d5dadf; | |
| 4438 | 4143 | padding: 10px 15px; |
| 4439 | - margin-block-end: 10px; | |
| 4144 | + margin-bottom: 10px; | |
| 4440 | 4145 | font-size: 11px; |
| 4441 | - transition: var(--e-a-transition-hover); | |
| 4442 | - background-color: transparent; | |
| 4146 | + -webkit-transition: all 0.3s; | |
| 4147 | + -o-transition: all 0.3s; | |
| 4148 | + transition: all 0.3s; | |
| 4443 | 4149 | } |
| 4444 | -.elementor-revision-item__wrapper:hover, .elementor-revision-item__wrapper:focus { | |
| 4445 | - background-color: var(--e-a-bg-hover); | |
| 4150 | +.elementor-revision-item__wrapper.current { | |
| 4151 | + font-weight: bold; | |
| 4446 | 4152 | } |
| 4153 | +.elementor-revision-item__wrapper .elementor-revision-item__tools-current { | |
| 4154 | + color: #71d7f7; | |
| 4155 | +} | |
| 4156 | +.elementor-revision-item:hover:not(.elementor-revision-current-preview) { | |
| 4157 | + background-color: rgba(230, 233, 236, 0.3); | |
| 4158 | +} | |
| 4447 | 4159 | .elementor-revision-item-loading .elementor-revision-item__tools-current { |
| 4448 | 4160 | display: none; |
| 4449 | 4161 | } |
| 4450 | 4162 | .elementor-revision-item:not(.elementor-revision-item-loading) .elementor-revision-item__tools-spinner { |
| @@ -4457,67 +4169,71 @@ | ||
| 4457 | 4169 | .elementor-revision-item__gravatar img { |
| 4458 | 4170 | display: block; |
| 4459 | 4171 | } |
| 4460 | 4172 | .elementor-revision-item__details { |
| 4461 | - padding-inline-start: 15px; | |
| 4462 | - flex-grow: 1; | |
| 4173 | + padding-left: 15px; | |
| 4174 | + -webkit-box-flex: 1; | |
| 4175 | + -ms-flex-positive: 1; | |
| 4176 | + flex-grow: 1; | |
| 4463 | 4177 | cursor: pointer; |
| 4464 | 4178 | } |
| 4465 | 4179 | .elementor-revision-meta { |
| 4466 | - padding-block-start: 5px; | |
| 4180 | + padding-top: 5px; | |
| 4467 | 4181 | font-size: 10px; |
| 4468 | 4182 | font-weight: bold; |
| 4469 | 4183 | } |
| 4470 | -.elementor-revision-current-preview .elementor-revision-item__wrapper { | |
| 4471 | - border-color: var(--e-a-border-color-accent); | |
| 4472 | - background-color: var(--e-a-bg-active); | |
| 4184 | +.elementor-revision-current-preview { | |
| 4185 | + background-color: #e6e9ec; | |
| 4473 | 4186 | } |
| 4474 | 4187 | |
| 4188 | +#elementor-restore-autosave-dialog.dialog-widget { | |
| 4189 | + background-color: rgba(0, 0, 0, 0.3); | |
| 4190 | +} | |
| 4191 | + | |
| 4475 | 4192 | #elementor-panel-revisions-loading { |
| 4476 | 4193 | position: absolute; |
| 4477 | - inset-block-start: 50%; | |
| 4478 | - inset-inline-start: 50%; | |
| 4479 | - transform: translate(calc(-50% * var(--direction-multiplier)), -50%); | |
| 4194 | + top: 50%; | |
| 4195 | + left: 50%; | |
| 4196 | + -webkit-transform: translate(-50%, -50%); | |
| 4197 | + -ms-transform: translate(-50%, -50%); | |
| 4198 | + transform: translate(-50%, -50%); | |
| 4480 | 4199 | } |
| 4481 | 4200 | #elementor-panel-revisions-loading .eicon-loading { |
| 4482 | 4201 | font-size: 50px; |
| 4202 | + color: #a4afb7; | |
| 4483 | 4203 | } |
| 4484 | 4204 | |
| 4485 | -.elementor-panel-revisions-buttons { | |
| 4486 | - display: flex; | |
| 4487 | - justify-content: space-between; | |
| 4488 | - padding: 15px 20px; | |
| 4489 | - border-block-end: var(--e-a-border); | |
| 4490 | -} | |
| 4491 | - | |
| 4492 | 4205 | .elementor-history-item { |
| 4206 | + display: -webkit-box; | |
| 4207 | + display: -ms-flexbox; | |
| 4493 | 4208 | display: flex; |
| 4494 | - align-items: center; | |
| 4495 | - text-align: start; | |
| 4496 | - border: var(--e-a-border); | |
| 4497 | - border-radius: var(--e-a-border-radius); | |
| 4209 | + -webkit-box-align: center; | |
| 4210 | + -ms-flex-align: center; | |
| 4211 | + align-items: center; | |
| 4212 | + border: 1px solid #d5dadf; | |
| 4498 | 4213 | padding: 10px 15px; |
| 4499 | - margin-block-end: 10px; | |
| 4500 | - width: 100%; | |
| 4214 | + margin-bottom: 10px; | |
| 4501 | 4215 | font-size: 11px; |
| 4502 | 4216 | line-height: 1.4; |
| 4503 | - background-color: transparent; | |
| 4504 | 4217 | cursor: pointer; |
| 4505 | - transition: var(--e-a-transition-hover); | |
| 4218 | + -webkit-transition: all 0.3s; | |
| 4219 | + -o-transition: all 0.3s; | |
| 4220 | + transition: all 0.3s; | |
| 4506 | 4221 | } |
| 4507 | -.elementor-history-item:hover:not(.elementor-history-item-current), .elementor-history-item:focus:not(.elementor-history-item-current) { | |
| 4508 | - background-color: var(--e-a-bg-hover); | |
| 4509 | - color: var(--e-a-txt-color-hover); | |
| 4222 | +.elementor-history-item:hover { | |
| 4223 | + background-color: rgba(230, 233, 236, 0.3); | |
| 4510 | 4224 | } |
| 4511 | -.elementor-history-item:hover:not(.elementor-history-item-current) .elementor-history-item__icon .eicon:before, .elementor-history-item:focus:not(.elementor-history-item-current) .elementor-history-item__icon .eicon:before { | |
| 4225 | +.elementor-history-item:hover .elementor-history-item__icon .eicon:before { | |
| 4512 | 4226 | content: "\e924"; |
| 4513 | 4227 | } |
| 4228 | +.elementor-history-item-applied { | |
| 4229 | + color: #a4afb7; | |
| 4230 | +} | |
| 4514 | 4231 | .elementor-history-item-current { |
| 4515 | - border-color: var(--e-a-border-color-accent); | |
| 4516 | - background-color: var(--e-a-bg-active); | |
| 4517 | - color: var(--e-a-txt-color-active); | |
| 4232 | + background: #e6e9ec; | |
| 4233 | + cursor: default; | |
| 4518 | 4234 | } |
| 4519 | -.elementor-history-item-current .elementor-history-item__icon .eicon:before, .elementor-history-item-current:hover .elementor-history-item__icon .eicon:before, .elementor-history-item-current:focus .elementor-history-item__icon .eicon:before { | |
| 4235 | +.elementor-history-item-current .elementor-history-item__icon .eicon:before, .elementor-history-item-current:hover .elementor-history-item__icon .eicon:before { | |
| 4520 | 4236 | content: "\e90e"; |
| 4521 | 4237 | } |
| 4522 | 4238 | .elementor-history-item__details { |
| 4523 | 4239 | width: 95%; |
| @@ -4531,23 +4247,26 @@ | ||
| 4531 | 4247 | .elementor-history-item__action { |
| 4532 | 4248 | font-style: italic; |
| 4533 | 4249 | text-decoration: underline; |
| 4534 | 4250 | } |
| 4251 | +.elementor-history-item .__icon { | |
| 4252 | + float: right; | |
| 4253 | +} | |
| 4535 | 4254 | .elementor-history-revisions-message { |
| 4536 | 4255 | font-size: 11px; |
| 4537 | 4256 | text-align: center; |
| 4538 | - padding-block-start: 5px; | |
| 4257 | + padding-top: 5px; | |
| 4539 | 4258 | } |
| 4540 | 4259 | |
| 4541 | 4260 | #elementor-panel-history { |
| 4542 | - padding: 20px; | |
| 4543 | - padding-block-end: 15px; | |
| 4261 | + padding: 20px 20px 15px; | |
| 4544 | 4262 | } |
| 4545 | 4263 | #elementor-panel-history.elementor-empty .elementor-history-revisions-message { |
| 4546 | - padding-block-start: 20px; | |
| 4264 | + padding-top: 20px; | |
| 4547 | 4265 | } |
| 4548 | 4266 | #elementor-panel-history:not(.elementor-empty) { |
| 4549 | - margin-block-start: 10px; | |
| 4267 | + background-color: #fff; | |
| 4268 | + margin-top: 10px; | |
| 4550 | 4269 | } |
| 4551 | 4270 | |
| 4552 | 4271 | #elementor-panel-history-no-items, |
| 4553 | 4272 | #elementor-panel-revisions-no-revisions { |
| @@ -4554,104 +4273,42 @@ | ||
| 4554 | 4273 | text-align: center; |
| 4555 | 4274 | } |
| 4556 | 4275 | #elementor-panel-history-no-items .elementor-nerd-box-icon, |
| 4557 | 4276 | #elementor-panel-revisions-no-revisions .elementor-nerd-box-icon { |
| 4558 | - margin-block-start: 20px; | |
| 4277 | + margin-top: 20px; | |
| 4559 | 4278 | } |
| 4560 | 4279 | |
| 4561 | -.e-control-display-conditions-promotion__wrapper { | |
| 4562 | - display: flex; | |
| 4563 | - justify-content: space-between; | |
| 4564 | -} | |
| 4565 | -.e-control-display-conditions-promotion__wrapper:hover .eicon-upgrade-crown-full.e-control-display-conditions-promotion { | |
| 4566 | - color: var(--e-a-color-accent-promotion); | |
| 4567 | -} | |
| 4568 | -.e-control-display-conditions-promotion__description { | |
| 4569 | - display: flex; | |
| 4570 | - align-self: center; | |
| 4571 | -} | |
| 4572 | -.e-control-display-conditions-promotion__text { | |
| 4573 | - display: inline-block; | |
| 4574 | -} | |
| 4575 | -.e-control-display-conditions-promotion__lock-wrapper { | |
| 4576 | - width: 2.5rem; | |
| 4577 | - display: flex; | |
| 4578 | - justify-content: center; | |
| 4579 | - align-items: center; | |
| 4580 | -} | |
| 4581 | -.e-control-display-conditions-promotion__lock-wrapper .eicon-upgrade-crown-full { | |
| 4582 | - color: var(--e-a-color-accent-promotion-disabled); | |
| 4583 | -} | |
| 4584 | -.e-control-display-conditions-promotion.eicon-flow { | |
| 4585 | - align-self: flex-end; | |
| 4586 | - cursor: pointer; | |
| 4587 | - border: var(--e-a-border-bold); | |
| 4588 | - border-radius: var(--e-a-border-radius); | |
| 4589 | - padding: 5px; | |
| 4590 | -} | |
| 4591 | -.e-control-display-conditions-promotion.eicon-flow.filled { | |
| 4592 | - background-color: var(--e-a-bg-active); | |
| 4593 | - color: #E73CF6; | |
| 4594 | -} | |
| 4595 | - | |
| 4596 | -.e-control-motion-effects-promotion__wrapper:hover .eicon-upgrade-crown-full, .e-control-promotion__wrapper:hover .eicon-upgrade-crown-full { | |
| 4597 | - color: var(--e-a-color-accent-promotion); | |
| 4598 | -} | |
| 4599 | -.e-control-motion-effects-promotion__wrapper .elementor-control-title, .e-control-promotion__wrapper .elementor-control-title { | |
| 4600 | - margin-inline-end: 0; | |
| 4601 | -} | |
| 4602 | -.e-control-motion-effects-promotion__wrapper .select-promotion, .e-control-promotion__wrapper .select-promotion { | |
| 4603 | - display: flex; | |
| 4604 | - flex-direction: column; | |
| 4605 | - justify-content: center; | |
| 4606 | - padding-inline-start: 5px; | |
| 4607 | - padding-inline-end: 20px; | |
| 4608 | - cursor: pointer; | |
| 4609 | - height: 27px; | |
| 4610 | - width: 100%; | |
| 4611 | - color: var(--e-a-color-txt); | |
| 4612 | - border-radius: var(--e-a-border-radius); | |
| 4613 | - background-color: var(--e-a-bg-default); | |
| 4614 | - box-shadow: none; | |
| 4615 | - border: var(--e-a-border-bold); | |
| 4616 | - font-size: var(--control-title-size); | |
| 4617 | -} | |
| 4618 | -.e-control-motion-effects-promotion__lock-wrapper, .e-control-promotion__lock-wrapper { | |
| 4619 | - width: 2.5rem; | |
| 4620 | - display: flex; | |
| 4621 | - justify-content: center; | |
| 4622 | - align-items: center; | |
| 4623 | -} | |
| 4624 | -.e-control-motion-effects-promotion__lock-wrapper .eicon-upgrade-crown-full, .e-control-promotion__lock-wrapper .eicon-upgrade-crown-full { | |
| 4625 | - color: var(--e-a-color-accent-promotion-disabled); | |
| 4626 | -} | |
| 4627 | - | |
| 4628 | -.e-link-promotion { | |
| 4629 | - font-family: "Roboto", sans-serif; | |
| 4630 | - font-weight: 500; | |
| 4631 | - color: #93003f; | |
| 4632 | -} | |
| 4633 | -.e-link-promotion:hover { | |
| 4634 | - color: #93003f; | |
| 4635 | -} | |
| 4636 | - | |
| 4637 | 4280 | .elementor-panel #elementor-panel-header #elementor-panel-header-kit-close, |
| 4638 | 4281 | .elementor-panel #elementor-panel-header #elementor-panel-header-kit-back { |
| 4639 | 4282 | display: none; |
| 4640 | 4283 | } |
| 4641 | 4284 | |
| 4285 | +.elementor-editor-kit .elementor-panel #elementor-panel-header { | |
| 4286 | + background-color: #4ab7f4; | |
| 4287 | +} | |
| 4642 | 4288 | .elementor-editor-kit .elementor-panel #elementor-panel-header #elementor-panel-header-kit-close, |
| 4643 | 4289 | .elementor-editor-kit .elementor-panel #elementor-panel-header #elementor-panel-header-kit-back { |
| 4644 | - display: flex; | |
| 4290 | + display: table-cell; | |
| 4645 | 4291 | } |
| 4646 | 4292 | body:not(.e-routes-has-history) #elementor-panel-header-kit-back { |
| 4647 | 4293 | pointer-events: none; |
| 4648 | - visibility: hidden; | |
| 4294 | + opacity: 0.4; | |
| 4649 | 4295 | } |
| 4296 | +body:not(.e-routes-has-history) #elementor-panel-header-kit-back:hover .elementor-icon { | |
| 4297 | + cursor: inherit; | |
| 4298 | + color: inherit; | |
| 4299 | +} | |
| 4650 | 4300 | |
| 4301 | +.elementor-editor-kit .elementor-panel .elementor-panel-navigation .elementor-panel-navigation-tab.elementor-active { | |
| 4302 | + border-bottom-color: #4ab7f4; | |
| 4303 | +} | |
| 4651 | 4304 | .elementor-editor-kit .elementor-panel #elementor-panel-page-settings .elementor-panel-navigation { |
| 4652 | 4305 | display: none; |
| 4653 | 4306 | } |
| 4307 | +.elementor-editor-kit .elementor-panel #elementor-panel-saver-button-publish.elementor-button.elementor-button-success:not(.elementor-disabled), | |
| 4308 | +.elementor-editor-kit .elementor-panel #elementor-panel-saver-button-save-options.elementor-button.elementor-button-success:not(.elementor-disabled) { | |
| 4309 | + background-color: #4ab7f4; | |
| 4310 | +} | |
| 4654 | 4311 | .elementor-editor-kit .elementor-panel #elementor-panel-page-menu { |
| 4655 | 4312 | padding: 25px 15px 0; |
| 4656 | 4313 | } |
| 4657 | 4314 | .elementor-editor-kit #elementor-panel-header-add-button, |
| @@ -4661,33 +4318,34 @@ | ||
| 4661 | 4318 | display: none; |
| 4662 | 4319 | } |
| 4663 | 4320 | |
| 4664 | 4321 | .elementor-control-type-global-style-repeater .elementor-repeater-fields { |
| 4665 | - margin-block-end: 15px; | |
| 4322 | + margin-bottom: 15px; | |
| 4666 | 4323 | position: relative; |
| 4667 | 4324 | } |
| 4668 | 4325 | .elementor-control-type-global-style-repeater .elementor-repeater-fields.ui-sortable-helper { |
| 4669 | - background-color: var(--e-a-bg-default); | |
| 4326 | + background-color: #ffffff; | |
| 4670 | 4327 | } |
| 4671 | 4328 | .elementor-control-type-global-style-repeater .elementor-repeater-row-controls { |
| 4329 | + display: -webkit-box; | |
| 4330 | + display: -ms-flexbox; | |
| 4672 | 4331 | display: flex; |
| 4673 | - align-items: center; | |
| 4332 | + -webkit-box-align: center; | |
| 4333 | + -ms-flex-align: center; | |
| 4334 | + align-items: center; | |
| 4674 | 4335 | } |
| 4675 | 4336 | .elementor-control-type-global-style-repeater .elementor-repeater-row-tool { |
| 4676 | 4337 | cursor: pointer; |
| 4677 | - color: var(--e-a-color-txt); | |
| 4678 | - background-color: transparent; | |
| 4679 | - border: none; | |
| 4338 | + color: #d5dadf; | |
| 4680 | 4339 | padding: 5px; |
| 4681 | 4340 | } |
| 4682 | -.elementor-control-type-global-style-repeater .elementor-repeater-row-tool:focus, .elementor-control-type-global-style-repeater .elementor-repeater-row-tool:hover { | |
| 4683 | - color: var(--e-a-color-txt-hover); | |
| 4684 | -} | |
| 4685 | 4341 | .elementor-control-type-global-style-repeater .elementor-control { |
| 4686 | 4342 | padding: 0; |
| 4687 | 4343 | } |
| 4688 | 4344 | .elementor-control-type-global-style-repeater .elementor-control-title { |
| 4689 | - flex-grow: 1; | |
| 4345 | + -webkit-box-flex: 1; | |
| 4346 | + -ms-flex-positive: 1; | |
| 4347 | + flex-grow: 1; | |
| 4690 | 4348 | } |
| 4691 | 4349 | .elementor-control-type-global-style-repeater .elementor-control-title input { |
| 4692 | 4350 | max-width: 135px; |
| 4693 | 4351 | } |
| @@ -4695,10 +4353,14 @@ | ||
| 4695 | 4353 | background: none; |
| 4696 | 4354 | border: none; |
| 4697 | 4355 | } |
| 4698 | 4356 | .elementor-control-type-global-style-repeater .elementor-control-input-wrapper { |
| 4357 | + display: -webkit-box; | |
| 4358 | + display: -ms-flexbox; | |
| 4699 | 4359 | display: flex; |
| 4700 | - align-items: center; | |
| 4360 | + -webkit-box-align: center; | |
| 4361 | + -ms-flex-align: center; | |
| 4362 | + align-items: center; | |
| 4701 | 4363 | min-width: 81px; |
| 4702 | 4364 | } |
| 4703 | 4365 | .elementor-control-type-global-style-repeater .elementor-control-input-wrapper:hover .e-global-colors__color-value { |
| 4704 | 4366 | display: none; |
| @@ -4705,37 +4367,41 @@ | ||
| 4705 | 4367 | } |
| 4706 | 4368 | .elementor-control-type-global-style-repeater .elementor-control-input-wrapper:not(:hover) .elementor-repeater-tool-remove, .elementor-control-type-global-style-repeater .elementor-control-input-wrapper:not(:hover) .elementor-repeater-tool-remove--disabled, .elementor-control-type-global-style-repeater .elementor-control-input-wrapper:not(:hover) .elementor-repeater-tool-sort { |
| 4707 | 4369 | display: none; |
| 4708 | 4370 | } |
| 4709 | -.elementor-control-type-global-style-repeater .elementor-repeater-row-controls > .elementor-control > .elementor-control-content > .elementor-control-field > .elementor-control-input-wrapper { | |
| 4710 | - margin-block-start: 0; | |
| 4371 | +.elementor-control-type-global-style-repeater .elementor-control-content > .elementor-control-field > .elementor-control-input-wrapper { | |
| 4372 | + margin-top: 0; | |
| 4711 | 4373 | } |
| 4712 | 4374 | .elementor-control-type-global-style-repeater .elementor-controls-popover { |
| 4713 | - align-self: end; | |
| 4714 | - margin-block-start: 35px; | |
| 4715 | - inset-block-start: 0; | |
| 4375 | + -ms-flex-item-align: end; | |
| 4376 | + align-self: end; | |
| 4377 | + margin-top: 35px; | |
| 4378 | + top: 0; | |
| 4716 | 4379 | width: 100%; |
| 4717 | 4380 | } |
| 4718 | 4381 | .elementor-control-type-global-style-repeater .elementor-controls-popover:before { |
| 4719 | - inset-inline-end: 5px; | |
| 4382 | + right: 5px; | |
| 4720 | 4383 | } |
| 4721 | 4384 | .elementor-control-type-global-style-repeater .elementor-controls-popover .elementor-control { |
| 4722 | 4385 | padding: 0 20px 15px; |
| 4723 | 4386 | } |
| 4724 | 4387 | .elementor-control-type-global-style-repeater .elementor-controls-popover .elementor-control-title { |
| 4725 | - flex-grow: initial; | |
| 4388 | + -webkit-box-flex: initial; | |
| 4389 | + -ms-flex-positive: initial; | |
| 4390 | + flex-grow: initial; | |
| 4726 | 4391 | } |
| 4727 | 4392 | .elementor-control-type-global-style-repeater .elementor-button-wrapper { |
| 4728 | 4393 | text-align: center; |
| 4729 | - border-block-start: var(--e-a-border); | |
| 4730 | - padding-block-start: 15px; | |
| 4394 | + border-top: 1px solid #e6e9ec; | |
| 4395 | + max-width: 260px; | |
| 4396 | + padding-top: 15px; | |
| 4731 | 4397 | } |
| 4732 | 4398 | .elementor-control-type-global-style-repeater .pickr, |
| 4733 | 4399 | .elementor-control-type-global-style-repeater .elementor-control-popover-toggle-toggle-label { |
| 4734 | - margin-inline-start: 5px; | |
| 4400 | + margin-left: 5px; | |
| 4735 | 4401 | } |
| 4736 | 4402 | .elementor-control-type-global-style-repeater .e-sortable-placeholder { |
| 4737 | - background-color: var(--e-a-color-info); | |
| 4403 | + background-color: #71d7f7; | |
| 4738 | 4404 | opacity: 0.9; |
| 4739 | 4405 | width: 100%; |
| 4740 | 4406 | margin: 8px 0; |
| 4741 | 4407 | height: 2px; |
| @@ -4740,20 +4406,34 @@ | ||
| 4740 | 4406 | margin: 8px 0; |
| 4741 | 4407 | height: 2px; |
| 4742 | 4408 | } |
| 4743 | 4409 | .elementor-control-system_colors, .elementor-control-system_typography { |
| 4744 | - padding-block-end: 0; | |
| 4410 | + padding-bottom: 0; | |
| 4745 | 4411 | } |
| 4746 | 4412 | |
| 4747 | 4413 | .e-global-colors__color-value { |
| 4414 | + color: #d5dadf; | |
| 4748 | 4415 | font-size: 10px; |
| 4749 | 4416 | padding: 0 5px; |
| 4750 | - text-align: end; | |
| 4417 | + text-align: right; | |
| 4751 | 4418 | white-space: nowrap; |
| 4752 | - text-overflow: ellipsis; | |
| 4419 | + -o-text-overflow: ellipsis; | |
| 4420 | + text-overflow: ellipsis; | |
| 4753 | 4421 | overflow: hidden; |
| 4754 | 4422 | } |
| 4755 | 4423 | |
| 4424 | +@-webkit-keyframes load { | |
| 4425 | + 0% { | |
| 4426 | + opacity: 0.3; | |
| 4427 | + } | |
| 4428 | + 50% { | |
| 4429 | + opacity: 1; | |
| 4430 | + } | |
| 4431 | + 100% { | |
| 4432 | + opacity: 0.3; | |
| 4433 | + } | |
| 4434 | +} | |
| 4435 | + | |
| 4756 | 4436 | @keyframes load { |
| 4757 | 4437 | 0% { |
| 4758 | 4438 | opacity: 0.3; |
| 4759 | 4439 | } |
| @@ -4763,8 +4443,16 @@ | ||
| 4763 | 4443 | 100% { |
| 4764 | 4444 | opacity: 0.3; |
| 4765 | 4445 | } |
| 4766 | 4446 | } |
| 4447 | +@-webkit-keyframes fadeIn { | |
| 4448 | + from { | |
| 4449 | + opacity: 0; | |
| 4450 | + } | |
| 4451 | + to { | |
| 4452 | + opacity: 1; | |
| 4453 | + } | |
| 4454 | +} | |
| 4767 | 4455 | @keyframes fadeIn { |
| 4768 | 4456 | from { |
| 4769 | 4457 | opacity: 0; |
| 4770 | 4458 | } |
| @@ -4771,255 +4459,48 @@ | ||
| 4771 | 4459 | to { |
| 4772 | 4460 | opacity: 1; |
| 4773 | 4461 | } |
| 4774 | 4462 | } |
| 4463 | +@-webkit-keyframes mover { | |
| 4464 | + 0% { | |
| 4465 | + -webkit-transform: translateY(0); | |
| 4466 | + transform: translateY(0); | |
| 4467 | + } | |
| 4468 | + 100% { | |
| 4469 | + -webkit-transform: translateY(-5px); | |
| 4470 | + transform: translateY(-5px); | |
| 4471 | + } | |
| 4472 | +} | |
| 4775 | 4473 | @keyframes mover { |
| 4776 | 4474 | 0% { |
| 4777 | - transform: translateY(0); | |
| 4475 | + -webkit-transform: translateY(0); | |
| 4476 | + transform: translateY(0); | |
| 4778 | 4477 | } |
| 4779 | 4478 | 100% { |
| 4780 | - transform: translateY(-5px); | |
| 4479 | + -webkit-transform: translateY(-5px); | |
| 4480 | + transform: translateY(-5px); | |
| 4781 | 4481 | } |
| 4782 | 4482 | } |
| 4483 | +@-webkit-keyframes slideDown { | |
| 4484 | + 0% { | |
| 4485 | + -webkit-transform: translateY(-30px); | |
| 4486 | + transform: translateY(-30px); | |
| 4487 | + } | |
| 4488 | + 100% { | |
| 4489 | + -webkit-transform: translateY(0); | |
| 4490 | + transform: translateY(0); | |
| 4491 | + } | |
| 4492 | +} | |
| 4783 | 4493 | @keyframes slideDown { |
| 4784 | 4494 | 0% { |
| 4785 | - transform: translateY(-30px); | |
| 4495 | + -webkit-transform: translateY(-30px); | |
| 4496 | + transform: translateY(-30px); | |
| 4786 | 4497 | } |
| 4787 | 4498 | 100% { |
| 4788 | - transform: translateY(0); | |
| 4499 | + -webkit-transform: translateY(0); | |
| 4500 | + transform: translateY(0); | |
| 4789 | 4501 | } |
| 4790 | 4502 | } |
| 4791 | -.elementor-button, | |
| 4792 | -.e-btn { | |
| 4793 | - font-size: 12px; | |
| 4794 | - font-weight: 500; | |
| 4795 | - line-height: 1.2; | |
| 4796 | - padding: 8px 16px; | |
| 4797 | - outline: none; | |
| 4798 | - border: none; | |
| 4799 | - border-radius: var(--e-a-border-radius); | |
| 4800 | - background-color: var(--e-a-btn-bg); | |
| 4801 | - color: var(--e-a-btn-color-invert); | |
| 4802 | - transition: var(--e-a-transition-hover); | |
| 4803 | -} | |
| 4804 | -.elementor-button:hover, | |
| 4805 | -.e-btn:hover { | |
| 4806 | - border: none; | |
| 4807 | -} | |
| 4808 | -.elementor-button:hover, .elementor-button:focus, | |
| 4809 | -.e-btn:hover, | |
| 4810 | -.e-btn:focus { | |
| 4811 | - background-color: var(--e-a-btn-bg-hover); | |
| 4812 | - color: var(--e-a-btn-color-invert); | |
| 4813 | -} | |
| 4814 | -.elementor-button:active, | |
| 4815 | -.e-btn:active { | |
| 4816 | - background-color: var(--e-a-btn-bg-active); | |
| 4817 | -} | |
| 4818 | -.elementor-button:not([disabled]), | |
| 4819 | -.e-btn:not([disabled]) { | |
| 4820 | - cursor: pointer; | |
| 4821 | -} | |
| 4822 | -.elementor-button:disabled, | |
| 4823 | -.e-btn:disabled { | |
| 4824 | - background-color: var(--e-a-btn-bg-disabled); | |
| 4825 | - color: var(--e-a-btn-color-disabled); | |
| 4826 | -} | |
| 4827 | -.elementor-button:not(.elementor-button-state) .elementor-state-icon, | |
| 4828 | -.e-btn:not(.elementor-button-state) .elementor-state-icon { | |
| 4829 | - display: none; | |
| 4830 | -} | |
| 4831 | -.elementor-button.e-btn-txt, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-cancel, | |
| 4832 | -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-cancel, | |
| 4833 | -.e-btn.e-btn-txt, | |
| 4834 | -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-cancel, | |
| 4835 | -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-cancel { | |
| 4836 | - background: transparent; | |
| 4837 | - color: var(--e-a-color-txt); | |
| 4838 | -} | |
| 4839 | -.elementor-button.e-btn-txt:hover, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-cancel:hover, | |
| 4840 | -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-cancel:hover, .elementor-button.e-btn-txt:focus, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-cancel:focus, | |
| 4841 | -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-cancel:focus, | |
| 4842 | -.e-btn.e-btn-txt:hover, | |
| 4843 | -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-cancel:hover, | |
| 4844 | -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-cancel:hover, | |
| 4845 | -.e-btn.e-btn-txt:focus, | |
| 4846 | -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-cancel:focus, | |
| 4847 | -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-cancel:focus { | |
| 4848 | - background: var(--e-a-bg-hover); | |
| 4849 | - color: var(--e-a-color-txt-hover); | |
| 4850 | -} | |
| 4851 | -.elementor-button.e-btn-txt:disabled, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-cancel:disabled, | |
| 4852 | -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-cancel:disabled, | |
| 4853 | -.e-btn.e-btn-txt:disabled, | |
| 4854 | -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-cancel:disabled, | |
| 4855 | -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-cancel:disabled { | |
| 4856 | - background: transparent; | |
| 4857 | - color: var(--e-a-color-txt-disabled); | |
| 4858 | -} | |
| 4859 | -.elementor-button.e-btn-txt-border, | |
| 4860 | -.e-btn.e-btn-txt-border { | |
| 4861 | - border: 1px solid var(--e-a-color-txt-muted); | |
| 4862 | -} | |
| 4863 | -.elementor-button.elementor-button-success, .elementor-button.e-success, | |
| 4864 | -.e-btn.elementor-button-success, | |
| 4865 | -.e-btn.e-success { | |
| 4866 | - background-color: var(--e-a-btn-bg-success); | |
| 4867 | -} | |
| 4868 | -.elementor-button.elementor-button-success:hover, .elementor-button.elementor-button-success:focus, .elementor-button.e-success:hover, .elementor-button.e-success:focus, | |
| 4869 | -.e-btn.elementor-button-success:hover, | |
| 4870 | -.e-btn.elementor-button-success:focus, | |
| 4871 | -.e-btn.e-success:hover, | |
| 4872 | -.e-btn.e-success:focus { | |
| 4873 | - background-color: var(--e-a-btn-bg-success-hover); | |
| 4874 | -} | |
| 4875 | -.elementor-button.e-primary, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-ok, | |
| 4876 | -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-ok, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-take_over, | |
| 4877 | -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-take_over, | |
| 4878 | -.e-btn.e-primary, | |
| 4879 | -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok, | |
| 4880 | -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok, | |
| 4881 | -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over, | |
| 4882 | -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over { | |
| 4883 | - background-color: var(--e-a-btn-bg-primary); | |
| 4884 | - color: var(--e-a-btn-color); | |
| 4885 | -} | |
| 4886 | -.elementor-button.e-primary:hover, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-ok:hover, | |
| 4887 | -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-ok:hover, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-take_over:hover, | |
| 4888 | -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-take_over:hover, .elementor-button.e-primary:focus, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-ok:focus, | |
| 4889 | -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-ok:focus, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-take_over:focus, | |
| 4890 | -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-take_over:focus, | |
| 4891 | -.e-btn.e-primary:hover, | |
| 4892 | -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok:hover, | |
| 4893 | -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok:hover, | |
| 4894 | -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over:hover, | |
| 4895 | -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over:hover, | |
| 4896 | -.e-btn.e-primary:focus, | |
| 4897 | -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok:focus, | |
| 4898 | -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok:focus, | |
| 4899 | -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over:focus, | |
| 4900 | -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over:focus { | |
| 4901 | - background-color: var(--e-a-btn-bg-primary-hover); | |
| 4902 | - color: var(--e-a-btn-color); | |
| 4903 | -} | |
| 4904 | -.elementor-button.e-primary.e-btn-txt, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.e-btn-txt.dialog-button.dialog-ok, | |
| 4905 | -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.e-btn-txt.dialog-button.dialog-ok, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.e-btn-txt.dialog-button.dialog-take_over, | |
| 4906 | -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.e-btn-txt.dialog-button.dialog-take_over, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.e-primary.dialog-button.dialog-cancel, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-ok.dialog-cancel, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-take_over.dialog-cancel, | |
| 4907 | -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.e-primary.dialog-button.dialog-cancel, | |
| 4908 | -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-ok.dialog-cancel, | |
| 4909 | -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-take_over.dialog-cancel, | |
| 4910 | -.e-btn.e-primary.e-btn-txt, | |
| 4911 | -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-ok, | |
| 4912 | -.dialog-type-alert .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-ok, | |
| 4913 | -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-take_over, | |
| 4914 | -.dialog-type-alert .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-take_over, | |
| 4915 | -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.e-primary.dialog-button.dialog-cancel, | |
| 4916 | -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok.dialog-cancel, | |
| 4917 | -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over.dialog-cancel, | |
| 4918 | -.dialog-type-alert .dialog-buttons-wrapper .e-btn.e-primary.dialog-button.dialog-cancel, | |
| 4919 | -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok.dialog-cancel, | |
| 4920 | -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over.dialog-cancel { | |
| 4921 | - background: transparent; | |
| 4922 | - color: var(--e-a-color-primary-bold); | |
| 4923 | -} | |
| 4924 | -.elementor-button.e-primary.e-btn-txt:hover, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.e-btn-txt.dialog-button.dialog-ok:hover, | |
| 4925 | -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.e-btn-txt.dialog-button.dialog-ok:hover, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.e-btn-txt.dialog-button.dialog-take_over:hover, | |
| 4926 | -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.e-btn-txt.dialog-button.dialog-take_over:hover, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.e-primary.dialog-button.dialog-cancel:hover, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-ok.dialog-cancel:hover, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-take_over.dialog-cancel:hover, | |
| 4927 | -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.e-primary.dialog-button.dialog-cancel:hover, | |
| 4928 | -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-ok.dialog-cancel:hover, | |
| 4929 | -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-take_over.dialog-cancel:hover, .elementor-button.e-primary.e-btn-txt:focus, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.e-btn-txt.dialog-button.dialog-ok:focus, | |
| 4930 | -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.e-btn-txt.dialog-button.dialog-ok:focus, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.e-btn-txt.dialog-button.dialog-take_over:focus, | |
| 4931 | -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.e-btn-txt.dialog-button.dialog-take_over:focus, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.e-primary.dialog-button.dialog-cancel:focus, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-ok.dialog-cancel:focus, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-take_over.dialog-cancel:focus, | |
| 4932 | -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.e-primary.dialog-button.dialog-cancel:focus, | |
| 4933 | -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-ok.dialog-cancel:focus, | |
| 4934 | -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-take_over.dialog-cancel:focus, | |
| 4935 | -.e-btn.e-primary.e-btn-txt:hover, | |
| 4936 | -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-ok:hover, | |
| 4937 | -.dialog-type-alert .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-ok:hover, | |
| 4938 | -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-take_over:hover, | |
| 4939 | -.dialog-type-alert .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-take_over:hover, | |
| 4940 | -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.e-primary.dialog-button.dialog-cancel:hover, | |
| 4941 | -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok.dialog-cancel:hover, | |
| 4942 | -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over.dialog-cancel:hover, | |
| 4943 | -.dialog-type-alert .dialog-buttons-wrapper .e-btn.e-primary.dialog-button.dialog-cancel:hover, | |
| 4944 | -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok.dialog-cancel:hover, | |
| 4945 | -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over.dialog-cancel:hover, | |
| 4946 | -.e-btn.e-primary.e-btn-txt:focus, | |
| 4947 | -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-ok:focus, | |
| 4948 | -.dialog-type-alert .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-ok:focus, | |
| 4949 | -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-take_over:focus, | |
| 4950 | -.dialog-type-alert .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-take_over:focus, | |
| 4951 | -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.e-primary.dialog-button.dialog-cancel:focus, | |
| 4952 | -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok.dialog-cancel:focus, | |
| 4953 | -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over.dialog-cancel:focus, | |
| 4954 | -.dialog-type-alert .dialog-buttons-wrapper .e-btn.e-primary.dialog-button.dialog-cancel:focus, | |
| 4955 | -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok.dialog-cancel:focus, | |
| 4956 | -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over.dialog-cancel:focus { | |
| 4957 | - background: var(--e-a-bg-primary); | |
| 4958 | -} | |
| 4959 | -.elementor-button.go-pro, .elementor-button.e-accent, | |
| 4960 | -.e-btn.go-pro, | |
| 4961 | -.e-btn.e-accent { | |
| 4962 | - background-color: var(--e-a-btn-bg-accent); | |
| 4963 | -} | |
| 4964 | -.elementor-button.go-pro:hover, .elementor-button.go-pro:focus, .elementor-button.e-accent:hover, .elementor-button.e-accent:focus, | |
| 4965 | -.e-btn.go-pro:hover, | |
| 4966 | -.e-btn.go-pro:focus, | |
| 4967 | -.e-btn.e-accent:hover, | |
| 4968 | -.e-btn.e-accent:focus { | |
| 4969 | - background-color: var(--e-a-btn-bg-accent-hover); | |
| 4970 | -} | |
| 4971 | -.elementor-button.go-pro:active, .elementor-button.e-accent:active, | |
| 4972 | -.e-btn.go-pro:active, | |
| 4973 | -.e-btn.e-accent:active { | |
| 4974 | - background-color: var(--e-a-btn-bg-accent-active); | |
| 4975 | -} | |
| 4976 | -.elementor-button.elementor-button-info, .elementor-button.e-info, | |
| 4977 | -.e-btn.elementor-button-info, | |
| 4978 | -.e-btn.e-info { | |
| 4979 | - background-color: var(--e-a-btn-bg-info); | |
| 4980 | -} | |
| 4981 | -.elementor-button.elementor-button-info:hover, .elementor-button.elementor-button-info:focus, .elementor-button.e-info:hover, .elementor-button.e-info:focus, | |
| 4982 | -.e-btn.elementor-button-info:hover, | |
| 4983 | -.e-btn.elementor-button-info:focus, | |
| 4984 | -.e-btn.e-info:hover, | |
| 4985 | -.e-btn.e-info:focus { | |
| 4986 | - background-color: var(--e-a-btn-bg-info-hover); | |
| 4987 | -} | |
| 4988 | -.elementor-button.elementor-button-warning, .elementor-button.e-warning, | |
| 4989 | -.e-btn.elementor-button-warning, | |
| 4990 | -.e-btn.e-warning { | |
| 4991 | - background-color: var(--e-a-btn-bg-warning); | |
| 4992 | -} | |
| 4993 | -.elementor-button.elementor-button-warning:hover, .elementor-button.elementor-button-warning:focus, .elementor-button.e-warning:hover, .elementor-button.e-warning:focus, | |
| 4994 | -.e-btn.elementor-button-warning:hover, | |
| 4995 | -.e-btn.elementor-button-warning:focus, | |
| 4996 | -.e-btn.e-warning:hover, | |
| 4997 | -.e-btn.e-warning:focus { | |
| 4998 | - background-color: var(--e-a-btn-bg-warning-hover); | |
| 4999 | -} | |
| 5000 | -.elementor-button.elementor-button-danger, .elementor-button.e-danger, | |
| 5001 | -.e-btn.elementor-button-danger, | |
| 5002 | -.e-btn.e-danger { | |
| 5003 | - background-color: var(--e-a-btn-bg-danger); | |
| 5004 | -} | |
| 5005 | -.elementor-button.elementor-button-danger.color-white, .elementor-button.e-danger.color-white, | |
| 5006 | -.e-btn.elementor-button-danger.color-white, | |
| 5007 | -.e-btn.e-danger.color-white { | |
| 5008 | - color: var(--e-a-color-white); | |
| 5009 | -} | |
| 5010 | -.elementor-button.elementor-button-danger:hover, .elementor-button.elementor-button-danger:focus, .elementor-button.e-danger:hover, .elementor-button.e-danger:focus, | |
| 5011 | -.e-btn.elementor-button-danger:hover, | |
| 5012 | -.e-btn.elementor-button-danger:focus, | |
| 5013 | -.e-btn.e-danger:hover, | |
| 5014 | -.e-btn.e-danger:focus { | |
| 5015 | - background-color: var(--e-a-btn-bg-danger-hover); | |
| 5016 | -} | |
| 5017 | -.elementor-button i, | |
| 5018 | -.e-btn i { | |
| 5019 | - margin-inline-end: 5px; | |
| 5020 | -} | |
| 5021 | - | |
| 5022 | 4503 | body { |
| 5023 | 4504 | --e-preview-width: calc(100% - var(--e-editor-panel-width, 300px)); |
| 5024 | 4505 | } |
| 5025 | 4506 | body.elementor-navigator-docked { |
| @@ -5026,9 +4507,11 @@ | ||
| 5026 | 4507 | --e-preview-width: calc(100% - var(--e-editor-panel-width, 300px) - var(--e-editor-navigator-width, 0px)); |
| 5027 | 4508 | } |
| 5028 | 4509 | body.elementor-device-desktop #elementor-preview { |
| 5029 | 4510 | overflow-y: hidden; |
| 5030 | - align-items: flex-start; | |
| 4511 | + -webkit-box-align: start; | |
| 4512 | + -ms-flex-align: start; | |
| 4513 | + align-items: flex-start; | |
| 5031 | 4514 | } |
| 5032 | 4515 | body:not(.elementor-device-desktop) body { |
| 5033 | 4516 | overflow-y: auto; |
| 5034 | 4517 | } |
| @@ -5037,40 +4520,57 @@ | ||
| 5037 | 4520 | background-color: #333; |
| 5038 | 4521 | height: 100%; |
| 5039 | 4522 | border: 0; |
| 5040 | 4523 | width: var(--e-preview-width); |
| 4524 | + display: -webkit-box; | |
| 4525 | + display: -ms-flexbox; | |
| 5041 | 4526 | display: flex; |
| 5042 | - flex-direction: column; | |
| 5043 | - justify-content: flex-start; | |
| 5044 | - align-items: center; | |
| 4527 | + -webkit-box-orient: vertical; | |
| 4528 | + -webkit-box-direction: normal; | |
| 4529 | + -ms-flex-direction: column; | |
| 4530 | + flex-direction: column; | |
| 4531 | + -webkit-box-pack: start; | |
| 4532 | + -ms-flex-pack: start; | |
| 4533 | + justify-content: flex-start; | |
| 4534 | + -webkit-box-align: center; | |
| 4535 | + -ms-flex-align: center; | |
| 4536 | + align-items: center; | |
| 5045 | 4537 | position: relative; |
| 5046 | 4538 | } |
| 5047 | 4539 | |
| 5048 | 4540 | #elementor-preview-responsive-wrapper { |
| 5049 | - transform-origin: top center; | |
| 5050 | - margin: 20px; | |
| 5051 | - transform: scale(var(--e-preview-scale, 1)); | |
| 5052 | - overflow: hidden; | |
| 4541 | + -webkit-transform-origin: top center; | |
| 4542 | + -ms-transform-origin: top center; | |
| 4543 | + transform-origin: top center; | |
| 4544 | + padding: 20px; | |
| 4545 | + -webkit-transform: scale(var(--e-preview-scale, 1)); | |
| 4546 | + -ms-transform: scale(var(--e-preview-scale, 1)); | |
| 4547 | + transform: scale(var(--e-preview-scale, 1)); | |
| 5053 | 4548 | } |
| 5054 | 4549 | .elementor-device-desktop #elementor-preview-responsive-wrapper { |
| 5055 | 4550 | min-width: 1025px; |
| 5056 | 4551 | width: 100%; |
| 5057 | 4552 | height: 100%; |
| 5058 | - margin: 0; | |
| 4553 | + padding: 0; | |
| 5059 | 4554 | position: relative; |
| 5060 | 4555 | } |
| 5061 | 4556 | body.e-is-device-mode:not(.elementor-device-desktop) #elementor-preview-responsive-wrapper { |
| 5062 | 4557 | width: var(--e-editor-preview-width); |
| 5063 | 4558 | height: var(--e-editor-preview-height); |
| 5064 | - margin: 20px max((100vw - var(--e-editor-panel-width) - var(--e-editor-preview-width)) / 2, 20px); | |
| 5065 | - box-sizing: content-box; | |
| 4559 | + margin: 0 max((100vw - var(--e-editor-panel-width) - var(--e-editor-preview-width)) / 2, 20px); | |
| 4560 | + -webkit-box-sizing: content-box; | |
| 4561 | + box-sizing: content-box; | |
| 5066 | 4562 | position: relative; |
| 5067 | 4563 | max-height: calc(100vh - 80px); |
| 5068 | 4564 | } |
| 5069 | 4565 | body.e-is-device-mode:not(.elementor-device-desktop) #elementor-preview-responsive-wrapper .ui-resizable-handle { |
| 4566 | + display: -webkit-box !important; | |
| 4567 | + display: -ms-flexbox !important; | |
| 5070 | 4568 | display: flex !important; |
| 5071 | 4569 | } |
| 5072 | 4570 | #elementor-preview-responsive-wrapper:not(.ui-resizable-resizing) { |
| 4571 | + -webkit-transition: 0.3s ease-in-out; | |
| 4572 | + -o-transition: 0.3s ease-in-out; | |
| 5073 | 4573 | transition: 0.3s ease-in-out; |
| 5074 | 4574 | } |
| 5075 | 4575 | #elementor-preview-responsive-wrapper .ui-resizable-handle { |
| 5076 | 4576 | top: 0; |
| @@ -5079,10 +4579,14 @@ | ||
| 5079 | 4579 | top: auto; |
| 5080 | 4580 | bottom: 0; |
| 5081 | 4581 | } |
| 5082 | 4582 | #elementor-preview-responsive-wrapper .ui-resizable-n, #elementor-preview-responsive-wrapper .ui-resizable-s { |
| 5083 | - align-items: center; | |
| 5084 | - justify-content: center; | |
| 4583 | + -webkit-box-align: center; | |
| 4584 | + -ms-flex-align: center; | |
| 4585 | + align-items: center; | |
| 4586 | + -webkit-box-pack: center; | |
| 4587 | + -ms-flex-pack: center; | |
| 4588 | + justify-content: center; | |
| 5085 | 4589 | height: 20px; |
| 5086 | 4590 | } |
| 5087 | 4591 | #elementor-preview-responsive-wrapper .ui-resizable-n:before, #elementor-preview-responsive-wrapper .ui-resizable-s:before { |
| 5088 | 4592 | content: ""; |
| @@ -5090,8 +4594,10 @@ | ||
| 5090 | 4594 | background-color: rgba(255, 255, 255, 0.2); |
| 5091 | 4595 | width: 50px; |
| 5092 | 4596 | height: 4px; |
| 5093 | 4597 | border-radius: 3px; |
| 4598 | + -webkit-transition: all 0.2s ease-in-out; | |
| 4599 | + -o-transition: all 0.2s ease-in-out; | |
| 5094 | 4600 | transition: all 0.2s ease-in-out; |
| 5095 | 4601 | } |
| 5096 | 4602 | #elementor-preview-responsive-wrapper .ui-resizable-n:hover:before, #elementor-preview-responsive-wrapper .ui-resizable-s:hover:before { |
| 5097 | 4603 | background-color: rgba(255, 255, 255, 0.6); |
| @@ -5096,16 +4602,18 @@ | ||
| 5096 | 4602 | #elementor-preview-responsive-wrapper .ui-resizable-n:hover:before, #elementor-preview-responsive-wrapper .ui-resizable-s:hover:before { |
| 5097 | 4603 | background-color: rgba(255, 255, 255, 0.6); |
| 5098 | 4604 | width: 100px; |
| 5099 | 4605 | } |
| 5100 | -#elementor-preview-responsive-wrapper .ui-resizable-e, | |
| 5101 | -#elementor-preview-responsive-wrapper .ui-resizable-w { | |
| 5102 | - align-items: center; | |
| 5103 | - justify-content: center; | |
| 4606 | +#elementor-preview-responsive-wrapper .ui-resizable-e, #elementor-preview-responsive-wrapper .ui-resizable-w { | |
| 4607 | + -webkit-box-align: center; | |
| 4608 | + -ms-flex-align: center; | |
| 4609 | + align-items: center; | |
| 4610 | + -webkit-box-pack: center; | |
| 4611 | + -ms-flex-pack: center; | |
| 4612 | + justify-content: center; | |
| 5104 | 4613 | width: 20px; |
| 5105 | 4614 | } |
| 5106 | -#elementor-preview-responsive-wrapper .ui-resizable-e:before, | |
| 5107 | -#elementor-preview-responsive-wrapper .ui-resizable-w:before { | |
| 4615 | +#elementor-preview-responsive-wrapper .ui-resizable-e:before, #elementor-preview-responsive-wrapper .ui-resizable-w:before { | |
| 5108 | 4616 | content: ""; |
| 5109 | 4617 | display: block; |
| 5110 | 4618 | background-color: rgba(255, 255, 255, 0.2); |
| 5111 | 4619 | width: 4px; |
| @@ -5110,12 +4618,13 @@ | ||
| 5110 | 4618 | background-color: rgba(255, 255, 255, 0.2); |
| 5111 | 4619 | width: 4px; |
| 5112 | 4620 | height: 50px; |
| 5113 | 4621 | border-radius: 3px; |
| 4622 | + -webkit-transition: all 0.2s ease-in-out; | |
| 4623 | + -o-transition: all 0.2s ease-in-out; | |
| 5114 | 4624 | transition: all 0.2s ease-in-out; |
| 5115 | 4625 | } |
| 5116 | -#elementor-preview-responsive-wrapper .ui-resizable-e:hover:before, | |
| 5117 | -#elementor-preview-responsive-wrapper .ui-resizable-w:hover:before { | |
| 4626 | +#elementor-preview-responsive-wrapper .ui-resizable-e:hover:before, #elementor-preview-responsive-wrapper .ui-resizable-w:hover:before { | |
| 5118 | 4627 | background-color: rgba(255, 255, 255, 0.6); |
| 5119 | 4628 | height: 100px; |
| 5120 | 4629 | } |
| 5121 | 4630 | #elementor-preview-responsive-wrapper.ui-resizable-resizing .ui-resizable-handle:before { |
| @@ -5124,10 +4633,9 @@ | ||
| 5124 | 4633 | #elementor-preview-responsive-wrapper .ui-resizable-s { |
| 5125 | 4634 | bottom: 0; |
| 5126 | 4635 | } |
| 5127 | 4636 | #elementor-preview-responsive-wrapper .ui-resizable-e { |
| 5128 | - width: 10px; | |
| 5129 | - right: -5px; | |
| 4637 | + right: 0; | |
| 5130 | 4638 | } |
| 5131 | 4639 | #elementor-preview-responsive-wrapper .ui-resizable-w { |
| 5132 | 4640 | left: 0; |
| 5133 | 4641 | } |
| @@ -5135,27 +4643,20 @@ | ||
| 5135 | 4643 | #elementor-preview-iframe { |
| 5136 | 4644 | width: 100%; |
| 5137 | 4645 | height: 100%; |
| 5138 | 4646 | background-color: #fff; |
| 5139 | - box-shadow: 0 0 3px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 0, 0, 0.15); | |
| 4647 | + -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 0, 0, 0.15); | |
| 4648 | + box-shadow: 0 0 3px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 0, 0, 0.15); | |
| 5140 | 4649 | } |
| 5141 | 4650 | |
| 5142 | -#elementor-template-library-modal button:focus-visible, | |
| 5143 | -#elementor-template-library-modal a:focus-visible, | |
| 5144 | -#elementor-template-library-modal input:focus-visible, | |
| 5145 | -#elementor-template-library-modal select:focus-visible, | |
| 5146 | -#elementor-template-library-modal [tabindex="0"]:focus-visible, | |
| 5147 | -#elementor-template-library-modal [role=tab]:focus-visible, | |
| 5148 | -#elementor-template-library-modal [role=radio]:focus-visible, | |
| 5149 | -#elementor-template-library-modal [role=menuitem]:focus-visible { | |
| 5150 | - outline: 2px solid var(--e-a-border-color-focus); | |
| 5151 | - outline-offset: 2px; | |
| 5152 | - border-radius: 2px; | |
| 5153 | -} | |
| 5154 | 4651 | #elementor-template-library-modal a.elementor-template-library-blank-footer-link { |
| 5155 | 4652 | font-style: normal; |
| 5156 | 4653 | text-decoration: underline; |
| 4654 | + color: #39b54a; | |
| 5157 | 4655 | } |
| 4656 | +#elementor-template-library-modal a.elementor-template-library-blank-footer-link:hover { | |
| 4657 | + color: #2d8e3a; | |
| 4658 | +} | |
| 5158 | 4659 | #elementor-template-library-modal .dialog-buttons-wrapper { |
| 5159 | 4660 | display: none; |
| 5160 | 4661 | } |
| 5161 | 4662 | #elementor-template-library-modal .select2-container { |
| @@ -5160,228 +4661,92 @@ | ||
| 5160 | 4661 | } |
| 5161 | 4662 | #elementor-template-library-modal .select2-container { |
| 5162 | 4663 | z-index: 0; |
| 5163 | 4664 | } |
| 5164 | -#elementor-template-library-modal .dialog-message { | |
| 5165 | - overflow-y: scroll; | |
| 5166 | -} | |
| 5167 | -#elementor-template-library-modal:has(#elementor-template-library-save-template) .dialog-message, #elementor-template-library-modal:has(#elementor-template-library-save-template-variant-b) .dialog-message { | |
| 5168 | - overflow-y: auto; | |
| 5169 | -} | |
| 5170 | -#elementor-template-library-modal .e-back-to-editor { | |
| 5171 | - color: var(--e-a-color-txt); | |
| 5172 | - text-decoration: underline; | |
| 5173 | - font-size: 17px; | |
| 5174 | - cursor: pointer; | |
| 5175 | -} | |
| 5176 | 4665 | |
| 5177 | 4666 | #elementor-template-library-header-menu { |
| 5178 | 4667 | text-align: center; |
| 4668 | + color: #6d7882; | |
| 4669 | + font-size: 13px; | |
| 5179 | 4670 | } |
| 5180 | 4671 | |
| 5181 | 4672 | .elementor-template-library-menu-item { |
| 5182 | 4673 | display: inline-block; |
| 5183 | - padding: 17px 20px; | |
| 5184 | - border-block-end: 3px solid transparent; | |
| 4674 | + padding: 17px 0; | |
| 4675 | + width: 115px; | |
| 5185 | 4676 | cursor: pointer; |
| 5186 | - background: transparent; | |
| 5187 | - margin: 0; | |
| 5188 | - font-size: inherit; | |
| 5189 | - font-family: inherit; | |
| 5190 | - color: inherit; | |
| 5191 | - border: none; | |
| 5192 | 4677 | } |
| 5193 | -.elementor-template-library-menu-item:hover { | |
| 5194 | - background-color: var(--e-a-bg-hover); | |
| 5195 | - border-color: var(--e-a-bg-hover); | |
| 4678 | +.elementor-template-library-menu-item.elementor-active { | |
| 4679 | + background-image: -webkit-gradient(linear, left top, left bottom, from(#f1f3f5), to(#fff)); | |
| 4680 | + background-image: -o-linear-gradient(top, #f1f3f5, #fff); | |
| 4681 | + background-image: linear-gradient(to bottom, #f1f3f5, #fff); | |
| 4682 | + border-bottom: 3px solid #93003c; | |
| 5196 | 4683 | } |
| 5197 | -.elementor-template-library-menu-item.elementor-active, .elementor-template-library-menu-item[aria-selected=true] { | |
| 5198 | - border-block-end: 3px solid; | |
| 5199 | - border-color: var(--e-a-border-color-accent); | |
| 5200 | - color: var(--e-a-color-txt-accent); | |
| 5201 | -} | |
| 5202 | 4684 | |
| 5203 | 4685 | #elementor-template-library-header-actions { |
| 4686 | + display: -webkit-box; | |
| 4687 | + display: -ms-flexbox; | |
| 5204 | 4688 | display: flex; |
| 5205 | 4689 | } |
| 5206 | -#elementor-template-library-header-actions > div, | |
| 5207 | -#elementor-template-library-header-actions > button { | |
| 5208 | - background: transparent; | |
| 5209 | - margin: 0; | |
| 5210 | - font-size: inherit; | |
| 5211 | - font-family: inherit; | |
| 5212 | - color: inherit; | |
| 5213 | - border: none; | |
| 5214 | - padding-inline-end: 16px; | |
| 5215 | - cursor: pointer; | |
| 4690 | +#elementor-template-library-header-actions > div { | |
| 4691 | + padding-right: 16px; | |
| 5216 | 4692 | } |
| 5217 | -#elementor-template-library-header-actions > div:focus-visible, | |
| 5218 | -#elementor-template-library-header-actions > button:focus-visible { | |
| 5219 | - outline: 2px solid var(--e-a-border-color-focus); | |
| 5220 | - outline-offset: -2px; | |
| 5221 | - border-radius: 2px; | |
| 5222 | -} | |
| 5223 | 4693 | |
| 5224 | -#elementor-template-library-header-tools.e-hidden-disabled { | |
| 5225 | - opacity: 0; | |
| 5226 | - visibility: hidden; | |
| 5227 | -} | |
| 5228 | - | |
| 5229 | 4694 | #elementor-template-library-header-preview-insert-wrapper { |
| 5230 | 4695 | cursor: default; |
| 5231 | 4696 | padding: 0 10px; |
| 5232 | 4697 | } |
| 5233 | - | |
| 5234 | -.elementor-template-library-template-insert + .elementor-template-library-template-generate-variation { | |
| 5235 | - margin-inline-start: 4px; | |
| 4698 | +#elementor-template-library-header-preview-insert-wrapper .elementor-button { | |
| 4699 | + padding: 8px 14px; | |
| 4700 | + font-size: 11px; | |
| 5236 | 4701 | } |
| 4702 | +#elementor-template-library-header-preview-insert-wrapper .elementor-template-library-template-insert { | |
| 4703 | + color: #fff; | |
| 4704 | + background-color: #39b54a; | |
| 4705 | +} | |
| 4706 | +#elementor-template-library-header-preview-insert-wrapper .elementor-go-pro { | |
| 4707 | + background-color: #93003c; | |
| 4708 | + color: #fff; | |
| 4709 | +} | |
| 5237 | 4710 | |
| 5238 | 4711 | #elementor-template-library-header-preview-back { |
| 5239 | - gap: 10px; | |
| 5240 | - padding-block: 16.5px 15px; | |
| 5241 | - padding-inline: 0 16.5px; | |
| 5242 | - border-inline-end: var(--e-a-border); | |
| 4712 | + padding: 16.5px 16.5px 15px 0; | |
| 4713 | + border-right: 1px solid #e6e9ec; | |
| 5243 | 4714 | cursor: pointer; |
| 4715 | + -webkit-transition: color 0.5s; | |
| 4716 | + -o-transition: color 0.5s; | |
| 5244 | 4717 | transition: color 0.5s; |
| 5245 | 4718 | } |
| 5246 | -#elementor-template-library-header-preview-back .elementor-template-library-header-back-button { | |
| 5247 | - background: transparent; | |
| 5248 | - margin: 0; | |
| 5249 | - font-size: inherit; | |
| 5250 | - font-family: inherit; | |
| 5251 | - color: inherit; | |
| 5252 | - border: none; | |
| 5253 | - display: flex; | |
| 5254 | - align-items: center; | |
| 5255 | - gap: 10px; | |
| 5256 | - cursor: pointer; | |
| 4719 | +#elementor-template-library-header-preview-back:not(:hover) { | |
| 4720 | + color: #a4afb7; | |
| 5257 | 4721 | } |
| 5258 | -#elementor-template-library-header-preview-back .elementor-template-library-header-back-button:focus-visible { | |
| 5259 | - outline: 2px solid var(--e-a-border-color-focus); | |
| 5260 | - outline-offset: 2px; | |
| 5261 | - border-radius: 2px; | |
| 5262 | -} | |
| 5263 | -#elementor-template-library-header-preview-back:hover { | |
| 5264 | - color: var(--e-a-color-txt-hover); | |
| 5265 | -} | |
| 5266 | 4722 | #elementor-template-library-header-preview-back i { |
| 4723 | + padding-right: 10px; | |
| 5267 | 4724 | font-size: 18px; |
| 5268 | - scale: calc(1 * var(--direction-multiplier)) 1; | |
| 5269 | 4725 | } |
| 4726 | +#elementor-template-library-header-preview-back i:before { | |
| 4727 | + content: "\e87e"; | |
| 4728 | +} | |
| 5270 | 4729 | |
| 5271 | 4730 | #elementor-template-library-templates { |
| 5272 | - display: flex; | |
| 5273 | - flex-direction: column; | |
| 5274 | - gap: 20px; | |
| 4731 | + padding: 0 15px; | |
| 5275 | 4732 | } |
| 5276 | -#elementor-template-library-templates .toolbar-container { | |
| 5277 | - display: flex; | |
| 5278 | - justify-content: space-between; | |
| 5279 | - align-items: center; | |
| 5280 | - gap: 2%; | |
| 5281 | - height: 45px; | |
| 4733 | +#elementor-template-library-templates[data-template-source=local] #elementor-template-library-templates-container { | |
| 4734 | + -webkit-box-shadow: 1px 1px 20px 0 rgba(0, 0, 0, 0.03); | |
| 4735 | + box-shadow: 1px 1px 20px 0 rgba(0, 0, 0, 0.03); | |
| 4736 | + margin-top: 10px; | |
| 4737 | + margin-bottom: 45px; | |
| 5282 | 4738 | } |
| 5283 | -#elementor-template-library-templates #elementor-template-library-templates-container { | |
| 5284 | - display: flex; | |
| 5285 | - flex-wrap: wrap; | |
| 5286 | - align-items: flex-start; | |
| 4739 | +#elementor-template-library-templates[data-template-source=local] .elementor-template-library-order-input:checked + .elementor-template-library-order-label { | |
| 4740 | + color: #6d7882; | |
| 5287 | 4741 | } |
| 5288 | -#elementor-template-library-templates[data-template-source=local] .toolbar-container .quota-progress-container { | |
| 5289 | - display: none; | |
| 5290 | -} | |
| 5291 | -#elementor-template-library-templates[data-template-source=cloud] .toolbar-container:has(.bulk-selection-action-bar:not([style*="display: block"])), #elementor-template-library-templates[data-template-source=empty] .toolbar-container:has(.bulk-selection-action-bar:not([style*="display: block"])) { | |
| 5292 | - justify-content: flex-end; | |
| 5293 | -} | |
| 5294 | -#elementor-template-library-templates[data-template-source=cloud] .toolbar-container .quota-progress-container, #elementor-template-library-templates[data-template-source=empty] .toolbar-container .quota-progress-container { | |
| 5295 | - display: flex; | |
| 5296 | - align-items: baseline; | |
| 5297 | - border-radius: 3px; | |
| 5298 | -} | |
| 5299 | -#elementor-template-library-templates[data-template-source=cloud] .toolbar-container .quota-progress-container:focus-visible, #elementor-template-library-templates[data-template-source=empty] .toolbar-container .quota-progress-container:focus-visible { | |
| 5300 | - outline: 2px solid var(--e-a-border-color-focus); | |
| 5301 | - outline-offset: 2px; | |
| 5302 | -} | |
| 5303 | -#elementor-template-library-templates[data-template-source=cloud] .toolbar-container .quota-progress-info, #elementor-template-library-templates[data-template-source=empty] .toolbar-container .quota-progress-info { | |
| 5304 | - align-items: center; | |
| 5305 | -} | |
| 5306 | -#elementor-template-library-templates[data-template-source=cloud] .toolbar-container .quota-progress-info i, #elementor-template-library-templates[data-template-source=empty] .toolbar-container .quota-progress-info i { | |
| 5307 | - font-size: 14px; | |
| 5308 | - margin-inline-start: 5px; | |
| 5309 | -} | |
| 5310 | -#elementor-template-library-templates[data-template-source=cloud] .toolbar-container .progress-bar-container, #elementor-template-library-templates[data-template-source=empty] .toolbar-container .progress-bar-container { | |
| 5311 | - width: 200px; | |
| 5312 | - margin: 0px 10px; | |
| 5313 | - align-self: center; | |
| 5314 | - text-align: start; | |
| 5315 | -} | |
| 5316 | -#elementor-template-library-templates[data-template-source=cloud] .toolbar-container .progress-bar-container .quota-warning, #elementor-template-library-templates[data-template-source=empty] .toolbar-container .progress-bar-container .quota-warning { | |
| 5317 | - font-size: 10px; | |
| 5318 | -} | |
| 5319 | -#elementor-template-library-templates[data-template-source=cloud] .toolbar-container .progress-bar-container a, #elementor-template-library-templates[data-template-source=empty] .toolbar-container .progress-bar-container a { | |
| 5320 | - color: var(--e-a-btn-bg-accent); | |
| 5321 | -} | |
| 5322 | -#elementor-template-library-templates[data-template-source=cloud] .toolbar-container .quota-progress-bar, #elementor-template-library-templates[data-template-source=empty] .toolbar-container .quota-progress-bar { | |
| 5323 | - height: 4px; | |
| 5324 | - background-color: var(--e-a-color-primary-bold); | |
| 5325 | - position: relative; | |
| 5326 | - display: flex; | |
| 5327 | - align-items: center; | |
| 5328 | - padding: 0; | |
| 5329 | -} | |
| 5330 | -#elementor-template-library-templates[data-template-source=cloud] .toolbar-container .quota-progress-bar-fill, #elementor-template-library-templates[data-template-source=empty] .toolbar-container .quota-progress-bar-fill { | |
| 5331 | - height: 100%; | |
| 5332 | - transition: width 0.3s ease; | |
| 5333 | -} | |
| 5334 | -#elementor-template-library-templates[data-template-source=cloud] .toolbar-container .quota-progress-bar-fill-normal, #elementor-template-library-templates[data-template-source=empty] .toolbar-container .quota-progress-bar-fill-normal { | |
| 5335 | - background-color: #D004D4; | |
| 5336 | -} | |
| 5337 | -#elementor-template-library-templates[data-template-source=cloud] .toolbar-container .quota-progress-bar-fill-warning, #elementor-template-library-templates[data-template-source=empty] .toolbar-container .quota-progress-bar-fill-warning { | |
| 5338 | - background-color: #F59E0B; | |
| 5339 | -} | |
| 5340 | -#elementor-template-library-templates[data-template-source=cloud] .toolbar-container .quota-progress-bar-fill-alert, #elementor-template-library-templates[data-template-source=empty] .toolbar-container .quota-progress-bar-fill-alert { | |
| 5341 | - background-color: #93003f; | |
| 5342 | -} | |
| 5343 | -#elementor-template-library-templates[data-template-source=cloud] .toolbar-container .quota-progress-bar-normal, #elementor-template-library-templates[data-template-source=empty] .toolbar-container .quota-progress-bar-normal { | |
| 5344 | - background-color: #F0ABFC; | |
| 5345 | -} | |
| 5346 | -#elementor-template-library-templates[data-template-source=cloud] .toolbar-container .quota-progress-bar-warning, #elementor-template-library-templates[data-template-source=empty] .toolbar-container .quota-progress-bar-warning { | |
| 5347 | - background-color: rgb(251.0236220472, 216.4291338583, 157.9763779528); | |
| 5348 | -} | |
| 5349 | -#elementor-template-library-templates[data-template-source=cloud] .toolbar-container-value, #elementor-template-library-templates[data-template-source=empty] .toolbar-container-value { | |
| 5350 | - font-size: 12px; | |
| 5351 | - color: var(--e-a-color-txt); | |
| 5352 | -} | |
| 5353 | -#elementor-template-library-templates[data-template-source=local] #elementor-template-library-templates-container, #elementor-template-library-templates[data-template-source=cloud] #elementor-template-library-templates-container { | |
| 5354 | - border-block-start: var(--e-a-border); | |
| 5355 | -} | |
| 5356 | -#elementor-template-library-templates[data-template-source=local] .elementor-template-library-order-input:checked + .elementor-template-library-order-label, #elementor-template-library-templates[data-template-source=cloud] .elementor-template-library-order-input:checked + .elementor-template-library-order-label { | |
| 5357 | - color: var(--e-a-color-txt-active); | |
| 5358 | -} | |
| 5359 | -#elementor-template-library-templates[data-template-source=cloud][data-template-view=grid] #elementor-template-library-templates-container { | |
| 5360 | - border-block-start: none; | |
| 5361 | -} | |
| 5362 | -#elementor-template-library-templates[data-template-source=cloud][data-template-view=grid] #elementor-template-library-order-toolbar-local { | |
| 5363 | - padding: 0; | |
| 5364 | -} | |
| 5365 | -#elementor-template-library-templates[data-template-source=cloud][data-template-view=grid] #elementor-template-library-order-toolbar-local div { | |
| 5366 | - max-width: -moz-fit-content; | |
| 5367 | - max-width: fit-content; | |
| 5368 | -} | |
| 5369 | -#elementor-template-library-templates[data-template-source=cloud][data-template-view=grid] #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-3, | |
| 5370 | -#elementor-template-library-templates[data-template-source=cloud][data-template-view=grid] #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-5 { | |
| 5371 | - display: none; | |
| 5372 | -} | |
| 5373 | -#elementor-template-library-templates[data-template-source=cloud] .elementor-template-library-local-column-3 { | |
| 5374 | - pointer-events: none; | |
| 5375 | -} | |
| 5376 | 4742 | #elementor-template-library-templates[data-template-source=remote] #elementor-template-library-templates-container { |
| 5377 | 4743 | margin: 10px -15px 0; |
| 5378 | 4744 | } |
| 5379 | 4745 | #elementor-template-library-templates[data-template-source=remote] .elementor-template-library-order-input:checked + .elementor-template-library-order-label { |
| 5380 | - color: var(--e-a-color-txt-active); | |
| 4746 | + color: #495157; | |
| 5381 | 4747 | } |
| 5382 | -#elementor-template-library-templates[data-template-source=empty] #elementor-template-library-order-toolbar-local, | |
| 5383 | -#elementor-template-library-templates[data-template-source=empty] #elementor-template-library-footer-banner { | |
| 4748 | +#elementor-template-library-templates[data-template-source=empty] #elementor-template-library-order-toolbar-local, #elementor-template-library-templates[data-template-source=empty] #elementor-template-library-footer-banner { | |
| 5384 | 4749 | display: none; |
| 5385 | 4750 | } |
| 5386 | 4751 | #elementor-template-library-templates.elementor-templates-filter-active #elementor-template-library-footer-banner { |
| 5387 | 4752 | display: none; |
| @@ -5389,355 +4754,73 @@ | ||
| 5389 | 4754 | #elementor-template-library-templates .elementor-template-library-order-input { |
| 5390 | 4755 | display: none; |
| 5391 | 4756 | } |
| 5392 | 4757 | #elementor-template-library-templates .elementor-template-library-order-input:checked + .elementor-template-library-order-label { |
| 5393 | - padding-inline-end: 8px; | |
| 4758 | + padding-right: 8px; | |
| 5394 | 4759 | } |
| 5395 | 4760 | #elementor-template-library-templates .elementor-template-library-order-input:checked + .elementor-template-library-order-label:after { |
| 5396 | 4761 | font-family: eicons; |
| 5397 | 4762 | content: "\e8ae"; |
| 5398 | - margin-inline-start: 3px; | |
| 4763 | + margin-left: 3px; | |
| 5399 | 4764 | } |
| 5400 | 4765 | #elementor-template-library-templates .elementor-template-library-order-input:checked.elementor-template-library-order-reverse + .elementor-template-library-order-label:after { |
| 5401 | 4766 | content: "\e8ad"; |
| 5402 | 4767 | } |
| 5403 | -#elementor-template-library-templates .elementor-template-library-filter-toolbar-side-actions { | |
| 4768 | + | |
| 4769 | +#elementor-template-library-templates-container { | |
| 4770 | + display: -webkit-box; | |
| 4771 | + display: -ms-flexbox; | |
| 5404 | 4772 | display: flex; |
| 5405 | - align-items: center; | |
| 5406 | - gap: 8px; | |
| 4773 | + -ms-flex-wrap: wrap; | |
| 4774 | + flex-wrap: wrap; | |
| 4775 | + -webkit-box-align: start; | |
| 4776 | + -ms-flex-align: start; | |
| 4777 | + align-items: flex-start; | |
| 5407 | 4778 | } |
| 5408 | -#elementor-template-library-templates .elementor-template-library-filter-toolbar-side-actions .elementor-template-library-action-item { | |
| 5409 | - background: transparent; | |
| 5410 | - margin: 0; | |
| 5411 | - font-size: inherit; | |
| 5412 | - font-family: inherit; | |
| 5413 | - color: inherit; | |
| 5414 | - border: none; | |
| 5415 | - cursor: pointer; | |
| 5416 | - font-size: 20px; | |
| 5417 | - padding: 0 5px; | |
| 5418 | - border-radius: 2px; | |
| 5419 | - color: var(--e-a-color-txt); | |
| 4779 | +#elementor-template-library-templates-container .elementor-template-library-template-local .elementor-template-library-template-insert { | |
| 4780 | + text-transform: none; | |
| 4781 | + font-size: 12px; | |
| 5420 | 4782 | } |
| 5421 | -#elementor-template-library-templates .elementor-template-library-filter-toolbar-side-actions .elementor-template-library-action-item:hover { | |
| 5422 | - background-color: var(--e-a-bg-hover); | |
| 5423 | -} | |
| 5424 | -#elementor-template-library-templates .elementor-template-library-filter-toolbar-side-actions .divider { | |
| 5425 | - width: 1px; | |
| 5426 | - height: 20px; | |
| 5427 | - background-color: var(--e-a-border-color); | |
| 5428 | -} | |
| 5429 | -#elementor-template-library-templates[data-template-view=list] .elementor-template-library-filter-toolbar-side-actions #elementor-template-library-view-list { | |
| 5430 | - background-color: var(--e-a-bg-hover); | |
| 5431 | -} | |
| 5432 | -#elementor-template-library-templates[data-template-view=grid] .elementor-template-library-filter-toolbar-side-actions #elementor-template-library-view-grid { | |
| 5433 | - background-color: var(--e-a-bg-hover); | |
| 5434 | -} | |
| 5435 | -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container { | |
| 5436 | - display: grid; | |
| 5437 | - grid-template-columns: repeat(auto-fill, 208px); | |
| 5438 | - grid-gap: 20px; | |
| 5439 | - padding: 20px 0; | |
| 5440 | -} | |
| 5441 | -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container > .elementor-template-library-template-type-folder + .elementor-template-library-template-type-template { | |
| 5442 | - grid-column: 1; | |
| 5443 | -} | |
| 5444 | -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container #elementor-template-library-templates-empty { | |
| 5445 | - grid-column: 1/-1; | |
| 5446 | -} | |
| 5447 | -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid { | |
| 5448 | - display: flex; | |
| 5449 | - position: relative; | |
| 5450 | - flex-direction: column; | |
| 5451 | - height: 158px; | |
| 5452 | - padding: 8px; | |
| 5453 | - border: var(--e-a-border); | |
| 5454 | - border-radius: 3px; | |
| 5455 | -} | |
| 5456 | -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid:focus-visible { | |
| 5457 | - outline: 2px solid var(--e-a-border-color-focus); | |
| 5458 | - outline-offset: 2px; | |
| 5459 | -} | |
| 5460 | -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid:not([data-status=locked]):hover .elementor-template-library-template-preview, #elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid:not([data-status=locked]):focus .elementor-template-library-template-preview, #elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid:not([data-status=locked]):focus-within .elementor-template-library-template-preview { | |
| 5461 | - display: flex; | |
| 5462 | -} | |
| 5463 | -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid:not([data-status=locked]):hover .elementor-template-library-card-footer .elementor-template-library-template-name, #elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid:not([data-status=locked]):focus .elementor-template-library-card-footer .elementor-template-library-template-name, #elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid:not([data-status=locked]):focus-within .elementor-template-library-card-footer .elementor-template-library-template-name { | |
| 5464 | - display: none; | |
| 5465 | -} | |
| 5466 | -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid:not([data-status=locked]):hover .elementor-template-library-card-footer .elementor-template-library-template-card-footer-overlay, #elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid:not([data-status=locked]):focus .elementor-template-library-card-footer .elementor-template-library-template-card-footer-overlay, #elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid:not([data-status=locked]):focus-within .elementor-template-library-card-footer .elementor-template-library-template-card-footer-overlay { | |
| 5467 | - display: flex !important; | |
| 5468 | -} | |
| 5469 | -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid .elementor-template-library-template-thumbnail { | |
| 5470 | - width: 190px; | |
| 5471 | - height: 100px; | |
| 5472 | - position: relative; | |
| 5473 | - border-radius: 3px; | |
| 5474 | - margin-block-end: 4px; | |
| 5475 | - overflow: hidden; | |
| 5476 | -} | |
| 5477 | -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid .elementor-template-library-template-thumbnail img { | |
| 5478 | - -o-object-fit: contain; | |
| 5479 | - object-fit: contain; | |
| 5480 | - width: 100%; | |
| 5481 | - height: 100%; | |
| 5482 | -} | |
| 5483 | -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid .elementor-template-library-template-preview { | |
| 5484 | - display: none; | |
| 5485 | - justify-content: center; | |
| 5486 | - align-items: center; | |
| 5487 | - position: absolute; | |
| 5488 | - inset: 0; | |
| 5489 | - background-color: rgba(0, 0, 0, 0.5); | |
| 5490 | - cursor: default; | |
| 5491 | -} | |
| 5492 | -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid .elementor-template-library-template-name { | |
| 5493 | - font-size: 11px; | |
| 5494 | - white-space: nowrap; | |
| 5495 | - text-overflow: ellipsis; | |
| 5496 | - overflow: hidden; | |
| 5497 | -} | |
| 5498 | -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid .elementor-template-library-card-footer { | |
| 5499 | - display: flex; | |
| 5500 | - position: relative; | |
| 5501 | - justify-content: space-between; | |
| 5502 | - align-items: center; | |
| 5503 | - font-size: 11px; | |
| 5504 | - min-height: 38px; | |
| 5505 | -} | |
| 5506 | -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid .elementor-template-library-card-footer .elementor-template-library-template-card-footer-overlay { | |
| 5507 | - display: none; | |
| 5508 | - width: 90%; | |
| 5509 | - gap: 8px; | |
| 5510 | - height: 38px; | |
| 5511 | - padding: 4px 0; | |
| 5512 | -} | |
| 5513 | -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid .elementor-template-library-card-footer .elementor-template-library-template-card-footer-overlay .elementor-template-library-template-insert { | |
| 5514 | - display: flex; | |
| 5515 | -} | |
| 5516 | -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid .elementor-template-library-card-footer .elementor-template-library-template-card-footer-overlay .elementor-template-library-template-insert i { | |
| 5517 | - display: flex; | |
| 5518 | - align-items: center; | |
| 5519 | -} | |
| 5520 | -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid .elementor-template-library-card-footer .elementor-template-library-template-card-footer-overlay .elementor-template-library-template-card-footer-overlay-info { | |
| 5521 | - display: flex; | |
| 5522 | - flex-direction: column; | |
| 5523 | - justify-content: center; | |
| 5524 | - width: 65%; | |
| 5525 | - align-items: start; | |
| 5526 | - white-space: nowrap; | |
| 5527 | - text-overflow: ellipsis; | |
| 5528 | - overflow: hidden; | |
| 5529 | -} | |
| 5530 | -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid.elementor-template-library-template-type-folder { | |
| 5531 | - flex-direction: row; | |
| 5532 | - align-items: center; | |
| 5533 | - justify-content: start; | |
| 5534 | - height: 56px; | |
| 5535 | - padding: 13px 10px; | |
| 5536 | -} | |
| 5537 | -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid.elementor-template-library-template-type-folder .elementor-template-library-template-type-icon { | |
| 5538 | - font-size: 25px; | |
| 5539 | - margin-inline-end: 8px; | |
| 5540 | -} | |
| 5541 | -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid.elementor-template-library-template-type-folder .elementor-template-library-template-more-toggle { | |
| 5542 | - margin-inline-start: auto; | |
| 5543 | -} | |
| 5544 | -#elementor-template-library-templates[data-template-view=grid] #bulk-select-all { | |
| 5545 | - display: none; | |
| 5546 | -} | |
| 5547 | -#elementor-template-library-templates.no-bulk-selections #bulk-select-all, #elementor-template-library-templates.no-bulk-selections .bulk-selection-item-checkbox { | |
| 5548 | - visibility: hidden; | |
| 5549 | -} | |
| 5550 | -#elementor-template-library-templates.no-bulk-selections .elementor-template-library-template-name:hover .bulk-selection-item-checkbox { | |
| 5551 | - visibility: visible; | |
| 5552 | -} | |
| 5553 | -#elementor-template-library-templates .bulk-selection-action-bar { | |
| 5554 | - display: none; | |
| 5555 | - background: var(--e-a-bg-active); | |
| 5556 | - padding: 10px 25px; | |
| 5557 | - border-radius: 5px; | |
| 5558 | - color: var(--e-a-bg-invert); | |
| 5559 | - gap: 20px; | |
| 5560 | - align-items: center; | |
| 5561 | - flex: 1; | |
| 5562 | -} | |
| 5563 | -#elementor-template-library-templates .bulk-selection-action-bar button { | |
| 5564 | - background: transparent; | |
| 5565 | - margin: 0; | |
| 5566 | - font-size: inherit; | |
| 5567 | - font-family: inherit; | |
| 5568 | - color: inherit; | |
| 5569 | - border: none; | |
| 5570 | - cursor: pointer; | |
| 5571 | - display: flex; | |
| 5572 | - align-items: center; | |
| 5573 | - justify-content: center; | |
| 5574 | -} | |
| 5575 | -#elementor-template-library-templates .bulk-selection-action-bar button.disabled { | |
| 5576 | - pointer-events: none; | |
| 5577 | - opacity: 0.3; | |
| 5578 | - cursor: not-allowed; | |
| 5579 | -} | |
| 5580 | -#elementor-template-library-templates .bulk-selection-action-bar i { | |
| 5581 | - cursor: pointer; | |
| 5582 | - font-size: 18px; | |
| 5583 | -} | |
| 5584 | -#elementor-template-library-templates .bulk-selection-action-bar .eicon-editor-close { | |
| 5585 | - font-size: 20px; | |
| 5586 | -} | |
| 5587 | -#elementor-template-library-templates #elementor-template-library-navigation-container { | |
| 5588 | - display: flex; | |
| 5589 | - flex: 1; | |
| 5590 | - white-space: nowrap; | |
| 5591 | - text-overflow: ellipsis; | |
| 5592 | - overflow: hidden; | |
| 5593 | -} | |
| 5594 | -#elementor-template-library-templates #elementor-template-library-navigation-container .elementor-template-library-navigation-container { | |
| 5595 | - display: flex; | |
| 5596 | - flex-direction: row; | |
| 5597 | - align-items: center; | |
| 5598 | - gap: 15px; | |
| 5599 | - white-space: nowrap; | |
| 5600 | - text-overflow: ellipsis; | |
| 5601 | - overflow: hidden; | |
| 5602 | -} | |
| 5603 | -#elementor-template-library-templates #elementor-template-library-navigation-container .elementor-template-library-navigation-container > span { | |
| 5604 | - white-space: nowrap; | |
| 5605 | - text-overflow: ellipsis; | |
| 5606 | - overflow: hidden; | |
| 5607 | -} | |
| 5608 | -#elementor-template-library-templates #elementor-template-library-navigation-container .elementor-template-library-navigation-container .elementor-template-library-navigation-back-button { | |
| 5609 | - padding-inline-start: 8px; | |
| 5610 | - background-color: var(--e-a-bg-hover); | |
| 5611 | - color: var(--e-a-color-txt); | |
| 5612 | -} | |
| 5613 | -#elementor-template-library-templates #elementor-template-library-order-toolbar-local:hover #bulk-select-all { | |
| 5614 | - visibility: visible; | |
| 5615 | -} | |
| 5616 | -#elementor-template-library-templates .bulk-selected-item { | |
| 5617 | - background: var(--e-a-bg-active); | |
| 5618 | -} | |
| 5619 | -#elementor-template-library-templates .elementor-template-library-local-column-1 input[type=checkbox] { | |
| 5620 | - position: relative; | |
| 5621 | - inset-block-start: 3px; | |
| 5622 | -} | |
| 5623 | -#elementor-template-library-templates .elementor-template-library-local-column-1 input[type=checkbox]:checked { | |
| 5624 | - inset-block-start: 0px; | |
| 5625 | -} | |
| 5626 | -#elementor-template-library-templates .bulk-selection-item-checkbox:checked, | |
| 5627 | -#elementor-template-library-templates #bulk-select-all:checked { | |
| 5628 | - background: #69727D; | |
| 5629 | -} | |
| 5630 | -#elementor-template-library-templates .checkbox-minus:before { | |
| 5631 | - display: block; | |
| 5632 | - content: ""; | |
| 5633 | - width: 10px; | |
| 5634 | - height: 2px; | |
| 5635 | - background-color: white; | |
| 5636 | - transform: none; | |
| 5637 | -} | |
| 5638 | 4783 | |
| 5639 | 4784 | #elementor-template-library-toolbar { |
| 4785 | + display: -webkit-box; | |
| 4786 | + display: -ms-flexbox; | |
| 5640 | 4787 | display: flex; |
| 5641 | - justify-content: space-between; | |
| 5642 | - align-items: center; | |
| 4788 | + -webkit-box-pack: justify; | |
| 4789 | + -ms-flex-pack: justify; | |
| 4790 | + justify-content: space-between; | |
| 4791 | + -webkit-box-align: center; | |
| 4792 | + -ms-flex-align: center; | |
| 4793 | + align-items: center; | |
| 5643 | 4794 | } |
| 5644 | 4795 | |
| 5645 | 4796 | .elementor-template-library-filter-toolbar { |
| 4797 | + display: -webkit-box; | |
| 4798 | + display: -ms-flexbox; | |
| 5646 | 4799 | display: flex; |
| 5647 | - align-items: center; | |
| 4800 | + -webkit-box-align: center; | |
| 4801 | + -ms-flex-align: center; | |
| 4802 | + align-items: center; | |
| 5648 | 4803 | } |
| 5649 | 4804 | |
| 5650 | -.elementor-template-library-filter-select-source { | |
| 5651 | - width: 350px; | |
| 5652 | - display: flex; | |
| 5653 | - gap: 10px; | |
| 5654 | -} | |
| 5655 | -.elementor-template-library-filter-select-source .source-option { | |
| 5656 | - flex: 1; | |
| 5657 | - border: 0.5px solid #BABFC5; | |
| 5658 | - padding: 5px; | |
| 5659 | - border-radius: 3px; | |
| 5660 | - cursor: pointer; | |
| 5661 | - font-size: 12px; | |
| 5662 | -} | |
| 5663 | -.elementor-template-library-filter-select-source .source-option i { | |
| 5664 | - margin-inline-end: 5px; | |
| 5665 | -} | |
| 5666 | -.elementor-template-library-filter-select-source .source-option .new-badge { | |
| 5667 | - border: 1px solid var(--e-a-color-primary-bold-dark); | |
| 5668 | - padding: 2px 4px; | |
| 5669 | - color: var(--e-a-color-primary-bold-dark); | |
| 5670 | - border-radius: 10px; | |
| 5671 | - font-size: 10px; | |
| 5672 | - margin-inline-start: 5px; | |
| 5673 | -} | |
| 5674 | -.elementor-template-library-filter-select-source .source-option.selected, .elementor-template-library-filter-select-source .source-option:hover { | |
| 5675 | - background-color: var(--e-a-bg-hover); | |
| 5676 | -} | |
| 5677 | - | |
| 5678 | -#elementor-template-library-connect-states .elementor-template-library-filter-toolbar { | |
| 5679 | - display: flex; | |
| 5680 | - align-items: center; | |
| 5681 | - justify-content: space-between; | |
| 5682 | -} | |
| 5683 | - | |
| 5684 | -#elementor-template-library-toolbar .source-option-badge, | |
| 5685 | -.elementor-template-library-connect-states-badge .source-option-badge { | |
| 5686 | - display: flex; | |
| 5687 | - align-items: center; | |
| 5688 | - gap: 6px; | |
| 5689 | - padding: 6px 12px; | |
| 5690 | - border: none; | |
| 5691 | - border-radius: 20px; | |
| 5692 | - font-size: 14px; | |
| 5693 | - font-weight: 500; | |
| 5694 | - white-space: nowrap; | |
| 5695 | - margin-inline-start: auto; | |
| 5696 | - margin-inline-end: 15px; | |
| 5697 | -} | |
| 5698 | -#elementor-template-library-toolbar .source-option-badge i, | |
| 5699 | -.elementor-template-library-connect-states-badge .source-option-badge i { | |
| 5700 | - margin: 0; | |
| 5701 | - font-size: 14px; | |
| 5702 | -} | |
| 5703 | -#elementor-template-library-toolbar .source-option-badge.cloud-badge, | |
| 5704 | -.elementor-template-library-connect-states-badge .source-option-badge.cloud-badge { | |
| 5705 | - background-color: var(--e-a-bg-info); | |
| 5706 | - color: var(--e-a-color-info); | |
| 5707 | -} | |
| 5708 | -#elementor-template-library-toolbar .source-option-badge.cloud-badge i, | |
| 5709 | -.elementor-template-library-connect-states-badge .source-option-badge.cloud-badge i { | |
| 5710 | - color: var(--e-a-color-info); | |
| 5711 | -} | |
| 5712 | -#elementor-template-library-toolbar .source-option-badge.site-badge, | |
| 5713 | -.elementor-template-library-connect-states-badge .source-option-badge.site-badge { | |
| 5714 | - background-color: var(--e-a-bg-warning); | |
| 5715 | - color: var(--e-a-btn-bg-warning-hover); | |
| 5716 | -} | |
| 5717 | -#elementor-template-library-toolbar .source-option-badge.site-badge i, | |
| 5718 | -.elementor-template-library-connect-states-badge .source-option-badge.site-badge i { | |
| 5719 | - color: var(--e-a-btn-bg-warning-hover); | |
| 5720 | -} | |
| 5721 | - | |
| 5722 | 4805 | #elementor-template-library-filter-toolbar-remote { |
| 5723 | 4806 | font-size: 11px; |
| 5724 | 4807 | } |
| 5725 | 4808 | |
| 5726 | 4809 | #elementor-template-library-order { |
| 4810 | + display: -webkit-box; | |
| 4811 | + display: -ms-flexbox; | |
| 5727 | 4812 | display: flex; |
| 5728 | - border-inline-end: var(--e-a-border); | |
| 4813 | + border-right: 1px solid #d5dadf; | |
| 5729 | 4814 | } |
| 5730 | 4815 | |
| 5731 | 4816 | .elementor-template-library-order-label { |
| 5732 | 4817 | text-transform: uppercase; |
| 5733 | - padding-inline-end: 22px; | |
| 4818 | + padding-right: 22px; | |
| 5734 | 4819 | -webkit-user-select: none; |
| 5735 | 4820 | -moz-user-select: none; |
| 4821 | + -ms-user-select: none; | |
| 5736 | 4822 | user-select: none; |
| 5737 | - line-height: 1; | |
| 5738 | - font-size: 10px; | |
| 5739 | - font-weight: 500; | |
| 5740 | 4823 | } |
| 5741 | 4824 | |
| 5742 | 4825 | label.elementor-template-library-order-label { |
| 5743 | 4826 | cursor: pointer; |
| @@ -5742,13 +4825,13 @@ | ||
| 5742 | 4825 | label.elementor-template-library-order-label { |
| 5743 | 4826 | cursor: pointer; |
| 5744 | 4827 | } |
| 5745 | 4828 | label.elementor-template-library-order-label:hover { |
| 5746 | - color: var(--e-a-color-txt-hover); | |
| 4829 | + color: #556068; | |
| 5747 | 4830 | } |
| 5748 | 4831 | |
| 5749 | 4832 | #elementor-template-library-filter .select2 { |
| 5750 | - text-align: start; | |
| 4833 | + text-align: left; | |
| 5751 | 4834 | width: calc(27px * 5) !important; |
| 5752 | 4835 | } |
| 5753 | 4836 | #elementor-template-library-filter .select2-selection__rendered { |
| 5754 | 4837 | text-transform: capitalize; |
| @@ -5755,16 +4838,18 @@ | ||
| 5755 | 4838 | } |
| 5756 | 4839 | |
| 5757 | 4840 | #select2-elementor-template-library-filter-subtype-results .select2-results__option { |
| 5758 | 4841 | text-transform: capitalize; |
| 5759 | - text-align: start; | |
| 5760 | - padding-inline-start: 5px; | |
| 4842 | + text-align: left; | |
| 4843 | + padding-left: 5px; | |
| 5761 | 4844 | } |
| 5762 | 4845 | |
| 5763 | 4846 | #elementor-template-library-my-favorites { |
| 5764 | - flex-grow: 1; | |
| 5765 | - text-align: start; | |
| 5766 | - padding-inline-start: 20px; | |
| 4847 | + -webkit-box-flex: 1; | |
| 4848 | + -ms-flex-positive: 1; | |
| 4849 | + flex-grow: 1; | |
| 4850 | + text-align: left; | |
| 4851 | + padding-left: 20px; | |
| 5767 | 4852 | } |
| 5768 | 4853 | |
| 5769 | 4854 | #elementor-template-library-filter-my-favorites { |
| 5770 | 4855 | display: none; |
| @@ -5769,12 +4854,12 @@ | ||
| 5769 | 4854 | #elementor-template-library-filter-my-favorites { |
| 5770 | 4855 | display: none; |
| 5771 | 4856 | } |
| 5772 | 4857 | #elementor-template-library-filter-my-favorites:checked + #elementor-template-library-filter-my-favorites-label { |
| 5773 | - color: var(--e-a-color-txt-active); | |
| 4858 | + color: #495157; | |
| 5774 | 4859 | } |
| 5775 | 4860 | #elementor-template-library-filter-my-favorites:checked + #elementor-template-library-filter-my-favorites-label i:after { |
| 5776 | - color: var(--e-a-color-primary-bold); | |
| 4861 | + color: #93003c; | |
| 5777 | 4862 | content: "\e93f"; |
| 5778 | 4863 | } |
| 5779 | 4864 | |
| 5780 | 4865 | #elementor-template-library-filter-my-favorites-label { |
| @@ -5781,24 +4866,21 @@ | ||
| 5781 | 4866 | cursor: pointer; |
| 5782 | 4867 | text-transform: uppercase; |
| 5783 | 4868 | } |
| 5784 | 4869 | #elementor-template-library-filter-my-favorites-label:hover { |
| 5785 | - color: var(--e-a-color-txt-hover); | |
| 4870 | + color: #556068; | |
| 5786 | 4871 | } |
| 5787 | 4872 | #elementor-template-library-filter-my-favorites-label:hover i:after { |
| 5788 | - color: var(--e-a-color-primary-bold); | |
| 4873 | + color: #93003c; | |
| 5789 | 4874 | } |
| 5790 | 4875 | #elementor-template-library-filter-my-favorites-label i { |
| 5791 | - padding-inline-end: 5px; | |
| 4876 | + padding-right: 5px; | |
| 5792 | 4877 | } |
| 5793 | 4878 | #elementor-template-library-filter-my-favorites-label i:after { |
| 4879 | + color: #a4afb7; | |
| 5794 | 4880 | content: "\e923"; |
| 5795 | 4881 | } |
| 5796 | 4882 | |
| 5797 | -#elementor-template-library-create-new-folder-dialog .elementor-create-folder-template-dialog__p { | |
| 5798 | - margin-block-end: 10px; | |
| 5799 | -} | |
| 5800 | - | |
| 5801 | 4883 | #elementor-template-library-filter-text-wrapper { |
| 5802 | 4884 | width: 200px; |
| 5803 | 4885 | position: relative; |
| 5804 | 4886 | } |
| @@ -5803,79 +4885,76 @@ | ||
| 5803 | 4885 | position: relative; |
| 5804 | 4886 | } |
| 5805 | 4887 | #elementor-template-library-filter-text-wrapper i { |
| 5806 | 4888 | position: absolute; |
| 5807 | - inset-block-start: 50%; | |
| 5808 | - inset-inline-end: 0; | |
| 5809 | - transform: translateY(-50%); | |
| 4889 | + top: 50%; | |
| 4890 | + right: 0; | |
| 4891 | + -webkit-transform: translateY(-50%); | |
| 4892 | + -ms-transform: translateY(-50%); | |
| 4893 | + transform: translateY(-50%); | |
| 5810 | 4894 | } |
| 5811 | -#elementor-template-library-filter-text-wrapper i.eicon-loading.eicon-animation-spin { | |
| 5812 | - inset-block-start: 25%; | |
| 5813 | -} | |
| 5814 | 4895 | |
| 5815 | 4896 | #elementor-template-library-filter-text { |
| 5816 | 4897 | border: none; |
| 5817 | - border-block-end: var(--e-a-border-bold); | |
| 4898 | + border-bottom: 1px solid #d5dadf; | |
| 5818 | 4899 | border-radius: 0; |
| 5819 | 4900 | font-size: 11px; |
| 5820 | 4901 | padding: 8px 15px 8px 0; |
| 4902 | + -webkit-transition: border 0.5s; | |
| 4903 | + -o-transition: border 0.5s; | |
| 5821 | 4904 | transition: border 0.5s; |
| 5822 | 4905 | } |
| 5823 | 4906 | #elementor-template-library-filter-text:focus { |
| 5824 | - border-color: var(--e-a-border-color-focus); | |
| 4907 | + border-color: #c2cbd2; | |
| 5825 | 4908 | } |
| 4909 | +#elementor-template-library-filter-text::-webkit-input-placeholder { | |
| 4910 | + font-weight: 300; | |
| 4911 | + text-transform: uppercase; | |
| 4912 | +} | |
| 5826 | 4913 | #elementor-template-library-filter-text::-moz-placeholder { |
| 5827 | 4914 | font-weight: 300; |
| 5828 | 4915 | text-transform: uppercase; |
| 5829 | 4916 | } |
| 4917 | +#elementor-template-library-filter-text::-ms-input-placeholder { | |
| 4918 | + font-weight: 300; | |
| 4919 | + text-transform: uppercase; | |
| 4920 | +} | |
| 5830 | 4921 | #elementor-template-library-filter-text::placeholder { |
| 5831 | 4922 | font-weight: 300; |
| 5832 | 4923 | text-transform: uppercase; |
| 5833 | 4924 | } |
| 4925 | +#elementor-template-library-filter-text:focus { | |
| 4926 | + border-color: #c2cbd2; | |
| 4927 | +} | |
| 5834 | 4928 | |
| 5835 | 4929 | .elementor-template-library-template-remote { |
| 5836 | - margin: calc(30px / 2); | |
| 4930 | + margin: calc( 30px / 2 ); | |
| 5837 | 4931 | padding: 8px; |
| 5838 | - border: var(--e-a-border); | |
| 4932 | + background-color: #fff; | |
| 4933 | + -webkit-box-shadow: 0 1px 20px 0 rgba(0, 0, 0, 0.07); | |
| 4934 | + box-shadow: 0 1px 20px 0 rgba(0, 0, 0, 0.07); | |
| 5839 | 4935 | border-radius: 3px; |
| 5840 | 4936 | } |
| 5841 | -.elementor-template-library-template-remote:focus-visible { | |
| 5842 | - outline: 2px solid var(--e-a-border-color-focus); | |
| 5843 | - outline-offset: 2px; | |
| 5844 | -} | |
| 5845 | -.elementor-template-library-template-remote:hover, .elementor-template-library-template-remote:focus, .elementor-template-library-template-remote:focus-within { | |
| 5846 | - background-color: var(--e-a-bg-hover); | |
| 5847 | -} | |
| 5848 | -.elementor-template-library-template-remote:hover .elementor-template-library-template-preview, .elementor-template-library-template-remote:focus .elementor-template-library-template-preview, .elementor-template-library-template-remote:focus-within .elementor-template-library-template-preview { | |
| 5849 | - opacity: 1; | |
| 5850 | -} | |
| 5851 | -.elementor-template-library-template-remote:hover .elementor-template-library-template-name, .elementor-template-library-template-remote:focus .elementor-template-library-template-name, .elementor-template-library-template-remote:focus-within .elementor-template-library-template-name { | |
| 4937 | +.elementor-template-library-template-remote:hover .elementor-template-library-template-name { | |
| 5852 | 4938 | display: none; |
| 5853 | 4939 | } |
| 5854 | -.elementor-template-library-template-remote:hover .elementor-template-library-favorite, | |
| 5855 | -.elementor-template-library-template-remote:hover .elementor-template-library-template-action, .elementor-template-library-template-remote:focus .elementor-template-library-favorite, | |
| 5856 | -.elementor-template-library-template-remote:focus .elementor-template-library-template-action, .elementor-template-library-template-remote:focus-within .elementor-template-library-favorite, | |
| 5857 | -.elementor-template-library-template-remote:focus-within .elementor-template-library-template-action { | |
| 5858 | - display: initial; | |
| 5859 | -} | |
| 5860 | -.elementor-template-library-template-remote:not(:hover):not(:focus):not(:focus-within) .elementor-template-library-template-preview { | |
| 4940 | +.elementor-template-library-template-remote:not(:hover) .elementor-template-library-template-preview { | |
| 5861 | 4941 | opacity: 0; |
| 5862 | 4942 | } |
| 5863 | -.elementor-template-library-template-remote:not(:hover):not(:focus):not(:focus-within) .elementor-template-library-favorite, | |
| 5864 | -.elementor-template-library-template-remote:not(:hover):not(:focus):not(:focus-within) .elementor-template-library-template-action { | |
| 4943 | +.elementor-template-library-template-remote:not(:hover) .elementor-template-library-favorite, | |
| 4944 | +.elementor-template-library-template-remote:not(:hover) .elementor-template-library-template-action { | |
| 5865 | 4945 | display: none; |
| 5866 | 4946 | } |
| 5867 | 4947 | .elementor-template-library-template-remote.elementor-template-library-pro-template .elementor-template-library-template-body:before { |
| 5868 | 4948 | content: var(--elementor-template-library-subscription-plan-label); |
| 5869 | - background-color: var(--e-a-color-accent); | |
| 5870 | - color: var(--e-a-color-white); | |
| 4949 | + background-color: var(--elementor-template-library-subscription-plan-color); | |
| 4950 | + color: #d5dadf; | |
| 5871 | 4951 | position: absolute; |
| 5872 | 4952 | text-transform: uppercase; |
| 5873 | - line-height: 1; | |
| 5874 | - inset-block-start: 5px; | |
| 5875 | - inset-inline-end: 5px; | |
| 5876 | - padding: 3px 5px; | |
| 5877 | - font-size: 8px; | |
| 4953 | + top: 5px; | |
| 4954 | + right: 5px; | |
| 4955 | + padding: 2px 4px 0; | |
| 4956 | + font-size: 9px; | |
| 5878 | 4957 | border-radius: 2px; |
| 5879 | 4958 | } |
| 5880 | 4959 | .elementor-template-library-template-remote:not(.elementor-template-library-template-page):not(.elementor-template-library-template-lp) { |
| 5881 | 4960 | position: relative; |
| @@ -5888,19 +4967,25 @@ | ||
| 5888 | 4967 | } |
| 5889 | 4968 | .elementor-template-library-template-remote:not(.elementor-template-library-template-page):not(.elementor-template-library-template-lp) .elementor-template-library-template-footer { |
| 5890 | 4969 | position: absolute; |
| 5891 | 4970 | width: 100%; |
| 5892 | - inset-block-end: 0; | |
| 5893 | - inset-inline-start: 0; | |
| 4971 | + bottom: 0; | |
| 4972 | + left: 0; | |
| 5894 | 4973 | padding: 10px; |
| 5895 | - background-color: var(--e-a-bg-default); | |
| 4974 | + background-color: #fff; | |
| 4975 | + -webkit-transition: -webkit-transform 0.5s; | |
| 4976 | + transition: -webkit-transform 0.5s; | |
| 4977 | + -o-transition: transform 0.5s; | |
| 5896 | 4978 | transition: transform 0.5s; |
| 4979 | + transition: transform 0.5s, -webkit-transform 0.5s; | |
| 5897 | 4980 | } |
| 5898 | 4981 | .elementor-template-library-template-remote:not(.elementor-template-library-template-page):not(.elementor-template-library-template-lp) .elementor-template-library-template-name { |
| 5899 | 4982 | display: none; |
| 5900 | 4983 | } |
| 5901 | -.elementor-template-library-template-remote:not(.elementor-template-library-template-page):not(.elementor-template-library-template-lp):not(:hover):not(:focus):not(:focus-within) .elementor-template-library-template-footer { | |
| 5902 | - transform: translateY(100%); | |
| 4984 | +.elementor-template-library-template-remote:not(.elementor-template-library-template-page):not(.elementor-template-library-template-lp):not(:hover) .elementor-template-library-template-footer { | |
| 4985 | + -webkit-transform: translateY(100%); | |
| 4986 | + -ms-transform: translateY(100%); | |
| 4987 | + transform: translateY(100%); | |
| 5903 | 4988 | } |
| 5904 | 4989 | .elementor-template-library-template-remote .elementor-template-library-template-body { |
| 5905 | 4990 | position: relative; |
| 5906 | 4991 | } |
| @@ -5912,85 +4997,91 @@ | ||
| 5912 | 4997 | .elementor-template-library-template-remote .elementor-template-library-template-screenshot { |
| 5913 | 4998 | height: 100%; |
| 5914 | 4999 | background-size: cover; |
| 5915 | 5000 | background-position-x: 50%; |
| 5916 | - box-shadow: inset 0px -2px 15px -6px rgba(0, 0, 0, 0.07); | |
| 5001 | + -webkit-box-shadow: inset 0px -2px 15px -6px rgba(0, 0, 0, 0.07); | |
| 5002 | + box-shadow: inset 0px -2px 15px -6px rgba(0, 0, 0, 0.07); | |
| 5917 | 5003 | } |
| 5918 | 5004 | .elementor-template-library-template-remote .elementor-template-library-template-preview { |
| 5919 | 5005 | position: absolute; |
| 5920 | - inset: 0; | |
| 5006 | + top: 0; | |
| 5007 | + left: 0; | |
| 5008 | + width: 100%; | |
| 5009 | + height: 100%; | |
| 5921 | 5010 | background-color: rgba(0, 0, 0, 0.5); |
| 5011 | + -webkit-transition: opacity 0.5s; | |
| 5012 | + -o-transition: opacity 0.5s; | |
| 5922 | 5013 | transition: opacity 0.5s; |
| 5923 | 5014 | cursor: pointer; |
| 5924 | 5015 | } |
| 5925 | 5016 | .elementor-template-library-template-remote .elementor-template-library-template-preview i { |
| 5926 | 5017 | font-size: 20px; |
| 5018 | + color: #d5dadf; | |
| 5927 | 5019 | position: absolute; |
| 5928 | - inset-block-start: 50%; | |
| 5929 | - inset-inline-start: 50%; | |
| 5930 | - transform: translate(calc(-50% * var(--direction-multiplier)), -50%); | |
| 5020 | + top: 50%; | |
| 5021 | + left: 50%; | |
| 5022 | + -webkit-transform: translate(-50%, -50%); | |
| 5023 | + -ms-transform: translate(-50%, -50%); | |
| 5024 | + transform: translate(-50%, -50%); | |
| 5931 | 5025 | } |
| 5026 | +.elementor-template-library-template-remote .elementor-template-library-template-insert { | |
| 5027 | + color: #39b54a; | |
| 5028 | +} | |
| 5029 | +.elementor-template-library-template-remote .elementor-go-pro { | |
| 5030 | + color: #93003c; | |
| 5031 | +} | |
| 5932 | 5032 | .elementor-template-library-template-remote .elementor-template-library-template-footer { |
| 5033 | + display: -webkit-box; | |
| 5034 | + display: -ms-flexbox; | |
| 5933 | 5035 | display: flex; |
| 5934 | - justify-content: space-between; | |
| 5036 | + -webkit-box-pack: justify; | |
| 5037 | + -ms-flex-pack: justify; | |
| 5038 | + justify-content: space-between; | |
| 5039 | + margin-top: 10px; | |
| 5935 | 5040 | font-size: 11px; |
| 5936 | 5041 | line-height: 1; |
| 5937 | - height: 40px; | |
| 5938 | - align-items: center; | |
| 5939 | 5042 | } |
| 5940 | 5043 | .elementor-template-library-template-remote .elementor-template-library-template-name { |
| 5941 | - text-align: start; | |
| 5942 | - flex-grow: 1; | |
| 5044 | + text-align: left; | |
| 5045 | + color: #6d7882; | |
| 5046 | + -webkit-box-flex: 1; | |
| 5047 | + -ms-flex-positive: 1; | |
| 5048 | + flex-grow: 1; | |
| 5943 | 5049 | white-space: nowrap; |
| 5944 | - text-overflow: ellipsis; | |
| 5050 | + -o-text-overflow: ellipsis; | |
| 5051 | + text-overflow: ellipsis; | |
| 5945 | 5052 | overflow: hidden; |
| 5946 | - padding-inline-end: 5px; | |
| 5053 | + padding-right: 5px; | |
| 5947 | 5054 | } |
| 5948 | -.elementor-template-library-template-remote .elementor-template-library-favorite { | |
| 5949 | - margin-inline-start: auto; | |
| 5950 | -} | |
| 5951 | 5055 | .elementor-template-library-template-remote .elementor-template-library-template-favorite-input { |
| 5952 | - position: absolute; | |
| 5953 | - width: 1px; | |
| 5954 | - height: 1px; | |
| 5955 | - padding: 0; | |
| 5956 | - margin: -1px; | |
| 5957 | - overflow: hidden; | |
| 5958 | - clip: rect(0, 0, 0, 0); | |
| 5959 | - white-space: nowrap; | |
| 5960 | - border: 0; | |
| 5056 | + display: none; | |
| 5961 | 5057 | } |
| 5962 | -.elementor-template-library-template-remote .elementor-template-library-template-favorite-input:focus-visible + .elementor-template-library-template-favorite-label { | |
| 5963 | - outline: 2px solid var(--e-a-border-color-focus); | |
| 5964 | - outline-offset: 2px; | |
| 5965 | -} | |
| 5966 | 5058 | .elementor-template-library-template-remote .elementor-template-library-template-favorite-input:checked + .elementor-template-library-template-favorite-label i:before { |
| 5967 | 5059 | content: "\e93f"; |
| 5968 | - color: var(--e-a-color-primary-bold); | |
| 5060 | + color: #93003c; | |
| 5969 | 5061 | } |
| 5970 | 5062 | .elementor-template-library-template-remote .elementor-template-library-template-favorite-label { |
| 5971 | - font-size: 15px; | |
| 5972 | 5063 | cursor: pointer; |
| 5973 | 5064 | } |
| 5974 | 5065 | .elementor-template-library-template-remote .elementor-template-library-template-favorite-label:hover i { |
| 5975 | - color: var(--e-a-color-primary-bold); | |
| 5066 | + color: #93003c; | |
| 5976 | 5067 | } |
| 5977 | 5068 | |
| 5978 | 5069 | @media (max-width: 1439px) { |
| 5979 | 5070 | .elementor-template-library-template-page, |
| 5980 | - .elementor-template-library-template-lp { | |
| 5071 | +.elementor-template-library-template-lp { | |
| 5981 | 5072 | width: calc(25% - 30px); |
| 5982 | 5073 | } |
| 5983 | 5074 | } |
| 5984 | 5075 | @media (min-width: 1440px) { |
| 5985 | 5076 | .elementor-template-library-template-page, |
| 5986 | - .elementor-template-library-template-lp { | |
| 5077 | +.elementor-template-library-template-lp { | |
| 5987 | 5078 | width: calc(20% - 30px); |
| 5988 | 5079 | } |
| 5989 | 5080 | } |
| 5990 | 5081 | @media (max-width: 1025px) { |
| 5991 | 5082 | .elementor-template-library-template-page, |
| 5992 | - .elementor-template-library-template-lp { | |
| 5083 | +.elementor-template-library-template-lp { | |
| 5993 | 5084 | width: calc(33.333% - 30px); |
| 5994 | 5085 | } |
| 5995 | 5086 | } |
| 5996 | 5087 | .elementor-template-library-template-page .elementor-template-library-template-body, |
| @@ -5998,231 +5089,145 @@ | ||
| 5998 | 5089 | height: 200px; |
| 5999 | 5090 | } |
| 6000 | 5091 | |
| 6001 | 5092 | #elementor-template-library-order-toolbar-local, |
| 6002 | -.elementor-template-library-template-local, | |
| 6003 | -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) { | |
| 5093 | +.elementor-template-library-template-local { | |
| 5094 | + display: -webkit-box; | |
| 5095 | + display: -ms-flexbox; | |
| 6004 | 5096 | display: flex; |
| 6005 | - align-items: center; | |
| 5097 | + -webkit-box-align: center; | |
| 5098 | + -ms-flex-align: center; | |
| 5099 | + align-items: center; | |
| 6006 | 5100 | padding: 0 25px; |
| 6007 | - text-align: start; | |
| 5101 | + text-align: left; | |
| 6008 | 5102 | } |
| 6009 | -@media (max-width: 1439px) { | |
| 6010 | - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-1, | |
| 6011 | - .elementor-template-library-template-local .elementor-template-library-local-column-1, | |
| 6012 | - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-1 { | |
| 6013 | - width: 33%; | |
| 6014 | - } | |
| 6015 | - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-2, | |
| 6016 | - .elementor-template-library-template-local .elementor-template-library-local-column-2, | |
| 6017 | - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-2 { | |
| 6018 | - width: 10%; | |
| 6019 | - } | |
| 6020 | - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-3, | |
| 6021 | - .elementor-template-library-template-local .elementor-template-library-local-column-3, | |
| 6022 | - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-3 { | |
| 6023 | - width: 15%; | |
| 6024 | - } | |
| 6025 | - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-4, | |
| 6026 | - .elementor-template-library-template-local .elementor-template-library-local-column-4, | |
| 6027 | - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-4 { | |
| 6028 | - width: 15%; | |
| 6029 | - } | |
| 6030 | - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-5, | |
| 6031 | - .elementor-template-library-template-local .elementor-template-library-local-column-5, | |
| 6032 | - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-5 { | |
| 6033 | - width: 27%; | |
| 6034 | - } | |
| 6035 | -} | |
| 6036 | -@media (min-width: 1440px) { | |
| 6037 | - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-1, | |
| 6038 | - .elementor-template-library-template-local .elementor-template-library-local-column-1, | |
| 6039 | - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-1 { | |
| 6040 | - width: 25%; | |
| 6041 | - } | |
| 6042 | - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-2, | |
| 6043 | - .elementor-template-library-template-local .elementor-template-library-local-column-2, | |
| 6044 | - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-2 { | |
| 6045 | - width: 17%; | |
| 6046 | - } | |
| 6047 | - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-3, | |
| 6048 | - .elementor-template-library-template-local .elementor-template-library-local-column-3, | |
| 6049 | - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-3 { | |
| 6050 | - width: 17%; | |
| 6051 | - } | |
| 6052 | - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-4, | |
| 6053 | - .elementor-template-library-template-local .elementor-template-library-local-column-4, | |
| 6054 | - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-4 { | |
| 6055 | - width: 17%; | |
| 6056 | - } | |
| 6057 | - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-5, | |
| 6058 | - .elementor-template-library-template-local .elementor-template-library-local-column-5, | |
| 6059 | - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-5 { | |
| 6060 | - width: 24%; | |
| 6061 | - } | |
| 6062 | -} | |
| 6063 | -@media (max-width: 1024px) { | |
| 6064 | - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-3, | |
| 6065 | - .elementor-template-library-template-local .elementor-template-library-local-column-3, | |
| 6066 | - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-3 { | |
| 6067 | - display: none; | |
| 6068 | - } | |
| 6069 | - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-5, | |
| 6070 | - .elementor-template-library-template-local .elementor-template-library-local-column-5, | |
| 6071 | - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-5 { | |
| 6072 | - width: 41%; | |
| 6073 | - } | |
| 6074 | -} | |
| 6075 | 5103 | |
| 6076 | -.elementor-template-library-template-local .elementor-template-library-template-more, | |
| 6077 | -.elementor-template-library-template-cloud .elementor-template-library-template-more { | |
| 6078 | - display: none; | |
| 6079 | - position: absolute; | |
| 6080 | - background-color: var(--e-a-bg-default); | |
| 6081 | - border-radius: var(--e-a-border-radius); | |
| 6082 | - box-shadow: 1px 3px 11px rgba(0, 0, 0, 0.3); | |
| 6083 | - inset-block-start: 100%; | |
| 6084 | - inset-inline-end: 0; | |
| 6085 | - z-index: 1; | |
| 6086 | - list-style: none; | |
| 6087 | - margin: 0; | |
| 6088 | - padding: 0; | |
| 5104 | +#elementor-template-library-order-toolbar-local { | |
| 5105 | + margin-top: 30px; | |
| 6089 | 5106 | } |
| 6090 | -.elementor-template-library-template-local .elementor-template-library-template-more > li button, | |
| 6091 | -.elementor-template-library-template-local .elementor-template-library-template-more > li a, | |
| 6092 | -.elementor-template-library-template-cloud .elementor-template-library-template-more > li button, | |
| 6093 | -.elementor-template-library-template-cloud .elementor-template-library-template-more > li a { | |
| 6094 | - background: transparent; | |
| 6095 | - margin: 0; | |
| 6096 | - font-size: inherit; | |
| 6097 | - font-family: inherit; | |
| 6098 | - color: inherit; | |
| 6099 | - border: none; | |
| 6100 | - padding: 10px 20px; | |
| 6101 | - font-size: 11px; | |
| 6102 | - cursor: pointer; | |
| 6103 | - display: flex; | |
| 6104 | - align-items: center; | |
| 6105 | - gap: 8px; | |
| 6106 | - width: 100%; | |
| 5107 | +#elementor-template-library-order-toolbar-local .elementor-template-library-order-label { | |
| 5108 | + line-height: 1; | |
| 5109 | + font-size: 10px; | |
| 5110 | + font-weight: 500; | |
| 6107 | 5111 | } |
| 6108 | -.elementor-template-library-template-local .elementor-template-library-template-more > li button.disabled, | |
| 6109 | -.elementor-template-library-template-local .elementor-template-library-template-more > li a.disabled, | |
| 6110 | -.elementor-template-library-template-cloud .elementor-template-library-template-more > li button.disabled, | |
| 6111 | -.elementor-template-library-template-cloud .elementor-template-library-template-more > li a.disabled { | |
| 6112 | - cursor: not-allowed; | |
| 6113 | - color: var(--e-a-color-txt-disabled); | |
| 5112 | +#elementor-template-library-order-toolbar-local .elementor-template-library-order-label:not(:hover) { | |
| 5113 | + color: #a4afb7; | |
| 6114 | 5114 | } |
| 6115 | -.elementor-template-library-template-local .elementor-template-library-template-more > li a, | |
| 6116 | -.elementor-template-library-template-cloud .elementor-template-library-template-more > li a { | |
| 6117 | - color: var(--e-a-color-txt); | |
| 6118 | - text-decoration: none; | |
| 6119 | -} | |
| 6120 | -.elementor-template-library-template-local .elementor-template-library-template-more .elementor-template-library-template-delete, | |
| 6121 | -.elementor-template-library-template-cloud .elementor-template-library-template-more .elementor-template-library-template-delete { | |
| 6122 | - color: var(--e-a-color-danger); | |
| 6123 | -} | |
| 6124 | -.elementor-template-library-template-local .elementor-template-library-template-more i, | |
| 6125 | -.elementor-template-library-template-cloud .elementor-template-library-template-more i { | |
| 6126 | - font-size: 16px; | |
| 6127 | -} | |
| 6128 | -.elementor-template-library-template-local .elementor-template-library-template-more-toggle, | |
| 6129 | -.elementor-template-library-template-cloud .elementor-template-library-template-more-toggle { | |
| 6130 | - margin-inline-start: auto; | |
| 6131 | - cursor: pointer; | |
| 6132 | - background: none; | |
| 6133 | - border: none; | |
| 6134 | - padding: 0; | |
| 6135 | - display: flex; | |
| 6136 | - align-items: center; | |
| 6137 | - justify-content: center; | |
| 6138 | -} | |
| 6139 | -.elementor-template-library-template-local .elementor-template-library-template-more-toggle i, | |
| 6140 | -.elementor-template-library-template-cloud .elementor-template-library-template-more-toggle i { | |
| 6141 | - font-size: 20px; | |
| 6142 | -} | |
| 6143 | 5115 | |
| 6144 | -.elementor-template-library-template-local, | |
| 6145 | -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) { | |
| 5116 | +.elementor-template-library-template-local { | |
| 6146 | 5117 | height: 50px; |
| 6147 | 5118 | width: 100%; |
| 6148 | - margin-block-start: 1px; | |
| 5119 | + margin-top: 1px; | |
| 5120 | + background-color: #fff; | |
| 5121 | + -webkit-transition: background-color 0.3s linear; | |
| 5122 | + -o-transition: background-color 0.3s linear; | |
| 6149 | 5123 | transition: background-color 0.3s linear; |
| 6150 | 5124 | } |
| 6151 | -.elementor-template-library-template-local:hover, | |
| 6152 | -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid):hover { | |
| 6153 | - background-color: var(--e-a-bg-hover); | |
| 5125 | +.elementor-template-library-template-local:hover { | |
| 5126 | + background-color: #fafbfb; | |
| 6154 | 5127 | } |
| 6155 | -.elementor-template-library-template-local:first-child, | |
| 6156 | -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid):first-child { | |
| 6157 | - border-start-start-radius: 3px; | |
| 6158 | - border-start-end-radius: 3px; | |
| 6159 | - border-end-start-radius: 0; | |
| 6160 | - border-end-end-radius: 0; | |
| 5128 | +.elementor-template-library-template-local:not(:hover) .elementor-template-library-template-insert { | |
| 5129 | + background: none; | |
| 5130 | + color: #a4afb7; | |
| 6161 | 5131 | } |
| 6162 | -.elementor-template-library-template-local:last-child, | |
| 6163 | -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid):last-child { | |
| 6164 | - border-start-start-radius: 0; | |
| 6165 | - border-start-end-radius: 0; | |
| 6166 | - border-end-start-radius: 3px; | |
| 6167 | - border-end-end-radius: 3px; | |
| 5132 | +.elementor-template-library-template-local:first-child { | |
| 5133 | + border-radius: 3px 3px 0 0; | |
| 6168 | 5134 | } |
| 6169 | -.elementor-template-library-template-local .elementor-template-library-template-name, | |
| 6170 | -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-name { | |
| 5135 | +.elementor-template-library-template-local:last-child { | |
| 5136 | + border-radius: 0 0 3px 3px; | |
| 5137 | +} | |
| 5138 | +.elementor-template-library-template-local .elementor-template-library-template-name { | |
| 6171 | 5139 | font-weight: 500; |
| 6172 | 5140 | } |
| 6173 | -.elementor-template-library-template-local .elementor-template-library-template-name i, | |
| 6174 | -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-name i { | |
| 6175 | - font-size: 16px; | |
| 6176 | -} | |
| 6177 | 5141 | .elementor-template-library-template-local .elementor-template-library-template-name, |
| 6178 | -.elementor-template-library-template-local .elementor-template-library-template-meta, | |
| 6179 | -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-name, | |
| 6180 | -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-meta { | |
| 6181 | - padding-inline-end: 20px; | |
| 5142 | +.elementor-template-library-template-local .elementor-template-library-template-meta { | |
| 5143 | + padding-right: 20px; | |
| 6182 | 5144 | } |
| 6183 | -.elementor-template-library-template-local .elementor-template-library-local-column-1 i, | |
| 6184 | -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-1 i { | |
| 6185 | - padding-inline-end: 10px; | |
| 5145 | +.elementor-template-library-template-local .elementor-template-library-template-meta { | |
| 5146 | + color: #a4afb7; | |
| 6186 | 5147 | } |
| 6187 | 5148 | .elementor-template-library-template-local .elementor-template-library-template-name, |
| 6188 | 5149 | .elementor-template-library-template-local .elementor-template-library-template-meta, |
| 6189 | 5150 | .elementor-template-library-template-local .elementor-template-library-template-preview, |
| 6190 | -.elementor-template-library-template-local .elementor-template-library-template-action, | |
| 6191 | -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-name, | |
| 6192 | -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-meta, | |
| 6193 | -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-preview, | |
| 6194 | -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-action { | |
| 5151 | +.elementor-template-library-template-local .elementor-template-library-template-action { | |
| 6195 | 5152 | white-space: nowrap; |
| 6196 | - text-overflow: ellipsis; | |
| 5153 | + -o-text-overflow: ellipsis; | |
| 5154 | + text-overflow: ellipsis; | |
| 6197 | 5155 | overflow: hidden; |
| 6198 | 5156 | } |
| 6199 | -.elementor-template-library-template-local .elementor-template-library-template-controls, | |
| 6200 | -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-controls { | |
| 5157 | +.elementor-template-library-template-local .elementor-template-library-template-controls { | |
| 6201 | 5158 | position: relative; |
| 5159 | + display: -webkit-box; | |
| 5160 | + display: -ms-flexbox; | |
| 6202 | 5161 | display: flex; |
| 6203 | - align-items: center; | |
| 5162 | + -webkit-box-align: center; | |
| 5163 | + -ms-flex-align: center; | |
| 5164 | + align-items: center; | |
| 6204 | 5165 | } |
| 6205 | -.elementor-template-library-template-local .elementor-template-library-template-controls > div, | |
| 6206 | -.elementor-template-library-template-local .elementor-template-library-template-controls > button, | |
| 6207 | -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-controls > div, | |
| 6208 | -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-controls > button { | |
| 5166 | +.elementor-template-library-template-local .elementor-template-library-template-controls, .elementor-template-library-template-local .elementor-template-library-template-controls a { | |
| 5167 | + color: #a4afb7; | |
| 5168 | +} | |
| 5169 | +.elementor-template-library-template-local .elementor-template-library-template-controls > div { | |
| 6209 | 5170 | cursor: pointer; |
| 5171 | + -webkit-transition: color 0.5s; | |
| 5172 | + -o-transition: color 0.5s; | |
| 6210 | 5173 | transition: color 0.5s; |
| 6211 | 5174 | } |
| 6212 | -.elementor-template-library-template-local .elementor-template-library-template-insert.disabled, | |
| 6213 | -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-insert.disabled { | |
| 6214 | - color: #F5D0FE; | |
| 5175 | +.elementor-template-library-template-local .elementor-template-library-template-insert i { | |
| 5176 | + margin-right: 3px; | |
| 6215 | 5177 | } |
| 6216 | -.elementor-template-library-template-local .elementor-template-library-template-insert.disabled:hover, .elementor-template-library-template-local .elementor-template-library-template-insert.disabled:focus, | |
| 6217 | -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-insert.disabled:hover, | |
| 6218 | -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-insert.disabled:focus { | |
| 6219 | - cursor: not-allowed; | |
| 5178 | +.elementor-template-library-template-local .elementor-template-library-template-control-title { | |
| 5179 | + margin-left: 6px; | |
| 6220 | 5180 | } |
| 6221 | -.elementor-template-library-template-local .elementor-template-library-template-insert i, | |
| 6222 | -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-insert i { | |
| 6223 | - margin-inline-end: 3px; | |
| 5181 | +.elementor-template-library-template-local .elementor-template-library-template-more:hover, | |
| 5182 | +.elementor-template-library-template-local .elementor-template-library-template-more a:hover { | |
| 5183 | + color: #556068; | |
| 6224 | 5184 | } |
| 5185 | +.elementor-template-library-template-local .elementor-template-library-template-more .elementor-template-library-template-delete:hover { | |
| 5186 | + color: #d72b3f; | |
| 5187 | +} | |
| 5188 | +.elementor-template-library-template-local .elementor-template-library-template-action { | |
| 5189 | + padding: 8px 18px; | |
| 5190 | + margin: 0 5%; | |
| 5191 | +} | |
| 5192 | +.elementor-template-library-template-local .elementor-template-library-template-more { | |
| 5193 | + display: none; | |
| 5194 | + position: absolute; | |
| 5195 | + background-color: #fff; | |
| 5196 | + padding: 3px 20px; | |
| 5197 | + border-radius: 3px; | |
| 5198 | + -webkit-box-shadow: 1px 3px 11px rgba(0, 0, 0, 0.3); | |
| 5199 | + box-shadow: 1px 3px 11px rgba(0, 0, 0, 0.3); | |
| 5200 | + top: 100%; | |
| 5201 | + right: 0; | |
| 5202 | + -webkit-transform: translateX(65%) translateY(-7px); | |
| 5203 | + -ms-transform: translateX(65%) translateY(-7px); | |
| 5204 | + transform: translateX(65%) translateY(-7px); | |
| 5205 | + z-index: 1; | |
| 5206 | +} | |
| 5207 | +.elementor-template-library-template-local .elementor-template-library-template-more:before { | |
| 5208 | + content: ""; | |
| 5209 | + position: absolute; | |
| 5210 | + border: solid transparent; | |
| 5211 | + border-width: 8px 4px; | |
| 5212 | + border-bottom-color: #fff; | |
| 5213 | + -webkit-transform: translateY(-100%); | |
| 5214 | + -ms-transform: translateY(-100%); | |
| 5215 | + transform: translateY(-100%); | |
| 5216 | +} | |
| 5217 | +.elementor-template-library-template-local .elementor-template-library-template-more > div { | |
| 5218 | + margin: 10px 0; | |
| 5219 | + font-size: 11px; | |
| 5220 | +} | |
| 5221 | +.elementor-template-library-template-local .elementor-template-library-template-more-toggle { | |
| 5222 | + -webkit-box-flex: 1; | |
| 5223 | + -ms-flex-positive: 1; | |
| 5224 | + flex-grow: 1; | |
| 5225 | + text-align: right; | |
| 5226 | +} | |
| 5227 | +.elementor-template-library-template-local .elementor-template-library-template-more-toggle i { | |
| 5228 | + font-size: 16px; | |
| 5229 | +} | |
| 6225 | 5230 | |
| 6226 | 5231 | #elementor-template-library-preview { |
| 6227 | 5232 | height: 100%; |
| 6228 | 5233 | overflow: hidden; |
| @@ -6228,9 +5233,11 @@ | ||
| 6228 | 5233 | overflow: hidden; |
| 6229 | 5234 | } |
| 6230 | 5235 | #elementor-template-library-preview iframe { |
| 6231 | 5236 | height: 150%; |
| 6232 | - transform: scale(0.666) translateX(calc(-25% * var(--direction-multiplier))) translateY(-25%); | |
| 5237 | + -webkit-transform: scale(0.666) translateX(-25%) translateY(-25%); | |
| 5238 | + -ms-transform: scale(0.666) translateX(-25%) translateY(-25%); | |
| 5239 | + transform: scale(0.666) translateX(-25%) translateY(-25%); | |
| 6233 | 5240 | } |
| 6234 | 5241 | @media (max-width: 1439px) { |
| 6235 | 5242 | #elementor-template-library-preview iframe { |
| 6236 | 5243 | width: 1440px; |
| @@ -6237,23 +5244,18 @@ | ||
| 6237 | 5244 | } |
| 6238 | 5245 | } |
| 6239 | 5246 | @media (min-width: 1440px) { |
| 6240 | 5247 | #elementor-template-library-preview iframe { |
| 6241 | - width: 1730px; | |
| 5248 | + width: 1710px; | |
| 6242 | 5249 | } |
| 6243 | 5250 | } |
| 6244 | 5251 | |
| 6245 | 5252 | .elementor-template-library-blank-icon { |
| 6246 | - font-size: 64px; | |
| 6247 | - margin-block-start: 45px; | |
| 5253 | + font-size: 65px; | |
| 5254 | + margin-top: 45px; | |
| 5255 | + color: #c2cbd2; | |
| 6248 | 5256 | line-height: 1; |
| 6249 | 5257 | } |
| 6250 | -.elementor-template-library-blank-icon i { | |
| 6251 | - font-size: 85px; | |
| 6252 | -} | |
| 6253 | -.elementor-template-library-blank-icon i.eicon-library-upload { | |
| 6254 | - font-size: 65px; | |
| 6255 | -} | |
| 6256 | 5258 | .elementor-template-library-blank-icon img { |
| 6257 | 5259 | width: 70px; |
| 6258 | 5260 | } |
| 6259 | 5261 | .elementor-template-library-blank-icon .elementor-template-library-no-results { |
| @@ -6261,9 +5263,9 @@ | ||
| 6261 | 5263 | } |
| 6262 | 5264 | |
| 6263 | 5265 | .elementor-template-library-blank-title { |
| 6264 | 5266 | font-size: 30px; |
| 6265 | - margin-block-start: 20px; | |
| 5267 | + margin-top: 40px; | |
| 6266 | 5268 | } |
| 6267 | 5269 | @media (max-width: 1439px) { |
| 6268 | 5270 | .elementor-template-library-blank-title { |
| 6269 | 5271 | font-size: 25px; |
| @@ -6271,550 +5273,74 @@ | ||
| 6271 | 5273 | } |
| 6272 | 5274 | |
| 6273 | 5275 | .elementor-template-library-blank-message { |
| 6274 | 5276 | font-size: 18px; |
| 6275 | - margin-block-start: 15px; | |
| 5277 | + color: #a4afb7; | |
| 5278 | + margin-top: 15px; | |
| 6276 | 5279 | font-weight: 300; |
| 6277 | 5280 | } |
| 6278 | 5281 | @media (max-width: 1439px) { |
| 6279 | 5282 | .elementor-template-library-blank-message { |
| 6280 | 5283 | font-size: 16px; |
| 6281 | - margin-block-start: 10px; | |
| 5284 | + margin-top: 10px; | |
| 6282 | 5285 | } |
| 6283 | 5286 | } |
| 6284 | 5287 | |
| 6285 | 5288 | #elementor-template-library-save-template-form { |
| 6286 | - margin-block-start: 40px; | |
| 5289 | + margin-top: 40px; | |
| 5290 | + display: -webkit-box; | |
| 5291 | + display: -ms-flexbox; | |
| 6287 | 5292 | display: flex; |
| 6288 | - align-items: center; | |
| 6289 | - justify-content: center; | |
| 5293 | + -webkit-box-align: center; | |
| 5294 | + -ms-flex-align: center; | |
| 5295 | + align-items: center; | |
| 5296 | + -webkit-box-pack: center; | |
| 5297 | + -ms-flex-pack: center; | |
| 5298 | + justify-content: center; | |
| 6290 | 5299 | } |
| 6291 | 5300 | #elementor-template-library-save-template-form > * { |
| 6292 | 5301 | height: 55px; |
| 6293 | 5302 | font-size: 16px; |
| 6294 | 5303 | } |
| 6295 | -#elementor-template-library-save-template-form .cloud-library-form-inputs > * { | |
| 6296 | - height: 55px; | |
| 6297 | - font-size: 16px; | |
| 6298 | - margin-block-end: 15px; | |
| 6299 | -} | |
| 6300 | -#elementor-template-library-save-template-form .cloud-library-form-inputs { | |
| 6301 | - display: block; | |
| 6302 | - width: 500px; | |
| 6303 | - margin: 0 auto; | |
| 6304 | -} | |
| 6305 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .upgrade-tooltip, | |
| 6306 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .connect-badge { | |
| 6307 | - display: none; | |
| 6308 | -} | |
| 6309 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .divider { | |
| 6310 | - margin-inline: 5px; | |
| 6311 | -} | |
| 6312 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .upgrade-badge { | |
| 6313 | - display: none; | |
| 6314 | - border: 1px solid rgba(147, 0, 63, 0.5019607843); | |
| 6315 | - padding: 3px 5px; | |
| 6316 | - border-radius: 100px; | |
| 6317 | - margin-inline: 5px; | |
| 6318 | -} | |
| 6319 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .upgrade-badge a { | |
| 6320 | - color: var(--e-a-btn-bg-accent); | |
| 6321 | -} | |
| 6322 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .upgrade-badge a i { | |
| 6323 | - margin-inline-end: 5px; | |
| 6324 | -} | |
| 6325 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.max-capacity .quota-cta { | |
| 6326 | - display: inline; | |
| 6327 | -} | |
| 6328 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .ellipsis-container { | |
| 6329 | - display: inline; | |
| 6330 | - background: var(--e-a-bg-hover); | |
| 6331 | - padding: 0 2px 1px; | |
| 6332 | - border: none; | |
| 6333 | - border-radius: 2px; | |
| 6334 | - vertical-align: bottom; | |
| 6335 | - cursor: pointer; | |
| 6336 | - font-family: inherit; | |
| 6337 | - font-size: inherit; | |
| 6338 | - color: inherit; | |
| 6339 | - line-height: inherit; | |
| 6340 | -} | |
| 6341 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .ellipsis-container:hover { | |
| 6342 | - background: var(--e-a-bg-active); | |
| 6343 | -} | |
| 6344 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .ellipsis-container:focus-visible { | |
| 6345 | - outline: 2px solid var(--e-a-border-color-focus); | |
| 6346 | - outline-offset: 2px; | |
| 6347 | -} | |
| 6348 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.promotion .upgrade-tooltip, | |
| 6349 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.promotion .connect-badge, | |
| 6350 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.promotion .upgrade-badge, #elementor-template-library-save-template-form .cloud-library-form-inputs.max-capacity .upgrade-tooltip, | |
| 6351 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.max-capacity .connect-badge, | |
| 6352 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.max-capacity .upgrade-badge { | |
| 6353 | - display: inline; | |
| 6354 | -} | |
| 6355 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.promotion .ellipsis-container, | |
| 6356 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.promotion #cloud, | |
| 6357 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.promotion .cloud label, #elementor-template-library-save-template-form .cloud-library-form-inputs.max-capacity .ellipsis-container, | |
| 6358 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.max-capacity #cloud, | |
| 6359 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.max-capacity .cloud label { | |
| 6360 | - pointer-events: none; | |
| 6361 | -} | |
| 6362 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.promotion .ellipsis-container, | |
| 6363 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.promotion .divider, #elementor-template-library-save-template-form .cloud-library-form-inputs.max-capacity .ellipsis-container, | |
| 6364 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.max-capacity .divider { | |
| 6365 | - display: none; | |
| 6366 | -} | |
| 6367 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.promotion .connect-divider, #elementor-template-library-save-template-form .cloud-library-form-inputs.max-capacity .connect-divider { | |
| 6368 | - color: var(--e-a-color-txt-muted); | |
| 6369 | - margin-inline: 5px; | |
| 6370 | -} | |
| 6371 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .quota-cta { | |
| 6372 | - display: none; | |
| 6373 | - float: inline-start; | |
| 6374 | -} | |
| 6375 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .quota-cta p { | |
| 6376 | - font-size: 13px; | |
| 6377 | - color: var(--e-a-btn-bg-accent); | |
| 6378 | - text-align: start; | |
| 6379 | -} | |
| 6380 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .quota-cta a { | |
| 6381 | - color: var(--e-a-btn-bg-accent); | |
| 6382 | - text-decoration: underline; | |
| 6383 | -} | |
| 6384 | -#elementor-template-library-save-template-form .cloud-library-form-inputs #elementor-template-library-save-template-submit { | |
| 6385 | - float: inline-end; | |
| 6386 | -} | |
| 6387 | -#elementor-template-library-save-template-form .cloud-library-form-inputs #elementor-template-library-save-template-submit[disabled] { | |
| 6388 | - cursor: not-allowed; | |
| 6389 | -} | |
| 6390 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections { | |
| 6391 | - display: flex; | |
| 6392 | - flex-direction: column; | |
| 6393 | - text-align: start; | |
| 6394 | - border: var(--e-a-border-bold); | |
| 6395 | - padding: 15px; | |
| 6396 | - height: auto; | |
| 6397 | - gap: 10px; | |
| 6398 | - position: relative; | |
| 6399 | -} | |
| 6400 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections input[type=checkbox]:checked { | |
| 6401 | - background: #69727D; | |
| 6402 | - inset-block-start: -3px; | |
| 6403 | - position: relative; | |
| 6404 | -} | |
| 6405 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input { | |
| 6406 | - position: relative; | |
| 6407 | - display: inline-block; | |
| 6408 | -} | |
| 6409 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input.cloud, #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input.local { | |
| 6410 | - white-space: nowrap; | |
| 6411 | - text-overflow: ellipsis; | |
| 6412 | - overflow: hidden; | |
| 6413 | - overflow: visible; | |
| 6414 | - display: inline-flex; | |
| 6415 | - align-items: baseline; | |
| 6416 | - line-height: 27px; | |
| 6417 | -} | |
| 6418 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input #cloud, | |
| 6419 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input #local { | |
| 6420 | - flex-shrink: 0; | |
| 6421 | - position: relative; | |
| 6422 | - inset-block-start: 2px; | |
| 6423 | -} | |
| 6424 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input #cloud:checked, | |
| 6425 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input #local:checked { | |
| 6426 | - inset-block-start: -2px; | |
| 6427 | -} | |
| 6428 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input .eicon-ellipsis-h { | |
| 6429 | - vertical-align: bottom; | |
| 6430 | -} | |
| 6431 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input .eicon-info { | |
| 6432 | - margin-inline: 5px; | |
| 6433 | - color: var(--e-a-color-txt-muted); | |
| 6434 | - cursor: pointer; | |
| 6435 | -} | |
| 6436 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input .selected-folder { | |
| 6437 | - display: none; | |
| 6438 | - margin-inline-end: 5px; | |
| 6439 | - align-items: baseline; | |
| 6440 | - white-space: nowrap; | |
| 6441 | - text-overflow: ellipsis; | |
| 6442 | - overflow: hidden; | |
| 6443 | -} | |
| 6444 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input .selected-folder[style*="display: inline"] { | |
| 6445 | - display: inline-flex !important; | |
| 6446 | -} | |
| 6447 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input .selected-folder-text { | |
| 6448 | - text-decoration: underline; | |
| 6449 | - cursor: pointer; | |
| 6450 | - white-space: nowrap; | |
| 6451 | - text-overflow: ellipsis; | |
| 6452 | - overflow: hidden; | |
| 6453 | -} | |
| 6454 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input .eicon-editor-close { | |
| 6455 | - cursor: pointer; | |
| 6456 | - flex-shrink: 0; | |
| 6457 | -} | |
| 6458 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input #elementor-template-library-connect__badge { | |
| 6459 | - color: var(--e-a-color-primary-bold); | |
| 6460 | - font-size: 14px; | |
| 6461 | -} | |
| 6462 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input #elementor-template-library-connect__badge:hover { | |
| 6463 | - text-decoration: underline; | |
| 6464 | -} | |
| 6465 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown { | |
| 6466 | - display: none; | |
| 6467 | - position: absolute; | |
| 6468 | - inset-block-start: 40px; | |
| 6469 | - background-color: var(--e-a-bg-default); | |
| 6470 | - min-width: 187px; | |
| 6471 | - overflow: auto; | |
| 6472 | - box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2); | |
| 6473 | - z-index: 1; | |
| 6474 | - border-radius: 2px; | |
| 6475 | - max-width: 450px; | |
| 6476 | -} | |
| 6477 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown li { | |
| 6478 | - white-space: nowrap; | |
| 6479 | - text-overflow: ellipsis; | |
| 6480 | - overflow: hidden; | |
| 6481 | -} | |
| 6482 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .eicon-loading { | |
| 6483 | - margin: 15px; | |
| 6484 | -} | |
| 6485 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .eicon-folder-o { | |
| 6486 | - margin-inline-end: 10px; | |
| 6487 | -} | |
| 6488 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-list { | |
| 6489 | - max-height: 170px; | |
| 6490 | -} | |
| 6491 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item { | |
| 6492 | - padding: 5px 15px; | |
| 6493 | - cursor: pointer; | |
| 6494 | - list-style: none; | |
| 6495 | -} | |
| 6496 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item[data-id="0"] .eicon-folder-o { | |
| 6497 | - display: none; | |
| 6498 | -} | |
| 6499 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item .eicon-loading { | |
| 6500 | - margin: 0px; | |
| 6501 | -} | |
| 6502 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item[data-id="0"] { | |
| 6503 | - text-decoration: underline; | |
| 6504 | -} | |
| 6505 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item:hover, #elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item.selected, #elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item:focus { | |
| 6506 | - background: var(--e-a-border-color); | |
| 6507 | -} | |
| 6508 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item:focus-visible { | |
| 6509 | - outline: 2px solid var(--e-a-border-color-focus); | |
| 6510 | - outline-offset: -2px; | |
| 6511 | -} | |
| 6512 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item.disabled { | |
| 6513 | - pointer-events: none; | |
| 6514 | - opacity: 0.3; | |
| 6515 | -} | |
| 6516 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .no-results { | |
| 6517 | - text-align: center; | |
| 6518 | - font-size: 13px; | |
| 6519 | - margin: 0 20px; | |
| 6520 | - padding-block: 15px; | |
| 6521 | - pointer-events: none; | |
| 6522 | -} | |
| 6523 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .no-results i { | |
| 6524 | - font-size: 24px; | |
| 6525 | - padding-block-end: 10px; | |
| 6526 | -} | |
| 6527 | -#elementor-template-library-save-template-form .cloud-library-form-inputs #elementor-template-library-save-template-name { | |
| 6528 | - border-block-start: none; | |
| 6529 | - border-inline: none; | |
| 6530 | -} | |
| 6531 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input.disabled { | |
| 6532 | - pointer-events: none; | |
| 6533 | - opacity: 0.3; | |
| 6534 | -} | |
| 6535 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b { | |
| 6536 | - display: flex; | |
| 6537 | - flex-direction: column; | |
| 6538 | - width: 600px; | |
| 6539 | - text-align: start; | |
| 6540 | -} | |
| 6541 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .template-name-label, | |
| 6542 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .save-location-label { | |
| 6543 | - font-size: 12px; | |
| 6544 | - font-weight: 400; | |
| 6545 | - color: var(--e-a-color-txt); | |
| 6546 | -} | |
| 6547 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b #elementor-template-library-save-template-name { | |
| 6548 | - width: 100%; | |
| 6549 | - padding: 12px 15px; | |
| 6550 | - border: var(--e-a-border-bold); | |
| 6551 | - border-radius: 3px; | |
| 6552 | - margin-block-end: 0; | |
| 6553 | -} | |
| 6554 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections { | |
| 6555 | - border: none; | |
| 6556 | - padding: 0; | |
| 6557 | - gap: 12px; | |
| 6558 | - margin-block-start: 20px; | |
| 6559 | -} | |
| 6560 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input { | |
| 6561 | - display: flex; | |
| 6562 | - align-items: center; | |
| 6563 | - padding: 12px 15px; | |
| 6564 | - border: var(--e-a-border-bold); | |
| 6565 | - border-radius: 3px; | |
| 6566 | - width: 100%; | |
| 6567 | - line-height: normal; | |
| 6568 | - gap: 8px; | |
| 6569 | -} | |
| 6570 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input:has(input[type=checkbox]:checked) { | |
| 6571 | - border-color: var(--e-a-color-txt); | |
| 6572 | -} | |
| 6573 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input.cloud, #elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input.local { | |
| 6574 | - display: flex; | |
| 6575 | -} | |
| 6576 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input input[type=checkbox] { | |
| 6577 | - margin-inline-end: 0; | |
| 6578 | - flex-shrink: 0; | |
| 6579 | - position: relative; | |
| 6580 | -} | |
| 6581 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input input[type=checkbox]:checked { | |
| 6582 | - inset-block-start: 0; | |
| 6583 | -} | |
| 6584 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input input[type=checkbox]::after { | |
| 6585 | - content: ""; | |
| 6586 | - position: absolute; | |
| 6587 | - inset-inline-end: -8px; | |
| 6588 | - width: 1px; | |
| 6589 | - height: 18px; | |
| 6590 | - background-color: var(--e-a-border-color); | |
| 6591 | -} | |
| 6592 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input > i:first-of-type { | |
| 6593 | - margin-inline-start: 12px; | |
| 6594 | - margin-inline-end: 4px; | |
| 6595 | - font-size: 24px; | |
| 6596 | - color: var(--e-a-color-txt); | |
| 6597 | -} | |
| 6598 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input > svg:first-of-type { | |
| 6599 | - margin-inline-start: 8px; | |
| 6600 | - margin-inline-end: 0; | |
| 6601 | - font-size: 24px; | |
| 6602 | - color: var(--e-a-color-txt); | |
| 6603 | -} | |
| 6604 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input label { | |
| 6605 | - flex: 0 0 auto; | |
| 6606 | - margin: 0; | |
| 6607 | - cursor: pointer; | |
| 6608 | -} | |
| 6609 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .divider { | |
| 6610 | - margin-inline: 0; | |
| 6611 | -} | |
| 6612 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .ellipsis-container { | |
| 6613 | - display: inline; | |
| 6614 | - background: transparent; | |
| 6615 | - padding: 0; | |
| 6616 | - border-radius: 0; | |
| 6617 | - vertical-align: baseline; | |
| 6618 | - text-decoration: underline; | |
| 6619 | - cursor: pointer; | |
| 6620 | - margin-inline-start: 0; | |
| 6621 | -} | |
| 6622 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .ellipsis-container:hover { | |
| 6623 | - background: transparent; | |
| 6624 | -} | |
| 6625 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .select-folder-link { | |
| 6626 | - color: var(--e-a-color-primary-bold); | |
| 6627 | - text-decoration: underline; | |
| 6628 | - cursor: pointer; | |
| 6629 | - margin-inline-start: 4px; | |
| 6630 | -} | |
| 6631 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .select-folder-link:hover { | |
| 6632 | - text-decoration: none; | |
| 6633 | -} | |
| 6634 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .upgrade-badge { | |
| 6635 | - display: none; | |
| 6636 | - border: none; | |
| 6637 | - padding: 0; | |
| 6638 | - border-radius: 0; | |
| 6639 | - margin-inline-start: 0; | |
| 6640 | - background: transparent; | |
| 6641 | - transition: background-color 0.2s; | |
| 6642 | - padding: 3px 8px; | |
| 6643 | -} | |
| 6644 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .upgrade-badge:hover { | |
| 6645 | - background-color: var(--e-a-btn-bg-primary-hover); | |
| 6646 | - border-radius: 3px; | |
| 6647 | -} | |
| 6648 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .upgrade-badge a { | |
| 6649 | - color: var(--e-a-btn-bg-accent); | |
| 6650 | - text-decoration: none; | |
| 6651 | - display: flex; | |
| 6652 | - align-items: center; | |
| 6653 | - gap: 4px; | |
| 6654 | - font-size: 14px; | |
| 6655 | - font-weight: 500; | |
| 6656 | -} | |
| 6657 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .upgrade-badge a i { | |
| 6658 | - margin: 0; | |
| 6659 | - font-size: 14px; | |
| 6660 | -} | |
| 6661 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .connect-badge { | |
| 6662 | - display: none; | |
| 6663 | -} | |
| 6664 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .connect-badge .connect-divider { | |
| 6665 | - color: var(--e-a-color-txt-muted); | |
| 6666 | - margin-inline: 5px; | |
| 6667 | -} | |
| 6668 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .connect-badge a { | |
| 6669 | - color: var(--e-a-color-info); | |
| 6670 | - text-decoration: underline; | |
| 6671 | -} | |
| 6672 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .connect-badge a:hover { | |
| 6673 | - text-decoration: none; | |
| 6674 | -} | |
| 6675 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge { | |
| 6676 | - display: flex; | |
| 6677 | - align-items: center; | |
| 6678 | - gap: 6px; | |
| 6679 | - padding: 6px 12px; | |
| 6680 | - border: none; | |
| 6681 | - border-radius: 20px; | |
| 6682 | - font-size: 14px; | |
| 6683 | - font-weight: 500; | |
| 6684 | - cursor: pointer; | |
| 6685 | - transition: opacity 0.2s; | |
| 6686 | - margin-inline-start: auto; | |
| 6687 | -} | |
| 6688 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge:hover { | |
| 6689 | - opacity: 0.8; | |
| 6690 | -} | |
| 6691 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge i { | |
| 6692 | - margin: 0; | |
| 6693 | - font-size: 14px; | |
| 6694 | -} | |
| 6695 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge.cloud-account-badge { | |
| 6696 | - background-color: var(--e-a-bg-info); | |
| 6697 | - color: var(--e-a-color-info); | |
| 6698 | -} | |
| 6699 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge.cloud-account-badge i { | |
| 6700 | - color: var(--e-a-color-info); | |
| 6701 | -} | |
| 6702 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge.site-account-badge { | |
| 6703 | - background-color: var(--e-a-bg-warning); | |
| 6704 | - color: var(--e-a-btn-bg-warning-hover); | |
| 6705 | -} | |
| 6706 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge.site-account-badge i { | |
| 6707 | - color: var(--e-a-btn-bg-warning-hover); | |
| 6708 | -} | |
| 6709 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .selected-folder { | |
| 6710 | - display: none; | |
| 6711 | - margin-inline-start: 8px; | |
| 6712 | - align-items: center; | |
| 6713 | - gap: 6px; | |
| 6714 | -} | |
| 6715 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .selected-folder[style*="display: inline"] { | |
| 6716 | - display: inline-flex !important; | |
| 6717 | -} | |
| 6718 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .selected-folder-text { | |
| 6719 | - text-decoration: underline; | |
| 6720 | - cursor: pointer; | |
| 6721 | -} | |
| 6722 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .eicon-editor-close { | |
| 6723 | - cursor: pointer; | |
| 6724 | - font-size: 14px; | |
| 6725 | -} | |
| 6726 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .cloud-folder-selection-dropdown { | |
| 6727 | - inset-block-start: 75px; | |
| 6728 | - inset-inline-start: 230px; | |
| 6729 | -} | |
| 6730 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:not(:has(.connect-badge)) .connect-badge { | |
| 6731 | - display: none; | |
| 6732 | -} | |
| 6733 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) .connect-badge { | |
| 6734 | - display: inline; | |
| 6735 | -} | |
| 6736 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) .upgrade-badge { | |
| 6737 | - display: none; | |
| 6738 | -} | |
| 6739 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) { | |
| 6740 | - border-color: var(--e-a-border-color); | |
| 6741 | -} | |
| 6742 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) > i:first-of-type, | |
| 6743 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) label, | |
| 6744 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) .divider { | |
| 6745 | - color: var(--e-a-color-txt-disabled); | |
| 6746 | -} | |
| 6747 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) input[type=checkbox]::after { | |
| 6748 | - background-color: var(--e-a-color-txt-disabled); | |
| 6749 | -} | |
| 6750 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.promotion .source-selections-input.cloud, #elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .source-selections-input.cloud { | |
| 6751 | - border-color: var(--e-a-border-color); | |
| 6752 | -} | |
| 6753 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.promotion .source-selections-input.cloud > i:first-of-type, | |
| 6754 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.promotion .source-selections-input.cloud label, | |
| 6755 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.promotion .source-selections-input.cloud .divider, #elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .source-selections-input.cloud > i:first-of-type, | |
| 6756 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .source-selections-input.cloud label, | |
| 6757 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .source-selections-input.cloud .divider { | |
| 6758 | - color: var(--e-a-color-txt-disabled); | |
| 6759 | -} | |
| 6760 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.promotion .source-selections-input.cloud input[type=checkbox]::after, #elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .source-selections-input.cloud input[type=checkbox]::after { | |
| 6761 | - background-color: var(--e-a-color-txt-disabled); | |
| 6762 | -} | |
| 6763 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.promotion .source-selections-input.cloud .upgrade-badge, #elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .source-selections-input.cloud .upgrade-badge { | |
| 6764 | - display: inline-flex; | |
| 6765 | -} | |
| 6766 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.promotion .source-selections-input.cloud .ellipsis-container, #elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .source-selections-input.cloud .ellipsis-container { | |
| 6767 | - display: none; | |
| 6768 | -} | |
| 6769 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.promotion .source-selections-input.cloud .divider, #elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .source-selections-input.cloud .divider { | |
| 6770 | - display: block; | |
| 6771 | -} | |
| 6772 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.promotion .source-selections-input.cloud input[type=checkbox], | |
| 6773 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.promotion .source-selections-input.cloud label, #elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .source-selections-input.cloud input[type=checkbox], | |
| 6774 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .source-selections-input.cloud label { | |
| 6775 | - pointer-events: none; | |
| 6776 | -} | |
| 6777 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .quota-cta { | |
| 6778 | - display: block; | |
| 6779 | - margin-block-start: 15px; | |
| 6780 | -} | |
| 6781 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b #elementor-template-library-save-template-submit { | |
| 6782 | - align-self: center; | |
| 6783 | - margin-block-start: 20px; | |
| 6784 | - float: none; | |
| 6785 | -} | |
| 6786 | 5304 | |
| 6787 | 5305 | #elementor-template-library-save-template-name { |
| 6788 | 5306 | width: 500px; |
| 6789 | - padding-inline-start: 25px; | |
| 6790 | - border-start-start-radius: 3px; | |
| 6791 | - border-start-end-radius: 0; | |
| 6792 | - border-end-start-radius: 3px; | |
| 6793 | - border-end-end-radius: 0; | |
| 5307 | + background-color: #fff; | |
| 5308 | + font-weight: 300; | |
| 5309 | + color: #a4afb7; | |
| 5310 | + padding-left: 25px; | |
| 5311 | + border-radius: 3px 0 0 3px; | |
| 5312 | + border: none; | |
| 6794 | 5313 | } |
| 6795 | 5314 | |
| 6796 | 5315 | #elementor-template-library-save-template-submit { |
| 6797 | 5316 | width: 150px; |
| 6798 | - border-start-start-radius: 0; | |
| 6799 | - border-start-end-radius: 3px; | |
| 6800 | - border-end-start-radius: 0; | |
| 6801 | - border-end-end-radius: 3px; | |
| 5317 | + border-radius: 0 3px 3px 0; | |
| 6802 | 5318 | } |
| 5319 | +#elementor-template-library-save-template-submit:hover { | |
| 5320 | + -webkit-box-shadow: none; | |
| 5321 | + box-shadow: none; | |
| 5322 | +} | |
| 6803 | 5323 | |
| 6804 | 5324 | #elementor-template-library-import-form { |
| 6805 | 5325 | width: 95%; |
| 5326 | + background-color: rgba(255, 255, 255, 0.5); | |
| 6806 | 5327 | padding: 60px; |
| 6807 | - border: 2px dashed var(--e-a-border-color-bold); | |
| 5328 | + border: 2px dashed #d5dadf; | |
| 6808 | 5329 | margin: 35px auto; |
| 6809 | - transition: var(--e-a-transition-hover); | |
| 5330 | + -webkit-transition: background-color 0.5s; | |
| 5331 | + -o-transition: background-color 0.5s; | |
| 5332 | + transition: background-color 0.5s; | |
| 6810 | 5333 | } |
| 5334 | +#elementor-template-library-import-form:hover { | |
| 5335 | + background-color: rgba(255, 255, 255, 0.9); | |
| 5336 | +} | |
| 6811 | 5337 | #elementor-template-library-import-form-or { |
| 6812 | - margin-block-start: 15px; | |
| 5338 | + margin-top: 15px; | |
| 6813 | 5339 | font-size: 18px; |
| 6814 | 5340 | } |
| 6815 | 5341 | #elementor-template-library-import-form-label { |
| 6816 | - margin-block-start: 20px; | |
| 5342 | + margin-top: 20px; | |
| 6817 | 5343 | padding: 15px 35px; |
| 6818 | 5344 | display: inline-block; |
| 6819 | 5345 | } |
| 6820 | 5346 | #elementor-template-library-import-form-input { |
| @@ -6820,15 +5346,15 @@ | ||
| 6820 | 5346 | #elementor-template-library-import-form-input { |
| 6821 | 5347 | display: none; |
| 6822 | 5348 | } |
| 6823 | 5349 | #elementor-template-library-import-form.elementor-drag-over { |
| 6824 | - border-color: var(--e-a-color-primary); | |
| 5350 | + border: 3px dashed #71d7f7; | |
| 6825 | 5351 | } |
| 6826 | 5352 | #elementor-template-library-import .elementor-template-library-blank-icon { |
| 6827 | - margin-block-start: 0; | |
| 5353 | + margin-top: 0; | |
| 6828 | 5354 | } |
| 6829 | 5355 | #elementor-template-library-import .elementor-template-library-blank-message { |
| 6830 | - margin-block-start: 20px; | |
| 5356 | + margin-top: 20px; | |
| 6831 | 5357 | } |
| 6832 | 5358 | |
| 6833 | 5359 | .e-route-library-connect #elementor-template-library-modal .dialog-message { |
| 6834 | 5360 | max-height: 95vh; |
| @@ -6835,12 +5361,8 @@ | ||
| 6835 | 5361 | padding: 100px 0 0; |
| 6836 | 5362 | min-height: 550px; |
| 6837 | 5363 | } |
| 6838 | 5364 | |
| 6839 | -.elementor-template-library-cloud-empty__button { | |
| 6840 | - margin-block-start: 45px; | |
| 6841 | -} | |
| 6842 | - | |
| 6843 | 5365 | #elementor-template-library-connect-logo { |
| 6844 | 5366 | font-size: 20px; |
| 6845 | 5367 | } |
| 6846 | 5368 | #elementor-template-library-connect__button { |
| @@ -6846,9 +5368,9 @@ | ||
| 6846 | 5368 | #elementor-template-library-connect__button { |
| 6847 | 5369 | display: inline-block; |
| 6848 | 5370 | position: relative; |
| 6849 | 5371 | z-index: 1; |
| 6850 | - margin-block-start: 25px; | |
| 5372 | + margin-top: 25px; | |
| 6851 | 5373 | padding: 12px 24px; |
| 6852 | 5374 | font-size: 14px; |
| 6853 | 5375 | } |
| 6854 | 5376 | #elementor-template-library-connect__background-image-left-1 { |
| @@ -6853,24 +5375,28 @@ | ||
| 6853 | 5375 | } |
| 6854 | 5376 | #elementor-template-library-connect__background-image-left-1 { |
| 6855 | 5377 | right: 22.4%; |
| 6856 | 5378 | bottom: -29%; |
| 6857 | - animation: 1.5s fadeIn, 1.5s slideDown, 3.5s mover 1.5s infinite alternate; | |
| 5379 | + -webkit-animation: 1.5s fadeIn, 1.5s slideDown, 3.5s mover 1.5s infinite alternate; | |
| 5380 | + animation: 1.5s fadeIn, 1.5s slideDown, 3.5s mover 1.5s infinite alternate; | |
| 6858 | 5381 | } |
| 6859 | 5382 | #elementor-template-library-connect__background-image-left-2 { |
| 6860 | 5383 | right: 46.25%; |
| 6861 | 5384 | bottom: -15.5%; |
| 6862 | - animation: 3s fadeIn, 3s slideDown, 2s mover 3s infinite alternate; | |
| 5385 | + -webkit-animation: 3s fadeIn, 3s slideDown, 2s mover 3s infinite alternate; | |
| 5386 | + animation: 3s fadeIn, 3s slideDown, 2s mover 3s infinite alternate; | |
| 6863 | 5387 | } |
| 6864 | 5388 | #elementor-template-library-connect__background-image-right-1 { |
| 6865 | 5389 | left: 37%; |
| 6866 | 5390 | bottom: -41%; |
| 6867 | - animation: 2.5s fadeIn, 2.5s slideDown, 2s mover 2.5s infinite alternate; | |
| 5391 | + -webkit-animation: 2.5s fadeIn, 2.5s slideDown, 2s mover 2.5s infinite alternate; | |
| 5392 | + animation: 2.5s fadeIn, 2.5s slideDown, 2s mover 2.5s infinite alternate; | |
| 6868 | 5393 | } |
| 6869 | 5394 | #elementor-template-library-connect__background-image-right-2 { |
| 6870 | 5395 | left: 48%; |
| 6871 | 5396 | bottom: -12.5%; |
| 6872 | - animation: 1.5s fadeIn, 1.5s slideDown, 1.5s mover 1.5s infinite alternate; | |
| 5397 | + -webkit-animation: 1.5s fadeIn, 1.5s slideDown, 1.5s mover 1.5s infinite alternate; | |
| 5398 | + animation: 1.5s fadeIn, 1.5s slideDown, 1.5s mover 1.5s infinite alternate; | |
| 6873 | 5399 | } |
| 6874 | 5400 | |
| 6875 | 5401 | .elementor-template-library-connect__background-image { |
| 6876 | 5402 | position: absolute; |
| @@ -6877,13 +5403,15 @@ | ||
| 6877 | 5403 | } |
| 6878 | 5404 | |
| 6879 | 5405 | .elementor-template-library-blank-footer { |
| 6880 | 5406 | position: absolute; |
| 6881 | - inset-block-end: 70px; | |
| 6882 | - inset-inline-start: 50%; | |
| 6883 | - transform: translateX(calc(-50% * var(--direction-multiplier))); | |
| 5407 | + bottom: 70px; | |
| 5408 | + left: 50%; | |
| 5409 | + -webkit-transform: translateX(-50%); | |
| 5410 | + -ms-transform: translateX(-50%); | |
| 5411 | + transform: translateX(-50%); | |
| 5412 | + color: #a4afb7; | |
| 6884 | 5413 | font-style: italic; |
| 6885 | - color: var(--e-a-color-txt-muted); | |
| 6886 | 5414 | } |
| 6887 | 5415 | @media (max-height: 700px) { |
| 6888 | 5416 | .elementor-template-library-blank-footer { |
| 6889 | 5417 | display: none; |
| @@ -6890,21 +5418,28 @@ | ||
| 6890 | 5418 | } |
| 6891 | 5419 | } |
| 6892 | 5420 | |
| 6893 | 5421 | #elementor-template-library-footer-banner { |
| 6894 | - padding-block-end: 45px; | |
| 5422 | + padding-bottom: 45px; | |
| 6895 | 5423 | } |
| 6896 | 5424 | #elementor-template-library-footer-banner i { |
| 5425 | + color: #c2cbd2; | |
| 6897 | 5426 | font-size: 56px; |
| 6898 | - margin-block-start: 40px; | |
| 5427 | + margin-top: 40px; | |
| 6899 | 5428 | } |
| 6900 | 5429 | #elementor-template-library-footer-banner .elementor-nerd-box-icon { |
| 6901 | - margin-block-start: 70px; | |
| 5430 | + margin-top: 70px; | |
| 6902 | 5431 | } |
| 5432 | +#elementor-template-library-footer-banner .elementor-excerpt { | |
| 5433 | + color: #a4afb7; | |
| 5434 | + font-size: 15px; | |
| 5435 | + font-weight: 500; | |
| 5436 | + margin-top: 20px; | |
| 5437 | +} | |
| 6903 | 5438 | |
| 6904 | 5439 | #elementor-template-library-templates-empty { |
| 6905 | 5440 | width: 100%; |
| 6906 | - margin-block-start: 40px; | |
| 5441 | + margin-top: 40px; | |
| 6907 | 5442 | } |
| 6908 | 5443 | |
| 6909 | 5444 | #elementor-template-library-error-dialog .dialog-message { |
| 6910 | 5445 | text-align: start; |
| @@ -6910,290 +5445,53 @@ | ||
| 6910 | 5445 | text-align: start; |
| 6911 | 5446 | } |
| 6912 | 5447 | |
| 6913 | 5448 | #elementor-template-library-error-info { |
| 6914 | - margin-block-start: 10px; | |
| 5449 | + margin-top: 10px; | |
| 6915 | 5450 | } |
| 6916 | 5451 | |
| 6917 | -#elementor-library--infotip__dialog, | |
| 6918 | -#elementor-library--connect_infotip__dialog, | |
| 6919 | -#elementor-library--cloud-upgrade__dialog, | |
| 6920 | -#elementor-library--site-info__dialog { | |
| 6921 | - position: absolute; | |
| 6922 | - z-index: 10000; | |
| 6923 | - background-color: var(--e-a-bg-default); | |
| 6924 | - box-shadow: var(--e-a-popover-shadow); | |
| 6925 | - border-radius: var(--e-a-border-radius); | |
| 5452 | +@media (max-width: 1439px) { | |
| 5453 | + .elementor-template-library-local-column-1 { | |
| 5454 | + width: 33%; | |
| 5455 | + } | |
| 5456 | + .elementor-template-library-local-column-2 { | |
| 5457 | + width: 10%; | |
| 5458 | + } | |
| 5459 | + .elementor-template-library-local-column-3 { | |
| 5460 | + width: 15%; | |
| 5461 | + } | |
| 5462 | + .elementor-template-library-local-column-4 { | |
| 5463 | + width: 15%; | |
| 5464 | + } | |
| 5465 | + .elementor-template-library-local-column-5 { | |
| 5466 | + width: 27%; | |
| 5467 | + } | |
| 6926 | 5468 | } |
| 6927 | -#elementor-library--infotip__dialog.variant-b, | |
| 6928 | -#elementor-library--connect_infotip__dialog.variant-b, | |
| 6929 | -#elementor-library--cloud-upgrade__dialog.variant-b, | |
| 6930 | -#elementor-library--site-info__dialog.variant-b { | |
| 6931 | - width: 200px; | |
| 6932 | - color: var(--e-a-color-txt-invert); | |
| 6933 | - background-color: var(--e-a-bg-secondary); | |
| 5469 | +@media (min-width: 1440px) { | |
| 5470 | + .elementor-template-library-local-column-1 { | |
| 5471 | + width: 25%; | |
| 5472 | + } | |
| 5473 | + .elementor-template-library-local-column-2 { | |
| 5474 | + width: 17%; | |
| 5475 | + } | |
| 5476 | + .elementor-template-library-local-column-3 { | |
| 5477 | + width: 17%; | |
| 5478 | + } | |
| 5479 | + .elementor-template-library-local-column-4 { | |
| 5480 | + width: 17%; | |
| 5481 | + } | |
| 5482 | + .elementor-template-library-local-column-5 { | |
| 5483 | + width: 24%; | |
| 5484 | + } | |
| 6934 | 5485 | } |
| 6935 | -#elementor-library--infotip__dialog.variant-b .dialog-message, | |
| 6936 | -#elementor-library--connect_infotip__dialog.variant-b .dialog-message, | |
| 6937 | -#elementor-library--cloud-upgrade__dialog.variant-b .dialog-message, | |
| 6938 | -#elementor-library--site-info__dialog.variant-b .dialog-message { | |
| 6939 | - padding: 4px 8px 4px 8px; | |
| 5486 | +@media (max-width: 1024px) { | |
| 5487 | + .elementor-template-library-local-column-3 { | |
| 5488 | + display: none; | |
| 5489 | + } | |
| 5490 | + .elementor-template-library-local-column-5 { | |
| 5491 | + width: 41%; | |
| 5492 | + } | |
| 6940 | 5493 | } |
| 6941 | -#elementor-library--infotip__dialog__title, | |
| 6942 | -#elementor-library--connect_infotip__dialog__title, | |
| 6943 | -#elementor-library--cloud-upgrade__dialog__title, | |
| 6944 | -#elementor-library--site-info__dialog__title { | |
| 6945 | - font-size: 14px; | |
| 6946 | -} | |
| 6947 | -#elementor-library--infotip__dialog .dialog-buttons-wrapper, | |
| 6948 | -#elementor-library--connect_infotip__dialog .dialog-buttons-wrapper, | |
| 6949 | -#elementor-library--cloud-upgrade__dialog .dialog-buttons-wrapper, | |
| 6950 | -#elementor-library--site-info__dialog .dialog-buttons-wrapper { | |
| 6951 | - padding: 10px 0 10px 10px; | |
| 6952 | - float: inline-end; | |
| 6953 | -} | |
| 6954 | -#elementor-library--infotip__dialog .dialog-button, | |
| 6955 | -#elementor-library--connect_infotip__dialog .dialog-button, | |
| 6956 | -#elementor-library--cloud-upgrade__dialog .dialog-button, | |
| 6957 | -#elementor-library--site-info__dialog .dialog-button { | |
| 6958 | - padding: 7px 25px; | |
| 6959 | - font-size: 13px; | |
| 6960 | - background: none; | |
| 6961 | - color: var(--e-a-btn-bg-accent); | |
| 6962 | - border: none; | |
| 6963 | - font-weight: 500; | |
| 6964 | - cursor: pointer; | |
| 6965 | -} | |
| 6966 | -#elementor-library--infotip__dialog:after, | |
| 6967 | -#elementor-library--connect_infotip__dialog:after, | |
| 6968 | -#elementor-library--cloud-upgrade__dialog:after, | |
| 6969 | -#elementor-library--site-info__dialog:after { | |
| 6970 | - content: ""; | |
| 6971 | - position: absolute; | |
| 6972 | - inset-inline-end: 46%; | |
| 6973 | - transform: scaleX(0.7); | |
| 6974 | - border: 10px solid transparent; | |
| 6975 | -} | |
| 6976 | - | |
| 6977 | -#elementor-library--infotip__dialog { | |
| 6978 | - width: 265px; | |
| 6979 | -} | |
| 6980 | -#elementor-library--infotip__dialog .dialog-message { | |
| 6981 | - padding: 20px 20px 0px 20px; | |
| 6982 | -} | |
| 6983 | -#elementor-library--infotip__dialog:after { | |
| 6984 | - inset-block-start: 100%; | |
| 6985 | - border-block-start-color: var(--e-a-bg-default); | |
| 6986 | -} | |
| 6987 | -#elementor-library--infotip__dialog.variant-b:after { | |
| 6988 | - border-block-start-color: var(--e-a-bg-secondary); | |
| 6989 | -} | |
| 6990 | - | |
| 6991 | -#elementor-library--connect_infotip__dialog { | |
| 6992 | - width: 265px; | |
| 6993 | -} | |
| 6994 | -#elementor-library--connect_infotip__dialog .dialog-message { | |
| 6995 | - padding: 20px; | |
| 6996 | -} | |
| 6997 | -#elementor-library--connect_infotip__dialog:not(.variant-b):after { | |
| 6998 | - inset-block-end: 100%; | |
| 6999 | - border-block-end-color: var(--e-a-bg-default); | |
| 7000 | -} | |
| 7001 | -#elementor-library--connect_infotip__dialog.variant-b:after { | |
| 7002 | - border-block-start-color: var(--e-a-bg-secondary); | |
| 7003 | - inset-block-start: 100%; | |
| 7004 | -} | |
| 7005 | -#elementor-library--connect_infotip__dialog.variant-b { | |
| 7006 | - width: 265px; | |
| 7007 | -} | |
| 7008 | - | |
| 7009 | -#elementor-library--cloud-upgrade__dialog { | |
| 7010 | - width: 265px; | |
| 7011 | -} | |
| 7012 | -#elementor-library--cloud-upgrade__dialog:after { | |
| 7013 | - inset-block-start: 100%; | |
| 7014 | - border-block-start-color: var(--e-a-bg-default); | |
| 7015 | -} | |
| 7016 | -#elementor-library--cloud-upgrade__dialog.variant-b:after { | |
| 7017 | - border-block-start-color: var(--e-a-bg-secondary); | |
| 7018 | -} | |
| 7019 | - | |
| 7020 | -#elementor-library--site-info__dialog { | |
| 7021 | - width: 265px; | |
| 7022 | -} | |
| 7023 | -#elementor-library--site-info__dialog:after { | |
| 7024 | - inset-block-start: 100%; | |
| 7025 | - border-block-start-color: var(--e-a-bg-default); | |
| 7026 | -} | |
| 7027 | -#elementor-library--site-info__dialog.variant-b:after { | |
| 7028 | - border-block-start-color: var(--e-a-bg-secondary); | |
| 7029 | -} | |
| 7030 | - | |
| 7031 | -.elementor-global-styles-dialog { | |
| 7032 | - --gsd-color-text-primary: #0c0d0e; | |
| 7033 | - --gsd-color-text-secondary: #3f444b; | |
| 7034 | - --gsd-color-text-tertiary: #69727D; | |
| 7035 | - --gsd-color-divider: rgba(0, 0, 0, 0.12); | |
| 7036 | - --gsd-color-primary-main: #f0abfc; | |
| 7037 | - --gsd-color-primary-hover: #e879f9; | |
| 7038 | - --gsd-color-secondary-main: #515962; | |
| 7039 | - --gsd-border-radius: 4px; | |
| 7040 | - --gsd-spacing-horizontal: 24px; | |
| 7041 | - --gsd-font-family: 'Roboto', sans-serif; | |
| 7042 | - padding: 16px 0 0; | |
| 7043 | - min-width: 444px; | |
| 7044 | -} | |
| 7045 | -.elementor-global-styles-dialog__header { | |
| 7046 | - padding: 10px var(--gsd-spacing-horizontal) 0; | |
| 7047 | - margin-block-end: 16px; | |
| 7048 | -} | |
| 7049 | -.elementor-global-styles-dialog__header h2 { | |
| 7050 | - margin: 0 0 4px; | |
| 7051 | - font-family: var(--gsd-font-family); | |
| 7052 | - font-size: 16px; | |
| 7053 | - font-weight: 500; | |
| 7054 | - line-height: 1.3; | |
| 7055 | - color: var(--gsd-color-text-primary); | |
| 7056 | - letter-spacing: 0.15px; | |
| 7057 | -} | |
| 7058 | -.elementor-global-styles-dialog__header p { | |
| 7059 | - margin: 0; | |
| 7060 | - font-family: var(--gsd-font-family); | |
| 7061 | - font-size: 14px; | |
| 7062 | - font-weight: 400; | |
| 7063 | - line-height: 20px; | |
| 7064 | - color: var(--gsd-color-text-secondary); | |
| 7065 | - letter-spacing: 0.15px; | |
| 7066 | -} | |
| 7067 | -.elementor-global-styles-dialog__options { | |
| 7068 | - display: flex; | |
| 7069 | - flex-direction: column; | |
| 7070 | - gap: 12px; | |
| 7071 | - padding: 0 var(--gsd-spacing-horizontal); | |
| 7072 | -} | |
| 7073 | -.elementor-global-styles-dialog__radio-card { | |
| 7074 | - display: flex; | |
| 7075 | - gap: 0; | |
| 7076 | - padding: 12px 8px; | |
| 7077 | - border: 1px solid var(--gsd-color-divider); | |
| 7078 | - border-radius: var(--gsd-border-radius); | |
| 7079 | - cursor: pointer; | |
| 7080 | - transition: border-color 0.2s ease; | |
| 7081 | -} | |
| 7082 | -.elementor-global-styles-dialog__radio-card:has(input[type=radio]:checked) { | |
| 7083 | - border: 2px solid var(--gsd-color-text-primary); | |
| 7084 | - padding: 11px 7px; | |
| 7085 | -} | |
| 7086 | -.elementor-global-styles-dialog__radio-card input[type=radio] { | |
| 7087 | - flex-shrink: 0; | |
| 7088 | - width: 20px; | |
| 7089 | - height: 20px; | |
| 7090 | - margin: 9px; | |
| 7091 | - cursor: pointer; | |
| 7092 | - color: var(--gsd-color-text-tertiary); | |
| 7093 | - accent-color: var(--gsd-color-text-primary); | |
| 7094 | -} | |
| 7095 | -.elementor-global-styles-dialog__radio-card-content { | |
| 7096 | - display: flex; | |
| 7097 | - align-items: flex-start; | |
| 7098 | - flex-direction: column; | |
| 7099 | - flex: 1; | |
| 7100 | -} | |
| 7101 | -.elementor-global-styles-dialog__radio-label { | |
| 7102 | - font-family: var(--gsd-font-family); | |
| 7103 | - font-size: 14px; | |
| 7104 | - font-weight: 500; | |
| 7105 | - line-height: 18px; | |
| 7106 | - color: var(--gsd-color-text-primary); | |
| 7107 | - letter-spacing: 0.15px; | |
| 7108 | -} | |
| 7109 | -.elementor-global-styles-dialog__radio-description { | |
| 7110 | - font-family: var(--gsd-font-family); | |
| 7111 | - font-size: 12px; | |
| 7112 | - font-weight: 400; | |
| 7113 | - line-height: 20px; | |
| 7114 | - color: var(--gsd-color-text-secondary); | |
| 7115 | - letter-spacing: 0.4px; | |
| 7116 | -} | |
| 7117 | -.elementor-global-styles-dialog__checkbox-container { | |
| 7118 | - display: flex; | |
| 7119 | - align-items: flex-start; | |
| 7120 | - gap: 4px; | |
| 7121 | - padding: 0; | |
| 7122 | - margin-block-start: 0; | |
| 7123 | -} | |
| 7124 | -.elementor-global-styles-dialog__checkbox-option { | |
| 7125 | - display: flex; | |
| 7126 | - align-items: flex-start; | |
| 7127 | - gap: 4px; | |
| 7128 | - cursor: pointer; | |
| 7129 | -} | |
| 7130 | -.elementor-global-styles-dialog__checkbox-option input[type=checkbox] { | |
| 7131 | - width: 18px; | |
| 7132 | - height: 18px; | |
| 7133 | - margin: 4px; | |
| 7134 | - cursor: pointer; | |
| 7135 | -} | |
| 7136 | -.elementor-global-styles-dialog__checkbox-option input[type=checkbox]:checked { | |
| 7137 | - background-color: var(--gsd-color-text-tertiary); | |
| 7138 | -} | |
| 7139 | -.elementor-global-styles-dialog__checkbox-label { | |
| 7140 | - font-family: var(--gsd-font-family); | |
| 7141 | - font-size: 12px; | |
| 7142 | - font-weight: 400; | |
| 7143 | - line-height: 1.43; | |
| 7144 | - color: var(--gsd-color-text-primary); | |
| 7145 | - letter-spacing: 0.15px; | |
| 7146 | - padding-block-start: 4px; | |
| 7147 | - margin-inline-start: 4px; | |
| 7148 | -} | |
| 7149 | -.elementor-global-styles-dialog__checkbox-label a { | |
| 7150 | - color: #2563eb; | |
| 7151 | - text-decoration: underline; | |
| 7152 | -} | |
| 7153 | -.elementor-global-styles-dialog__checkbox-label a:hover { | |
| 7154 | - color: #2563eb; | |
| 7155 | -} | |
| 7156 | -.elementor-global-styles-dialog__footer { | |
| 7157 | - display: flex; | |
| 7158 | - justify-content: flex-end; | |
| 7159 | - align-items: center; | |
| 7160 | - gap: 8px; | |
| 7161 | - padding: 16px var(--gsd-spacing-horizontal); | |
| 7162 | -} | |
| 7163 | -.elementor-global-styles-dialog__button-cancel { | |
| 7164 | - padding: 6px 8px; | |
| 7165 | - font-family: var(--gsd-font-family); | |
| 7166 | - font-size: 15px; | |
| 7167 | - font-weight: 500; | |
| 7168 | - line-height: 24px; | |
| 7169 | - letter-spacing: 0.4px; | |
| 7170 | - color: var(--gsd-color-secondary-main); | |
| 7171 | - background: transparent; | |
| 7172 | - border: none; | |
| 7173 | - border-radius: var(--gsd-border-radius); | |
| 7174 | - cursor: pointer; | |
| 7175 | -} | |
| 7176 | -.elementor-global-styles-dialog__button-cancel:hover { | |
| 7177 | - background: rgba(0, 0, 0, 0.04); | |
| 7178 | -} | |
| 7179 | -.elementor-global-styles-dialog__button-insert { | |
| 7180 | - padding: 6px 16px; | |
| 7181 | - font-family: var(--gsd-font-family); | |
| 7182 | - font-size: 15px; | |
| 7183 | - font-weight: 500; | |
| 7184 | - line-height: 24px; | |
| 7185 | - letter-spacing: 0.4px; | |
| 7186 | - color: var(--gsd-color-text-primary); | |
| 7187 | - background: var(--gsd-color-primary-main); | |
| 7188 | - border: none; | |
| 7189 | - border-radius: var(--gsd-border-radius); | |
| 7190 | - cursor: pointer; | |
| 7191 | -} | |
| 7192 | -.elementor-global-styles-dialog__button-insert:hover { | |
| 7193 | - background: var(--gsd-color-primary-hover); | |
| 7194 | -} | |
| 7195 | - | |
| 7196 | 5494 | .elementor-tags-list { |
| 7197 | 5495 | display: none; |
| 7198 | 5496 | position: absolute; |
| 7199 | 5497 | width: 260px; |
| @@ -7198,25 +5496,29 @@ | ||
| 7198 | 5496 | position: absolute; |
| 7199 | 5497 | width: 260px; |
| 7200 | 5498 | max-height: 300px; |
| 7201 | 5499 | overflow: auto; |
| 7202 | - padding-block-end: 5px; | |
| 7203 | - background-color: var(--e-a-bg-default); | |
| 7204 | - box-shadow: var(--e-a-popover-shadow); | |
| 7205 | - border: var(--e-a-border); | |
| 5500 | + padding-bottom: 5px; | |
| 5501 | + background-color: #fff; | |
| 5502 | + border: 1px solid #a4afb7; | |
| 7206 | 5503 | border-radius: 3px; |
| 7207 | 5504 | z-index: 10000; |
| 7208 | 5505 | } |
| 7209 | 5506 | .elementor-tags-list__group-title { |
| 5507 | + color: #495157; | |
| 7210 | 5508 | font-weight: bold; |
| 7211 | 5509 | font-size: 12px; |
| 7212 | 5510 | padding: 10px 15px; |
| 5511 | + display: -webkit-box; | |
| 5512 | + display: -ms-flexbox; | |
| 7213 | 5513 | display: flex; |
| 7214 | - align-items: center; | |
| 5514 | + -webkit-box-align: center; | |
| 5515 | + -ms-flex-align: center; | |
| 5516 | + align-items: center; | |
| 7215 | 5517 | } |
| 7216 | 5518 | .elementor-tags-list__group-title .eicon-info-circle { |
| 7217 | - padding-inline-end: 5px; | |
| 7218 | - color: var(--e-a-color-primary-bold); | |
| 5519 | + padding-right: 5px; | |
| 5520 | + color: #71d7f7; | |
| 7219 | 5521 | font-size: 14px; |
| 7220 | 5522 | } |
| 7221 | 5523 | .elementor-tags-list__item { |
| 7222 | 5524 | font-size: 10px; |
| @@ -7225,18 +5527,21 @@ | ||
| 7225 | 5527 | } |
| 7226 | 5528 | .elementor-tags-list__item:before { |
| 7227 | 5529 | content: ">"; |
| 7228 | 5530 | font-size: 8px; |
| 7229 | - padding-inline-end: 5px; | |
| 5531 | + padding-right: 5px; | |
| 7230 | 5532 | } |
| 7231 | 5533 | .elementor-tags-list__item:hover { |
| 7232 | - background-color: var(--e-a-bg-hover); | |
| 5534 | + background-color: #e6e9ec; | |
| 7233 | 5535 | } |
| 7234 | 5536 | .elementor-tags-list__teaser { |
| 7235 | - border-block-start: 2px solid var(--e-a-border-color); | |
| 7236 | - padding-block-start: 4px; | |
| 7237 | - margin-block-start: 4px; | |
| 5537 | + border-top: 2px solid #d5dadf; | |
| 5538 | + padding-top: 4px; | |
| 5539 | + margin-top: 4px; | |
| 7238 | 5540 | } |
| 5541 | +.elementor-tags-list__teaser-title { | |
| 5542 | + color: #6d7882; | |
| 5543 | +} | |
| 7239 | 5544 | .elementor-tags-list__teaser-text { |
| 7240 | 5545 | padding: 2px 15px 8px; |
| 7241 | 5546 | line-height: 1.5; |
| 7242 | 5547 | font-size: 12px; |
| @@ -7241,9 +5546,9 @@ | ||
| 7241 | 5546 | line-height: 1.5; |
| 7242 | 5547 | font-size: 12px; |
| 7243 | 5548 | } |
| 7244 | 5549 | .elementor-tags-list__teaser-link { |
| 7245 | - color: var(--e-a-color-primary-bold); | |
| 5550 | + color: #93003c; | |
| 7246 | 5551 | text-decoration: underline; |
| 7247 | 5552 | font-style: italic; |
| 7248 | 5553 | font-weight: bold; |
| 7249 | 5554 | } |
| @@ -7248,47 +5553,58 @@ | ||
| 7248 | 5553 | font-weight: bold; |
| 7249 | 5554 | } |
| 7250 | 5555 | |
| 7251 | 5556 | .elementor-dynamic-cover { |
| 5557 | + display: -webkit-box; | |
| 5558 | + display: -ms-flexbox; | |
| 7252 | 5559 | display: flex; |
| 7253 | - align-items: center; | |
| 5560 | + -webkit-box-align: center; | |
| 5561 | + -ms-flex-align: center; | |
| 5562 | + align-items: center; | |
| 7254 | 5563 | width: 100%; |
| 7255 | 5564 | height: 27px; |
| 7256 | - box-sizing: border-box; | |
| 5565 | + -webkit-box-sizing: border-box; | |
| 5566 | + box-sizing: border-box; | |
| 7257 | 5567 | } |
| 7258 | 5568 | .elementor-dynamic-cover__title { |
| 7259 | 5569 | padding: 0 8px; |
| 7260 | - flex-grow: 1; | |
| 5570 | + -webkit-box-flex: 1; | |
| 5571 | + -ms-flex-positive: 1; | |
| 5572 | + flex-grow: 1; | |
| 7261 | 5573 | white-space: nowrap; |
| 7262 | - text-overflow: ellipsis; | |
| 5574 | + -o-text-overflow: ellipsis; | |
| 5575 | + text-overflow: ellipsis; | |
| 7263 | 5576 | overflow: hidden; |
| 7264 | 5577 | } |
| 7265 | 5578 | .elementor-dynamic-cover__settings, .elementor-dynamic-cover__remove { |
| 5579 | + color: #c2cbd2; | |
| 7266 | 5580 | cursor: pointer; |
| 7267 | - transition: var(--e-a-transition-hover); | |
| 5581 | + -webkit-transition: all 0.3s; | |
| 5582 | + -o-transition: all 0.3s; | |
| 5583 | + transition: all 0.3s; | |
| 7268 | 5584 | } |
| 7269 | 5585 | .elementor-dynamic-cover__settings:hover, .elementor-dynamic-cover__remove:hover { |
| 7270 | - color: var(--e-a-color-txt-hover); | |
| 5586 | + color: #a4afb7; | |
| 7271 | 5587 | } |
| 7272 | 5588 | .elementor-control-type-wysiwyg .elementor-dynamic-cover { |
| 7273 | - margin-block-start: 10px; | |
| 5589 | + margin-top: 10px; | |
| 7274 | 5590 | } |
| 7275 | 5591 | |
| 7276 | 5592 | .elementor-tag-settings-popup { |
| 7277 | 5593 | position: absolute; |
| 7278 | 5594 | width: 260px; |
| 7279 | - background-color: var(--e-a-bg-default); | |
| 7280 | - border: var(--e-a-border); | |
| 7281 | - box-shadow: var(--e-a-popover-shadow); | |
| 5595 | + background-color: #e6e9ec; | |
| 5596 | + -webkit-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3); | |
| 5597 | + box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3); | |
| 7282 | 5598 | z-index: 1; |
| 7283 | 5599 | } |
| 7284 | 5600 | .elementor-tag-settings-popup:before { |
| 7285 | 5601 | content: ""; |
| 7286 | 5602 | position: absolute; |
| 7287 | - inset-block-start: -20px; | |
| 7288 | - inset-inline-start: 5px; | |
| 5603 | + top: -20px; | |
| 5604 | + left: 5px; | |
| 7289 | 5605 | border: 10px solid transparent; |
| 7290 | - border-block-end-color: var(--e-a-border-color); | |
| 5606 | + border-bottom-color: #fff; | |
| 7291 | 5607 | } |
| 7292 | 5608 | .elementor-tag-settings-popup .elementor-control-type-section:first-child { |
| 7293 | 5609 | margin: 0; |
| 7294 | 5610 | } |
| @@ -7293,45 +5609,39 @@ | ||
| 7293 | 5609 | margin: 0; |
| 7294 | 5610 | } |
| 7295 | 5611 | |
| 7296 | 5612 | .elementor-tag-controls-stack-empty { |
| 7297 | - background-color: var(--e-a-bg-default); | |
| 5613 | + background-color: #fff; | |
| 7298 | 5614 | padding: 10px; |
| 7299 | 5615 | font-size: 13px; |
| 7300 | 5616 | text-align: center; |
| 7301 | 5617 | } |
| 7302 | 5618 | |
| 7303 | -.elementor-control-dynamic input { | |
| 7304 | - border-start-start-radius: var(--e-a-border-radius); | |
| 7305 | - border-start-end-radius: 0; | |
| 7306 | - border-end-end-radius: 0; | |
| 7307 | - border-end-start-radius: var(--e-a-border-radius); | |
| 7308 | -} | |
| 7309 | 5619 | .elementor-control-dynamic-switcher { |
| 5620 | + display: -webkit-inline-box; | |
| 5621 | + display: -ms-inline-flexbox; | |
| 7310 | 5622 | display: inline-flex; |
| 7311 | - align-items: center; | |
| 7312 | - justify-content: center; | |
| 7313 | - flex-shrink: 0; | |
| 5623 | + -webkit-box-align: center; | |
| 5624 | + -ms-flex-align: center; | |
| 5625 | + align-items: center; | |
| 5626 | + -webkit-box-pack: center; | |
| 5627 | + -ms-flex-pack: center; | |
| 5628 | + justify-content: center; | |
| 5629 | + -ms-flex-negative: 0; | |
| 5630 | + flex-shrink: 0; | |
| 7314 | 5631 | height: 27px; |
| 7315 | 5632 | cursor: pointer; |
| 7316 | - border: var(--e-a-border-bold); | |
| 7317 | - background: var(--e-a-bg-default); | |
| 7318 | - border-inline-start-width: 0; | |
| 7319 | - border-start-start-radius: 0; | |
| 7320 | - border-start-end-radius: var(--e-a-border-radius); | |
| 7321 | - border-end-end-radius: var(--e-a-border-radius); | |
| 7322 | - border-end-start-radius: 0; | |
| 7323 | - transition: var(--e-a-transition-hover); | |
| 5633 | + border: 1px solid #d5dadf; | |
| 5634 | + border-radius: 3px; | |
| 5635 | + background: #fff; | |
| 7324 | 5636 | } |
| 7325 | -.elementor-control-dynamic-switcher:hover { | |
| 7326 | - background-color: var(--e-a-bg-hover); | |
| 7327 | - color: var(--e-a-color-txt-hover); | |
| 7328 | -} | |
| 7329 | 5637 | .elementor-control-dynamic-switcher.e-control-tool { |
| 7330 | 5638 | height: 20px; |
| 7331 | 5639 | border: 0; |
| 7332 | 5640 | } |
| 7333 | 5641 | .elementor-control-dynamic-switcher-wrapper { |
| 5642 | + display: -webkit-box; | |
| 5643 | + display: -ms-flexbox; | |
| 7334 | 5644 | display: flex; |
| 7335 | 5645 | } |
| 7336 | 5646 | .elementor-control-dynamic-switcher .eicon-database { |
| 7337 | 5647 | font-size: 12px; |
| @@ -7341,193 +5651,273 @@ | ||
| 7341 | 5651 | .elementor-control-dynamic-value .e-global__popover-toggle { |
| 7342 | 5652 | display: none; |
| 7343 | 5653 | } |
| 7344 | 5654 | |
| 5655 | +#elementor-toast { | |
| 5656 | + position: absolute; | |
| 5657 | + width: 280px; | |
| 5658 | + padding: 20px; | |
| 5659 | + border-radius: 5px; | |
| 5660 | + color: #d5dadf; | |
| 5661 | + background-color: rgba(0, 0, 0, 0.8); | |
| 5662 | + z-index: 10000; | |
| 5663 | +} | |
| 5664 | +#elementor-toast .dialog-message { | |
| 5665 | + font-size: 13px; | |
| 5666 | +} | |
| 5667 | +#elementor-toast .dialog-buttons-wrapper { | |
| 5668 | + display: -webkit-box; | |
| 5669 | + display: -ms-flexbox; | |
| 5670 | + display: flex; | |
| 5671 | + -webkit-box-pack: end; | |
| 5672 | + -ms-flex-pack: end; | |
| 5673 | + justify-content: flex-end; | |
| 5674 | + margin-top: 15px; | |
| 5675 | +} | |
| 5676 | +#elementor-toast .dialog-button { | |
| 5677 | + color: #fcb92c; | |
| 5678 | + margin: 0 5px; | |
| 5679 | + text-transform: uppercase; | |
| 5680 | + cursor: pointer; | |
| 5681 | +} | |
| 5682 | +#elementor-toast .dialog-button:last-child { | |
| 5683 | + margin-right: 0; | |
| 5684 | +} | |
| 5685 | + | |
| 7345 | 5686 | .elementor-context-menu { |
| 7346 | 5687 | position: absolute; |
| 7347 | - width: 250px; | |
| 7348 | - padding: 5px 0px; | |
| 7349 | - background-color: var(--e-a-bg-default); | |
| 7350 | - border-radius: var(--e-a-border-radius); | |
| 7351 | - box-shadow: var(--e-a-popover-shadow); | |
| 5688 | + width: 200px; | |
| 5689 | + background-color: #fff; | |
| 5690 | + border: 1px solid #e6e9ec; | |
| 5691 | + border-radius: 3px; | |
| 5692 | + -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.09); | |
| 5693 | + box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.09); | |
| 7352 | 5694 | -webkit-user-select: none; |
| 7353 | 5695 | -moz-user-select: none; |
| 5696 | + -ms-user-select: none; | |
| 7354 | 5697 | user-select: none; |
| 7355 | 5698 | z-index: 101; |
| 7356 | 5699 | } |
| 7357 | -.elementor-context-menu-list { | |
| 7358 | - display: flex; | |
| 7359 | - flex-direction: column; | |
| 7360 | -} | |
| 7361 | 5700 | .elementor-context-menu-list__group { |
| 7362 | - display: flex; | |
| 7363 | - flex-direction: column; | |
| 5701 | + padding: 5px 0; | |
| 7364 | 5702 | } |
| 7365 | 5703 | .elementor-context-menu-list__group:not(:last-child) { |
| 7366 | - border-block-end: var(--e-a-border); | |
| 5704 | + border-bottom: 1px solid #e6e9ec; | |
| 7367 | 5705 | } |
| 7368 | 5706 | .elementor-context-menu-list__item { |
| 7369 | - padding: 12px 20px; | |
| 5707 | + padding: 5px 10px; | |
| 5708 | + padding-right: 20px; | |
| 5709 | + display: -webkit-box; | |
| 5710 | + display: -ms-flexbox; | |
| 7370 | 5711 | display: flex; |
| 7371 | - gap: 16px; | |
| 7372 | 5712 | cursor: pointer; |
| 7373 | - transition: var(--e-a-transition-hover); | |
| 7374 | - align-items: center; | |
| 7375 | 5713 | } |
| 7376 | 5714 | .elementor-context-menu-list__item--disabled { |
| 7377 | 5715 | cursor: default; |
| 7378 | - opacity: 0.5; | |
| 7379 | - color: var(--e-a-color-disabled); | |
| 5716 | + color: #d5dadf; | |
| 7380 | 5717 | } |
| 7381 | -.elementor-context-menu-list__item--disabled.elementor-context-menu-list__item--has-shortcut-action { | |
| 7382 | - opacity: 1; | |
| 5718 | +.elementor-context-menu-list__item:not(.elementor-context-menu-list__item--disabled):hover { | |
| 5719 | + background-color: #71d7f7; | |
| 7383 | 5720 | } |
| 7384 | -.elementor-context-menu-list__item--disabled.elementor-context-menu-list__item--has-shortcut-action > :not(.elementor-context-menu-list__item__shortcut) { | |
| 7385 | - opacity: 0.5; | |
| 5721 | +.elementor-context-menu-list__item:not(.elementor-context-menu-list__item--disabled):hover > * { | |
| 5722 | + color: #fff; | |
| 7386 | 5723 | } |
| 7387 | -.elementor-context-menu-list__item:not(.elementor-context-menu-list__item--disabled):hover, .elementor-context-menu-list__item:not(.elementor-context-menu-list__item--disabled):focus { | |
| 7388 | - background-color: var(--e-a-bg-hover); | |
| 7389 | - color: var(--e-a-color-hover); | |
| 7390 | -} | |
| 7391 | 5724 | .elementor-context-menu-list__item__icon { |
| 7392 | - display: none; | |
| 7393 | 5725 | width: 20px; |
| 5726 | + color: #c2cbd2; | |
| 7394 | 5727 | } |
| 7395 | 5728 | .elementor-context-menu-list__item__title { |
| 7396 | - flex-grow: 1; | |
| 5729 | + -webkit-box-flex: 1; | |
| 5730 | + -ms-flex-positive: 1; | |
| 5731 | + flex-grow: 1; | |
| 7397 | 5732 | white-space: nowrap; |
| 7398 | - text-overflow: ellipsis; | |
| 5733 | + -o-text-overflow: ellipsis; | |
| 5734 | + text-overflow: ellipsis; | |
| 7399 | 5735 | overflow: hidden; |
| 7400 | 5736 | } |
| 7401 | 5737 | .elementor-context-menu-list__item__shortcut { |
| 7402 | - color: var(--e-a-color-txt-muted); | |
| 5738 | + color: #d5dadf; | |
| 7403 | 5739 | } |
| 7404 | -.elementor-context-menu-list__item__shortcut--link-fullwidth { | |
| 7405 | - position: absolute; | |
| 7406 | - inset: 0; | |
| 7407 | - z-index: 2; | |
| 7408 | - cursor: pointer; | |
| 5740 | +.elementor-context-menu-list__item.elementor-context-menu-list__item-delete:not(.elementor-context-menu-list__item--disabled):hover { | |
| 5741 | + background-color: #d72b3f; | |
| 7409 | 5742 | } |
| 7410 | -.elementor-context-menu-list__item__shortcut__new-badge { | |
| 7411 | - border: 1px solid var(--e-a-color-primary-bold); | |
| 7412 | - padding: 2px 8px; | |
| 7413 | - color: var(--e-a-color-primary-bold); | |
| 7414 | - border-radius: 10px; | |
| 7415 | - font-size: 10px; | |
| 7416 | -} | |
| 7417 | -.elementor-context-menu-list__item__shortcut__promotion-badge { | |
| 7418 | - display: flex; | |
| 7419 | - align-items: center; | |
| 7420 | - justify-content: center; | |
| 7421 | - width: 24px; | |
| 7422 | - height: 24px; | |
| 7423 | - border-radius: 50%; | |
| 7424 | - background-color: rgba(214, 16, 124, 0.12); | |
| 7425 | - color: var(--e-a-color-accent-promotion, #D6107C); | |
| 7426 | - font-size: 16px; | |
| 7427 | - cursor: pointer; | |
| 7428 | -} | |
| 7429 | -.elementor-context-menu-list__item__title, .elementor-context-menu-list__item__shortcut { | |
| 7430 | - font-size: 14px; | |
| 7431 | - font-style: normal; | |
| 7432 | - font-weight: 400; | |
| 7433 | - line-height: 1; | |
| 7434 | - position: relative; | |
| 7435 | -} | |
| 7436 | -.elementor-context-menu-list__item.elementor-context-menu-list__item-delete:not(.elementor-context-menu-list__item--disabled):hover > *, .elementor-context-menu-list__item.elementor-context-menu-list__item-delete:not(.elementor-context-menu-list__item--disabled):focus > * { | |
| 7437 | - color: var(--e-global-color-danger); | |
| 7438 | -} | |
| 7439 | -.elementor-context-menu-list__item.elementor-hidden { | |
| 7440 | - display: none; | |
| 7441 | -} | |
| 7442 | 5743 | .elementor-context-menu .eicon-pro-icon { |
| 7443 | - color: var(--e-global-color-accent); | |
| 5744 | + color: #fcb92c; | |
| 7444 | 5745 | } |
| 7445 | 5746 | |
| 7446 | 5747 | #elementor-hotkeys { |
| 7447 | - text-align: start; | |
| 5748 | + text-align: left; | |
| 7448 | 5749 | } |
| 7449 | -#elementor-hotkeys__modal .dialog-buttons-wrapper { | |
| 7450 | - display: none; | |
| 7451 | -} | |
| 7452 | 5750 | #elementor-hotkeys__content { |
| 5751 | + display: -webkit-box; | |
| 5752 | + display: -ms-flexbox; | |
| 7453 | 5753 | display: flex; |
| 7454 | - justify-content: space-between; | |
| 7455 | - gap: 70px; | |
| 7456 | - padding: 20px 30px; | |
| 7457 | 5754 | width: 100%; |
| 7458 | 5755 | overflow: hidden; |
| 5756 | + margin-bottom: 30px; | |
| 7459 | 5757 | } |
| 7460 | 5758 | @media (max-width: 1024px) { |
| 7461 | 5759 | #elementor-hotkeys__content { |
| 7462 | - flex-direction: column; | |
| 7463 | - gap: 20px; | |
| 7464 | - padding: 20px; | |
| 5760 | + -webkit-box-orient: vertical; | |
| 5761 | + -webkit-box-direction: normal; | |
| 5762 | + -ms-flex-direction: column; | |
| 5763 | + flex-direction: column; | |
| 7465 | 5764 | } |
| 7466 | 5765 | } |
| 5766 | +#elementor-hotkeys__actions .elementor-hotkeys__list { | |
| 5767 | + border-radius: 3px 0 0 3px; | |
| 5768 | +} | |
| 5769 | +@media (max-width: 1024px) { | |
| 5770 | + #elementor-hotkeys__actions .elementor-hotkeys__list { | |
| 5771 | + border-radius: 3px; | |
| 5772 | + } | |
| 5773 | +} | |
| 5774 | +@media (min-width: 1025px) { | |
| 5775 | + #elementor-hotkeys__actions .elementor-hotkeys__header, | |
| 5776 | +#elementor-hotkeys__actions .elementor-hotkeys__list { | |
| 5777 | + padding-right: 25px; | |
| 5778 | + } | |
| 5779 | +} | |
| 5780 | +@media (min-width: 1440px) { | |
| 5781 | + #elementor-hotkeys__actions .elementor-hotkeys__header, | |
| 5782 | +#elementor-hotkeys__actions .elementor-hotkeys__list { | |
| 5783 | + padding-right: 50px; | |
| 5784 | + } | |
| 5785 | +} | |
| 5786 | +#elementor-hotkeys__navigation .elementor-hotkeys__list { | |
| 5787 | + border-radius: 0 3px 3px 0; | |
| 5788 | +} | |
| 5789 | +@media (max-width: 1024px) { | |
| 5790 | + #elementor-hotkeys__navigation .elementor-hotkeys__list { | |
| 5791 | + border-radius: 3px; | |
| 5792 | + } | |
| 5793 | +} | |
| 5794 | +@media (min-width: 1025px) { | |
| 5795 | + #elementor-hotkeys__navigation .elementor-hotkeys__header { | |
| 5796 | + padding-left: 25px; | |
| 5797 | + } | |
| 5798 | +} | |
| 5799 | +@media (min-width: 1440px) { | |
| 5800 | + #elementor-hotkeys__navigation .elementor-hotkeys__header { | |
| 5801 | + padding-left: 50px; | |
| 5802 | + } | |
| 5803 | +} | |
| 5804 | +@media (min-width: 1025px) { | |
| 5805 | + #elementor-hotkeys__navigation .elementor-hotkeys__list { | |
| 5806 | + padding-left: 15px; | |
| 5807 | + } | |
| 5808 | +} | |
| 5809 | +@media (min-width: 1440px) { | |
| 5810 | + #elementor-hotkeys__navigation .elementor-hotkeys__list { | |
| 5811 | + padding-left: 40px; | |
| 5812 | + } | |
| 5813 | +} | |
| 7467 | 5814 | |
| 7468 | 5815 | .elementor-hotkeys__col { |
| 7469 | - display: flex; | |
| 7470 | - flex-direction: column; | |
| 7471 | - gap: 20px; | |
| 5816 | + width: 50%; | |
| 5817 | +} | |
| 5818 | +@media (max-width: 1024px) { | |
| 5819 | + .elementor-hotkeys__col { | |
| 5820 | + width: 100%; | |
| 5821 | + } | |
| 5822 | +} | |
| 5823 | +.elementor-hotkeys__header, .elementor-hotkeys__list { | |
| 7472 | 5824 | width: 100%; |
| 7473 | 5825 | } |
| 7474 | 5826 | .elementor-hotkeys__header { |
| 5827 | + padding: 10px 30px; | |
| 7475 | 5828 | font-weight: 500; |
| 7476 | 5829 | } |
| 5830 | +@media (max-width: 479px) { | |
| 5831 | + .elementor-hotkeys__header { | |
| 5832 | + padding-right: 10px; | |
| 5833 | + padding-left: 10px; | |
| 5834 | + } | |
| 5835 | +} | |
| 5836 | +.elementor-hotkeys__list { | |
| 5837 | + background-color: #ffffff; | |
| 5838 | + height: calc(100% - 42px); | |
| 5839 | + padding: 10px 20px; | |
| 5840 | +} | |
| 5841 | +@media (max-width: 479px) { | |
| 5842 | + .elementor-hotkeys__list { | |
| 5843 | + padding: 0; | |
| 5844 | + } | |
| 5845 | +} | |
| 5846 | +@media (max-width: 1024px) { | |
| 5847 | + .elementor-hotkeys__list { | |
| 5848 | + margin-bottom: 30px; | |
| 5849 | + } | |
| 5850 | +} | |
| 5851 | +@media (max-width: 1024px) { | |
| 5852 | + .elementor-hotkeys__list { | |
| 5853 | + height: auto; | |
| 5854 | + } | |
| 5855 | +} | |
| 7477 | 5856 | .elementor-hotkeys__item { |
| 5857 | + display: -webkit-box; | |
| 5858 | + display: -ms-flexbox; | |
| 7478 | 5859 | display: flex; |
| 7479 | - align-items: center; | |
| 5860 | + -webkit-box-align: center; | |
| 5861 | + -ms-flex-align: center; | |
| 5862 | + align-items: center; | |
| 7480 | 5863 | padding: 20px 10px; |
| 5864 | + border-bottom: 1px solid #eceeef; | |
| 7481 | 5865 | } |
| 7482 | -.elementor-hotkeys__item:not(:last-child) { | |
| 7483 | - border-block-end: var(--e-a-border); | |
| 5866 | +.elementor-hotkeys__item:last-child { | |
| 5867 | + margin-bottom: 30px; | |
| 7484 | 5868 | } |
| 5869 | +@media (max-width: 479px) { | |
| 5870 | + .elementor-hotkeys__item:last-child { | |
| 5871 | + margin-bottom: 0; | |
| 5872 | + } | |
| 5873 | +} | |
| 7485 | 5874 | .elementor-hotkeys__item--label { |
| 7486 | 5875 | font-size: 13px; |
| 7487 | 5876 | font-weight: 400; |
| 7488 | - flex-grow: 1; | |
| 5877 | + -webkit-box-flex: 1; | |
| 5878 | + -ms-flex-positive: 1; | |
| 5879 | + flex-grow: 1; | |
| 7489 | 5880 | } |
| 7490 | 5881 | .elementor-hotkeys__item--shortcut { |
| 7491 | - flex-grow: 0; | |
| 5882 | + -webkit-box-flex: 0; | |
| 5883 | + -ms-flex-positive: 0; | |
| 5884 | + flex-grow: 0; | |
| 5885 | + display: -webkit-box; | |
| 5886 | + display: -ms-flexbox; | |
| 7492 | 5887 | display: flex; |
| 7493 | - gap: 27px; | |
| 7494 | 5888 | } |
| 7495 | -@media (max-width: 1024px) { | |
| 7496 | - .elementor-hotkeys__item--shortcut { | |
| 7497 | - gap: 23px; | |
| 7498 | - } | |
| 7499 | -} | |
| 7500 | -.elementor-hotkeys__item--shortcut kbd { | |
| 5889 | +.elementor-hotkeys__item--shortcut span { | |
| 7501 | 5890 | position: relative; |
| 7502 | - font-family: unset; | |
| 7503 | - background-color: var(--e-a-bg-active); | |
| 5891 | + background-color: #eceeef; | |
| 7504 | 5892 | padding: 5px 12px; |
| 7505 | - border-radius: var(--e-a-border-radius); | |
| 5893 | + margin-right: 27px; | |
| 5894 | + border-radius: 3px; | |
| 7506 | 5895 | } |
| 7507 | -@media (max-width: 1024px) { | |
| 7508 | - .elementor-hotkeys__item--shortcut kbd { | |
| 5896 | +@media (max-width: 479px) { | |
| 5897 | + .elementor-hotkeys__item--shortcut span { | |
| 7509 | 5898 | padding: 4px 9px; |
| 5899 | + margin-right: 23px; | |
| 7510 | 5900 | } |
| 7511 | 5901 | } |
| 7512 | -.elementor-hotkeys__item--shortcut kbd:not(:last-of-type)::after { | |
| 5902 | +.elementor-hotkeys__item--shortcut span:after { | |
| 7513 | 5903 | content: "+"; |
| 7514 | 5904 | position: absolute; |
| 7515 | - inset-inline-end: 0; | |
| 5905 | + right: -18px; | |
| 7516 | 5906 | width: 9px; |
| 7517 | 5907 | text-align: center; |
| 7518 | - margin-inline-end: -18px; | |
| 7519 | 5908 | } |
| 7520 | -@media (max-width: 1024px) { | |
| 7521 | - .elementor-hotkeys__item--shortcut kbd:not(:last-of-type)::after { | |
| 7522 | - margin-inline-end: -16px; | |
| 5909 | +@media (max-width: 479px) { | |
| 5910 | + .elementor-hotkeys__item--shortcut span:after { | |
| 5911 | + right: -16px; | |
| 7523 | 5912 | } |
| 7524 | 5913 | } |
| 7525 | - | |
| 7526 | -.elementor-template-library-template-remote:not(.elementor-template-library-template-page):not(.elementor-template-library-template-lp).elementor-template-library-template-floating_button { | |
| 7527 | - margin-top: 0 !important; | |
| 7528 | - width: calc(25% - 30px); | |
| 5914 | +.elementor-hotkeys__item--shortcut span:last-child { | |
| 5915 | + margin-right: 0; | |
| 7529 | 5916 | } |
| 5917 | +.elementor-hotkeys__item--shortcut span:last-child:after { | |
| 5918 | + display: none; | |
| 5919 | +} | |
| 7530 | 5920 | |
| 7531 | 5921 | .ui-resizable-n { |
| 7532 | 5922 | top: -5px; |
| 7533 | 5923 | } |
| @@ -7586,23 +5976,22 @@ | ||
| 7586 | 5976 | } |
| 7587 | 5977 | |
| 7588 | 5978 | body { |
| 7589 | 5979 | --e-editor-navigator-width: 240px; |
| 7590 | - --e-editor-navigator-indicator-width: 3px; | |
| 7591 | - --e-editor-navigator-promotion-height: 30px; | |
| 7592 | 5980 | } |
| 7593 | 5981 | |
| 7594 | 5982 | #elementor-navigator { |
| 7595 | 5983 | position: fixed; |
| 7596 | - inset-block-start: 100px; | |
| 7597 | - inset-inline-end: 30px; | |
| 5984 | + top: 100px; | |
| 7598 | 5985 | width: var(--e-editor-navigator-width); |
| 7599 | 5986 | height: 50vh; |
| 7600 | - background-color: var(--e-a-bg-default); | |
| 7601 | - border: var(--e-a-border); | |
| 7602 | - box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.1); | |
| 5987 | + right: 30px; | |
| 5988 | + background-color: #fff; | |
| 5989 | + -webkit-box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.1); | |
| 5990 | + box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.1); | |
| 7603 | 5991 | -webkit-user-select: none; |
| 7604 | 5992 | -moz-user-select: none; |
| 5993 | + -ms-user-select: none; | |
| 7605 | 5994 | user-select: none; |
| 7606 | 5995 | overflow: hidden; |
| 7607 | 5996 | z-index: 100; |
| 7608 | 5997 | display: none; |
| @@ -7607,10 +5996,10 @@ | ||
| 7607 | 5996 | z-index: 100; |
| 7608 | 5997 | display: none; |
| 7609 | 5998 | } |
| 7610 | 5999 | body.elementor-navigator-docked #elementor-navigator { |
| 7611 | - inset: 0; | |
| 7612 | - inset-inline-start: auto; | |
| 6000 | + top: 0; | |
| 6001 | + right: 0; | |
| 7613 | 6002 | height: 100%; |
| 7614 | 6003 | } |
| 7615 | 6004 | body:not(.elementor-navigator-docked) #elementor-navigator { |
| 7616 | 6005 | border-radius: 5px; |
| @@ -7616,54 +6005,34 @@ | ||
| 7616 | 6005 | border-radius: 5px; |
| 7617 | 6006 | } |
| 7618 | 6007 | #elementor-navigator__inner { |
| 7619 | 6008 | height: 100%; |
| 7620 | - display: flex; | |
| 7621 | - flex-direction: column; | |
| 6009 | + background-color: #e6e9ec; | |
| 7622 | 6010 | } |
| 7623 | 6011 | #elementor-navigator__header { |
| 6012 | + display: -webkit-box; | |
| 6013 | + display: -ms-flexbox; | |
| 7624 | 6014 | display: flex; |
| 7625 | - align-items: stretch; | |
| 7626 | - border-block-end: var(--e-a-border); | |
| 7627 | - color: var(--e-a-color-txt-accent); | |
| 7628 | -} | |
| 7629 | -#elementor-navigator__header__title { | |
| 7630 | - flex: 1; | |
| 7631 | - text-align: center; | |
| 7632 | - font-size: 13px; | |
| 7633 | - font-weight: 400; | |
| 7634 | - padding: 10px 0; | |
| 6015 | + -webkit-box-align: center; | |
| 6016 | + -ms-flex-align: center; | |
| 6017 | + align-items: center; | |
| 6018 | + -webkit-box-pack: justify; | |
| 6019 | + -ms-flex-pack: justify; | |
| 6020 | + justify-content: space-between; | |
| 6021 | + padding: 12px 10px; | |
| 6022 | + background-color: #fff; | |
| 6023 | + border-bottom: 1px solid #e6e9ec; | |
| 7635 | 6024 | cursor: move; |
| 7636 | 6025 | } |
| 7637 | -iframe + #elementor-navigator__header__title, #elementor-navigator__ai-titles + #elementor-navigator__header__title { | |
| 7638 | - padding-inline-end: 17.5px; | |
| 7639 | -} | |
| 7640 | -#elementor-navigator__ai-titles { | |
| 7641 | - width: 35px; | |
| 7642 | - text-align: center; | |
| 7643 | - cursor: pointer; | |
| 7644 | - background-color: transparent; | |
| 7645 | - border: none; | |
| 7646 | - outline: none; | |
| 7647 | -} | |
| 7648 | -#elementor-navigator__ai-titles:hover { | |
| 7649 | - color: #E73CF6; | |
| 7650 | -} | |
| 7651 | 6026 | #elementor-navigator__close, #elementor-navigator__toggle-all { |
| 7652 | - color: var(--e-a-color-txt); | |
| 7653 | - background-color: transparent; | |
| 7654 | - border: none; | |
| 7655 | - outline: 0; | |
| 7656 | - padding: 10px; | |
| 6027 | + -webkit-transition: color 0.5s; | |
| 6028 | + -o-transition: color 0.5s; | |
| 6029 | + transition: color 0.5s; | |
| 7657 | 6030 | cursor: pointer; |
| 7658 | - transition: color 0.5s; | |
| 7659 | 6031 | } |
| 7660 | -#elementor-navigator__close:hover, #elementor-navigator__toggle-all:hover { | |
| 7661 | - color: var(--e-a-color-txt-hover); | |
| 6032 | +#elementor-navigator__close:not(:hover), #elementor-navigator__toggle-all:not(:hover) { | |
| 6033 | + color: #a4afb7; | |
| 7662 | 6034 | } |
| 7663 | -#elementor-navigator__close:focus, #elementor-navigator__toggle-all:focus { | |
| 7664 | - color: var(--e-a-color-txt-active); | |
| 7665 | -} | |
| 7666 | 6035 | #elementor-navigator__toggle-all { |
| 7667 | 6036 | font-size: 13px; |
| 7668 | 6037 | } |
| 7669 | 6038 | #elementor-navigator__close { |
| @@ -7669,9 +6038,9 @@ | ||
| 7669 | 6038 | #elementor-navigator__close { |
| 7670 | 6039 | font-size: 11px; |
| 7671 | 6040 | } |
| 7672 | 6041 | #elementor-navigator__elements { |
| 7673 | - flex-grow: 1; | |
| 6042 | + height: calc(100% - 49px); | |
| 7674 | 6043 | overflow: auto; |
| 7675 | 6044 | position: relative; |
| 7676 | 6045 | } |
| 7677 | 6046 | .elementor-navigator-docked #elementor-navigator__elements { |
| @@ -7679,88 +6048,77 @@ | ||
| 7679 | 6048 | } |
| 7680 | 6049 | #elementor-navigator__elements .elementor-nerd-box { |
| 7681 | 6050 | padding: 25px; |
| 7682 | 6051 | } |
| 7683 | -#elementor-navigator__elements > .elementor-navigator__element-section { | |
| 7684 | - border-block-end: var(--e-a-border); | |
| 7685 | -} | |
| 7686 | 6052 | #elementor-navigator__footer { |
| 6053 | + position: absolute; | |
| 7687 | 6054 | width: 100%; |
| 6055 | + left: 0; | |
| 6056 | + bottom: 0; | |
| 7688 | 6057 | text-align: center; |
| 6058 | + background-color: #fff; | |
| 6059 | + border-top: 1px solid #e6e9ec; | |
| 6060 | + color: #a4afb7; | |
| 7689 | 6061 | } |
| 7690 | -#elementor-navigator__footer__resize-bar { | |
| 7691 | - border-block-start: var(--e-a-border); | |
| 7692 | -} | |
| 7693 | -.elementor-navigator-docked #elementor-navigator__footer__resize-bar { | |
| 6062 | +.elementor-navigator-docked #elementor-navigator__footer { | |
| 7694 | 6063 | display: none; |
| 7695 | 6064 | } |
| 7696 | -#elementor-navigator__footer__promotion { | |
| 7697 | - font-size: 12px; | |
| 7698 | - padding: 4px 17px; | |
| 7699 | - font-family: "Roboto", sans-serif; | |
| 7700 | - color: var(--e-a-bg-logo); | |
| 7701 | - min-height: var(--e-editor-navigator-promotion-height); | |
| 7702 | - display: flex; | |
| 7703 | - justify-content: center; | |
| 7704 | - align-items: center; | |
| 7705 | -} | |
| 7706 | -#elementor-navigator__footer__promotion a { | |
| 7707 | - color: var(--e-a-color-accent-promotion); | |
| 7708 | - margin-inline-start: 1px; | |
| 7709 | -} | |
| 7710 | 6065 | |
| 7711 | 6066 | .elementor-navigator__item { |
| 7712 | 6067 | position: relative; |
| 6068 | + display: -webkit-box; | |
| 6069 | + display: -ms-flexbox; | |
| 7713 | 6070 | display: flex; |
| 7714 | 6071 | height: 30px; |
| 6072 | + font-size: 11px; | |
| 6073 | + border-bottom: 1px solid #e6e9ec; | |
| 7715 | 6074 | cursor: pointer; |
| 6075 | + -webkit-transition: padding 0.5s linear; | |
| 6076 | + -o-transition: padding 0.5s linear; | |
| 7716 | 6077 | transition: padding 0.5s linear; |
| 7717 | 6078 | overflow: hidden; |
| 7718 | 6079 | } |
| 7719 | -.elementor-navigator__item:hover, .elementor-navigator__item:focus { | |
| 7720 | - background-color: var(--e-a-bg-hover); | |
| 7721 | -} | |
| 7722 | -.elementor-navigator__item:active { | |
| 7723 | - background-color: var(--e-a-bg-active); | |
| 7724 | - color: var(--e-a-color-txt-accent); | |
| 7725 | -} | |
| 7726 | -.elementor-navigator__item[data-locked=true] { | |
| 7727 | - cursor: not-allowed; | |
| 7728 | -} | |
| 7729 | 6080 | .elementor-navigator__item:not(.elementor-active) .elementor-navigator__element__list-toggle i { |
| 7730 | - transform: rotate(calc(-90deg * var(--direction-multiplier))); | |
| 6081 | + -webkit-transform: rotate(-90deg); | |
| 6082 | + -ms-transform: rotate(-90deg); | |
| 6083 | + transform: rotate(-90deg); | |
| 7731 | 6084 | } |
| 7732 | 6085 | .elementor-navigator__item > * { |
| 6086 | + display: -webkit-box; | |
| 6087 | + display: -ms-flexbox; | |
| 7733 | 6088 | display: flex; |
| 7734 | - align-items: center; | |
| 6089 | + -webkit-box-align: center; | |
| 6090 | + -ms-flex-align: center; | |
| 6091 | + align-items: center; | |
| 7735 | 6092 | } |
| 7736 | 6093 | .elementor-navigator__item + .elementor-navigator__elements { |
| 7737 | 6094 | display: none; |
| 7738 | 6095 | } |
| 7739 | -.elementor-navigator__elements > .elementor-navigator__element-section, | |
| 7740 | -.elementor-navigator__elements > .elementor-navigator__element-container:not(:last-child) { | |
| 7741 | - border-block-end: var(--e-a-border); | |
| 7742 | -} | |
| 7743 | 6096 | .elementor-navigator__elements .elementor-empty-view { |
| 7744 | 6097 | padding: 10px; |
| 6098 | + border-bottom: 1px solid #e6e9ec; | |
| 7745 | 6099 | } |
| 7746 | 6100 | .elementor-navigator__elements .elementor-empty-view__title { |
| 7747 | - margin-inline-start: 34px; | |
| 6101 | + margin-left: 23px; | |
| 6102 | + color: #c2cbd2; | |
| 7748 | 6103 | font-size: 10px; |
| 7749 | 6104 | font-style: italic; |
| 7750 | 6105 | } |
| 7751 | 6106 | .elementor-navigator__elements .ui-sortable-helper { |
| 7752 | - box-shadow: 1px 2px 5px 0 rgba(0, 0, 0, 0.1); | |
| 7753 | - transform: rotate(4deg); | |
| 7754 | - background-color: var(--e-a-bg-active); | |
| 7755 | - color: var(--e-a-color-txt-accent); | |
| 6107 | + background-color: #fff; | |
| 6108 | + -webkit-box-shadow: 1px 2px 5px 0 rgba(0, 0, 0, 0.1); | |
| 6109 | + box-shadow: 1px 2px 5px 0 rgba(0, 0, 0, 0.1); | |
| 6110 | + -webkit-transform: rotate(4deg); | |
| 6111 | + -ms-transform: rotate(4deg); | |
| 6112 | + transform: rotate(4deg); | |
| 6113 | + border: 1px solid #e6e9ec; | |
| 7756 | 6114 | pointer-events: none; |
| 7757 | 6115 | } |
| 7758 | 6116 | .elementor-navigator__elements .ui-sortable-placeholder { |
| 7759 | - background-color: var(--e-a-bg-hover); | |
| 6117 | + background-color: #f1f3f5; | |
| 7760 | 6118 | } |
| 7761 | 6119 | .elementor-navigator__element.elementor-dragging-on-child > .elementor-navigator__elements > .elementor-empty-view { |
| 7762 | - border-block-start: var(--e-a-border); | |
| 6120 | + border-top: 2px solid #71d7f7; | |
| 7763 | 6121 | } |
| 7764 | 6122 | .elementor-navigator__element.elementor-dragging-on-child > .elementor-navigator__elements > .elementor-empty-view .elementor-empty-view__title { |
| 7765 | 6123 | display: none; |
| 7766 | 6124 | } |
| @@ -7770,52 +6128,58 @@ | ||
| 7770 | 6128 | .elementor-navigator__element:not(.elementor-navigator__element--has-children) .elementor-navigator__element__list-toggle { |
| 7771 | 6129 | visibility: hidden; |
| 7772 | 6130 | } |
| 7773 | 6131 | .elementor-navigator__element:not(.elementor-navigator__element--hidden) > .elementor-navigator__item .elementor-navigator__element__toggle { |
| 7774 | - color: var(--e-a-color-txt-default); | |
| 6132 | + color: #71d7f7; | |
| 7775 | 6133 | } |
| 7776 | -.elementor-navigator__element:not(.elementor-navigator__element--hidden) > .elementor-navigator__item .elementor-navigator__element__toggle:hover { | |
| 7777 | - color: var(--e-a-color-txt-hover); | |
| 7778 | -} | |
| 7779 | 6134 | .elementor-navigator__element:not(.elementor-navigator__element--hidden) > .elementor-navigator__item:not(:hover) .elementor-navigator__element__toggle { |
| 7780 | 6135 | display: none; |
| 7781 | 6136 | } |
| 7782 | 6137 | .elementor-navigator__element:not(.elementor-navigator__element--hidden) > .elementor-navigator__item.elementor-editing { |
| 7783 | - background-color: var(--e-a-bg-active); | |
| 6138 | + background-color: #71d7f7; | |
| 7784 | 6139 | } |
| 6140 | +.elementor-navigator__element:not(.elementor-navigator__element--hidden) > .elementor-navigator__item.elementor-editing > * { | |
| 6141 | + color: #fff; | |
| 6142 | +} | |
| 7785 | 6143 | .elementor-navigator__element__list-toggle { |
| 7786 | - margin-inline-end: 7px; | |
| 6144 | + margin-right: 7px; | |
| 6145 | + -webkit-transition: -webkit-transform 0.3s; | |
| 6146 | + transition: -webkit-transform 0.3s; | |
| 6147 | + -o-transition: transform 0.3s; | |
| 7787 | 6148 | transition: transform 0.3s; |
| 6149 | + transition: transform 0.3s, -webkit-transform 0.3s; | |
| 6150 | + color: #a4afb7; | |
| 7788 | 6151 | } |
| 7789 | 6152 | .elementor-navigator__element__element-type { |
| 7790 | - margin-inline-end: 8px; | |
| 7791 | - font-size: 14px; | |
| 6153 | + margin-right: 8px; | |
| 7792 | 6154 | } |
| 7793 | 6155 | .elementor-navigator__element__title { |
| 7794 | - flex-grow: 1; | |
| 6156 | + -webkit-box-flex: 1; | |
| 6157 | + -ms-flex-positive: 1; | |
| 6158 | + flex-grow: 1; | |
| 7795 | 6159 | overflow: hidden; |
| 7796 | 6160 | } |
| 7797 | 6161 | .elementor-navigator__element__title__text { |
| 7798 | 6162 | white-space: nowrap; |
| 7799 | 6163 | -webkit-user-select: text; |
| 7800 | - -moz-user-select: text; | |
| 7801 | - user-select: text; | |
| 7802 | 6164 | } |
| 7803 | 6165 | .elementor-navigator__element__title__text[contenteditable=true] { |
| 7804 | 6166 | outline: none; |
| 7805 | - background-color: var(--e-a-bg-hover); | |
| 7806 | - padding: var(--e-admin-border-radius); | |
| 7807 | - border: var(--e-a-border); | |
| 6167 | + color: #6d7882; | |
| 6168 | + background-color: #fff; | |
| 6169 | + padding: 2px 3px; | |
| 6170 | + -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2); | |
| 6171 | + box-shadow: 0 0 4px rgba(0, 0, 0, 0.2); | |
| 7808 | 6172 | } |
| 7809 | 6173 | .elementor-navigator__element__title__text:not([contenteditable=true]) { |
| 7810 | - padding: 3px 0; | |
| 7811 | 6174 | white-space: nowrap; |
| 7812 | - text-overflow: ellipsis; | |
| 6175 | + -o-text-overflow: ellipsis; | |
| 6176 | + text-overflow: ellipsis; | |
| 7813 | 6177 | overflow: hidden; |
| 7814 | 6178 | } |
| 7815 | 6179 | .elementor-navigator__element__toggle { |
| 7816 | 6180 | position: absolute; |
| 7817 | - inset-inline-end: 15px; | |
| 6181 | + right: 15px; | |
| 7818 | 6182 | height: 100%; |
| 7819 | 6183 | z-index: 0; |
| 7820 | 6184 | font-size: 13px; |
| 7821 | 6185 | } |
| @@ -7820,69 +6184,96 @@ | ||
| 7820 | 6184 | font-size: 13px; |
| 7821 | 6185 | } |
| 7822 | 6186 | .elementor-navigator__element__indicators { |
| 7823 | 6187 | position: relative; |
| 6188 | + -webkit-transition: -webkit-transform 0.5s; | |
| 6189 | + transition: -webkit-transform 0.5s; | |
| 6190 | + -o-transition: transform 0.5s; | |
| 7824 | 6191 | transition: transform 0.5s; |
| 6192 | + transition: transform 0.5s, -webkit-transform 0.5s; | |
| 6193 | + padding-left: 5px; | |
| 7825 | 6194 | z-index: 91; |
| 7826 | 6195 | } |
| 7827 | 6196 | .elementor-navigator__element__indicators:not(:hover) { |
| 7828 | - transform: translateX(calc(100% * var(--direction-multiplier) - var(--e-editor-navigator-indicator-width) * var(--direction-multiplier))); | |
| 6197 | + -webkit-transform: translateX(calc(100% - 8px)); | |
| 6198 | + -ms-transform: translateX(calc(100% - 8px)); | |
| 6199 | + transform: translateX(calc(100% - 8px)); | |
| 7829 | 6200 | } |
| 7830 | 6201 | .elementor-navigator__element__indicator { |
| 7831 | 6202 | height: 100%; |
| 7832 | 6203 | width: 31px; |
| 6204 | + display: -webkit-inline-box; | |
| 6205 | + display: -ms-inline-flexbox; | |
| 7833 | 6206 | display: inline-flex; |
| 7834 | - align-items: center; | |
| 7835 | - justify-content: center; | |
| 7836 | - color: var(--e-a-color-txt); | |
| 7837 | - background-color: var(--e-a-bg-default); | |
| 7838 | - border-inline-end: var(--e-a-border); | |
| 6207 | + -webkit-box-align: center; | |
| 6208 | + -ms-flex-align: center; | |
| 6209 | + align-items: center; | |
| 6210 | + -webkit-box-pack: center; | |
| 6211 | + -ms-flex-pack: center; | |
| 6212 | + justify-content: center; | |
| 6213 | + color: #6d7882; | |
| 6214 | + background-color: #fff; | |
| 6215 | + border-left: 1px solid #e6e9ec; | |
| 7839 | 6216 | } |
| 7840 | 6217 | .elementor-navigator__element__indicator:first-child { |
| 7841 | - border-inline-start: var(--e-editor-navigator-indicator-width) solid var(--e-a-border-color-accent); | |
| 6218 | + border-left: 3px solid #71d7f7; | |
| 7842 | 6219 | } |
| 6220 | +.elementor-editing .elementor-navigator__element__indicator:first-child { | |
| 6221 | + border-color: #41c9f4; | |
| 6222 | +} | |
| 7843 | 6223 | .elementor-navigator__element__indicator:hover { |
| 7844 | - color: var(--e-a-color-txt-hover); | |
| 6224 | + color: #495157; | |
| 7845 | 6225 | } |
| 7846 | 6226 | .elementor-navigator__element--hidden .elementor-navigator__element__title, |
| 7847 | 6227 | .elementor-navigator__element--hidden .elementor-navigator__element__toggle { |
| 7848 | 6228 | opacity: 0.5; |
| 7849 | 6229 | } |
| 7850 | -.elementor-navigator__promotion-text { | |
| 7851 | - line-height: 18px; | |
| 6230 | +.elementor-navigator__element-column { | |
| 6231 | + background-color: #fafbfb; | |
| 7852 | 6232 | } |
| 6233 | +.elementor-navigator__element-column > .elementor-navigator__item .elementor-navigator__element__element-type { | |
| 6234 | + color: #a4afb7; | |
| 6235 | +} | |
| 6236 | +.elementor-navigator__element-section, .elementor-navigator__element-container { | |
| 6237 | + background-color: #ffffff; | |
| 6238 | +} | |
| 7853 | 6239 | |
| 7854 | 6240 | .e-notice-bar { |
| 7855 | 6241 | position: absolute; |
| 7856 | 6242 | width: 100%; |
| 7857 | - inset-block-end: 0; | |
| 6243 | + bottom: 0; | |
| 6244 | + display: -webkit-box; | |
| 6245 | + display: -ms-flexbox; | |
| 7858 | 6246 | display: flex; |
| 7859 | - align-items: center; | |
| 6247 | + -webkit-box-align: center; | |
| 6248 | + -ms-flex-align: center; | |
| 6249 | + align-items: center; | |
| 7860 | 6250 | height: 40px; |
| 7861 | 6251 | color: #fff; |
| 7862 | - background-color: var(--e-a-color-accent); | |
| 6252 | + background-color: #93003c; | |
| 7863 | 6253 | padding: 0 25px; |
| 7864 | 6254 | } |
| 7865 | 6255 | .e-notice-bar__message a { |
| 7866 | 6256 | text-decoration: underline; |
| 7867 | - color: var(--e-a-color-txt-invert); | |
| 6257 | + color: #fff; | |
| 7868 | 6258 | } |
| 7869 | 6259 | .e-notice-bar__message a:hover { |
| 7870 | - color: #D5D8DC; | |
| 6260 | + color: #d5dadf; | |
| 7871 | 6261 | } |
| 7872 | 6262 | .e-notice-bar__primary_action { |
| 7873 | 6263 | margin-inline: 12px; |
| 6264 | + text-transform: uppercase; | |
| 7874 | 6265 | } |
| 7875 | 6266 | .e-notice-bar__primary_action a { |
| 7876 | 6267 | background: #ffffff; |
| 7877 | 6268 | border-radius: 3px; |
| 7878 | - color: #93003f; | |
| 6269 | + color: #93003c; | |
| 7879 | 6270 | padding: 4px 10px; |
| 7880 | 6271 | font-size: 11px; |
| 7881 | 6272 | } |
| 7882 | 6273 | .e-notice-bar__primary_action a:hover { |
| 7883 | - color: rgb(70.5, 0, 30.2142857143); | |
| 7884 | - background: #F1F2F3; | |
| 6274 | + color: #47001d; | |
| 6275 | + background: #f1f3f5; | |
| 7885 | 6276 | } |
| 7886 | 6277 | .e-notice-bar__secondary_message, .e-notice-bar__secondary_action { |
| 7887 | 6278 | font-size: 11px; |
| 7888 | 6279 | } |
| @@ -7893,16 +6284,18 @@ | ||
| 7893 | 6284 | color: #ffffff; |
| 7894 | 6285 | text-decoration: underline; |
| 7895 | 6286 | } |
| 7896 | 6287 | .e-notice-bar__secondary_action a:hover { |
| 7897 | - color: #F1F2F3; | |
| 6288 | + color: #eceeef; | |
| 7898 | 6289 | } |
| 7899 | 6290 | .e-notice-bar__close { |
| 7900 | 6291 | cursor: pointer; |
| 7901 | - margin-inline-start: auto; | |
| 6292 | + -webkit-margin-start: auto; | |
| 6293 | + margin-inline-start: auto; | |
| 7902 | 6294 | } |
| 7903 | 6295 | .e-notice-bar__icon { |
| 7904 | - margin-inline-end: 8px; | |
| 6296 | + -webkit-margin-end: 8px; | |
| 6297 | + margin-inline-end: 8px; | |
| 7905 | 6298 | } |
| 7906 | 6299 | .e-notice-bar i { |
| 7907 | 6300 | font-size: 16px; |
| 7908 | 6301 | opacity: 0.9; |
| @@ -7907,13 +6300,15 @@ | ||
| 7907 | 6300 | font-size: 16px; |
| 7908 | 6301 | opacity: 0.9; |
| 7909 | 6302 | } |
| 7910 | 6303 | .e-notice-bar i:hover { |
| 7911 | - color: #D5D8DC; | |
| 6304 | + color: #d5dadf; | |
| 7912 | 6305 | } |
| 7913 | 6306 | .e-notice-bar a, |
| 7914 | 6307 | .e-notice-bar i { |
| 7915 | - transition: var(--e-a-transition-hover); | |
| 6308 | + -webkit-transition: all 0.3s; | |
| 6309 | + -o-transition: all 0.3s; | |
| 6310 | + transition: all 0.3s; | |
| 7916 | 6311 | } |
| 7917 | 6312 | |
| 7918 | 6313 | body:not(.elementor-device-desktop) #e-notice-bar { |
| 7919 | 6314 | display: none; |
| @@ -7918,10 +6313,15 @@ | ||
| 7918 | 6313 | body:not(.elementor-device-desktop) #e-notice-bar { |
| 7919 | 6314 | display: none; |
| 7920 | 6315 | } |
| 7921 | 6316 | |
| 7922 | -#elementor-fatal-error-dialog .dialog-message a { | |
| 6317 | +#elementor-fatal-error-dialog.elementor-preview-loading-error .dialog-header { | |
| 6318 | + color: #495157; | |
| 6319 | +} | |
| 6320 | +#elementor-fatal-error-dialog.elementor-preview-loading-error .dialog-message a { | |
| 6321 | + color: #6d7882; | |
| 7923 | 6322 | text-decoration: underline; |
| 6323 | + font-style: italic; | |
| 7924 | 6324 | } |
| 7925 | 6325 | |
| 7926 | 6326 | #elementor-preview-debug-link-text { |
| 7927 | 6327 | display: inline-block; |
| @@ -7931,11 +6331,20 @@ | ||
| 7931 | 6331 | padding: 0; |
| 7932 | 6332 | height: 700px; |
| 7933 | 6333 | } |
| 7934 | 6334 | #elementor-icons-manager-modal .dialog-content { |
| 6335 | + display: -webkit-box; | |
| 6336 | + display: -ms-flexbox; | |
| 7935 | 6337 | display: flex; |
| 7936 | 6338 | } |
| 6339 | +#elementor-icons-manager-modal .dialog-buttons-wrapper { | |
| 6340 | + display: -webkit-box; | |
| 6341 | + display: -ms-flexbox; | |
| 6342 | + display: flex; | |
| 6343 | +} | |
| 7937 | 6344 | #elementor-icons-manager__wrapper { |
| 6345 | + display: -webkit-box; | |
| 6346 | + display: -ms-flexbox; | |
| 7938 | 6347 | display: flex; |
| 7939 | 6348 | } |
| 7940 | 6349 | @media (max-width: 479px) { |
| 7941 | 6350 | #elementor-icons-manager__sidebar { |
| @@ -7942,17 +6351,23 @@ | ||
| 7942 | 6351 | display: none; |
| 7943 | 6352 | } |
| 7944 | 6353 | } |
| 7945 | 6354 | #elementor-icons-manager__tab-links { |
| 7946 | - margin-block-start: 30px; | |
| 6355 | + margin-top: 30px; | |
| 7947 | 6356 | } |
| 7948 | 6357 | #elementor-icons-manager__upload { |
| 7949 | 6358 | margin: 20px 45px; |
| 7950 | - padding-block-start: 35px; | |
| 7951 | - border-block-start: var(--e-a-border); | |
| 6359 | + padding-top: 35px; | |
| 6360 | + border-top: 1px solid #e6e9ec; | |
| 6361 | + display: -webkit-box; | |
| 6362 | + display: -ms-flexbox; | |
| 7952 | 6363 | display: flex; |
| 7953 | - align-items: center; | |
| 7954 | - justify-content: space-between; | |
| 6364 | + -webkit-box-align: center; | |
| 6365 | + -ms-flex-align: center; | |
| 6366 | + align-items: center; | |
| 6367 | + -webkit-box-pack: justify; | |
| 6368 | + -ms-flex-pack: justify; | |
| 6369 | + justify-content: space-between; | |
| 7955 | 6370 | } |
| 7956 | 6371 | @media (max-width: 1439px) { |
| 7957 | 6372 | #elementor-icons-manager__upload { |
| 7958 | 6373 | margin: 20px 25px; |
| @@ -7957,11 +6372,21 @@ | ||
| 7957 | 6372 | #elementor-icons-manager__upload { |
| 7958 | 6373 | margin: 20px 25px; |
| 7959 | 6374 | } |
| 7960 | 6375 | } |
| 6376 | +#elementor-icons-manager__upload__title { | |
| 6377 | + color: #a4afb7; | |
| 6378 | + font-size: 11px; | |
| 6379 | + text-transform: uppercase; | |
| 6380 | +} | |
| 7961 | 6381 | #elementor-icons-manager__main { |
| 6382 | + display: -webkit-box; | |
| 6383 | + display: -ms-flexbox; | |
| 7962 | 6384 | display: flex; |
| 7963 | - flex-direction: column; | |
| 6385 | + -webkit-box-orient: vertical; | |
| 6386 | + -webkit-box-direction: normal; | |
| 6387 | + -ms-flex-direction: column; | |
| 6388 | + flex-direction: column; | |
| 7964 | 6389 | padding: 30px 80px 0; |
| 7965 | 6390 | } |
| 7966 | 6391 | @media (max-width: 1439px) { |
| 7967 | 6392 | #elementor-icons-manager__main { |
| @@ -7977,15 +6402,30 @@ | ||
| 7977 | 6402 | position: relative; |
| 7978 | 6403 | } |
| 7979 | 6404 | #elementor-icons-manager__search input { |
| 7980 | 6405 | padding: 8px 15px; |
| 7981 | - background-color: transparent; | |
| 6406 | + background-color: #fff; | |
| 6407 | + border: none; | |
| 7982 | 6408 | } |
| 6409 | +#elementor-icons-manager__search input::-webkit-input-placeholder { | |
| 6410 | + font-style: italic; | |
| 6411 | +} | |
| 6412 | +#elementor-icons-manager__search input::-moz-placeholder { | |
| 6413 | + font-style: italic; | |
| 6414 | +} | |
| 6415 | +#elementor-icons-manager__search input::-ms-input-placeholder { | |
| 6416 | + font-style: italic; | |
| 6417 | +} | |
| 6418 | +#elementor-icons-manager__search input::placeholder { | |
| 6419 | + font-style: italic; | |
| 6420 | +} | |
| 7983 | 6421 | #elementor-icons-manager__search i { |
| 7984 | 6422 | position: absolute; |
| 7985 | - inset-block-start: 50%; | |
| 7986 | - inset-inline-end: 15px; | |
| 7987 | - transform: translateY(-50%); | |
| 6423 | + top: 50%; | |
| 6424 | + -webkit-transform: translateY(-50%); | |
| 6425 | + -ms-transform: translateY(-50%); | |
| 6426 | + transform: translateY(-50%); | |
| 6427 | + right: 15px; | |
| 7988 | 6428 | } |
| 7989 | 6429 | #elementor-icons-manager__tab__wrapper { |
| 7990 | 6430 | overflow: auto; |
| 7991 | 6431 | margin: 25px -15px 0; |
| @@ -7991,12 +6431,12 @@ | ||
| 7991 | 6431 | margin: 25px -15px 0; |
| 7992 | 6432 | padding: 0 15px 15px; |
| 7993 | 6433 | } |
| 7994 | 6434 | #elementor-icons-manager__tab__title { |
| 7995 | - color: var(--e-a-color-txt); | |
| 6435 | + color: #556068; | |
| 7996 | 6436 | font-size: 16px; |
| 7997 | 6437 | font-weight: 500; |
| 7998 | - text-align: start; | |
| 6438 | + text-align: left; | |
| 7999 | 6439 | } |
| 8000 | 6440 | @media (max-width: 479px) { |
| 8001 | 6441 | #elementor-icons-manager__tab__title { |
| 8002 | 6442 | display: none; |
| @@ -8028,186 +6468,184 @@ | ||
| 8028 | 6468 | grid-template-columns: repeat(3, 1fr); |
| 8029 | 6469 | } |
| 8030 | 6470 | } |
| 8031 | 6471 | #elementor-icons-manager__promotion { |
| 6472 | + display: -webkit-box; | |
| 6473 | + display: -ms-flexbox; | |
| 8032 | 6474 | display: flex; |
| 8033 | - align-items: center; | |
| 8034 | - flex-direction: column; | |
| 8035 | - padding-block-start: 70px; | |
| 6475 | + -webkit-box-align: center; | |
| 6476 | + -ms-flex-align: center; | |
| 6477 | + align-items: center; | |
| 6478 | + -webkit-box-orient: vertical; | |
| 6479 | + -webkit-box-direction: normal; | |
| 6480 | + -ms-flex-direction: column; | |
| 6481 | + flex-direction: column; | |
| 6482 | + padding-top: 70px; | |
| 8036 | 6483 | } |
| 8037 | 6484 | #elementor-icons-manager__promotion__icon { |
| 8038 | 6485 | font-size: 60px; |
| 6486 | + color: #c2cbd2; | |
| 8039 | 6487 | } |
| 8040 | 6488 | #elementor-icons-manager__promotion__text { |
| 8041 | 6489 | width: 300px; |
| 8042 | 6490 | font-size: 16px; |
| 8043 | - padding-block-start: 25px; | |
| 6491 | + padding-top: 25px; | |
| 8044 | 6492 | } |
| 8045 | 6493 | #elementor-icons-manager__promotion__link { |
| 8046 | - margin-block-start: 20px; | |
| 6494 | + margin-top: 20px; | |
| 8047 | 6495 | } |
| 8048 | 6496 | |
| 8049 | 6497 | .elementor-icons-manager__tab-link { |
| 8050 | - padding-block: 15px; | |
| 8051 | - padding-inline: 45px 0; | |
| 8052 | - font-size: 12px; | |
| 8053 | - text-align: start; | |
| 6498 | + padding: 15px 0 15px 45px; | |
| 6499 | + font-size: 14px; | |
| 6500 | + color: #6d7882; | |
| 6501 | + text-align: left; | |
| 8054 | 6502 | cursor: pointer; |
| 8055 | 6503 | position: relative; |
| 8056 | 6504 | } |
| 8057 | 6505 | .elementor-icons-manager__tab-link i { |
| 8058 | 6506 | font-size: 20px; |
| 8059 | - padding-inline-end: 15px; | |
| 6507 | + padding-right: 15px; | |
| 6508 | + color: #a4afb7; | |
| 8060 | 6509 | } |
| 6510 | +@media (max-width: 1439px) { | |
| 6511 | + .elementor-icons-manager__tab-link { | |
| 6512 | + padding: 15px 15px 15px 25px; | |
| 6513 | + font-size: 11px; | |
| 6514 | + } | |
| 6515 | + .elementor-icons-manager__tab-link i { | |
| 6516 | + font-size: 15px; | |
| 6517 | + } | |
| 6518 | +} | |
| 8061 | 6519 | @media (max-width: 1024px) { |
| 8062 | 6520 | .elementor-icons-manager__tab-link i { |
| 8063 | 6521 | display: none; |
| 8064 | 6522 | } |
| 8065 | 6523 | } |
| 8066 | -.elementor-icons-manager__tab-link:hover { | |
| 8067 | - background-color: var(--e-a-bg-hover); | |
| 8068 | -} | |
| 8069 | 6524 | .elementor-icons-manager__tab-link.elementor-active { |
| 8070 | - background-color: var(--e-a-bg-active); | |
| 8071 | - color: var(--e-a-color-txt-accent); | |
| 6525 | + background-color: #fff; | |
| 6526 | + -webkit-box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.1); | |
| 6527 | + box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.1); | |
| 8072 | 6528 | } |
| 8073 | 6529 | .elementor-icons-manager__tab-link.elementor-active:after { |
| 8074 | 6530 | content: ""; |
| 8075 | 6531 | position: absolute; |
| 8076 | 6532 | height: 100%; |
| 8077 | - width: 3px; | |
| 8078 | - inset-block-start: 0; | |
| 8079 | - inset-inline-start: 0; | |
| 8080 | - background-color: var(--e-a-border-color-accent); | |
| 6533 | + width: 5px; | |
| 6534 | + top: 0; | |
| 6535 | + left: 0; | |
| 6536 | + background-color: #71d7f7; | |
| 8081 | 6537 | } |
| 6538 | +.elementor-icons-manager__tab-link.elementor-active i { | |
| 6539 | + color: #71d7f7; | |
| 6540 | +} | |
| 8082 | 6541 | .elementor-icons-manager__tab__item { |
| 8083 | 6542 | position: relative; |
| 8084 | 6543 | height: 0; |
| 8085 | - padding-block-end: 100%; | |
| 8086 | - border: var(--e-a-border); | |
| 6544 | + padding-bottom: 100%; | |
| 6545 | + background-color: #fff; | |
| 6546 | + -webkit-box-shadow: 0 1px 12px rgba(0, 0, 0, 0.05); | |
| 6547 | + box-shadow: 0 1px 12px rgba(0, 0, 0, 0.05); | |
| 8087 | 6548 | border-radius: 3px; |
| 8088 | 6549 | cursor: pointer; |
| 8089 | - transition: var(--e-a-transition-hover); | |
| 6550 | + -webkit-transition: all 0.3s; | |
| 6551 | + -o-transition: all 0.3s; | |
| 6552 | + transition: all 0.3s; | |
| 8090 | 6553 | overflow: hidden; |
| 8091 | 6554 | } |
| 8092 | 6555 | .elementor-icons-manager__tab__item:hover { |
| 8093 | - background-color: var(--e-a-bg-hover); | |
| 6556 | + -webkit-box-shadow: 0 1px 14px rgba(0, 0, 0, 0.16); | |
| 6557 | + box-shadow: 0 1px 14px rgba(0, 0, 0, 0.16); | |
| 8094 | 6558 | } |
| 8095 | 6559 | .elementor-icons-manager__tab__item.elementor-selected { |
| 8096 | - background-color: var(--e-a-bg-active); | |
| 8097 | - border-color: var(--e-a-border-color-accent); | |
| 8098 | - color: var(--e-a-color-txt-accent); | |
| 6560 | + -webkit-box-shadow: 0 1px 12px rgba(0, 0, 0, 0.05), 0 0 0 3px #71d7f7; | |
| 6561 | + box-shadow: 0 1px 12px rgba(0, 0, 0, 0.05), 0 0 0 3px #71d7f7; | |
| 8099 | 6562 | } |
| 8100 | 6563 | .elementor-icons-manager__tab__item__content { |
| 6564 | + display: -webkit-box; | |
| 6565 | + display: -ms-flexbox; | |
| 8101 | 6566 | display: flex; |
| 8102 | - flex-direction: column; | |
| 8103 | - align-items: center; | |
| 6567 | + -webkit-box-orient: vertical; | |
| 6568 | + -webkit-box-direction: normal; | |
| 6569 | + -ms-flex-direction: column; | |
| 6570 | + flex-direction: column; | |
| 6571 | + -webkit-box-align: center; | |
| 6572 | + -ms-flex-align: center; | |
| 6573 | + align-items: center; | |
| 8104 | 6574 | width: 100%; |
| 8105 | 6575 | position: absolute; |
| 8106 | - inset-block-start: 50%; | |
| 8107 | - inset-inline-start: 50%; | |
| 8108 | - transform: translate(calc(-50% * var(--direction-multiplier)), -50%); | |
| 6576 | + top: 50%; | |
| 6577 | + left: 50%; | |
| 6578 | + -webkit-transform: translate(-50%, -50%); | |
| 6579 | + -ms-transform: translate(-50%, -50%); | |
| 6580 | + transform: translate(-50%, -50%); | |
| 8109 | 6581 | padding: 1px; |
| 8110 | 6582 | } |
| 8111 | 6583 | .elementor-icons-manager__tab__item__icon { |
| 8112 | 6584 | font-size: 25px; |
| 6585 | + color: #6d7882; | |
| 8113 | 6586 | } |
| 8114 | 6587 | .elementor-icons-manager__tab__item__name { |
| 6588 | + color: #c2cbd2; | |
| 8115 | 6589 | font-size: 11px; |
| 8116 | 6590 | padding: 13px 20px 0; |
| 8117 | 6591 | max-width: 100%; |
| 8118 | 6592 | white-space: nowrap; |
| 8119 | - text-overflow: ellipsis; | |
| 6593 | + -o-text-overflow: ellipsis; | |
| 6594 | + text-overflow: ellipsis; | |
| 8120 | 6595 | overflow: hidden; |
| 8121 | 6596 | } |
| 8122 | 6597 | |
| 6598 | +#elementor-enable-fa5-dialog a { | |
| 6599 | + font-style: italic; | |
| 6600 | + text-decoration: underline; | |
| 6601 | +} | |
| 6602 | +#elementor-enable-fa5-dialog .dialog-confirm-ok { | |
| 6603 | + color: #39b54a; | |
| 6604 | +} | |
| 6605 | + | |
| 8123 | 6606 | .elementor-color-picker__header { |
| 6607 | + display: -webkit-box; | |
| 6608 | + display: -ms-flexbox; | |
| 8124 | 6609 | display: flex; |
| 8125 | - justify-content: space-between; | |
| 8126 | - align-items: center; | |
| 6610 | + -webkit-box-pack: justify; | |
| 6611 | + -ms-flex-pack: justify; | |
| 6612 | + justify-content: space-between; | |
| 6613 | + -webkit-box-align: center; | |
| 6614 | + -ms-flex-align: center; | |
| 6615 | + align-items: center; | |
| 8127 | 6616 | font-weight: bold; |
| 8128 | 6617 | padding: 10px; |
| 8129 | - box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); | |
| 6618 | + -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); | |
| 6619 | + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); | |
| 8130 | 6620 | } |
| 8131 | 6621 | |
| 8132 | 6622 | .e-color-picker__tools { |
| 6623 | + display: -webkit-box; | |
| 6624 | + display: -ms-flexbox; | |
| 8133 | 6625 | display: flex; |
| 8134 | 6626 | } |
| 8135 | 6627 | |
| 8136 | 6628 | .e-control-color--no-value .pcr-button { |
| 6629 | + background-image: -o-linear-gradient(315deg, transparent 46%, #ff3030 50%, transparent 54%); | |
| 8137 | 6630 | background-image: linear-gradient(135deg, transparent 46%, #ff3030 50%, transparent 54%); |
| 8138 | 6631 | background-size: cover; |
| 8139 | 6632 | background-color: transparent; |
| 6633 | + border: 1px solid #d5dadf; | |
| 8140 | 6634 | } |
| 8141 | 6635 | |
| 8142 | -.pickr { | |
| 8143 | - border: var(--e-a-border); | |
| 8144 | - height: 27px; | |
| 8145 | -} | |
| 8146 | -.pickr .pcr-button { | |
| 8147 | - height: 100%; | |
| 8148 | - width: 100%; | |
| 8149 | - border-radius: var(--e-a-border-radius); | |
| 8150 | -} | |
| 8151 | -.pickr .pcr-button:before, .pickr .pcr-button:after { | |
| 8152 | - height: 12px; | |
| 8153 | - width: 12px; | |
| 8154 | - position: absolute; | |
| 8155 | - inset-block-start: 50%; | |
| 8156 | - inset-inline-start: 50%; | |
| 8157 | - transform: translate(calc(-50% * var(--direction-multiplier)), -50%); | |
| 8158 | -} | |
| 8159 | - | |
| 8160 | -.pcr-app { | |
| 8161 | - background-color: var(--e-a-bg-default); | |
| 8162 | - color: var(--e-a-color-txt); | |
| 8163 | - box-shadow: var(--e-a-popover-shadow); | |
| 8164 | - font-family: var(--e-a-font-family); | |
| 8165 | -} | |
| 8166 | 6636 | .pcr-app[data-theme=monolith] { |
| 8167 | 6637 | padding: 0; |
| 8168 | - width: 270px; | |
| 8169 | 6638 | } |
| 8170 | -.pcr-app[data-theme=monolith] .pcr-selection .pcr-color-opacity, | |
| 8171 | -.pcr-app[data-theme=monolith] .pcr-selection .pcr-color-chooser { | |
| 8172 | - height: 8px; | |
| 6639 | +.pcr-result { | |
| 6640 | + border-right-width: 1px; | |
| 6641 | + border-radius: 3px; | |
| 8173 | 6642 | } |
| 8174 | -.pcr-app[data-theme=monolith] .pcr-selection .pcr-color-palette { | |
| 8175 | - height: 150px; | |
| 8176 | -} | |
| 8177 | -.pcr-app .pcr-selection .pcr-picker { | |
| 8178 | - box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.2); | |
| 8179 | -} | |
| 8180 | -.pcr-app .pcr-interaction { | |
| 8181 | - padding-block-end: 20px; | |
| 8182 | -} | |
| 8183 | -.pcr-app .pcr-interaction input.pcr-result { | |
| 8184 | - border: var(--e-a-border); | |
| 8185 | - color: var(--e-a-color-txt); | |
| 8186 | - border-radius: var(--e-a-border-radius); | |
| 8187 | - margin: 0; | |
| 8188 | - background-color: transparent; | |
| 8189 | -} | |
| 8190 | -.pcr-app .pcr-interaction input.pcr-result:focus { | |
| 8191 | - box-shadow: none; | |
| 8192 | - border-color: var(--e-a-border-color-bold); | |
| 8193 | -} | |
| 8194 | -.pcr-app .pcr-interaction input.pcr-type { | |
| 8195 | - all: unset; | |
| 8196 | - font-size: 10px; | |
| 8197 | - color: var(--e-a-color-txt-muted); | |
| 8198 | - padding-inline-start: 5px; | |
| 8199 | - cursor: pointer; | |
| 8200 | -} | |
| 8201 | -.pcr-app .pcr-interaction input.pcr-type.active { | |
| 8202 | - background-color: transparent; | |
| 8203 | - color: var(--e-a-color-txt-accent); | |
| 8204 | -} | |
| 8205 | 6643 | .pcr-selection, .pcr-interaction { |
| 8206 | 6644 | padding: 0 20px; |
| 8207 | 6645 | } |
| 8208 | -.pcr-selection { | |
| 8209 | - padding-block-start: 20px; | |
| 6646 | +.pcr-interaction { | |
| 6647 | + padding-bottom: 20px; | |
| 8210 | 6648 | } |
| 8211 | 6649 | .pcr .elementor-control-dynamic-switcher { |
| 8212 | 6650 | height: 20px; |
| 8213 | 6651 | border: 0; |
| @@ -8219,24 +6657,18 @@ | ||
| 8219 | 6657 | z-index: 9999; |
| 8220 | 6658 | font-size: 12px; |
| 8221 | 6659 | } |
| 8222 | 6660 | .select2-container .e-select2-placeholder { |
| 8223 | - color: var(--e-a-color-txt-muted); | |
| 6661 | + color: #a4afb7; | |
| 8224 | 6662 | } |
| 8225 | 6663 | .select2-container.select2-container--default .select2-selection--single { |
| 8226 | 6664 | height: 27px; |
| 8227 | - background-color: transparent; | |
| 8228 | 6665 | } |
| 8229 | 6666 | .select2-container.select2-container--default .select2-selection--single .select2-selection__rendered { |
| 8230 | - color: var(--e-a-color-txt); | |
| 6667 | + color: #6d7882; | |
| 8231 | 6668 | line-height: 27px; |
| 8232 | 6669 | } |
| 8233 | -.select2-container.select2-container--default .select2-results__option--highlighted[aria-selected] { | |
| 8234 | - background-color: var(--e-a-bg-hover); | |
| 8235 | - color: var(--e-a-color-txt-hover); | |
| 8236 | -} | |
| 8237 | 6670 | .select2-container.select2-container--default .select2-selection--multiple { |
| 8238 | - background-color: var(--e-a-bg-default); | |
| 8239 | 6671 | min-height: 27px; |
| 8240 | 6672 | line-height: 0; |
| 8241 | 6673 | } |
| 8242 | 6674 | .select2-container.select2-container--default .select2-selection--multiple .select2-selection__clear { |
| @@ -8242,10 +6674,9 @@ | ||
| 8242 | 6674 | .select2-container.select2-container--default .select2-selection--multiple .select2-selection__clear { |
| 8243 | 6675 | display: none; |
| 8244 | 6676 | } |
| 8245 | 6677 | .select2-container.select2-container--default .select2-selection--multiple .select2-selection__choice { |
| 8246 | - background-color: var(--e-a-btn-bg); | |
| 8247 | - color: var(--e-a-btn-color-invert); | |
| 6678 | + background-color: #f1f3f5; | |
| 8248 | 6679 | line-height: 1.2; |
| 8249 | 6680 | font-size: 10px; |
| 8250 | 6681 | border: none; |
| 8251 | 6682 | border-radius: 0; |
| @@ -8259,33 +6690,40 @@ | ||
| 8259 | 6690 | } |
| 8260 | 6691 | .select2-container.select2-container--default .select2-selection--multiple .select2-selection__choice.select2-selection__e-plus-button:after { |
| 8261 | 6692 | content: "\e815"; |
| 8262 | 6693 | font-family: "eicons"; |
| 8263 | - color: var(--e-a-btn-color-invert); | |
| 6694 | + color: #a4afb7; | |
| 8264 | 6695 | text-indent: 0; |
| 8265 | 6696 | position: absolute; |
| 8266 | - inset: 0; | |
| 6697 | + left: 0; | |
| 6698 | + top: 0; | |
| 6699 | + width: 100%; | |
| 6700 | + height: 100%; | |
| 6701 | + display: -webkit-box; | |
| 6702 | + display: -ms-flexbox; | |
| 8267 | 6703 | display: flex; |
| 8268 | - justify-content: center; | |
| 8269 | - align-items: center; | |
| 6704 | + -webkit-box-pack: center; | |
| 6705 | + -ms-flex-pack: center; | |
| 6706 | + justify-content: center; | |
| 6707 | + -webkit-box-align: center; | |
| 6708 | + -ms-flex-align: center; | |
| 6709 | + align-items: center; | |
| 8270 | 6710 | } |
| 8271 | 6711 | .select2-container.select2-container--default .select2-selection--multiple .select2-selection__rendered { |
| 8272 | - padding-block-end: 5px; | |
| 6712 | + padding-bottom: 5px; | |
| 8273 | 6713 | } |
| 8274 | 6714 | .select2-container.select2-container--default .select2-selection--multiple .select2-selection__choice__remove { |
| 8275 | - color: var(--e-a-btn-color-invert); | |
| 8276 | - margin-inline-end: 3px; | |
| 6715 | + color: #a4afb7; | |
| 6716 | + margin-right: 3px; | |
| 8277 | 6717 | } |
| 8278 | 6718 | .select2-container:not(.select2-container--open):not(.select2-container--focus) .select2-selection--single, |
| 8279 | 6719 | .select2-container:not(.select2-container--open):not(.select2-container--focus) .select2-selection--multiple { |
| 8280 | - background-color: var(--e-a-bg-default); | |
| 8281 | - color: var(--e-a-color-txt); | |
| 8282 | - border-color: var(--e-a-border-color); | |
| 6720 | + border-color: #d5dadf; | |
| 8283 | 6721 | } |
| 8284 | 6722 | .select2-container.select2-container--open .select2-selection--single, |
| 8285 | 6723 | .select2-container.select2-container--open .select2-selection--multiple, .select2-container.select2-container--focus .select2-selection--single, |
| 8286 | 6724 | .select2-container.select2-container--focus .select2-selection--multiple { |
| 8287 | - border-color: var(--e-a-border-color-bold); | |
| 6725 | + border-color: #a4afb7; | |
| 8288 | 6726 | } |
| 8289 | 6727 | |
| 8290 | 6728 | .select2-selection { |
| 8291 | 6729 | outline: none; |
| @@ -8295,24 +6733,20 @@ | ||
| 8295 | 6733 | } |
| 8296 | 6734 | |
| 8297 | 6735 | .select2-selection__arrow { |
| 8298 | 6736 | height: 27px; |
| 8299 | - inset-block-start: 0; | |
| 6737 | + top: 0; | |
| 8300 | 6738 | } |
| 8301 | 6739 | |
| 8302 | 6740 | .select2-results__option[aria-selected=true] { |
| 8303 | - background-color: var(--e-a-bg-active); | |
| 8304 | - color: var(--e-a-color-txt-active); | |
| 6741 | + color: #495157; | |
| 8305 | 6742 | } |
| 8306 | 6743 | .select2-results__option[aria-selected=true]:not(.select2-results__option--highlighted) { |
| 8307 | - background-color: var(--e-a-bg-active); | |
| 6744 | + background-color: initial; | |
| 8308 | 6745 | } |
| 8309 | 6746 | |
| 8310 | 6747 | .select2-dropdown { |
| 8311 | - border-color: var(--e-a-border-color); | |
| 8312 | - background-color: var(--e-a-bg-default); | |
| 8313 | - color: var(--e-a-color-txt); | |
| 8314 | - box-shadow: var(--e-a-dropdown-shadow); | |
| 6748 | + border-color: #a4afb7; | |
| 8315 | 6749 | } |
| 8316 | 6750 | .select2-dropdown .select2-search__field { |
| 8317 | 6751 | outline: none; |
| 8318 | 6752 | } |
| @@ -8320,14 +6754,16 @@ | ||
| 8320 | 6754 | .e-ui-state--document-scrubbing-mode__on, .e-ui-state--document-scrubbing-mode__on * { |
| 8321 | 6755 | cursor: ew-resize; |
| 8322 | 6756 | } |
| 8323 | 6757 | .e-ui-state--document-scrubbing-mode__on input.e-scrubbing--active, .e-ui-state--document-scrubbing-mode__on input.e-scrubbing--active:focus { |
| 8324 | - box-shadow: 0 0 0 1px rgb(14.2857142857, 58.5714285714, 155.7142857143) inset; | |
| 6758 | + -webkit-box-shadow: 0 0 0 1px #10bcf2 inset; | |
| 6759 | + box-shadow: 0 0 0 1px #10bcf2 inset; | |
| 8325 | 6760 | } |
| 8326 | 6761 | .e-ui-state--document-scrubbing-mode__on label.e-scrubbing--active { |
| 8327 | - color: rgb(14.2857142857, 58.5714285714, 155.7142857143); | |
| 6762 | + color: #10bcf2; | |
| 8328 | 6763 | -webkit-user-select: none; |
| 8329 | 6764 | -moz-user-select: none; |
| 6765 | + -ms-user-select: none; | |
| 8330 | 6766 | user-select: none; |
| 8331 | 6767 | } |
| 8332 | 6768 | .e-ui-state--document-scrubbing-mode__on iframe { |
| 8333 | 6769 | pointer-events: none; |
| @@ -8336,95 +6772,42 @@ | ||
| 8336 | 6772 | label.e-scrubbing-over { |
| 8337 | 6773 | cursor: ew-resize; |
| 8338 | 6774 | } |
| 8339 | 6775 | |
| 8340 | -#elementor-paste-area-dialog { | |
| 8341 | - text-align: center; | |
| 8342 | -} | |
| 8343 | -#elementor-paste-area-dialog .dialog-header { | |
| 8344 | - padding-block-start: 60px; | |
| 8345 | - font-size: 30px; | |
| 8346 | -} | |
| 8347 | -#elementor-paste-area-dialog .dialog-message { | |
| 8348 | - padding: 0 15px 15px; | |
| 8349 | - font-size: 15px; | |
| 8350 | - position: relative; | |
| 8351 | -} | |
| 8352 | -#elementor-paste-area-dialog #elementor-paste-area-dialog__input { | |
| 8353 | - background: transparent; | |
| 8354 | - color: transparent; | |
| 8355 | - border-color: transparent; | |
| 8356 | - padding: 0; | |
| 8357 | - margin: 0; | |
| 8358 | - height: 100px; | |
| 8359 | - position: absolute; | |
| 8360 | - inset-block-start: -60px; | |
| 8361 | - inset-inline: 0; | |
| 8362 | -} | |
| 8363 | -#elementor-paste-area-dialog #elementor-paste-area-dialog__input:focus { | |
| 8364 | - border-color: transparent; | |
| 8365 | - outline: none; | |
| 8366 | -} | |
| 8367 | -#elementor-paste-area-dialog .dialog-widget-content { | |
| 8368 | - width: 400px; | |
| 8369 | -} | |
| 8370 | -#elementor-paste-area-dialog .dialog-widget-content .eicon-loading { | |
| 8371 | - display: none; | |
| 8372 | -} | |
| 8373 | -#elementor-paste-area-dialog .dialog-widget-content.e-state-loading .eicon-loading { | |
| 8374 | - display: block; | |
| 8375 | - margin-block-start: 15px; | |
| 8376 | -} | |
| 8377 | -#elementor-paste-area-dialog #elementor-paste-area-dialog__error { | |
| 8378 | - color: var(--e-a-color-danger); | |
| 8379 | - font-size: 12px; | |
| 8380 | -} | |
| 8381 | -#elementor-paste-area-dialog #elementor-paste-area-dialog__error:before { | |
| 8382 | - content: ""; | |
| 8383 | - border-block-start: var(--e-a-border); | |
| 8384 | - display: block; | |
| 8385 | - margin: 10px -15px; | |
| 8386 | -} | |
| 8387 | - | |
| 8388 | 6776 | [class^=eicon-flex], [class*=" eicon-flex"] { |
| 6777 | + -webkit-transition: 0.3s all; | |
| 6778 | + -o-transition: 0.3s all; | |
| 8389 | 6779 | transition: 0.3s all; |
| 6780 | + --is-ltr: 1; | |
| 6781 | + --is-rtl: 0; | |
| 6782 | + --rotation-direction: calc( var( --is-ltr ) - var( --is-rtl ) ); | |
| 8390 | 6783 | } |
| 8391 | 6784 | [class^=eicon-flex].eicon-inline, [class*=" eicon-flex"].eicon-inline { |
| 8392 | 6785 | max-height: 1em; |
| 8393 | 6786 | max-width: 1em; |
| 8394 | 6787 | } |
| 8395 | -[class^=eicon-flex], [class*=" eicon-flex"] { | |
| 8396 | - --is-ltr: 1; | |
| 8397 | - --is-rtl: 0; | |
| 8398 | -} | |
| 8399 | -[class^=eicon-flex]:is(.eicon-justify-start-h, .eicon-justify-end-h), [class*=" eicon-flex"]:is(.eicon-justify-start-h, .eicon-justify-end-h) { | |
| 8400 | - --rotation-direction: calc(var(--is-ltr) + var(--is-rtl)); | |
| 8401 | -} | |
| 8402 | -[class^=eicon-flex], [class*=" eicon-flex"] { | |
| 8403 | - --rotation-direction: calc(var(--is-ltr) - var(--is-rtl)); | |
| 8404 | -} | |
| 8405 | 6788 | :is(.e-ui-state--document-direction-mode__column, .e-ui-state--document-direction-mode__column-reverse) [class^=eicon-flex]:not(.eicon-wrap):not(.eicon-nowrap):not(.eicon-grow), :is(.e-ui-state--document-direction-mode__column, .e-ui-state--document-direction-mode__column-reverse) [class*=" eicon-flex"]:not(.eicon-wrap):not(.eicon-nowrap):not(.eicon-grow) { |
| 8406 | - transform: rotate(calc(var(--rotation-direction) * 90deg)); | |
| 6789 | + -webkit-transform: rotate(calc(var(--rotation-direction) * 90deg)); | |
| 6790 | + -ms-transform: rotate(calc(var(--rotation-direction) * 90deg)); | |
| 6791 | + transform: rotate(calc(var(--rotation-direction) * 90deg)); | |
| 8407 | 6792 | } |
| 8408 | 6793 | :is(.e-ui-state--document-direction-mode__column, .e-ui-state--document-direction-mode__column-reverse) [class^=eicon-flex]:not(.eicon-wrap):not(.eicon-nowrap):not(.eicon-grow):is(.eicon-align-start-v, .eicon-align-end-v), :is(.e-ui-state--document-direction-mode__column, .e-ui-state--document-direction-mode__column-reverse) [class*=" eicon-flex"]:not(.eicon-wrap):not(.eicon-nowrap):not(.eicon-grow):is(.eicon-align-start-v, .eicon-align-end-v) { |
| 8409 | - transform: rotate(calc(var(--rotation-direction) * -90deg)); | |
| 6794 | + -webkit-transform: rotate(calc(var(--rotation-direction) * -90deg)); | |
| 6795 | + -ms-transform: rotate(calc(var(--rotation-direction) * -90deg)); | |
| 6796 | + transform: rotate(calc(var(--rotation-direction) * -90deg)); | |
| 8410 | 6797 | } |
| 8411 | 6798 | .e-ui-state--document-direction-mode__column-reverse [class^=eicon-flex]:not(.eicon-wrap):not(.eicon-nowrap):not(.eicon-grow):is(.eicon-justify-start-h, .eicon-justify-end-h, .eicon-order-start, .eicon-order-end), .e-ui-state--document-direction-mode__column-reverse [class*=" eicon-flex"]:not(.eicon-wrap):not(.eicon-nowrap):not(.eicon-grow):is(.eicon-justify-start-h, .eicon-justify-end-h, .eicon-order-start, .eicon-order-end) { |
| 8412 | - transform: rotate(calc(var(--rotation-direction) * -90deg)); | |
| 6799 | + -webkit-transform: rotate(calc(var(--rotation-direction) * -90deg)); | |
| 6800 | + -ms-transform: rotate(calc(var(--rotation-direction) * -90deg)); | |
| 6801 | + transform: rotate(calc(var(--rotation-direction) * -90deg)); | |
| 8413 | 6802 | } |
| 8414 | 6803 | .e-ui-state--document-direction-mode__row [class^=eicon-flex]:not(.eicon-wrap):not(.eicon-nowrap):not(.eicon-grow):is(.eicon-justify-start-h, .eicon-justify-end-h, .eicon-order-start, .eicon-order-end), .e-ui-state--document-direction-mode__row [class*=" eicon-flex"]:not(.eicon-wrap):not(.eicon-nowrap):not(.eicon-grow):is(.eicon-justify-start-h, .eicon-justify-end-h, .eicon-order-start, .eicon-order-end) { |
| 8415 | - transform: rotate(calc(var(--is-rtl) * 180deg)); | |
| 6804 | + -webkit-transform: rotate(calc(var(--is-rtl) * 180deg)); | |
| 6805 | + -ms-transform: rotate(calc(var(--is-rtl) * 180deg)); | |
| 6806 | + transform: rotate(calc(var(--is-rtl) * 180deg)); | |
| 8416 | 6807 | } |
| 8417 | 6808 | .e-ui-state--document-direction-mode__row-reverse [class^=eicon-flex]:not(.eicon-wrap):not(.eicon-nowrap):not(.eicon-grow):is(.eicon-justify-start-h, .eicon-justify-end-h, .eicon-order-start, .eicon-order-end), .e-ui-state--document-direction-mode__row-reverse [class*=" eicon-flex"]:not(.eicon-wrap):not(.eicon-nowrap):not(.eicon-grow):is(.eicon-justify-start-h, .eicon-justify-end-h, .eicon-order-start, .eicon-order-end) { |
| 8418 | - transform: rotate(calc(var(--is-ltr) * 180deg)); | |
| 8419 | -} | |
| 8420 | - | |
| 8421 | -.elementor-editor-active .embed-media-settings .setting.caption { | |
| 8422 | - display: none; | |
| 8423 | -} | |
| 8424 | -.elementor-editor-active .embed-media-settings .setting.align { | |
| 8425 | - display: none; | |
| 8426 | -} | |
| 8427 | -.elementor-editor-active .embed-media-settings fieldset.setting-group { | |
| 8428 | - display: none; | |
| 6809 | + -webkit-transform: rotate(calc(var(--is-ltr) * 180deg)); | |
| 6810 | + -ms-transform: rotate(calc(var(--is-ltr) * 180deg)); | |
| 6811 | + transform: rotate(calc(var(--is-ltr) * 180deg)); | |
| 8429 | 6812 | } |
| 8430 | 6813 | /*# sourceMappingURL=editor.css.map */ |