| @@ -1,4 +1,5 @@ | ||
| 1 | +/*! elementor - v3.7.5 - 14-09-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 | + left: 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: "\e89e"; | |
| 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: "\e89f"; | |
| 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-left: 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 | + right: 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-right: 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: right; | |
| 791 | + border-radius: 3px 0 0 3px; | |
| 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 | + left: 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: "\e87e"; | |
| 954 | + font-family: eicons; | |
| 955 | + position: absolute; | |
| 956 | + left: 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: right; | |
| 999 | +} | |
| 1000 | +.elementor-panel .elementor-panel-scheme-button-wrapper:last-child { | |
| 1001 | + text-align: left; | |
| 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,171 @@ | ||
| 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 | + right: 8px; | |
| 1247 | + left: 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 | +} | |
| 1263 | +.elementor-panel .elementor-button.e-logo-maker { | |
| 1264 | + color: #5cb85c; | |
| 1265 | + padding: 7px 21px; | |
| 1266 | + font-style: normal; | |
| 1267 | + margin-top: 7px; | |
| 1268 | + width: 100%; | |
| 1269 | + text-align: center; | |
| 1270 | + background: white; | |
| 1271 | + border: 1px solid transparent; | |
| 1272 | + outline: 1px solid #5cb85c; | |
| 1273 | +} | |
| 1274 | +.elementor-panel .elementor-button.e-logo-maker:hover { | |
| 1275 | + border-color: #5cb85c; | |
| 1276 | +} | |
| 1204 | 1277 | .elementor-panel #elementor-panel-footer { |
| 1205 | - position: relative; | |
| 1278 | + position: absolute; | |
| 1279 | + bottom: 0; | |
| 1280 | + left: 0; | |
| 1281 | + right: 0; | |
| 1206 | 1282 | height: 40px; |
| 1207 | - background-color: var(--e-a-dark-bg); | |
| 1208 | - color: var(--e-a-dark-color-txt); | |
| 1283 | + background-color: #495157; | |
| 1209 | 1284 | } |
| 1210 | 1285 | .elementor-panel #elementor-panel-footer-tools { |
| 1211 | - display: flex; | |
| 1212 | - justify-content: space-between; | |
| 1286 | + display: table; | |
| 1287 | + table-layout: fixed; | |
| 1288 | + width: 100%; | |
| 1213 | 1289 | height: 100%; |
| 1214 | 1290 | } |
| 1215 | 1291 | .elementor-panel .elementor-panel-footer-tool { |
| 1216 | - display: flex; | |
| 1217 | - align-items: center; | |
| 1218 | - justify-content: center; | |
| 1219 | - width: 15%; | |
| 1292 | + display: table-cell; | |
| 1293 | + vertical-align: middle; | |
| 1294 | + text-align: center; | |
| 1220 | 1295 | cursor: pointer; |
| 1221 | - transition: var(--e-a-transition-hover); | |
| 1222 | - border: 0; | |
| 1223 | - color: currentColor; | |
| 1224 | - background-color: transparent; | |
| 1296 | + color: #a4afb7; | |
| 1297 | + -webkit-transition: all 0.3s; | |
| 1298 | + -o-transition: all 0.3s; | |
| 1299 | + transition: all 0.3s; | |
| 1225 | 1300 | } |
| 1226 | -.elementor-panel .elementor-panel-footer-tool i { | |
| 1227 | - font-size: 15px; | |
| 1301 | +.elementor-panel .elementor-panel-footer-tool #elementor-panel-saver-button-update { | |
| 1302 | + border-left: 1px solid #2d8739; | |
| 1303 | + border-radius: 0 3px 3px 0; | |
| 1228 | 1304 | } |
| 1229 | -.elementor-panel .elementor-panel-footer-tool #elementor-panel-saver-button-save-options i.eicon-chevron-right { | |
| 1305 | +.elementor-panel .elementor-panel-footer-tool #elementor-panel-saver-button-update i { | |
| 1306 | + margin-left: 5px; | |
| 1307 | +} | |
| 1308 | +.elementor-panel .elementor-panel-footer-tool #elementor-panel-saver-button-save-options { | |
| 1309 | + float: right; | |
| 1310 | + border-radius: 3px 0 0 3px; | |
| 1311 | +} | |
| 1312 | +.elementor-panel .elementor-panel-footer-tool #elementor-panel-saver-button-save-options i { | |
| 1230 | 1313 | margin: auto; |
| 1231 | - transform: rotate(270deg); | |
| 1232 | 1314 | } |
| 1233 | -.elementor-panel .elementor-panel-footer-tool #elementor-panel-saver-button-save-options.elementor-disabled { | |
| 1234 | - cursor: inherit; | |
| 1315 | +.elementor-panel .elementor-panel-footer-tool.elementor-open { | |
| 1316 | + color: #fff; | |
| 1235 | 1317 | } |
| 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); | |
| 1318 | +.elementor-panel .elementor-panel-footer-tool:not(.elementor-open):hover { | |
| 1319 | + color: #d5dadf; | |
| 1238 | 1320 | } |
| 1239 | -.elementor-panel .elementor-panel-footer-tool:not(.e-open) .elementor-panel-footer-sub-menu-wrapper { | |
| 1321 | +.elementor-panel .elementor-panel-footer-tool:not(.elementor-open) .elementor-panel-footer-sub-menu-wrapper { | |
| 1240 | 1322 | display: none; |
| 1241 | 1323 | } |
| 1324 | +.elementor-panel .elementor-panel-footer-sub-menu-wrapper { | |
| 1325 | + position: absolute; | |
| 1326 | + bottom: 100%; | |
| 1327 | + left: 0; | |
| 1328 | + width: 100%; | |
| 1329 | + background-color: #556068; | |
| 1330 | + padding: 10px; | |
| 1331 | + -webkit-box-shadow: -2px -5px 8px rgba(0, 0, 0, 0.1); | |
| 1332 | + box-shadow: -2px -5px 8px rgba(0, 0, 0, 0.1); | |
| 1333 | + cursor: default; | |
| 1334 | + z-index: 10000; | |
| 1335 | +} | |
| 1336 | +.elementor-panel .elementor-panel-footer-sub-menu { | |
| 1337 | + border-radius: 5px; | |
| 1338 | + overflow: hidden; | |
| 1339 | +} | |
| 1340 | +.elementor-panel .elementor-panel-footer-sub-menu-item { | |
| 1341 | + background-color: #495157; | |
| 1342 | + display: table; | |
| 1343 | + table-layout: fixed; | |
| 1344 | + width: 100%; | |
| 1345 | + cursor: pointer; | |
| 1346 | +} | |
| 1347 | +.elementor-panel .elementor-panel-footer-sub-menu-item.elementor-disabled .elementor-icon, | |
| 1348 | +.elementor-panel .elementor-panel-footer-sub-menu-item.elementor-disabled .elementor-title { | |
| 1349 | + color: #6d7882; | |
| 1350 | +} | |
| 1351 | +.elementor-panel .elementor-panel-footer-sub-menu-item:not(:last-child) { | |
| 1352 | + margin-bottom: 1px; | |
| 1353 | +} | |
| 1354 | +.elementor-panel .elementor-panel-footer-sub-menu-item:hover { | |
| 1355 | + background-color: rgba(0, 0, 0, 0.2); | |
| 1356 | +} | |
| 1357 | +.elementor-panel .elementor-panel-footer-sub-menu-item.active { | |
| 1358 | + background-color: rgba(0, 0, 0, 0.3); | |
| 1359 | +} | |
| 1360 | +.elementor-panel .elementor-panel-footer-sub-menu-item > * { | |
| 1361 | + display: table-cell; | |
| 1362 | + height: 40px; | |
| 1363 | + vertical-align: middle; | |
| 1364 | +} | |
| 1365 | +.elementor-panel .elementor-panel-footer-sub-menu-item .elementor-icon { | |
| 1366 | + width: 40px; | |
| 1367 | + color: #a4afb7; | |
| 1368 | +} | |
| 1369 | +.elementor-panel .elementor-panel-footer-sub-menu-item .elementor-title { | |
| 1370 | + text-align: right; | |
| 1371 | + color: #d5dadf; | |
| 1372 | +} | |
| 1373 | +.elementor-panel .elementor-panel-footer-sub-menu-item .elementor-description { | |
| 1374 | + width: 95px; | |
| 1375 | + text-align: right; | |
| 1376 | + font-size: 11px; | |
| 1377 | + font-style: italic; | |
| 1378 | + color: #a4afb7; | |
| 1379 | +} | |
| 1380 | +.elementor-panel #elementor-panel-footer-help-title { | |
| 1381 | + text-align: right; | |
| 1382 | + padding: 10px 0; | |
| 1383 | + color: #d5dadf; | |
| 1384 | +} | |
| 1385 | +.elementor-panel #elementor-panel-footer-responsive > i { | |
| 1386 | + display: block; | |
| 1387 | + height: 100%; | |
| 1388 | + line-height: 40px; | |
| 1389 | +} | |
| 1242 | 1390 | .elementor-panel #elementor-panel-footer-saver-publish { |
| 1243 | - width: 30%; | |
| 1244 | - margin-inline-start: auto; | |
| 1391 | + width: 80px; | |
| 1245 | 1392 | } |
| 1246 | 1393 | .elementor-panel #elementor-panel-footer-saver-publish .elementor-button-state i { |
| 1247 | - margin-inline-end: 0; | |
| 1394 | + margin-left: 0; | |
| 1248 | 1395 | } |
| 1249 | 1396 | .elementor-panel #elementor-panel-footer-saver-publish .elementor-button-state #elementor-panel-saver-button-publish-label { |
| 1250 | 1397 | display: none; |
| 1251 | 1398 | } |
| 1252 | 1399 | .elementor-panel #elementor-panel-footer-saver-options { |
| 1253 | - width: 10%; | |
| 1400 | + width: 35px; | |
| 1401 | + border-right: 1px solid #495157; | |
| 1254 | 1402 | } |
| 1255 | 1403 | .elementor-panel #elementor-panel-footer-saver-options .elementor-last-edited-wrapper { |
| 1256 | 1404 | font-size: 11px; |
| 1257 | 1405 | font-style: italic; |
| 1406 | + color: #a4afb7; | |
| 1258 | 1407 | padding: 5px 0 15px; |
| 1259 | 1408 | } |
| 1260 | 1409 | .elementor-panel #elementor-panel-footer-saver-options .elementor-last-edited-wrapper:not(.elementor-state-active) .elementor-state-icon { |
| 1261 | 1410 | display: none; |
| @@ -1260,80 +1409,45 @@ | ||
| 1260 | 1409 | .elementor-panel #elementor-panel-footer-saver-options .elementor-last-edited-wrapper:not(.elementor-state-active) .elementor-state-icon { |
| 1261 | 1410 | display: none; |
| 1262 | 1411 | } |
| 1263 | 1412 | .elementor-panel #elementor-panel-footer-saver-options .elementor-last-edited-wrapper time { |
| 1264 | - border-block-end: 1px dotted transparent; | |
| 1413 | + border-bottom: 1px dotted transparent; | |
| 1414 | + -webkit-transition: all ease-in-out 0.3s; | |
| 1415 | + -o-transition: all ease-in-out 0.3s; | |
| 1265 | 1416 | transition: all ease-in-out 0.3s; |
| 1266 | 1417 | cursor: pointer; |
| 1267 | 1418 | } |
| 1268 | 1419 | .elementor-panel #elementor-panel-footer-saver-options .elementor-last-edited-wrapper time:hover { |
| 1269 | - border-block-end-color: inherit; | |
| 1420 | + border-bottom-color: inherit; | |
| 1270 | 1421 | } |
| 1271 | -.elementor-panel #elementor-panel-footer-saver-options.e-open i.eicon-chevron-right { | |
| 1272 | - transform: rotate(90deg); | |
| 1422 | +.elementor-panel .elementor-disabled { | |
| 1423 | + cursor: default; | |
| 1273 | 1424 | } |
| 1425 | +.elementor-panel #elementor-panel-saver-button-preview a { | |
| 1426 | + color: #a4afb7; | |
| 1427 | +} | |
| 1274 | 1428 | .elementor-panel #elementor-panel-saver-button-publish, .elementor-panel #elementor-panel-saver-button-save-options { |
| 1275 | - padding: 0; | |
| 1276 | 1429 | font-size: 11px; |
| 1277 | - height: 100%; | |
| 1278 | - width: 100%; | |
| 1279 | - border-radius: 0; | |
| 1430 | + text-transform: uppercase; | |
| 1431 | + height: 26px; | |
| 1280 | 1432 | } |
| 1281 | 1433 | .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; | |
| 1434 | + background-color: #556068; | |
| 1435 | + color: #a4afb7; | |
| 1284 | 1436 | } |
| 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; | |
| 1437 | +.elementor-panel #elementor-panel-saver-button-publish { | |
| 1295 | 1438 | 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; | |
| 1439 | + border-radius: 0 3px 3px 0; | |
| 1301 | 1440 | } |
| 1302 | -.elementor-panel .elementor-panel-footer-sub-menu { | |
| 1303 | - border-radius: var(--e-border-radius); | |
| 1304 | - overflow: hidden; | |
| 1305 | - border: 1px solid #3f444b; | |
| 1441 | +.elementor-panel #elementor-panel-saver-button-save-options { | |
| 1442 | + width: 25px; | |
| 1306 | 1443 | } |
| 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 | 1444 | |
| 1332 | 1445 | #elementor-panel-elements-navigation .elementor-panel-navigation-tab { |
| 1333 | 1446 | text-align: center; |
| 1334 | 1447 | padding: 10px 0; |
| 1335 | - font-size: 12px; | |
| 1448 | + font-size: 11px; | |
| 1449 | + text-transform: uppercase; | |
| 1336 | 1450 | cursor: pointer; |
| 1337 | 1451 | } |
| 1338 | 1452 | |
| 1339 | 1453 | #elementor-panel-elements { |
| @@ -1344,451 +1458,258 @@ | ||
| 1344 | 1458 | display: none; |
| 1345 | 1459 | } |
| 1346 | 1460 | body.elementor-panel-loading #elementor-panel-state-loading { |
| 1347 | 1461 | position: absolute; |
| 1348 | - inset: 0; | |
| 1462 | + top: 0; | |
| 1463 | + left: 0; | |
| 1464 | + height: 100%; | |
| 1465 | + width: 100%; | |
| 1466 | + display: -webkit-box; | |
| 1467 | + display: -ms-flexbox; | |
| 1349 | 1468 | display: flex; |
| 1350 | - align-items: center; | |
| 1351 | - justify-content: center; | |
| 1469 | + -webkit-box-align: center; | |
| 1470 | + -ms-flex-align: center; | |
| 1471 | + align-items: center; | |
| 1472 | + -webkit-box-pack: center; | |
| 1473 | + -ms-flex-pack: center; | |
| 1474 | + justify-content: center; | |
| 1352 | 1475 | background-color: rgba(255, 255, 255, 0.5); |
| 1353 | 1476 | z-index: 2; |
| 1354 | 1477 | } |
| 1355 | 1478 | #elementor-panel-state-loading .eicon-loading { |
| 1356 | 1479 | font-size: 25px; |
| 1357 | - color: var(--e-a-color-txt-accent); | |
| 1480 | + color: #71d7f7; | |
| 1358 | 1481 | } |
| 1359 | 1482 | |
| 1360 | 1483 | #elementor-panel-elements-search-area { |
| 1361 | - background-color: var(--e-a-bg-default); | |
| 1362 | 1484 | position: sticky; |
| 1363 | - inset-block-start: 0; | |
| 1364 | - padding: 15px; | |
| 1485 | + top: 0; | |
| 1486 | + padding: 10px; | |
| 1487 | + background-color: #e6e9ec; | |
| 1365 | 1488 | z-index: 1; |
| 1366 | 1489 | } |
| 1367 | 1490 | |
| 1368 | -#elementor-panel-elements-search-area:empty { | |
| 1369 | - display: none; | |
| 1370 | -} | |
| 1371 | - | |
| 1372 | 1491 | #elementor-panel-elements-search-wrapper { |
| 1373 | 1492 | position: relative; |
| 1374 | 1493 | } |
| 1375 | 1494 | |
| 1376 | 1495 | #elementor-panel-elements-search-input { |
| 1496 | + background-color: rgba(255, 255, 255, 0.7); | |
| 1377 | 1497 | font-size: 11px; |
| 1378 | - padding-block: 10px; | |
| 1379 | - padding-inline: 29px 10px; | |
| 1498 | + padding: 10px 29px 10px 10px; | |
| 1380 | 1499 | font-style: italic; |
| 1381 | - border: var(--e-a-border-bold); | |
| 1382 | - border-radius: 0; | |
| 1500 | + color: #a4afb7; | |
| 1501 | + border: none; | |
| 1502 | + -webkit-transition: all 1s; | |
| 1503 | + -o-transition: all 1s; | |
| 1383 | 1504 | transition: all 1s; |
| 1505 | + border-radius: 3px; | |
| 1506 | + appearance: none; | |
| 1384 | 1507 | -webkit-appearance: none; |
| 1385 | - -moz-appearance: none; | |
| 1386 | - appearance: none; | |
| 1508 | + -moz-appearance: none; | |
| 1387 | 1509 | } |
| 1388 | 1510 | #elementor-panel-elements-search-input + i { |
| 1389 | 1511 | position: absolute; |
| 1390 | - inset-block-start: 50%; | |
| 1391 | - inset-inline-start: 10px; | |
| 1392 | - transform: translateY(-50%); | |
| 1393 | - color: var(--e-a-color-txt-disabled); | |
| 1512 | + right: 10px; | |
| 1513 | + top: 50%; | |
| 1514 | + color: #a4afb7; | |
| 1515 | + -webkit-transform: translateY(-50%); | |
| 1516 | + -ms-transform: translateY(-50%); | |
| 1517 | + transform: translateY(-50%); | |
| 1394 | 1518 | } |
| 1395 | 1519 | #elementor-panel-elements-search-input:focus { |
| 1396 | - border-color: var(--e-a-border-color-focus); | |
| 1397 | - padding-inline-end: 15px; | |
| 1520 | + background-color: rgb(255, 255, 255); | |
| 1521 | + padding-left: 15px; | |
| 1398 | 1522 | } |
| 1399 | 1523 | |
| 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 | 1524 | .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 | 1525 | border-radius: 3px; |
| 1526 | + background-color: #fff; | |
| 1419 | 1527 | cursor: move; |
| 1420 | 1528 | position: relative; |
| 1421 | - transition: var(--e-a-transition-hover); | |
| 1422 | - width: 100%; | |
| 1423 | - background-color: transparent; | |
| 1424 | 1529 | } |
| 1530 | +.elementor-panel .elementor-element-wrapper { | |
| 1531 | + text-align: center; | |
| 1532 | + -webkit-box-sizing: border-box; | |
| 1533 | + box-sizing: border-box; | |
| 1534 | +} | |
| 1425 | 1535 | .elementor-panel .elementor-element--promotion .elementor-element { |
| 1426 | 1536 | cursor: pointer; |
| 1427 | 1537 | -webkit-user-select: none; |
| 1428 | 1538 | -moz-user-select: none; |
| 1539 | + -ms-user-select: none; | |
| 1429 | 1540 | user-select: none; |
| 1430 | 1541 | } |
| 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); | |
| 1542 | +.elementor-panel .elementor-element .icon, | |
| 1543 | +.elementor-panel .elementor-element .title { | |
| 1544 | + color: #556068; | |
| 1545 | + -webkit-transition: all 0.3s; | |
| 1546 | + -o-transition: all 0.3s; | |
| 1547 | + transition: all 0.3s; | |
| 1436 | 1548 | } |
| 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); | |
| 1549 | +.elementor-panel .elementor-element:hover { | |
| 1550 | + -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); | |
| 1551 | + box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); | |
| 1440 | 1552 | } |
| 1441 | -.elementor-panel .elementor-element:hover > .eicon-upgrade-crown-full, .elementor-panel .elementor-element:focus > .eicon-upgrade-crown-full { | |
| 1442 | - color: var(--e-a-color-accent-promotion); | |
| 1553 | +.elementor-panel .elementor-element:hover .icon, .elementor-panel .elementor-element:hover .title { | |
| 1554 | + color: #93003c; | |
| 1443 | 1555 | } |
| 1444 | -.elementor-panel .elementor-element:hover > .eicon-plug, .elementor-panel .elementor-element:focus > .eicon-plug { | |
| 1445 | - color: var(--e-a-color-info); | |
| 1446 | -} | |
| 1447 | 1556 | .elementor-panel .elementor-element .icon { |
| 1448 | 1557 | font-size: 28px; |
| 1449 | - padding-block-start: 15px; | |
| 1558 | + padding-top: 15px; | |
| 1450 | 1559 | } |
| 1451 | -.elementor-panel .elementor-element .title-wrapper { | |
| 1452 | - display: flex; | |
| 1453 | - height: 40px; | |
| 1454 | - align-items: center; | |
| 1455 | - justify-content: center; | |
| 1560 | +.elementor-panel .elementor-element .elementor-element-title-wrapper { | |
| 1561 | + display: table; | |
| 1562 | + width: 100%; | |
| 1456 | 1563 | } |
| 1457 | 1564 | .elementor-panel .elementor-element .title { |
| 1458 | - font-size: 12px; | |
| 1565 | + font-size: 11px; | |
| 1566 | + display: table-cell; | |
| 1567 | + vertical-align: middle; | |
| 1568 | + height: 40px; | |
| 1459 | 1569 | } |
| 1460 | -.elementor-panel .elementor-element > .eicon-upgrade-crown-full, .elementor-panel .elementor-element .eicon-plug { | |
| 1570 | +.elementor-panel .elementor-element > .eicon-lock { | |
| 1461 | 1571 | position: absolute; |
| 1462 | - inset-block-start: 5px; | |
| 1463 | - inset-inline-end: 5px; | |
| 1572 | + top: 5px; | |
| 1573 | + left: 5px; | |
| 1574 | + color: #e6e9ec; | |
| 1464 | 1575 | } |
| 1465 | -.elementor-panel .elementor-element > .eicon-upgrade-crown-full { | |
| 1466 | - color: var(--e-a-color-accent-promotion-disabled); | |
| 1467 | -} | |
| 1468 | -.elementor-panel .elementor-element > .eicon-plug { | |
| 1469 | - color: var(--e-a-color-txt-disabled); | |
| 1470 | -} | |
| 1471 | -.elementor-panel .elementor-element:active { | |
| 1472 | - background-color: var(--e-a-bg-hover); | |
| 1473 | - border-color: var(--e-a-border-color-accent); | |
| 1474 | - color: var(--e-a-color-txt-accent); | |
| 1475 | -} | |
| 1476 | 1576 | |
| 1477 | 1577 | #elementor-element--promotion__dialog { |
| 1478 | 1578 | position: absolute; |
| 1479 | 1579 | width: 300px; |
| 1480 | 1580 | z-index: 1; |
| 1481 | - background-color: var(--e-a-bg-default); | |
| 1482 | - box-shadow: var(--e-a-popover-shadow); | |
| 1483 | - border-radius: var(--e-a-border-radius); | |
| 1581 | + background-color: #fff; | |
| 1582 | + -webkit-box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3); | |
| 1583 | + box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3); | |
| 1584 | + border-radius: 3px; | |
| 1484 | 1585 | } |
| 1485 | 1586 | #elementor-element--promotion__dialog:after { |
| 1486 | 1587 | content: ""; |
| 1487 | 1588 | position: absolute; |
| 1488 | - inset-block-start: 15px; | |
| 1489 | - inset-inline-end: 100%; | |
| 1490 | - transform: scaleY(0.7); | |
| 1589 | + top: 15px; | |
| 1590 | + left: 100%; | |
| 1591 | + -webkit-transform: scaleY(0.7); | |
| 1592 | + -ms-transform: scaleY(0.7); | |
| 1593 | + transform: scaleY(0.7); | |
| 1491 | 1594 | border: 10px solid transparent; |
| 1492 | - border-inline-end-color: var(--e-a-bg-default); | |
| 1595 | + border-left-color: #fff; | |
| 1493 | 1596 | } |
| 1494 | 1597 | #elementor-element--promotion__dialog__title { |
| 1495 | 1598 | font-size: 14px; |
| 1496 | 1599 | } |
| 1497 | 1600 | #elementor-element--promotion__dialog .dialog-header { |
| 1601 | + display: -webkit-box; | |
| 1602 | + display: -ms-flexbox; | |
| 1498 | 1603 | display: flex; |
| 1499 | 1604 | padding: 20px; |
| 1500 | - border-block-end: var(--e-a-border); | |
| 1605 | + color: #495157; | |
| 1606 | + border-bottom: 1px solid #e6e9ec; | |
| 1501 | 1607 | font-weight: 500; |
| 1502 | 1608 | } |
| 1609 | +#elementor-element--promotion__dialog .dialog-header i { | |
| 1610 | + color: #a4afb7; | |
| 1611 | +} | |
| 1503 | 1612 | #elementor-element--promotion__dialog .dialog-header .eicon-pro-icon { |
| 1504 | - flex-grow: 1; | |
| 1505 | - margin-inline-start: 10px; | |
| 1613 | + -webkit-box-flex: 1; | |
| 1614 | + -ms-flex-positive: 1; | |
| 1615 | + flex-grow: 1; | |
| 1616 | + margin-right: 10px; | |
| 1506 | 1617 | font-size: 14px; |
| 1507 | - color: var(--e-a-color-accent); | |
| 1508 | 1618 | } |
| 1509 | 1619 | #elementor-element--promotion__dialog .dialog-header .eicon-close { |
| 1510 | 1620 | cursor: pointer; |
| 1511 | - color: var(--e-a-color-txt-disabled); | |
| 1512 | 1621 | } |
| 1513 | -#elementor-element--promotion__dialog .dialog-header .eicon-close:hover { | |
| 1514 | - color: var(--e-a-color-txt-muted); | |
| 1515 | -} | |
| 1516 | 1622 | #elementor-element--promotion__dialog .dialog-message { |
| 1517 | 1623 | padding: 20px; |
| 1518 | 1624 | } |
| 1519 | 1625 | #elementor-element--promotion__dialog .dialog-buttons-wrapper { |
| 1520 | - padding: 0 20px 20px; | |
| 1626 | + padding: 0 20px 20px 20px; | |
| 1521 | 1627 | } |
| 1522 | 1628 | #elementor-element--promotion__dialog .dialog-button { |
| 1523 | - padding: 7px 25px; | |
| 1629 | + width: 100%; | |
| 1630 | + padding: 6.5px; | |
| 1524 | 1631 | font-size: 12px; |
| 1525 | 1632 | } |
| 1526 | - | |
| 1527 | -.dialog-tooltip-widget { | |
| 1528 | - position: absolute; | |
| 1529 | - width: 300px; | |
| 1530 | - z-index: 1; | |
| 1531 | - background-color: var(--e-a-bg-default); | |
| 1532 | - box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3); | |
| 1533 | - border-radius: 3px; | |
| 1534 | -} | |
| 1535 | -.dialog-tooltip-widget:after { | |
| 1536 | - content: ""; | |
| 1537 | - position: absolute; | |
| 1538 | - inset-block-start: 15px; | |
| 1539 | - inset-inline-end: 100%; | |
| 1540 | - transform: scaleY(0.7); | |
| 1541 | - border: 10px solid transparent; | |
| 1542 | - border-inline-end-color: var(--e-a-bg-default); | |
| 1543 | -} | |
| 1544 | -.dialog-tooltip-widget__title { | |
| 1545 | - font-size: 14px; | |
| 1546 | -} | |
| 1547 | -.dialog-tooltip-widget .dialog-tooltip-header { | |
| 1548 | - display: flex; | |
| 1549 | - padding: 20px 20px 0; | |
| 1550 | - color: var(--e-a-color-txt); | |
| 1551 | - border-block-end: 1px solid var(--e-a-bg-default); | |
| 1552 | - font-weight: 500; | |
| 1553 | -} | |
| 1554 | -.dialog-tooltip-widget .dialog-tooltip-header .eicon-pro-icon { | |
| 1555 | - flex-grow: 1; | |
| 1556 | - margin-inline-start: 10px; | |
| 1557 | - font-size: 14px; | |
| 1558 | - color: #93003f; | |
| 1559 | -} | |
| 1560 | -.dialog-tooltip-widget .dialog-tooltip-header .eicon-close { | |
| 1561 | - cursor: pointer; | |
| 1562 | - margin-inline-start: auto; | |
| 1563 | - color: var(--e-a-color-txt); | |
| 1564 | -} | |
| 1565 | -.dialog-tooltip-widget .dialog-tooltip-message { | |
| 1566 | - padding: 20px; | |
| 1567 | -} | |
| 1568 | -.dialog-tooltip-widget .dialog-tooltip-buttons-wrapper { | |
| 1569 | - padding: 0 20px 20px 20px; | |
| 1570 | - text-align: end; | |
| 1571 | -} | |
| 1572 | -.dialog-tooltip-widget .dialog-tooltip-button { | |
| 1573 | - padding: 7px 25px; | |
| 1574 | - font-size: 12px; | |
| 1575 | -} | |
| 1576 | -.dialog-tooltip-widget .dialog-tooltip-button::-moz-focus-inner { | |
| 1633 | +#elementor-element--promotion__dialog .dialog-button::-moz-focus-inner { | |
| 1577 | 1634 | border: 0; |
| 1578 | 1635 | } |
| 1579 | 1636 | |
| 1580 | -#elementor-panel-elements-widget-creation-area:empty { | |
| 1581 | - display: none; | |
| 1582 | -} | |
| 1583 | - | |
| 1584 | -.elementor-panel-elements-widget-creation { | |
| 1585 | - text-align: center; | |
| 1586 | - padding: 30px 20px; | |
| 1587 | -} | |
| 1588 | -.elementor-panel-elements-widget-creation__title { | |
| 1589 | - font-size: 14px; | |
| 1590 | - font-weight: bold; | |
| 1591 | - line-height: 1.4; | |
| 1592 | - color: var(--e-a-color-txt); | |
| 1593 | -} | |
| 1594 | -.elementor-panel-elements-widget-creation__message { | |
| 1595 | - margin-block-start: 8px; | |
| 1596 | - font-size: 13px; | |
| 1597 | - line-height: 1.6; | |
| 1598 | - color: var(--e-a-color-txt-muted); | |
| 1599 | -} | |
| 1600 | -.elementor-panel-elements-widget-creation__cta { | |
| 1601 | - display: inline-flex; | |
| 1602 | - align-items: center; | |
| 1603 | - gap: 6px; | |
| 1604 | - margin-block-start: 16px; | |
| 1605 | - padding: 0; | |
| 1606 | - border: none; | |
| 1607 | - background: none; | |
| 1608 | - color: #C00BB9; | |
| 1609 | - font-size: 14px; | |
| 1610 | - font-weight: 500; | |
| 1611 | - cursor: pointer; | |
| 1612 | - font-family: var(--e-a-font-family); | |
| 1613 | -} | |
| 1614 | -.elementor-panel-elements-widget-creation__cta i { | |
| 1615 | - font-size: 16px; | |
| 1616 | -} | |
| 1617 | -.elementor-panel-elements-widget-creation__cta:hover { | |
| 1618 | - opacity: 0.8; | |
| 1619 | -} | |
| 1620 | -.elementor-panel-elements-widget-creation--search-footer { | |
| 1621 | - border-block-start: var(--e-a-border); | |
| 1622 | -} | |
| 1623 | - | |
| 1624 | -.elementor-panel-category-custom-widgets-empty { | |
| 1625 | - grid-column: 1/-1; | |
| 1626 | - width: 100%; | |
| 1627 | - padding: 0 16px 16px; | |
| 1628 | -} | |
| 1629 | -.elementor-panel-category-custom-widgets-empty__message { | |
| 1630 | - margin: 0; | |
| 1631 | - font-size: 12px; | |
| 1632 | - line-height: 1.6; | |
| 1633 | - color: var(--e-a-color-txt-muted); | |
| 1634 | -} | |
| 1635 | - | |
| 1636 | -.elementor-panel-heading.elementor-panel-category-title .elementor-panel-custom-widgets__cta--heading { | |
| 1637 | - margin-inline-start: auto; | |
| 1638 | - padding: 4px 10px; | |
| 1639 | - border: none; | |
| 1640 | - background: none; | |
| 1641 | - color: #C00BB9; | |
| 1642 | - font-size: 12px; | |
| 1643 | - font-weight: 500; | |
| 1644 | - cursor: pointer; | |
| 1645 | - font-family: var(--e-a-font-family); | |
| 1646 | - flex-shrink: 0; | |
| 1647 | -} | |
| 1648 | -.elementor-panel-heading.elementor-panel-category-title .elementor-panel-custom-widgets__cta--heading:hover { | |
| 1649 | - opacity: 0.8; | |
| 1650 | -} | |
| 1651 | - | |
| 1652 | 1637 | #elementor-panel-inner { |
| 1653 | 1638 | position: relative; |
| 1654 | 1639 | height: 100%; |
| 1655 | - display: flex; | |
| 1656 | - flex-direction: column; | |
| 1657 | - box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1); | |
| 1640 | + -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2); | |
| 1641 | + box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2); | |
| 1658 | 1642 | } |
| 1659 | 1643 | |
| 1660 | 1644 | #elementor-panel-content-wrapper { |
| 1661 | - position: relative; | |
| 1645 | + position: absolute; | |
| 1646 | + bottom: 40px; | |
| 1647 | + top: 40px; | |
| 1648 | + left: 0; | |
| 1662 | 1649 | width: 100%; |
| 1663 | - flex: 1; | |
| 1664 | 1650 | } |
| 1665 | 1651 | |
| 1666 | 1652 | .elementor-panel-container { |
| 1667 | 1653 | clear: both; |
| 1668 | - padding-inline-start: 15px; | |
| 1669 | - padding-inline-end: 15px; | |
| 1654 | + padding-left: 15px; | |
| 1655 | + padding-right: 15px; | |
| 1670 | 1656 | } |
| 1671 | 1657 | |
| 1672 | -#elementor-panel-get-pro-elements .elementor-nerd-box-message { | |
| 1673 | - margin-block-start: 10px; | |
| 1658 | +.media-modal.wp-core-ui input { | |
| 1659 | + width: auto; | |
| 1674 | 1660 | } |
| 1675 | -#elementor-panel-get-pro-elements .elementor-nerd-box-icon { | |
| 1676 | - margin-block-start: 20px; | |
| 1661 | +.media-modal.wp-core-ui select { | |
| 1662 | + width: initial; | |
| 1677 | 1663 | } |
| 1678 | - | |
| 1679 | -#elementor-panel-content-wrapper:has(> #elementor-panel-page-editor) { | |
| 1680 | - display: flex; | |
| 1681 | - flex-direction: column; | |
| 1664 | +.media-modal.wp-core-ui fieldset { | |
| 1665 | + padding: 0; | |
| 1666 | + border: 0; | |
| 1682 | 1667 | } |
| 1683 | -#elementor-panel-content-wrapper:has(> #elementor-panel-page-editor) #elementor-panel-page-editor { | |
| 1684 | - display: flex; | |
| 1685 | - flex-direction: column; | |
| 1686 | - flex: 1; | |
| 1687 | - min-height: 0; | |
| 1668 | +.media-modal.wp-core-ui .wp-clearfix::after { | |
| 1669 | + content: ""; | |
| 1670 | + display: table; | |
| 1671 | + clear: both; | |
| 1688 | 1672 | } |
| 1689 | -#elementor-panel-content-wrapper:has(> #elementor-panel-page-editor) .elementor-panel-editor-sticky-promotion { | |
| 1690 | - position: sticky; | |
| 1691 | - inset-block-end: 0; | |
| 1692 | - margin-block-start: auto; | |
| 1673 | +.media-modal.wp-core-ui .e-wp-media-elements-removed { | |
| 1674 | + /* Hack to change the media button selection text, because for some reason the text gets changed when switching tabs. */ | |
| 1693 | 1675 | } |
| 1694 | -#elementor-panel-content-wrapper:has(> #elementor-panel-page-editor) .elementor-panel-editor-sticky-promotion .elementor-get-pro-sticky-message { | |
| 1695 | - margin-block-start: 0; | |
| 1676 | +.media-modal.wp-core-ui .e-wp-media-elements-removed .embed-link-settings, | |
| 1677 | +.media-modal.wp-core-ui .e-wp-media-elements-removed .embed-media-settings > :not(.wp-clearfix):not(.alt-text):not(#alt-text-description) { | |
| 1678 | + display: none; | |
| 1696 | 1679 | } |
| 1697 | - | |
| 1698 | -#elementor-panel-get-pro-elements-sticky { | |
| 1699 | - position: sticky; | |
| 1700 | - inset-block-end: 0; | |
| 1701 | - margin-block-end: -10px; | |
| 1680 | +.media-modal.wp-core-ui .e-wp-media-elements-removed #embed-url-field { | |
| 1681 | + width: 70%; | |
| 1702 | 1682 | } |
| 1703 | -#elementor-panel-get-pro-elements-sticky .elementor-get-pro-sticky-message { | |
| 1704 | - margin-block-start: -14px; | |
| 1683 | +.media-modal.wp-core-ui .e-wp-media-elements-removed .media-embed .thumbnail { | |
| 1684 | + margin-top: 20px; | |
| 1705 | 1685 | } |
| 1706 | - | |
| 1707 | -#elementor-panel-page-elements:has(> #elementor-panel-get-pro-elements-sticky) { | |
| 1708 | - display: flex; | |
| 1709 | - flex-direction: column; | |
| 1710 | - min-height: 100%; | |
| 1686 | +.media-modal.wp-core-ui .e-wp-media-elements-removed .media-embed .thumbnail, | |
| 1687 | +.media-modal.wp-core-ui .e-wp-media-elements-removed .media-embed .thumbnail img { | |
| 1688 | + max-height: initial; | |
| 1711 | 1689 | } |
| 1712 | -#elementor-panel-page-elements:has(> #elementor-panel-get-pro-elements-sticky) > #elementor-panel-get-pro-elements-sticky { | |
| 1713 | - margin-block-start: auto; | |
| 1690 | +.media-modal.wp-core-ui .e-wp-media-elements-removed .media-embed .thumbnail::after { | |
| 1691 | + -webkit-box-shadow: none; | |
| 1692 | + box-shadow: none; | |
| 1714 | 1693 | } |
| 1715 | - | |
| 1716 | -#elementor-panel-get-pro-elements-sticky, | |
| 1717 | -.elementor-panel-editor-sticky-promotion { | |
| 1718 | - font-size: 14px; | |
| 1719 | - font-weight: 400; | |
| 1720 | - line-height: 1.6; | |
| 1721 | - background-color: var(--e-a-color-white); | |
| 1694 | +.media-modal.wp-core-ui .e-wp-media-elements-removed .media-button-select { | |
| 1695 | + font-size: 0; | |
| 1722 | 1696 | } |
| 1723 | -#elementor-panel-get-pro-elements-sticky .elementor-get-pro-sticky-message, | |
| 1724 | -.elementor-panel-editor-sticky-promotion .elementor-get-pro-sticky-message { | |
| 1725 | - min-height: 40px; | |
| 1726 | - display: block; | |
| 1727 | - padding: 9px min(35px, 5%); | |
| 1728 | - gap: 10px; | |
| 1729 | - background-color: var(--e-a-color-white); | |
| 1730 | - color: var(--e-a-color-black); | |
| 1731 | - text-align: center; | |
| 1732 | - box-shadow: 0px -10px 14px -6px rgba(0, 0, 0, 0.05); | |
| 1733 | -} | |
| 1734 | -#elementor-panel-get-pro-elements-sticky .elementor-get-pro-sticky-message a, | |
| 1735 | -.elementor-panel-editor-sticky-promotion .elementor-get-pro-sticky-message a { | |
| 1736 | - display: inline-block; | |
| 1697 | +.media-modal.wp-core-ui .e-wp-media-elements-removed .media-button-select::before { | |
| 1698 | + content: var(--button-text); | |
| 1737 | 1699 | font-size: 13px; |
| 1738 | - font-weight: 500; | |
| 1739 | - color: var(--e-a-btn-bg-accent); | |
| 1740 | 1700 | } |
| 1741 | -#elementor-panel-get-pro-elements-sticky img, | |
| 1742 | -.elementor-panel-editor-sticky-promotion img { | |
| 1743 | - margin-inline-start: 17px; | |
| 1744 | -} | |
| 1745 | 1701 | |
| 1746 | -#elementor-panel-notice-wrapper .elementor-panel-notice { | |
| 1747 | - width: 90%; | |
| 1748 | - margin: 0 auto; | |
| 1749 | - font-style: unset; | |
| 1750 | - margin-block-end: 15px; | |
| 1702 | +#elementor-panel-get-pro-elements .elementor-nerd-box-message { | |
| 1703 | + margin-top: 10px; | |
| 1751 | 1704 | } |
| 1752 | -#elementor-panel-notice-wrapper .elementor-panel-notice a { | |
| 1753 | - font-weight: bold; | |
| 1754 | - font-style: italic; | |
| 1755 | - border-block-end: 2px dotted var(--e-a-color-info); | |
| 1756 | - display: inline-block; | |
| 1705 | +#elementor-panel-get-pro-elements .elementor-nerd-box-icon { | |
| 1706 | + margin-top: 20px; | |
| 1757 | 1707 | } |
| 1758 | 1708 | |
| 1759 | -body.e-has-notification:not(.e-route-panel-menu) #elementor-panel-header-menu-button, | |
| 1760 | -body.e-has-notification .elementor-panel-menu-item.elementor-panel-menu-item-notification-center .elementor-panel-menu-item-icon { | |
| 1761 | - position: relative; | |
| 1762 | -} | |
| 1763 | -body.e-has-notification:not(.e-route-panel-menu) #elementor-panel-header-menu-button:after, | |
| 1764 | -body.e-has-notification .elementor-panel-menu-item.elementor-panel-menu-item-notification-center .elementor-panel-menu-item-icon:after { | |
| 1765 | - position: absolute; | |
| 1766 | - content: ""; | |
| 1767 | - display: block; | |
| 1768 | - background: var(--e-a-color-primary); | |
| 1769 | - border-radius: 50%; | |
| 1770 | - width: 8px; | |
| 1771 | - height: 8px; | |
| 1772 | - inset-block-start: 5px; | |
| 1773 | - inset-inline-end: 5px; | |
| 1774 | -} | |
| 1775 | - | |
| 1776 | -.media-modal.wp-core-ui { | |
| 1777 | - color-scheme: light; | |
| 1778 | - color: #515962; | |
| 1779 | -} | |
| 1780 | -.media-modal.wp-core-ui select { | |
| 1781 | - width: initial; | |
| 1782 | - padding-inline: 8px; | |
| 1783 | -} | |
| 1784 | -.media-modal.wp-core-ui fieldset { | |
| 1785 | - padding: 0; | |
| 1786 | - border: 0; | |
| 1787 | -} | |
| 1788 | - | |
| 1789 | 1709 | .elementor-control { |
| 1790 | 1710 | --control-title-size: 12px; |
| 1711 | + background-color: #fff; | |
| 1791 | 1712 | position: relative; |
| 1792 | 1713 | padding: 0 20px 15px; |
| 1793 | 1714 | } |
| 1794 | 1715 | .elementor-control a { |
| @@ -1793,68 +1714,92 @@ | ||
| 1793 | 1714 | } |
| 1794 | 1715 | .elementor-control a { |
| 1795 | 1716 | font-weight: 500; |
| 1796 | 1717 | text-decoration: none; |
| 1797 | - border-block-end: 1px dotted transparent; | |
| 1718 | + border-bottom: 1px dotted transparent; | |
| 1719 | + -webkit-transition: all ease-in-out 0.3s; | |
| 1720 | + -o-transition: all ease-in-out 0.3s; | |
| 1798 | 1721 | transition: all ease-in-out 0.3s; |
| 1799 | 1722 | } |
| 1800 | 1723 | .elementor-control a:hover { |
| 1801 | - border-block-end-color: inherit; | |
| 1724 | + border-bottom-color: inherit; | |
| 1802 | 1725 | } |
| 1726 | +.elementor-control a.elementor-responsive-switcher { | |
| 1727 | + border-bottom: 0; | |
| 1728 | +} | |
| 1803 | 1729 | .elementor-control .elementor-control-content { |
| 1730 | + display: -webkit-box; | |
| 1731 | + display: -ms-flexbox; | |
| 1804 | 1732 | display: flex; |
| 1805 | - flex-direction: column; | |
| 1733 | + -webkit-box-orient: vertical; | |
| 1734 | + -webkit-box-direction: normal; | |
| 1735 | + -ms-flex-direction: column; | |
| 1736 | + flex-direction: column; | |
| 1806 | 1737 | } |
| 1807 | 1738 | .elementor-control .elementor-control-title { |
| 1808 | 1739 | font-size: var(--control-title-size); |
| 1809 | 1740 | line-height: 1; |
| 1810 | - margin-inline-end: 5px; | |
| 1741 | + margin-left: 5px; | |
| 1811 | 1742 | } |
| 1812 | -.elementor-control .elementor-control-title:empty { | |
| 1813 | - display: none; | |
| 1814 | -} | |
| 1815 | 1743 | .elementor-control .elementor-control-spinner { |
| 1744 | + display: -webkit-box; | |
| 1745 | + display: -ms-flexbox; | |
| 1816 | 1746 | display: flex; |
| 1817 | - align-items: center; | |
| 1747 | + -webkit-box-align: center; | |
| 1748 | + -ms-flex-align: center; | |
| 1749 | + align-items: center; | |
| 1818 | 1750 | } |
| 1819 | 1751 | .elementor-control.elementor-control-type-divider { |
| 1820 | 1752 | padding: 0; |
| 1753 | + background-color: transparent; | |
| 1821 | 1754 | } |
| 1822 | 1755 | .elementor-control.elementor-control-type-divider .elementor-control-content { |
| 1823 | - margin-inline: 20px; | |
| 1824 | 1756 | border-width: 0; |
| 1825 | - border-block-start: var(--e-a-border); | |
| 1826 | - background-color: var(--e-a-bg-default); | |
| 1757 | + border-color: #e6e9ec; | |
| 1758 | + border-style: solid; | |
| 1759 | + border-top-width: 1px; | |
| 1760 | + background-color: #ffffff; | |
| 1827 | 1761 | height: 15px; |
| 1828 | 1762 | } |
| 1763 | +.elementor-control.elementor-control-separator-default:not(.elementor-control-type-divider).elementor-control-wp { | |
| 1764 | + margin-top: 15px; | |
| 1765 | +} | |
| 1766 | +.elementor-control.elementor-control-separator-default:not(.elementor-control-type-divider).elementor-control-wp:before { | |
| 1767 | + content: ""; | |
| 1768 | + height: 1px; | |
| 1769 | + display: block; | |
| 1770 | + margin-bottom: 15px; | |
| 1771 | + background-color: transparent; | |
| 1772 | +} | |
| 1829 | 1773 | .elementor-control.elementor-control-separator-before { |
| 1830 | - padding-block-start: 15px; | |
| 1774 | + padding-top: 15px; | |
| 1831 | 1775 | } |
| 1832 | 1776 | .elementor-control.elementor-control-separator-before:before { |
| 1833 | 1777 | content: ""; |
| 1834 | 1778 | position: absolute; |
| 1835 | - inset: 0 20px auto; | |
| 1836 | 1779 | height: 1px; |
| 1837 | - background-color: var(--e-a-border-color); | |
| 1780 | + width: 100%; | |
| 1781 | + top: 0; | |
| 1782 | + left: 0; | |
| 1783 | + background-color: #e6e9ec; | |
| 1838 | 1784 | } |
| 1839 | -.elementor-control.elementor-control-separator-after { | |
| 1840 | - padding-block-end: 15px; | |
| 1841 | -} | |
| 1842 | 1785 | .elementor-control.elementor-control-separator-after:after { |
| 1843 | 1786 | content: ""; |
| 1844 | 1787 | position: absolute; |
| 1845 | - inset: auto 20px 0; | |
| 1846 | 1788 | height: 1px; |
| 1847 | - background-color: var(--e-a-border-color); | |
| 1789 | + width: 100%; | |
| 1790 | + bottom: 0; | |
| 1791 | + left: 0; | |
| 1792 | + background-color: #e6e9ec; | |
| 1848 | 1793 | } |
| 1849 | 1794 | .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 { |
| 1850 | - padding-block-start: 15px; | |
| 1795 | + padding-top: 15px; | |
| 1851 | 1796 | } |
| 1852 | 1797 | .elementor-control.elementor-control-deprecated { |
| 1853 | - color: var(--e-a-color-warning); | |
| 1798 | + color: #b01b1b; | |
| 1854 | 1799 | } |
| 1855 | 1800 | .elementor-control.elementor-control-deprecated .elementor-control-field-description { |
| 1856 | - color: var(--e-a-color-warning); | |
| 1801 | + color: #b01b1b; | |
| 1857 | 1802 | } |
| 1858 | 1803 | .elementor-control.elementor-control-hidden-label > * > .elementor-control-title, .elementor-control.elementor-control-hidden-label > * > * > .elementor-control-title { |
| 1859 | 1804 | display: none; |
| 1860 | 1805 | } |
| @@ -1885,390 +1830,369 @@ | ||
| 1885 | 1830 | } |
| 1886 | 1831 | body:not(.elementor-device-mobile) .elementor-control.elementor-control-responsive-mobile { |
| 1887 | 1832 | display: none; |
| 1888 | 1833 | } |
| 1889 | -.elementor-control-shape_divider_top .elementor-visual-choice-element-image label, .elementor-control-shape_divider_bottom .elementor-visual-choice-element-image label { | |
| 1890 | - padding: 4px; | |
| 1834 | +.elementor-control.elementor-control-type-select .elementor-control-input-wrapper { | |
| 1835 | + position: relative; | |
| 1891 | 1836 | } |
| 1892 | -.elementor-control-shape_divider_top img, .elementor-control-shape_divider_bottom img { | |
| 1893 | - aspect-ratio: 4/1; | |
| 1894 | - -o-object-fit: cover; | |
| 1895 | - object-fit: cover; | |
| 1896 | - -o-object-position: center; | |
| 1897 | - object-position: center; | |
| 1837 | +.elementor-control.elementor-control-type-select .elementor-control-input-wrapper select { | |
| 1838 | + appearance: none; | |
| 1839 | + -webkit-appearance: none; | |
| 1840 | + -moz-appearance: none; | |
| 1841 | + font-size: 12px; | |
| 1842 | + font-family: inherit; | |
| 1843 | + font-weight: inherit; | |
| 1844 | + font-style: inherit; | |
| 1845 | + text-transform: inherit; | |
| 1846 | + letter-spacing: inherit; | |
| 1847 | + line-height: inherit; | |
| 1848 | + -ms-flex-preferred-size: 100%; | |
| 1849 | + flex-basis: 100%; | |
| 1850 | + padding-right: 5px; | |
| 1851 | + padding-left: 20px; | |
| 1852 | + cursor: pointer; | |
| 1898 | 1853 | } |
| 1899 | -.elementor-control-shape_divider_bottom img { | |
| 1900 | - rotate: X 180deg; | |
| 1854 | +.elementor-control.elementor-control-type-select .elementor-control-input-wrapper select.e-select-placeholder { | |
| 1855 | + color: #a4afb7; | |
| 1901 | 1856 | } |
| 1857 | +.elementor-control.elementor-control-type-select .elementor-control-input-wrapper option.e-option-placeholder { | |
| 1858 | + display: none; | |
| 1859 | +} | |
| 1860 | +.elementor-control.elementor-control-type-select .elementor-control-input-wrapper:after { | |
| 1861 | + font-family: eicons; | |
| 1862 | + content: "\e8ad"; | |
| 1863 | + font-size: 12px; | |
| 1864 | + position: absolute; | |
| 1865 | + top: 50%; | |
| 1866 | + -webkit-transform: translateY(-50%); | |
| 1867 | + -ms-transform: translateY(-50%); | |
| 1868 | + transform: translateY(-50%); | |
| 1869 | + left: 5px; | |
| 1870 | + pointer-events: none; | |
| 1871 | +} | |
| 1902 | 1872 | .elementor-control-custom_css_pro .elementor-nerd-box-message, .elementor-control-custom_attributes_pro .elementor-nerd-box-message { |
| 1903 | - margin-block-start: 5px; | |
| 1873 | + margin-top: 5px; | |
| 1904 | 1874 | } |
| 1875 | +.elementor-control.elementor-control-custom_css_title { | |
| 1876 | + font-size: 12px; | |
| 1877 | +} | |
| 1905 | 1878 | |
| 1906 | -.elementor-control.e-open .elementor-panel-heading-toggle i, .elementor-control.elementor-active .elementor-panel-heading-toggle i, | |
| 1907 | -.elementor-panel-category.e-open .elementor-panel-heading-toggle i, | |
| 1908 | -.elementor-panel-category.elementor-active .elementor-panel-heading-toggle i, | |
| 1909 | -.elementor-panel-scheme-item.e-open .elementor-panel-heading-toggle i, | |
| 1910 | -.elementor-panel-scheme-item.elementor-active .elementor-panel-heading-toggle i { | |
| 1911 | - transform: rotate(90deg); | |
| 1879 | +.elementor-control.elementor-open .elementor-panel-heading-toggle .eicon:before, | |
| 1880 | +.elementor-panel-scheme-item.elementor-open .elementor-panel-heading-toggle .eicon:before { | |
| 1881 | + content: "\e92a"; | |
| 1912 | 1882 | } |
| 1913 | -.elementor-control:not(.e-open):not(.elementor-active) .elementor-panel-heading-toggle i, | |
| 1914 | -.elementor-panel-category:not(.e-open):not(.elementor-active) .elementor-panel-heading-toggle i, | |
| 1915 | -.elementor-panel-scheme-item:not(.e-open):not(.elementor-active) .elementor-panel-heading-toggle i { | |
| 1916 | - scale: calc(1 * var(--direction-multiplier)) 1; | |
| 1883 | +.elementor-control:not(.elementor-open) .elementor-panel-heading-toggle .eicon:before, | |
| 1884 | +.elementor-panel-scheme-item:not(.elementor-open) .elementor-panel-heading-toggle .eicon:before { | |
| 1885 | + content: "\e909"; | |
| 1917 | 1886 | } |
| 1918 | 1887 | |
| 1919 | 1888 | .elementor-panel-heading { |
| 1920 | - display: flex; | |
| 1921 | - align-items: center; | |
| 1922 | - gap: 5px; | |
| 1923 | - height: 48px; | |
| 1924 | - padding-inline: 20px; | |
| 1889 | + display: table; | |
| 1890 | + table-layout: fixed; | |
| 1891 | + height: 40px; | |
| 1892 | + padding: 0 20px; | |
| 1925 | 1893 | width: 100%; |
| 1926 | - border: 0; | |
| 1927 | - border-block-start: var(--e-a-border); | |
| 1928 | - border-block-start-width: 2px; | |
| 1929 | - background-color: transparent; | |
| 1930 | - color: var(--e-a-color-txt-accent); | |
| 1894 | + border-bottom: 1px solid #e6e9ec; | |
| 1931 | 1895 | cursor: pointer; |
| 1932 | 1896 | } |
| 1897 | +.elementor-panel-heading > * { | |
| 1898 | + display: table-cell; | |
| 1899 | + vertical-align: middle; | |
| 1900 | +} | |
| 1933 | 1901 | .elementor-panel-heading-toggle { |
| 1934 | - width: 10px; | |
| 1935 | - display: flex; | |
| 1936 | - flex-direction: column; | |
| 1937 | - align-items: center; | |
| 1902 | + width: 20px; | |
| 1903 | + color: #495157; | |
| 1938 | 1904 | } |
| 1939 | 1905 | .elementor-panel-heading-title { |
| 1906 | + color: #495157; | |
| 1940 | 1907 | font-weight: bold; |
| 1941 | 1908 | } |
| 1942 | -.elementor-panel-heading-category-chip { | |
| 1943 | - margin-inline-start: auto; | |
| 1944 | - background-color: var(--e-a-bg-chip); | |
| 1945 | - border-radius: 100px; | |
| 1946 | - padding: 5px 8px; | |
| 1909 | + | |
| 1910 | +.elementor-control-wp { | |
| 1911 | + line-height: 1.5; | |
| 1947 | 1912 | } |
| 1948 | -.elementor-panel-heading-category-chip i { | |
| 1949 | - margin-inline-start: 4px; | |
| 1913 | +.elementor-control-wp p { | |
| 1914 | + margin: 15px 0; | |
| 1950 | 1915 | } |
| 1951 | -.elementor-panel-heading-promotion { | |
| 1952 | - margin-inline-start: auto; | |
| 1953 | -} | |
| 1954 | -.elementor-panel-heading-promotion a { | |
| 1955 | - color: var(--e-a-color-accent-promotion); | |
| 1956 | - font-family: "Roboto", sans-serif; | |
| 1957 | - font-weight: 500; | |
| 1958 | - font-size: 13px; | |
| 1959 | -} | |
| 1960 | -.elementor-panel-heading-promotion a i { | |
| 1961 | - margin-inline-end: 4px; | |
| 1962 | - font-size: 14px; | |
| 1963 | -} | |
| 1964 | -.elementor-panel-heading-promotion a:hover { | |
| 1965 | - color: var(--e-a-color-accent-promotion); | |
| 1966 | -} | |
| 1967 | -.elementor-panel-heading:focus-visible { | |
| 1968 | - color: var(--e-a-color-txt-hover); | |
| 1969 | -} | |
| 1970 | 1916 | |
| 1971 | -#elementor-controls .elementor-control-type-section:first-child .elementor-panel-heading, | |
| 1972 | -#elementor-panel-page-settings-controls .elementor-control-type-section:first-child .elementor-panel-heading, | |
| 1973 | -#elementor-panel-editorPreferences-settings-controls .elementor-control-type-section:first-child .elementor-panel-heading { | |
| 1974 | - border-block-start: none; | |
| 1975 | -} | |
| 1976 | - | |
| 1977 | 1917 | .elementor-control-field { |
| 1918 | + display: -webkit-box; | |
| 1919 | + display: -ms-flexbox; | |
| 1978 | 1920 | display: flex; |
| 1979 | - align-items: center; | |
| 1921 | + -webkit-box-align: center; | |
| 1922 | + -ms-flex-align: center; | |
| 1923 | + align-items: center; | |
| 1980 | 1924 | } |
| 1981 | 1925 | |
| 1982 | 1926 | .elementor-label-block > .elementor-control-content > .elementor-control-field { |
| 1983 | - flex-wrap: wrap; | |
| 1927 | + -ms-flex-wrap: wrap; | |
| 1928 | + flex-wrap: wrap; | |
| 1984 | 1929 | } |
| 1985 | 1930 | .elementor-label-block > .elementor-control-content > .elementor-control-field > .elementor-control-input-wrapper { |
| 1986 | 1931 | width: 100%; |
| 1987 | 1932 | max-width: 100%; |
| 1988 | - margin-block-start: 10px; | |
| 1933 | + margin-top: 10px; | |
| 1989 | 1934 | } |
| 1990 | 1935 | .elementor-label-block > .elementor-control-content > .elementor-control-field > .elementor-control-input-wrapper > .elementor-choices label { |
| 1991 | 1936 | width: auto; |
| 1992 | - flex: 1 1 27px; | |
| 1937 | + -webkit-box-flex: 1; | |
| 1938 | + -ms-flex: 1 1 27px; | |
| 1939 | + flex: 1 1 27px; | |
| 1940 | + display: -webkit-box; | |
| 1941 | + display: -ms-flexbox; | |
| 1993 | 1942 | display: flex; |
| 1994 | - align-items: center; | |
| 1995 | - justify-content: center; | |
| 1943 | + -webkit-box-align: center; | |
| 1944 | + -ms-flex-align: center; | |
| 1945 | + align-items: center; | |
| 1946 | + -webkit-box-pack: center; | |
| 1947 | + -ms-flex-pack: center; | |
| 1948 | + justify-content: center; | |
| 1996 | 1949 | } |
| 1997 | 1950 | .elementor-label-block.elementor-control-hidden-label:not(.elementor-control-dynamic) > .elementor-control-content > .elementor-control-field > .elementor-control-input-wrapper { |
| 1998 | - margin-block-start: 0; | |
| 1951 | + margin-top: 0; | |
| 1999 | 1952 | } |
| 2000 | 1953 | .elementor-label-block.elementor-control-hidden-label.elementor-label-block > .elementor-control-content > .elementor-control-field > .elementor-control-input-wrapper { |
| 2001 | - margin-block-start: 0; | |
| 1954 | + margin-top: 0; | |
| 2002 | 1955 | } |
| 2003 | 1956 | |
| 2004 | 1957 | .elementor-label-inline > .elementor-control-content > .elementor-control-field > .elementor-control-title { |
| 2005 | - flex-shrink: 0; | |
| 2006 | - max-width: 60%; | |
| 1958 | + -ms-flex-negative: 0; | |
| 1959 | + flex-shrink: 0; | |
| 2007 | 1960 | } |
| 2008 | 1961 | .elementor-label-inline > .elementor-control-content > .elementor-control-field > .elementor-control-input-wrapper { |
| 2009 | - margin-inline-start: auto; | |
| 1962 | + margin-right: auto; | |
| 2010 | 1963 | } |
| 2011 | 1964 | |
| 2012 | 1965 | .elementor-control-field-description { |
| 2013 | - margin-block-start: 10px; | |
| 1966 | + margin-top: 10px; | |
| 2014 | 1967 | } |
| 2015 | 1968 | |
| 2016 | 1969 | .elementor-group-control-attachment_alert .elementor-control-field-description { |
| 2017 | - margin-block-start: 0; | |
| 1970 | + margin-top: 0; | |
| 2018 | 1971 | } |
| 2019 | 1972 | |
| 2020 | -.elementor-control-start-end .eicon-text-align-left, | |
| 2021 | -.elementor-control-start-end .eicon-text-align-right, | |
| 2022 | -.elementor-control-start-end .eicon-h-align-left, | |
| 2023 | -.elementor-control-start-end .eicon-h-align-right { | |
| 2024 | - scale: calc(1 * var(--direction-multiplier)) 1; | |
| 1973 | +.elementor-required { | |
| 1974 | + color: #b01b1b; | |
| 2025 | 1975 | } |
| 2026 | 1976 | |
| 2027 | -.elementor-update-preview { | |
| 2028 | - margin: 15px 15px 0; | |
| 2029 | - display: flex; | |
| 2030 | - align-items: center; | |
| 1977 | +.elementor-units-choices { | |
| 1978 | + -webkit-box-flex: 1; | |
| 1979 | + -ms-flex-positive: 1; | |
| 1980 | + flex-grow: 1; | |
| 1981 | + text-align: left; | |
| 1982 | + z-index: 3; | |
| 2031 | 1983 | } |
| 2032 | - | |
| 2033 | -.elementor-update-preview-button-wrapper { | |
| 2034 | - flex-grow: 1; | |
| 2035 | - text-align: end; | |
| 1984 | +.elementor-units-choices input { | |
| 1985 | + display: none; | |
| 2036 | 1986 | } |
| 2037 | - | |
| 2038 | -.elementor-update-preview-button { | |
| 2039 | - padding: 8px 15px; | |
| 1987 | +.elementor-units-choices input:not(:checked) + label { | |
| 1988 | + color: #a4afb7; | |
| 2040 | 1989 | } |
| 1990 | +.elementor-units-choices input.e-units-placeholder + label { | |
| 1991 | + color: #c2cbd2; | |
| 1992 | + text-decoration: underline; | |
| 1993 | +} | |
| 1994 | +.elementor-units-choices input:checked + label { | |
| 1995 | + text-decoration: underline; | |
| 1996 | +} | |
| 1997 | +.elementor-units-choices label { | |
| 1998 | + cursor: pointer; | |
| 1999 | + padding: 0 2px; | |
| 2000 | + text-transform: uppercase; | |
| 2001 | + font-size: 9px; | |
| 2002 | +} | |
| 2041 | 2003 | |
| 2042 | -.elementor-control-direction-ltr input, | |
| 2043 | -.elementor-control-direction-ltr textarea { | |
| 2044 | - direction: ltr; | |
| 2004 | +.elementor-control-start-end .eicon-h-align-left, .elementor-control-start-end .eicon-h-align-right { | |
| 2005 | + -webkit-transform: rotate(180deg); | |
| 2006 | + -ms-transform: rotate(180deg); | |
| 2007 | + transform: rotate(180deg); | |
| 2045 | 2008 | } |
| 2046 | -.elementor-control-direction-rtl input, | |
| 2047 | -.elementor-control-direction-rtl textarea { | |
| 2048 | - direction: rtl; | |
| 2049 | -} | |
| 2050 | 2009 | |
| 2051 | 2010 | .elementor-control-responsive-switchers { |
| 2052 | 2011 | --selected-option: 0; |
| 2053 | 2012 | --pointer-position: var(--selected-option); |
| 2054 | 2013 | position: relative; |
| 2055 | - width: 2.5em; | |
| 2056 | - height: 2.5em; | |
| 2057 | - margin: calc(-2.5em + 12px) 0; | |
| 2058 | - margin-inline-end: 5px; | |
| 2014 | + width: 2em; | |
| 2015 | + height: 2em; | |
| 2016 | + margin: calc( -2em + var(--control-title-size)) 0; | |
| 2017 | + margin-left: 5px; | |
| 2059 | 2018 | } |
| 2060 | 2019 | .elementor-control-responsive-switchers__holder { |
| 2061 | 2020 | position: absolute; |
| 2062 | 2021 | width: 100%; |
| 2063 | - inset-block-start: 0; | |
| 2064 | - background-color: var(--e-a-bg-default); | |
| 2065 | - border-radius: var(--e-a-border-radius); | |
| 2022 | + top: 0; | |
| 2023 | + background-color: #fff; | |
| 2024 | + border-radius: 3px; | |
| 2025 | + -webkit-transition: 0.15s; | |
| 2026 | + -o-transition: 0.15s; | |
| 2066 | 2027 | transition: 0.15s; |
| 2067 | - border: 1px solid transparent; | |
| 2028 | + border: 1px transparent solid; | |
| 2068 | 2029 | } |
| 2069 | 2030 | .elementor-control-responsive-switchers.elementor-responsive-switchers-open { |
| 2070 | 2031 | z-index: 11000; |
| 2071 | 2032 | } |
| 2072 | 2033 | .elementor-control-responsive-switchers.elementor-responsive-switchers-open .elementor-responsive-switcher { |
| 2073 | - height: 2.5em; | |
| 2074 | - transform: scale(1); | |
| 2034 | + height: 2em; | |
| 2035 | + -webkit-transform: scale(1); | |
| 2036 | + -ms-transform: scale(1); | |
| 2037 | + transform: scale(1); | |
| 2075 | 2038 | opacity: 1; |
| 2076 | 2039 | } |
| 2077 | 2040 | .elementor-control-responsive-switchers.elementor-responsive-switchers-open .elementor-responsive-switcher:hover { |
| 2078 | - color: var(--e-a-color-primary-bold); | |
| 2041 | + color: #71d7f7; | |
| 2079 | 2042 | } |
| 2080 | 2043 | .elementor-control-responsive-switchers.elementor-responsive-switchers-open .elementor-control-responsive-switchers__holder { |
| 2081 | - box-shadow: var(--e-a-dropdown-shadow); | |
| 2044 | + top: calc(-1 * var(--selected-option) * 2em); | |
| 2045 | + -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2); | |
| 2046 | + box-shadow: 0 0 3px rgba(0, 0, 0, 0.2); | |
| 2082 | 2047 | } |
| 2083 | 2048 | |
| 2084 | 2049 | .elementor-responsive-switcher { |
| 2085 | - all: unset; | |
| 2050 | + display: -webkit-box; | |
| 2051 | + display: -ms-flexbox; | |
| 2086 | 2052 | display: flex; |
| 2087 | - align-items: center; | |
| 2088 | - justify-content: center; | |
| 2053 | + -webkit-box-align: center; | |
| 2054 | + -ms-flex-align: center; | |
| 2055 | + align-items: center; | |
| 2056 | + -webkit-box-pack: center; | |
| 2057 | + -ms-flex-pack: center; | |
| 2058 | + justify-content: center; | |
| 2089 | 2059 | position: relative; |
| 2090 | 2060 | z-index: 2; |
| 2091 | 2061 | cursor: pointer; |
| 2092 | 2062 | height: 0; |
| 2093 | - width: 100%; | |
| 2094 | - transform: scale(0); | |
| 2063 | + -webkit-transform: scale(0); | |
| 2064 | + -ms-transform: scale(0); | |
| 2065 | + transform: scale(0); | |
| 2095 | 2066 | opacity: 0; |
| 2067 | + -webkit-transition: 0.15s; | |
| 2068 | + -o-transition: 0.15s; | |
| 2096 | 2069 | transition: 0.15s; |
| 2097 | 2070 | font-size: 12px; |
| 2098 | - color: inherit; | |
| 2099 | 2071 | } |
| 2100 | -.elementor-responsive-switcher:hover { | |
| 2101 | - color: var(--e-a-color-primary-bold); | |
| 2072 | + | |
| 2073 | +a.elementor-responsive-switcher { | |
| 2074 | + color: #a4afb7; | |
| 2102 | 2075 | } |
| 2076 | +a.elementor-responsive-switcher:hover { | |
| 2077 | + color: #71d7f7; | |
| 2078 | +} | |
| 2103 | 2079 | |
| 2104 | 2080 | .elementor-device-widescreen .elementor-responsive-switcher.elementor-responsive-switcher-widescreen { |
| 2105 | - height: 2.5em; | |
| 2106 | - transform: scale(1); | |
| 2081 | + height: 2em; | |
| 2082 | + -webkit-transform: scale(1); | |
| 2083 | + -ms-transform: scale(1); | |
| 2084 | + transform: scale(1); | |
| 2107 | 2085 | opacity: 1; |
| 2108 | 2086 | } |
| 2109 | 2087 | .elementor-device-widescreen .elementor-responsive-switchers-open:not(:hover) .elementor-responsive-switcher.elementor-responsive-switcher-widescreen { |
| 2110 | - color: var(--e-a-color-primary-bold); | |
| 2088 | + color: #71d7f7; | |
| 2111 | 2089 | } |
| 2112 | 2090 | |
| 2113 | 2091 | .elementor-device-desktop .elementor-responsive-switcher.elementor-responsive-switcher-desktop { |
| 2114 | - height: 2.5em; | |
| 2115 | - transform: scale(1); | |
| 2092 | + height: 2em; | |
| 2093 | + -webkit-transform: scale(1); | |
| 2094 | + -ms-transform: scale(1); | |
| 2095 | + transform: scale(1); | |
| 2116 | 2096 | opacity: 1; |
| 2117 | 2097 | } |
| 2118 | 2098 | .elementor-device-desktop .elementor-responsive-switchers-open:not(:hover) .elementor-responsive-switcher.elementor-responsive-switcher-desktop { |
| 2119 | - color: var(--e-a-color-primary-bold); | |
| 2099 | + color: #71d7f7; | |
| 2120 | 2100 | } |
| 2121 | 2101 | |
| 2122 | 2102 | .elementor-device-laptop .elementor-responsive-switcher.elementor-responsive-switcher-laptop { |
| 2123 | - height: 2.5em; | |
| 2124 | - transform: scale(1); | |
| 2103 | + height: 2em; | |
| 2104 | + -webkit-transform: scale(1); | |
| 2105 | + -ms-transform: scale(1); | |
| 2106 | + transform: scale(1); | |
| 2125 | 2107 | opacity: 1; |
| 2126 | 2108 | } |
| 2127 | 2109 | .elementor-device-laptop .elementor-responsive-switchers-open:not(:hover) .elementor-responsive-switcher.elementor-responsive-switcher-laptop { |
| 2128 | - color: var(--e-a-color-primary-bold); | |
| 2110 | + color: #71d7f7; | |
| 2129 | 2111 | } |
| 2130 | 2112 | |
| 2131 | 2113 | .elementor-device-tablet_extra .elementor-responsive-switcher.elementor-responsive-switcher-tablet_extra { |
| 2132 | - height: 2.5em; | |
| 2133 | - transform: scale(1); | |
| 2114 | + height: 2em; | |
| 2115 | + -webkit-transform: scale(1); | |
| 2116 | + -ms-transform: scale(1); | |
| 2117 | + transform: scale(1); | |
| 2134 | 2118 | opacity: 1; |
| 2135 | 2119 | } |
| 2136 | 2120 | .elementor-device-tablet_extra .elementor-responsive-switchers-open:not(:hover) .elementor-responsive-switcher.elementor-responsive-switcher-tablet_extra { |
| 2137 | - color: var(--e-a-color-primary-bold); | |
| 2121 | + color: #71d7f7; | |
| 2138 | 2122 | } |
| 2139 | 2123 | |
| 2140 | 2124 | .elementor-device-tablet .elementor-responsive-switcher.elementor-responsive-switcher-tablet { |
| 2141 | - height: 2.5em; | |
| 2142 | - transform: scale(1); | |
| 2125 | + height: 2em; | |
| 2126 | + -webkit-transform: scale(1); | |
| 2127 | + -ms-transform: scale(1); | |
| 2128 | + transform: scale(1); | |
| 2143 | 2129 | opacity: 1; |
| 2144 | 2130 | } |
| 2145 | 2131 | .elementor-device-tablet .elementor-responsive-switchers-open:not(:hover) .elementor-responsive-switcher.elementor-responsive-switcher-tablet { |
| 2146 | - color: var(--e-a-color-primary-bold); | |
| 2132 | + color: #71d7f7; | |
| 2147 | 2133 | } |
| 2148 | 2134 | |
| 2149 | 2135 | .elementor-device-mobile_extra .elementor-responsive-switcher.elementor-responsive-switcher-mobile_extra { |
| 2150 | - height: 2.5em; | |
| 2151 | - transform: scale(1); | |
| 2136 | + height: 2em; | |
| 2137 | + -webkit-transform: scale(1); | |
| 2138 | + -ms-transform: scale(1); | |
| 2139 | + transform: scale(1); | |
| 2152 | 2140 | opacity: 1; |
| 2153 | 2141 | } |
| 2154 | 2142 | .elementor-device-mobile_extra .elementor-responsive-switchers-open:not(:hover) .elementor-responsive-switcher.elementor-responsive-switcher-mobile_extra { |
| 2155 | - color: var(--e-a-color-primary-bold); | |
| 2143 | + color: #71d7f7; | |
| 2156 | 2144 | } |
| 2157 | 2145 | |
| 2158 | 2146 | .elementor-device-mobile .elementor-responsive-switcher.elementor-responsive-switcher-mobile { |
| 2159 | - height: 2.5em; | |
| 2160 | - transform: scale(1); | |
| 2147 | + height: 2em; | |
| 2148 | + -webkit-transform: scale(1); | |
| 2149 | + -ms-transform: scale(1); | |
| 2150 | + transform: scale(1); | |
| 2161 | 2151 | opacity: 1; |
| 2162 | 2152 | } |
| 2163 | 2153 | .elementor-device-mobile .elementor-responsive-switchers-open:not(:hover) .elementor-responsive-switcher.elementor-responsive-switcher-mobile { |
| 2164 | - color: var(--e-a-color-primary-bold); | |
| 2154 | + color: #71d7f7; | |
| 2165 | 2155 | } |
| 2166 | 2156 | |
| 2167 | -.e-units-wrapper { | |
| 2168 | - position: relative; | |
| 2169 | - margin-inline-start: auto; | |
| 2157 | +.elementor-update-preview { | |
| 2158 | + margin: 15px 15px 0; | |
| 2159 | + display: -webkit-box; | |
| 2160 | + display: -ms-flexbox; | |
| 2161 | + display: flex; | |
| 2162 | + -webkit-box-align: center; | |
| 2163 | + -ms-flex-align: center; | |
| 2164 | + align-items: center; | |
| 2170 | 2165 | } |
| 2171 | -.e-units-wrapper .e-units-switcher { | |
| 2172 | - cursor: pointer; | |
| 2173 | - font-size: 10px; | |
| 2174 | - padding: 0.5em; | |
| 2175 | - margin: -0.5em 0; | |
| 2176 | - transition: all ease-in-out 0.15s; | |
| 2177 | -} | |
| 2178 | -.e-units-wrapper .e-units-switcher:hover { | |
| 2179 | - color: var(--e-a-color-primary-bold); | |
| 2180 | - background-color: var(--e-a-bg-hover); | |
| 2181 | - border-radius: var(--e-a-border-radius); | |
| 2182 | -} | |
| 2183 | -.e-units-wrapper .e-units-switcher:not([data-selected=custom]) i.eicon-edit { | |
| 2184 | - display: none; | |
| 2185 | -} | |
| 2186 | -.e-units-wrapper .e-units-switcher[data-selected=custom] span { | |
| 2187 | - display: none; | |
| 2188 | -} | |
| 2189 | -.e-units-wrapper .e-units-switcher i.eicon-angle-right { | |
| 2190 | - transform: rotate(90deg); | |
| 2191 | -} | |
| 2192 | 2166 | |
| 2193 | -.e-units-choices input { | |
| 2194 | - display: none; | |
| 2167 | +.elementor-update-preview-button-wrapper { | |
| 2168 | + -webkit-box-flex: 1; | |
| 2169 | + -ms-flex-positive: 1; | |
| 2170 | + flex-grow: 1; | |
| 2171 | + text-align: left; | |
| 2195 | 2172 | } |
| 2196 | -.e-units-choices input:checked + label { | |
| 2197 | - color: var(--e-a-color-primary-bold); | |
| 2198 | -} | |
| 2199 | -.e-units-choices label { | |
| 2200 | - cursor: pointer; | |
| 2201 | - display: block; | |
| 2202 | -} | |
| 2203 | -.e-units-choices { | |
| 2204 | - display: none; | |
| 2205 | - overflow: hidden; | |
| 2206 | - max-height: 0; | |
| 2207 | - position: absolute; | |
| 2208 | - inset-block-start: -0.8em; | |
| 2209 | - inset-inline-start: -0.5em; | |
| 2210 | - width: 2.5em; | |
| 2211 | - text-align: center; | |
| 2212 | - background-color: var(--e-a-bg-default); | |
| 2213 | - border-radius: var(--e-a-border-radius); | |
| 2214 | - box-shadow: var(--e-a-dropdown-shadow); | |
| 2215 | - animation-timing-function: linear; | |
| 2216 | - animation-delay: 0s; | |
| 2217 | - animation-fill-mode: forwards; | |
| 2218 | - z-index: 11000; | |
| 2219 | -} | |
| 2220 | -.e-units-choices .elementor-units-choices-label { | |
| 2221 | - display: flex; | |
| 2222 | - align-items: center; | |
| 2223 | - height: 3em; | |
| 2224 | - justify-content: center; | |
| 2225 | - font-size: 10px; | |
| 2226 | - transition: 0.15s; | |
| 2227 | -} | |
| 2228 | -.e-units-choices .elementor-units-choices-label:hover { | |
| 2229 | - color: var(--e-a-color-primary-bold); | |
| 2230 | -} | |
| 2231 | -.e-units-choices.e-units-choices-open { | |
| 2232 | - display: block; | |
| 2233 | - animation-duration: 1s; | |
| 2234 | - animation-name: e-units-choices-open; | |
| 2235 | -} | |
| 2236 | 2173 | |
| 2237 | -.e-units-custom input { | |
| 2238 | - font-family: monospace; | |
| 2239 | - font-size: 0.85em; | |
| 2174 | +.elementor-update-preview-button { | |
| 2175 | + padding: 8px 15px; | |
| 2176 | + text-transform: uppercase; | |
| 2240 | 2177 | } |
| 2241 | 2178 | |
| 2242 | -@keyframes e-units-choices-open { | |
| 2243 | - from { | |
| 2244 | - max-height: 0; | |
| 2245 | - } | |
| 2246 | - to { | |
| 2247 | - max-height: 100vh; | |
| 2248 | - } | |
| 2179 | +.elementor-control-direction-ltr input, | |
| 2180 | +.elementor-control-direction-ltr textarea { | |
| 2181 | + direction: ltr; | |
| 2249 | 2182 | } |
| 2250 | -.elementor-control-alert { | |
| 2251 | - display: flex; | |
| 2252 | - flex-direction: column; | |
| 2253 | - justify-content: flex-start; | |
| 2254 | - align-items: flex-start; | |
| 2255 | - gap: 8px; | |
| 2183 | +.elementor-control-direction-rtl input, | |
| 2184 | +.elementor-control-direction-rtl textarea { | |
| 2185 | + direction: rtl; | |
| 2256 | 2186 | } |
| 2257 | -.elementor-control-alert-heading { | |
| 2258 | - font-weight: bold; | |
| 2259 | -} | |
| 2260 | 2187 | |
| 2261 | 2188 | .elementor-control-type-button .elementor-control-input-wrapper { |
| 2262 | - text-align: end; | |
| 2189 | + text-align: left; | |
| 2263 | 2190 | } |
| 2264 | 2191 | .elementor-control-type-button .elementor-button { |
| 2265 | 2192 | width: auto; |
| 2193 | + height: 26px; | |
| 2266 | 2194 | } |
| 2267 | -.elementor-control-type-button .elementor-button.elementor-button-center { | |
| 2268 | - display: block; | |
| 2269 | - margin: 0 auto; | |
| 2270 | -} | |
| 2271 | 2195 | |
| 2272 | 2196 | .elementor-control-type-choose.elementor-label-block .elementor-choices { |
| 2273 | 2197 | width: 100%; |
| 2274 | 2198 | } |
| @@ -2273,80 +2197,108 @@ | ||
| 2273 | 2197 | width: 100%; |
| 2274 | 2198 | } |
| 2275 | 2199 | |
| 2276 | 2200 | .elementor-choices { |
| 2201 | + display: -webkit-box; | |
| 2202 | + display: -ms-flexbox; | |
| 2277 | 2203 | display: flex; |
| 2278 | 2204 | height: 27px; |
| 2279 | 2205 | line-height: 27px; |
| 2280 | 2206 | text-align: center; |
| 2281 | 2207 | border-spacing: 1px; |
| 2282 | - border-radius: var(--e-a-border-radius); | |
| 2208 | + border-radius: 3px; | |
| 2283 | 2209 | overflow: hidden; |
| 2284 | 2210 | } |
| 2285 | 2211 | .elementor-choices .elementor-choices-label { |
| 2286 | - border-block-start: var(--e-a-border-bold); | |
| 2287 | - border-block-end: var(--e-a-border-bold); | |
| 2288 | - border-inline-start: var(--e-a-border-bold); | |
| 2289 | - border-inline-end: none; | |
| 2212 | + border-top: 1px solid #d5dadf; | |
| 2213 | + border-bottom: 1px solid #d5dadf; | |
| 2214 | + border-right: 1px solid #d5dadf; | |
| 2215 | + border-left: none; | |
| 2290 | 2216 | font-size: 12px; |
| 2291 | - transition: var(--e-a-transition-hover); | |
| 2217 | + -webkit-transition: all 0.5s; | |
| 2218 | + -o-transition: all 0.5s; | |
| 2219 | + transition: all 0.5s; | |
| 2292 | 2220 | cursor: pointer; |
| 2293 | 2221 | overflow: hidden; |
| 2294 | 2222 | } |
| 2295 | 2223 | .elementor-choices .elementor-choices-label:nth-child(2) { |
| 2296 | - border-start-start-radius: var(--e-a-border-radius); | |
| 2297 | - border-end-start-radius: var(--e-a-border-radius); | |
| 2224 | + border-top-right-radius: 3px; | |
| 2225 | + border-bottom-right-radius: 3px; | |
| 2298 | 2226 | } |
| 2299 | 2227 | .elementor-choices .elementor-choices-label:last-child { |
| 2300 | - border-inline-end: var(--e-a-border-bold); | |
| 2301 | - border-start-end-radius: var(--e-a-border-radius); | |
| 2302 | - border-end-end-radius: var(--e-a-border-radius); | |
| 2228 | + border-left: 1px solid #d5dadf; | |
| 2229 | + border-top-left-radius: 3px; | |
| 2230 | + border-bottom-left-radius: 3px; | |
| 2303 | 2231 | } |
| 2304 | 2232 | .elementor-choices input { |
| 2305 | 2233 | display: none; |
| 2306 | 2234 | } |
| 2307 | -.elementor-choices input:hover + .elementor-choices-label { | |
| 2308 | - background-color: var(--e-a-bg-hover); | |
| 2235 | +.elementor-choices input.e-choose-placeholder + .elementor-choices-label { | |
| 2236 | + color: #ffffff; | |
| 2237 | + background-color: #c2cbd2; | |
| 2238 | + border-color: #c2cbd2; | |
| 2309 | 2239 | } |
| 2310 | -.elementor-choices input.e-choose-placeholder + .elementor-choices-label, .elementor-choices input:checked + .elementor-choices-label { | |
| 2311 | - background-color: var(--e-a-bg-active-bold); | |
| 2312 | - color: var(--e-a-color-txt-accent); | |
| 2240 | +.elementor-choices input:checked + .elementor-choices-label { | |
| 2241 | + color: #fff; | |
| 2242 | + background-color: #a4afb7; | |
| 2243 | + border-color: #a4afb7; | |
| 2313 | 2244 | } |
| 2314 | 2245 | |
| 2315 | 2246 | .elementor-label-inline .elementor-choices { |
| 2316 | - justify-content: flex-end; | |
| 2247 | + -webkit-box-pack: end; | |
| 2248 | + -ms-flex-pack: end; | |
| 2249 | + justify-content: flex-end; | |
| 2317 | 2250 | } |
| 2318 | 2251 | |
| 2319 | -.elementor-control-type-color.e-control-global .pickr { | |
| 2320 | - border-start-start-radius: 0; | |
| 2321 | - border-start-end-radius: var(--e-a-border-radius); | |
| 2322 | - border-end-start-radius: 0; | |
| 2323 | - border-end-end-radius: var(--e-a-border-radius); | |
| 2324 | - flex-shrink: 0; | |
| 2325 | - border-color: var(--e-a-border-color-bold); | |
| 2326 | - transition: var(--e-a-transition-hover); | |
| 2252 | +.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 { | |
| 2253 | + -webkit-box-orient: horizontal; | |
| 2254 | + -webkit-box-direction: reverse; | |
| 2255 | + -ms-flex-direction: row-reverse; | |
| 2256 | + flex-direction: row-reverse; | |
| 2327 | 2257 | } |
| 2328 | -.elementor-control-type-color.e-control-global .pickr:hover { | |
| 2329 | - background-color: var(--e-a-bg-hover); | |
| 2258 | +.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) { | |
| 2259 | + border-left: 1px solid #d5dadf; | |
| 2260 | + border-radius: 3px 0 0 3px; | |
| 2330 | 2261 | } |
| 2331 | -.elementor-control-type-color.e-control-global .e-global__popover-toggle:not(.e-global__popover-toggle--active) ~ .pickr { | |
| 2332 | - background-color: var(--e-a-bg-active-bold); | |
| 2262 | +.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 { | |
| 2263 | + border-left: none; | |
| 2264 | + border-radius: 0 3px 3px 0; | |
| 2333 | 2265 | } |
| 2266 | + | |
| 2267 | +.elementor-control-type-color.e-control-global .e-global__popover-toggle ~ .pickr { | |
| 2268 | + border-radius: 3px 0 0 3px; | |
| 2269 | + -ms-flex-negative: 0; | |
| 2270 | + flex-shrink: 0; | |
| 2271 | +} | |
| 2334 | 2272 | .elementor-control-type-color .elementor-control-title { |
| 2335 | - flex-grow: 1; | |
| 2273 | + -webkit-box-flex: 1; | |
| 2274 | + -ms-flex-positive: 1; | |
| 2275 | + flex-grow: 1; | |
| 2336 | 2276 | } |
| 2337 | 2277 | .elementor-control-type-color .elementor-control-input-wrapper { |
| 2278 | + display: -webkit-box; | |
| 2279 | + display: -ms-flexbox; | |
| 2338 | 2280 | display: flex; |
| 2339 | - justify-content: flex-end; | |
| 2281 | + -webkit-box-pack: end; | |
| 2282 | + -ms-flex-pack: end; | |
| 2283 | + justify-content: flex-end; | |
| 2340 | 2284 | } |
| 2285 | +.elementor-control-type-color .elementor-control-dynamic-switcher { | |
| 2286 | + border-right-width: 0; | |
| 2287 | + border-radius: 3px 0 0 3px; | |
| 2288 | +} | |
| 2289 | +.elementor-control-type-color.elementor-control-dynamic .pickr { | |
| 2290 | + border-radius: 0 3px 3px 0; | |
| 2291 | +} | |
| 2341 | 2292 | |
| 2342 | 2293 | .elementor-group-control-css-filter .elementor-slider { |
| 2343 | 2294 | height: 6px; |
| 2344 | - box-shadow: 0 0 1px 1px inset rgba(0, 0, 0, 0.2); | |
| 2295 | + -webkit-box-shadow: 0 0 1px 1px inset rgba(0, 0, 0, 0.2); | |
| 2296 | + box-shadow: 0 0 1px 1px inset rgba(0, 0, 0, 0.2); | |
| 2345 | 2297 | } |
| 2346 | 2298 | .elementor-group-control-css-filter .elementor-control-content > .elementor-control-field > .elementor-control-input-wrapper { |
| 2347 | - margin-block-start: 0; | |
| 2348 | - margin-block-end: 5px; | |
| 2299 | + margin-top: 0; | |
| 2300 | + margin-bottom: 5px; | |
| 2349 | 2301 | } |
| 2350 | 2302 | |
| 2351 | 2303 | .elementor-group-control-blur .elementor-slider { |
| 2352 | 2304 | background: url("../images/blur.png"); |
| @@ -2359,224 +2311,31 @@ | ||
| 2359 | 2311 | background-size: 100% 100%; |
| 2360 | 2312 | } |
| 2361 | 2313 | |
| 2362 | 2314 | .elementor-group-control-hue .elementor-slider { |
| 2315 | + 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)); | |
| 2316 | + background-image: -o-linear-gradient(left, red, orange, yellow, greenyellow, limegreen, deepskyblue, blue, darkviolet 95%); | |
| 2363 | 2317 | background-image: linear-gradient(to right, red, orange, yellow, greenyellow, limegreen, deepskyblue, blue, darkviolet 95%); |
| 2364 | 2318 | } |
| 2365 | 2319 | |
| 2366 | 2320 | .elementor-group-control-saturate .elementor-slider { |
| 2321 | + background-image: -webkit-gradient(linear, left top, right top, from(gray), to(red)); | |
| 2322 | + background-image: -o-linear-gradient(left, gray, red); | |
| 2367 | 2323 | background-image: linear-gradient(to right, gray, red); |
| 2368 | 2324 | } |
| 2369 | 2325 | |
| 2370 | 2326 | .elementor-group-control-brightness .elementor-slider { |
| 2327 | + background-image: -webkit-gradient(linear, left top, right top, from(black), to(white)); | |
| 2328 | + background-image: -o-linear-gradient(left, black, white); | |
| 2371 | 2329 | background-image: linear-gradient(to right, black, white); |
| 2372 | 2330 | } |
| 2373 | 2331 | |
| 2374 | -.elementor-control-responsive-switchers { | |
| 2375 | - --selected-option: 0; | |
| 2376 | - --pointer-position: var(--selected-option); | |
| 2377 | - position: relative; | |
| 2378 | - width: 2.5em; | |
| 2379 | - height: 2.5em; | |
| 2380 | - margin: calc(-2.5em + 12px) 0; | |
| 2381 | - margin-inline-end: 5px; | |
| 2382 | -} | |
| 2383 | -.elementor-control-responsive-switchers__holder { | |
| 2384 | - position: absolute; | |
| 2385 | - width: 100%; | |
| 2386 | - inset-block-start: 0; | |
| 2387 | - background-color: var(--e-a-bg-default); | |
| 2388 | - border-radius: var(--e-a-border-radius); | |
| 2389 | - transition: 0.15s; | |
| 2390 | - border: 1px solid transparent; | |
| 2391 | -} | |
| 2392 | -.elementor-control-responsive-switchers.elementor-responsive-switchers-open { | |
| 2393 | - z-index: 11000; | |
| 2394 | -} | |
| 2395 | -.elementor-control-responsive-switchers.elementor-responsive-switchers-open .elementor-responsive-switcher { | |
| 2396 | - height: 2.5em; | |
| 2397 | - transform: scale(1); | |
| 2398 | - opacity: 1; | |
| 2399 | -} | |
| 2400 | -.elementor-control-responsive-switchers.elementor-responsive-switchers-open .elementor-responsive-switcher:hover { | |
| 2401 | - color: var(--e-a-color-primary-bold); | |
| 2402 | -} | |
| 2403 | -.elementor-control-responsive-switchers.elementor-responsive-switchers-open .elementor-control-responsive-switchers__holder { | |
| 2404 | - box-shadow: var(--e-a-dropdown-shadow); | |
| 2405 | -} | |
| 2406 | - | |
| 2407 | -.elementor-responsive-switcher { | |
| 2408 | - all: unset; | |
| 2409 | - display: flex; | |
| 2410 | - align-items: center; | |
| 2411 | - justify-content: center; | |
| 2412 | - position: relative; | |
| 2413 | - z-index: 2; | |
| 2414 | - cursor: pointer; | |
| 2415 | - height: 0; | |
| 2416 | - width: 100%; | |
| 2417 | - transform: scale(0); | |
| 2418 | - opacity: 0; | |
| 2419 | - transition: 0.15s; | |
| 2420 | - font-size: 12px; | |
| 2421 | - color: inherit; | |
| 2422 | -} | |
| 2423 | -.elementor-responsive-switcher:hover { | |
| 2424 | - color: var(--e-a-color-primary-bold); | |
| 2425 | -} | |
| 2426 | - | |
| 2427 | -.elementor-device-widescreen .elementor-responsive-switcher.elementor-responsive-switcher-widescreen { | |
| 2428 | - height: 2.5em; | |
| 2429 | - transform: scale(1); | |
| 2430 | - opacity: 1; | |
| 2431 | -} | |
| 2432 | -.elementor-device-widescreen .elementor-responsive-switchers-open:not(:hover) .elementor-responsive-switcher.elementor-responsive-switcher-widescreen { | |
| 2433 | - color: var(--e-a-color-primary-bold); | |
| 2434 | -} | |
| 2435 | - | |
| 2436 | -.elementor-device-desktop .elementor-responsive-switcher.elementor-responsive-switcher-desktop { | |
| 2437 | - height: 2.5em; | |
| 2438 | - transform: scale(1); | |
| 2439 | - opacity: 1; | |
| 2440 | -} | |
| 2441 | -.elementor-device-desktop .elementor-responsive-switchers-open:not(:hover) .elementor-responsive-switcher.elementor-responsive-switcher-desktop { | |
| 2442 | - color: var(--e-a-color-primary-bold); | |
| 2443 | -} | |
| 2444 | - | |
| 2445 | -.elementor-device-laptop .elementor-responsive-switcher.elementor-responsive-switcher-laptop { | |
| 2446 | - height: 2.5em; | |
| 2447 | - transform: scale(1); | |
| 2448 | - opacity: 1; | |
| 2449 | -} | |
| 2450 | -.elementor-device-laptop .elementor-responsive-switchers-open:not(:hover) .elementor-responsive-switcher.elementor-responsive-switcher-laptop { | |
| 2451 | - color: var(--e-a-color-primary-bold); | |
| 2452 | -} | |
| 2453 | - | |
| 2454 | -.elementor-device-tablet_extra .elementor-responsive-switcher.elementor-responsive-switcher-tablet_extra { | |
| 2455 | - height: 2.5em; | |
| 2456 | - transform: scale(1); | |
| 2457 | - opacity: 1; | |
| 2458 | -} | |
| 2459 | -.elementor-device-tablet_extra .elementor-responsive-switchers-open:not(:hover) .elementor-responsive-switcher.elementor-responsive-switcher-tablet_extra { | |
| 2460 | - color: var(--e-a-color-primary-bold); | |
| 2461 | -} | |
| 2462 | - | |
| 2463 | -.elementor-device-tablet .elementor-responsive-switcher.elementor-responsive-switcher-tablet { | |
| 2464 | - height: 2.5em; | |
| 2465 | - transform: scale(1); | |
| 2466 | - opacity: 1; | |
| 2467 | -} | |
| 2468 | -.elementor-device-tablet .elementor-responsive-switchers-open:not(:hover) .elementor-responsive-switcher.elementor-responsive-switcher-tablet { | |
| 2469 | - color: var(--e-a-color-primary-bold); | |
| 2470 | -} | |
| 2471 | - | |
| 2472 | -.elementor-device-mobile_extra .elementor-responsive-switcher.elementor-responsive-switcher-mobile_extra { | |
| 2473 | - height: 2.5em; | |
| 2474 | - transform: scale(1); | |
| 2475 | - opacity: 1; | |
| 2476 | -} | |
| 2477 | -.elementor-device-mobile_extra .elementor-responsive-switchers-open:not(:hover) .elementor-responsive-switcher.elementor-responsive-switcher-mobile_extra { | |
| 2478 | - color: var(--e-a-color-primary-bold); | |
| 2479 | -} | |
| 2480 | - | |
| 2481 | -.elementor-device-mobile .elementor-responsive-switcher.elementor-responsive-switcher-mobile { | |
| 2482 | - height: 2.5em; | |
| 2483 | - transform: scale(1); | |
| 2484 | - opacity: 1; | |
| 2485 | -} | |
| 2486 | -.elementor-device-mobile .elementor-responsive-switchers-open:not(:hover) .elementor-responsive-switcher.elementor-responsive-switcher-mobile { | |
| 2487 | - color: var(--e-a-color-primary-bold); | |
| 2488 | -} | |
| 2489 | - | |
| 2490 | -.e-units-wrapper { | |
| 2491 | - position: relative; | |
| 2492 | - margin-inline-start: auto; | |
| 2493 | -} | |
| 2494 | -.e-units-wrapper .e-units-switcher { | |
| 2495 | - cursor: pointer; | |
| 2496 | - font-size: 10px; | |
| 2497 | - padding: 0.5em; | |
| 2498 | - margin: -0.5em 0; | |
| 2499 | - transition: all ease-in-out 0.15s; | |
| 2500 | -} | |
| 2501 | -.e-units-wrapper .e-units-switcher:hover { | |
| 2502 | - color: var(--e-a-color-primary-bold); | |
| 2503 | - background-color: var(--e-a-bg-hover); | |
| 2504 | - border-radius: var(--e-a-border-radius); | |
| 2505 | -} | |
| 2506 | -.e-units-wrapper .e-units-switcher:not([data-selected=custom]) i.eicon-edit { | |
| 2507 | - display: none; | |
| 2508 | -} | |
| 2509 | -.e-units-wrapper .e-units-switcher[data-selected=custom] span { | |
| 2510 | - display: none; | |
| 2511 | -} | |
| 2512 | -.e-units-wrapper .e-units-switcher i.eicon-angle-right { | |
| 2513 | - transform: rotate(90deg); | |
| 2514 | -} | |
| 2515 | - | |
| 2516 | -.e-units-choices input { | |
| 2517 | - display: none; | |
| 2518 | -} | |
| 2519 | -.e-units-choices input:checked + label { | |
| 2520 | - color: var(--e-a-color-primary-bold); | |
| 2521 | -} | |
| 2522 | -.e-units-choices label { | |
| 2523 | - cursor: pointer; | |
| 2524 | - display: block; | |
| 2525 | -} | |
| 2526 | -.e-units-choices { | |
| 2527 | - display: none; | |
| 2332 | +.elementor-control-type-dimensions .elementor-control-dimensions { | |
| 2528 | 2333 | overflow: hidden; |
| 2529 | - max-height: 0; | |
| 2530 | - position: absolute; | |
| 2531 | - inset-block-start: -0.8em; | |
| 2532 | - inset-inline-start: -0.5em; | |
| 2533 | - width: 2.5em; | |
| 2534 | - text-align: center; | |
| 2535 | - background-color: var(--e-a-bg-default); | |
| 2536 | - border-radius: var(--e-a-border-radius); | |
| 2537 | - box-shadow: var(--e-a-dropdown-shadow); | |
| 2538 | - animation-timing-function: linear; | |
| 2539 | - animation-delay: 0s; | |
| 2540 | - animation-fill-mode: forwards; | |
| 2541 | - z-index: 11000; | |
| 2542 | 2334 | } |
| 2543 | -.e-units-choices .elementor-units-choices-label { | |
| 2544 | - display: flex; | |
| 2545 | - align-items: center; | |
| 2546 | - height: 3em; | |
| 2547 | - justify-content: center; | |
| 2548 | - font-size: 10px; | |
| 2549 | - transition: 0.15s; | |
| 2550 | -} | |
| 2551 | -.e-units-choices .elementor-units-choices-label:hover { | |
| 2552 | - color: var(--e-a-color-primary-bold); | |
| 2553 | -} | |
| 2554 | -.e-units-choices.e-units-choices-open { | |
| 2555 | - display: block; | |
| 2556 | - animation-duration: 1s; | |
| 2557 | - animation-name: e-units-choices-open; | |
| 2558 | -} | |
| 2559 | - | |
| 2560 | -.e-units-custom input { | |
| 2561 | - font-family: monospace; | |
| 2562 | - font-size: 0.85em; | |
| 2563 | -} | |
| 2564 | - | |
| 2565 | -@keyframes e-units-choices-open { | |
| 2566 | - from { | |
| 2567 | - max-height: 0; | |
| 2568 | - } | |
| 2569 | - to { | |
| 2570 | - max-height: 100vh; | |
| 2571 | - } | |
| 2572 | -} | |
| 2573 | -.elementor-control-type-dimensions .elementor-control-dimensions { | |
| 2574 | - display: flex; | |
| 2575 | -} | |
| 2576 | 2335 | .elementor-control-type-dimensions li { |
| 2577 | - flex: 1; | |
| 2578 | - transition: flex-grow 0.3s ease-in-out; | |
| 2336 | + float: left; | |
| 2337 | + width: 20%; | |
| 2579 | 2338 | } |
| 2580 | 2339 | .elementor-control-type-dimensions li input, |
| 2581 | 2340 | .elementor-control-type-dimensions li .elementor-link-dimensions { |
| 2582 | 2341 | display: block; |
| @@ -2581,361 +2340,79 @@ | ||
| 2581 | 2340 | .elementor-control-type-dimensions li .elementor-link-dimensions { |
| 2582 | 2341 | display: block; |
| 2583 | 2342 | text-align: center; |
| 2584 | 2343 | width: 100%; |
| 2344 | + border-color: #d5dadf; | |
| 2585 | 2345 | height: 27px; |
| 2586 | 2346 | } |
| 2587 | 2347 | .elementor-control-type-dimensions li input { |
| 2588 | - border-inline-start: none; | |
| 2348 | + border-left: none; | |
| 2589 | 2349 | border-radius: 0; |
| 2590 | - padding: var(--e-a-border-radius); | |
| 2350 | + padding: 4px 0; | |
| 2591 | 2351 | } |
| 2592 | 2352 | .elementor-control-type-dimensions li input:focus { |
| 2593 | - border-inline-start: var(--e-a-border-bold); | |
| 2594 | - margin-inline-start: -1px; | |
| 2353 | + border-left: solid 1px; | |
| 2354 | + border-color: #a4afb7; | |
| 2355 | + margin-left: -1px; | |
| 2595 | 2356 | width: calc(100% + 1px); |
| 2596 | 2357 | } |
| 2597 | 2358 | .elementor-control-type-dimensions li input:focus + .elementor-control-dimension-label { |
| 2598 | - color: var(--e-a-color-txt); | |
| 2359 | + color: #a4afb7; | |
| 2599 | 2360 | } |
| 2600 | 2361 | .elementor-control-type-dimensions li .elementor-link-dimensions { |
| 2601 | - border: var(--e-a-border-bold); | |
| 2602 | - border-inline-start: none; | |
| 2603 | - background-color: var(--e-a-bg-default); | |
| 2362 | + border: 1px solid #d5dadf; | |
| 2363 | + border-left: none; | |
| 2364 | + background-color: #fff; | |
| 2604 | 2365 | padding: 0; |
| 2605 | 2366 | outline: none; |
| 2606 | - border-start-start-radius: 0; | |
| 2607 | - border-start-end-radius: var(--e-a-border-radius); | |
| 2608 | - border-end-start-radius: 0; | |
| 2609 | - border-end-end-radius: var(--e-a-border-radius); | |
| 2367 | + border-radius: 0 3px 3px 0; | |
| 2610 | 2368 | cursor: pointer; |
| 2611 | 2369 | } |
| 2612 | 2370 | .elementor-control-type-dimensions li:first-child input { |
| 2613 | - border-inline-start: 1px solid var(--e-a-border-color-bold); | |
| 2614 | - border-start-start-radius: var(--e-a-border-radius); | |
| 2615 | - border-start-end-radius: 0; | |
| 2616 | - border-end-start-radius: var(--e-a-border-radius); | |
| 2617 | - border-end-end-radius: 0; | |
| 2371 | + border-left: 1px solid #d5dadf; | |
| 2372 | + border-radius: 3px 0 0 3px; | |
| 2618 | 2373 | } |
| 2619 | 2374 | .elementor-control-type-dimensions li:first-child input:focus { |
| 2620 | - border-color: var(--e-a-border-color-focus); | |
| 2621 | - margin-inline-start: 0; | |
| 2375 | + border-color: #a4afb7; | |
| 2376 | + margin-left: 0; | |
| 2622 | 2377 | width: 100%; |
| 2623 | 2378 | } |
| 2624 | -.elementor-control-type-dimensions li:last-child { | |
| 2625 | - max-width: 27px; | |
| 2626 | -} | |
| 2627 | -.elementor-control-type-dimensions.e-units-custom li.elementor-control-dimension:focus-within { | |
| 2628 | - flex: 2.5; | |
| 2629 | -} | |
| 2630 | 2379 | .elementor-control-type-dimensions .elementor-control-dimension-label { |
| 2631 | - color: var(--e-a-color-txt-muted); | |
| 2632 | 2380 | display: block; |
| 2633 | 2381 | text-align: center; |
| 2382 | + color: #d5dadf; | |
| 2634 | 2383 | font-size: 9px; |
| 2635 | - padding-block-start: 5px; | |
| 2384 | + text-transform: uppercase; | |
| 2385 | + padding-top: 5px; | |
| 2636 | 2386 | } |
| 2637 | 2387 | .elementor-control-type-dimensions .elementor-link-dimensions.unlinked { |
| 2638 | - background-color: var(--e-a-bg-default); | |
| 2388 | + background-color: #fff; | |
| 2639 | 2389 | } |
| 2640 | 2390 | .elementor-control-type-dimensions .elementor-link-dimensions.unlinked .elementor-linked { |
| 2641 | 2391 | display: none; |
| 2642 | 2392 | } |
| 2643 | 2393 | .elementor-control-type-dimensions .elementor-link-dimensions:not(.unlinked) { |
| 2644 | - background-color: var(--e-a-bg-active-bold); | |
| 2645 | - color: var(--e-a-color-txt-accent); | |
| 2646 | - border-color: var(--e-a-border-color-bold); | |
| 2394 | + background-color: #a4afb7; | |
| 2395 | + border-color: #a4afb7; | |
| 2647 | 2396 | } |
| 2648 | 2397 | .elementor-control-type-dimensions .elementor-link-dimensions:not(.unlinked) .elementor-unlinked { |
| 2649 | 2398 | display: none; |
| 2650 | 2399 | } |
| 2651 | - | |
| 2652 | -.elementor-control-responsive-switchers { | |
| 2653 | - --selected-option: 0; | |
| 2654 | - --pointer-position: var(--selected-option); | |
| 2655 | - position: relative; | |
| 2656 | - width: 2.5em; | |
| 2657 | - height: 2.5em; | |
| 2658 | - margin: calc(-2.5em + 12px) 0; | |
| 2659 | - margin-inline-end: 5px; | |
| 2400 | +.elementor-control-type-dimensions .elementor-link-dimensions .elementor-linked { | |
| 2401 | + color: #fff; | |
| 2660 | 2402 | } |
| 2661 | -.elementor-control-responsive-switchers__holder { | |
| 2662 | - position: absolute; | |
| 2663 | - width: 100%; | |
| 2664 | - inset-block-start: 0; | |
| 2665 | - background-color: var(--e-a-bg-default); | |
| 2666 | - border-radius: var(--e-a-border-radius); | |
| 2667 | - transition: 0.15s; | |
| 2668 | - border: 1px solid transparent; | |
| 2669 | -} | |
| 2670 | -.elementor-control-responsive-switchers.elementor-responsive-switchers-open { | |
| 2671 | - z-index: 11000; | |
| 2672 | -} | |
| 2673 | -.elementor-control-responsive-switchers.elementor-responsive-switchers-open .elementor-responsive-switcher { | |
| 2674 | - height: 2.5em; | |
| 2675 | - transform: scale(1); | |
| 2676 | - opacity: 1; | |
| 2677 | -} | |
| 2678 | -.elementor-control-responsive-switchers.elementor-responsive-switchers-open .elementor-responsive-switcher:hover { | |
| 2679 | - color: var(--e-a-color-primary-bold); | |
| 2680 | -} | |
| 2681 | -.elementor-control-responsive-switchers.elementor-responsive-switchers-open .elementor-control-responsive-switchers__holder { | |
| 2682 | - box-shadow: var(--e-a-dropdown-shadow); | |
| 2683 | -} | |
| 2684 | 2403 | |
| 2685 | -.elementor-responsive-switcher { | |
| 2686 | - all: unset; | |
| 2687 | - display: flex; | |
| 2688 | - align-items: center; | |
| 2689 | - justify-content: center; | |
| 2690 | - position: relative; | |
| 2691 | - z-index: 2; | |
| 2692 | - cursor: pointer; | |
| 2693 | - height: 0; | |
| 2694 | - width: 100%; | |
| 2695 | - transform: scale(0); | |
| 2696 | - opacity: 0; | |
| 2697 | - transition: 0.15s; | |
| 2698 | - font-size: 12px; | |
| 2699 | - color: inherit; | |
| 2700 | -} | |
| 2701 | -.elementor-responsive-switcher:hover { | |
| 2702 | - color: var(--e-a-color-primary-bold); | |
| 2703 | -} | |
| 2704 | - | |
| 2705 | -.elementor-device-widescreen .elementor-responsive-switcher.elementor-responsive-switcher-widescreen { | |
| 2706 | - height: 2.5em; | |
| 2707 | - transform: scale(1); | |
| 2708 | - opacity: 1; | |
| 2709 | -} | |
| 2710 | -.elementor-device-widescreen .elementor-responsive-switchers-open:not(:hover) .elementor-responsive-switcher.elementor-responsive-switcher-widescreen { | |
| 2711 | - color: var(--e-a-color-primary-bold); | |
| 2712 | -} | |
| 2713 | - | |
| 2714 | -.elementor-device-desktop .elementor-responsive-switcher.elementor-responsive-switcher-desktop { | |
| 2715 | - height: 2.5em; | |
| 2716 | - transform: scale(1); | |
| 2717 | - opacity: 1; | |
| 2718 | -} | |
| 2719 | -.elementor-device-desktop .elementor-responsive-switchers-open:not(:hover) .elementor-responsive-switcher.elementor-responsive-switcher-desktop { | |
| 2720 | - color: var(--e-a-color-primary-bold); | |
| 2721 | -} | |
| 2722 | - | |
| 2723 | -.elementor-device-laptop .elementor-responsive-switcher.elementor-responsive-switcher-laptop { | |
| 2724 | - height: 2.5em; | |
| 2725 | - transform: scale(1); | |
| 2726 | - opacity: 1; | |
| 2727 | -} | |
| 2728 | -.elementor-device-laptop .elementor-responsive-switchers-open:not(:hover) .elementor-responsive-switcher.elementor-responsive-switcher-laptop { | |
| 2729 | - color: var(--e-a-color-primary-bold); | |
| 2730 | -} | |
| 2731 | - | |
| 2732 | -.elementor-device-tablet_extra .elementor-responsive-switcher.elementor-responsive-switcher-tablet_extra { | |
| 2733 | - height: 2.5em; | |
| 2734 | - transform: scale(1); | |
| 2735 | - opacity: 1; | |
| 2736 | -} | |
| 2737 | -.elementor-device-tablet_extra .elementor-responsive-switchers-open:not(:hover) .elementor-responsive-switcher.elementor-responsive-switcher-tablet_extra { | |
| 2738 | - color: var(--e-a-color-primary-bold); | |
| 2739 | -} | |
| 2740 | - | |
| 2741 | -.elementor-device-tablet .elementor-responsive-switcher.elementor-responsive-switcher-tablet { | |
| 2742 | - height: 2.5em; | |
| 2743 | - transform: scale(1); | |
| 2744 | - opacity: 1; | |
| 2745 | -} | |
| 2746 | -.elementor-device-tablet .elementor-responsive-switchers-open:not(:hover) .elementor-responsive-switcher.elementor-responsive-switcher-tablet { | |
| 2747 | - color: var(--e-a-color-primary-bold); | |
| 2748 | -} | |
| 2749 | - | |
| 2750 | -.elementor-device-mobile_extra .elementor-responsive-switcher.elementor-responsive-switcher-mobile_extra { | |
| 2751 | - height: 2.5em; | |
| 2752 | - transform: scale(1); | |
| 2753 | - opacity: 1; | |
| 2754 | -} | |
| 2755 | -.elementor-device-mobile_extra .elementor-responsive-switchers-open:not(:hover) .elementor-responsive-switcher.elementor-responsive-switcher-mobile_extra { | |
| 2756 | - color: var(--e-a-color-primary-bold); | |
| 2757 | -} | |
| 2758 | - | |
| 2759 | -.elementor-device-mobile .elementor-responsive-switcher.elementor-responsive-switcher-mobile { | |
| 2760 | - height: 2.5em; | |
| 2761 | - transform: scale(1); | |
| 2762 | - opacity: 1; | |
| 2763 | -} | |
| 2764 | -.elementor-device-mobile .elementor-responsive-switchers-open:not(:hover) .elementor-responsive-switcher.elementor-responsive-switcher-mobile { | |
| 2765 | - color: var(--e-a-color-primary-bold); | |
| 2766 | -} | |
| 2767 | - | |
| 2768 | -.e-units-wrapper { | |
| 2769 | - position: relative; | |
| 2770 | - margin-inline-start: auto; | |
| 2771 | -} | |
| 2772 | -.e-units-wrapper .e-units-switcher { | |
| 2773 | - cursor: pointer; | |
| 2774 | - font-size: 10px; | |
| 2775 | - padding: 0.5em; | |
| 2776 | - margin: -0.5em 0; | |
| 2777 | - transition: all ease-in-out 0.15s; | |
| 2778 | -} | |
| 2779 | -.e-units-wrapper .e-units-switcher:hover { | |
| 2780 | - color: var(--e-a-color-primary-bold); | |
| 2781 | - background-color: var(--e-a-bg-hover); | |
| 2782 | - border-radius: var(--e-a-border-radius); | |
| 2783 | -} | |
| 2784 | -.e-units-wrapper .e-units-switcher:not([data-selected=custom]) i.eicon-edit { | |
| 2785 | - display: none; | |
| 2786 | -} | |
| 2787 | -.e-units-wrapper .e-units-switcher[data-selected=custom] span { | |
| 2788 | - display: none; | |
| 2789 | -} | |
| 2790 | -.e-units-wrapper .e-units-switcher i.eicon-angle-right { | |
| 2791 | - transform: rotate(90deg); | |
| 2792 | -} | |
| 2793 | - | |
| 2794 | -.e-units-choices input { | |
| 2795 | - display: none; | |
| 2796 | -} | |
| 2797 | -.e-units-choices input:checked + label { | |
| 2798 | - color: var(--e-a-color-primary-bold); | |
| 2799 | -} | |
| 2800 | -.e-units-choices label { | |
| 2801 | - cursor: pointer; | |
| 2802 | - display: block; | |
| 2803 | -} | |
| 2804 | -.e-units-choices { | |
| 2805 | - display: none; | |
| 2806 | - overflow: hidden; | |
| 2807 | - max-height: 0; | |
| 2808 | - position: absolute; | |
| 2809 | - inset-block-start: -0.8em; | |
| 2810 | - inset-inline-start: -0.5em; | |
| 2811 | - width: 2.5em; | |
| 2812 | - text-align: center; | |
| 2813 | - background-color: var(--e-a-bg-default); | |
| 2814 | - border-radius: var(--e-a-border-radius); | |
| 2815 | - box-shadow: var(--e-a-dropdown-shadow); | |
| 2816 | - animation-timing-function: linear; | |
| 2817 | - animation-delay: 0s; | |
| 2818 | - animation-fill-mode: forwards; | |
| 2819 | - z-index: 11000; | |
| 2820 | -} | |
| 2821 | -.e-units-choices .elementor-units-choices-label { | |
| 2822 | - display: flex; | |
| 2823 | - align-items: center; | |
| 2824 | - height: 3em; | |
| 2825 | - justify-content: center; | |
| 2826 | - font-size: 10px; | |
| 2827 | - transition: 0.15s; | |
| 2828 | -} | |
| 2829 | -.e-units-choices .elementor-units-choices-label:hover { | |
| 2830 | - color: var(--e-a-color-primary-bold); | |
| 2831 | -} | |
| 2832 | -.e-units-choices.e-units-choices-open { | |
| 2833 | - display: block; | |
| 2834 | - animation-duration: 1s; | |
| 2835 | - animation-name: e-units-choices-open; | |
| 2836 | -} | |
| 2837 | - | |
| 2838 | -.e-units-custom input { | |
| 2839 | - font-family: monospace; | |
| 2840 | - font-size: 0.85em; | |
| 2841 | -} | |
| 2842 | - | |
| 2843 | -@keyframes e-units-choices-open { | |
| 2844 | - from { | |
| 2845 | - max-height: 0; | |
| 2846 | - } | |
| 2847 | - to { | |
| 2848 | - max-height: 100vh; | |
| 2849 | - } | |
| 2850 | -} | |
| 2851 | -.elementor-control-type-gaps .elementor-control-gaps { | |
| 2852 | - display: flex; | |
| 2853 | -} | |
| 2854 | -.elementor-control-type-gaps li { | |
| 2855 | - flex: 1; | |
| 2856 | - transition: flex-grow 0.3s ease-in-out; | |
| 2857 | -} | |
| 2858 | -.elementor-control-type-gaps li input, | |
| 2859 | -.elementor-control-type-gaps li .elementor-link-gaps { | |
| 2860 | - display: block; | |
| 2861 | - text-align: center; | |
| 2862 | - width: 100%; | |
| 2863 | - height: 27px; | |
| 2864 | -} | |
| 2865 | -.elementor-control-type-gaps li input { | |
| 2866 | - border-inline-start: none; | |
| 2867 | - border-radius: 0; | |
| 2868 | - padding: var(--e-a-border-radius); | |
| 2869 | -} | |
| 2870 | -.elementor-control-type-gaps li input:focus { | |
| 2871 | - border-inline-start: var(--e-a-border-bold); | |
| 2872 | - margin-inline-start: -1px; | |
| 2873 | - width: calc(100% + 1px); | |
| 2874 | -} | |
| 2875 | -.elementor-control-type-gaps li input:focus + .elementor-control-gap-label { | |
| 2876 | - color: var(--e-a-color-txt); | |
| 2877 | -} | |
| 2878 | -.elementor-control-type-gaps li .elementor-link-gaps { | |
| 2879 | - border: var(--e-a-border-bold); | |
| 2880 | - border-inline-start: none; | |
| 2881 | - background-color: var(--e-a-bg-default); | |
| 2882 | - padding: 0; | |
| 2883 | - outline: none; | |
| 2884 | - border-start-start-radius: 0; | |
| 2885 | - border-start-end-radius: var(--e-a-border-radius); | |
| 2886 | - border-end-start-radius: 0; | |
| 2887 | - border-end-end-radius: var(--e-a-border-radius); | |
| 2888 | - cursor: pointer; | |
| 2889 | -} | |
| 2890 | -.elementor-control-type-gaps li:first-child input { | |
| 2891 | - border-inline-start: 1px solid var(--e-a-border-color-bold); | |
| 2892 | - border-start-start-radius: var(--e-a-border-radius); | |
| 2893 | - border-start-end-radius: 0; | |
| 2894 | - border-end-start-radius: var(--e-a-border-radius); | |
| 2895 | - border-end-end-radius: 0; | |
| 2896 | -} | |
| 2897 | -.elementor-control-type-gaps li:first-child input:focus { | |
| 2898 | - border-color: var(--e-a-border-color-focus); | |
| 2899 | - margin-inline-start: 0; | |
| 2900 | - width: 100%; | |
| 2901 | -} | |
| 2902 | -.elementor-control-type-gaps li:last-child { | |
| 2903 | - max-width: 27px; | |
| 2904 | -} | |
| 2905 | -.elementor-control-type-gaps.e-units-custom li.elementor-control-gap:focus-within { | |
| 2906 | - flex: 2.5; | |
| 2907 | -} | |
| 2908 | -.elementor-control-type-gaps .elementor-control-gap-label { | |
| 2909 | - color: var(--e-a-color-txt-muted); | |
| 2910 | - display: block; | |
| 2911 | - text-align: center; | |
| 2912 | - font-size: 9px; | |
| 2913 | - padding-block-start: 5px; | |
| 2914 | -} | |
| 2915 | -.elementor-control-type-gaps .elementor-link-gaps.unlinked { | |
| 2916 | - background-color: var(--e-a-bg-default); | |
| 2917 | -} | |
| 2918 | -.elementor-control-type-gaps .elementor-link-gaps.unlinked .elementor-linked { | |
| 2919 | - display: none; | |
| 2920 | -} | |
| 2921 | -.elementor-control-type-gaps .elementor-link-gaps:not(.unlinked) { | |
| 2922 | - background-color: var(--e-a-bg-active-bold); | |
| 2923 | - color: var(--e-a-color-txt-accent); | |
| 2924 | - border-color: var(--e-a-border-color-bold); | |
| 2925 | -} | |
| 2926 | -.elementor-control-type-gaps .elementor-link-gaps:not(.unlinked) .elementor-unlinked { | |
| 2927 | - display: none; | |
| 2928 | -} | |
| 2929 | - | |
| 2930 | 2404 | .elementor-control-type-icons .elementor-control-media__preview > * { |
| 2931 | 2405 | position: absolute; |
| 2932 | - inset-block-start: 50%; | |
| 2933 | - inset-inline-start: 50%; | |
| 2934 | - transform: translate(calc(-50% * var(--direction-multiplier)), -50%); | |
| 2406 | + top: 50%; | |
| 2407 | + left: 50%; | |
| 2408 | + -webkit-transform: translate(-50%, -50%); | |
| 2409 | + -ms-transform: translate(-50%, -50%); | |
| 2410 | + transform: translate(-50%, -50%); | |
| 2935 | 2411 | } |
| 2936 | 2412 | .elementor-control-type-icons .elementor-control-media__preview i { |
| 2937 | 2413 | font-size: 70px; |
| 2414 | + color: #6d7882; | |
| 2938 | 2415 | } |
| 2939 | 2416 | .elementor-control-type-icons .elementor-control-media__preview svg { |
| 2940 | 2417 | height: 75%; |
| 2941 | 2418 | } |
| @@ -2943,29 +2420,40 @@ | ||
| 2943 | 2420 | font-size: 15px; |
| 2944 | 2421 | } |
| 2945 | 2422 | |
| 2946 | 2423 | .elementor-control-type-gallery .elementor-control-media__content { |
| 2947 | - border: var(--e-a-border-bold); | |
| 2424 | + border: 1px solid #d5dadf; | |
| 2948 | 2425 | border-radius: 3px; |
| 2949 | 2426 | } |
| 2950 | 2427 | .elementor-control-type-gallery .elementor-control-gallery-status { |
| 2951 | 2428 | font-size: 12px; |
| 2952 | 2429 | height: 27px; |
| 2953 | - padding-inline-start: 10px; | |
| 2954 | - border-block-end: var(--e-a-border-bold); | |
| 2430 | + padding-right: 10px; | |
| 2431 | + border-bottom: 1px solid #d5dadf; | |
| 2432 | + display: -webkit-box; | |
| 2433 | + display: -ms-flexbox; | |
| 2955 | 2434 | display: flex; |
| 2956 | 2435 | } |
| 2957 | 2436 | .elementor-control-type-gallery .elementor-control-gallery-status > * { |
| 2437 | + display: -webkit-box; | |
| 2438 | + display: -ms-flexbox; | |
| 2958 | 2439 | display: flex; |
| 2959 | - align-items: center; | |
| 2440 | + -webkit-box-align: center; | |
| 2441 | + -ms-flex-align: center; | |
| 2442 | + align-items: center; | |
| 2960 | 2443 | } |
| 2961 | 2444 | .elementor-control-type-gallery .elementor-control-gallery-status-title { |
| 2962 | - flex-grow: 1; | |
| 2445 | + -webkit-box-flex: 1; | |
| 2446 | + -ms-flex-positive: 1; | |
| 2447 | + flex-grow: 1; | |
| 2963 | 2448 | } |
| 2964 | 2449 | .elementor-control-type-gallery .elementor-control-gallery-content { |
| 2965 | 2450 | position: relative; |
| 2966 | 2451 | overflow: hidden; |
| 2967 | 2452 | } |
| 2453 | +.elementor-control-type-gallery .elementor-control-gallery-content:not(:hover) .elementor-control-gallery-edit { | |
| 2454 | + opacity: 0; | |
| 2455 | +} | |
| 2968 | 2456 | .elementor-control-type-gallery .elementor-control-gallery-thumbnails { |
| 2969 | 2457 | display: grid; |
| 2970 | 2458 | grid-template-columns: repeat(auto-fill, minmax(48px, 1fr)); |
| 2971 | 2459 | grid-gap: 10px; |
| @@ -2971,58 +2459,60 @@ | ||
| 2971 | 2459 | grid-gap: 10px; |
| 2972 | 2460 | cursor: pointer; |
| 2973 | 2461 | padding: 10px; |
| 2974 | 2462 | } |
| 2975 | -.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 { | |
| 2976 | - opacity: 1; | |
| 2977 | -} | |
| 2978 | 2463 | .elementor-control-type-gallery .elementor-control-gallery-thumbnail { |
| 2979 | 2464 | width: 48px; |
| 2980 | 2465 | height: 48px; |
| 2981 | - -o-object-fit: cover; | |
| 2982 | - object-fit: cover; | |
| 2983 | - border: var(--e-a-border); | |
| 2466 | + background-size: cover; | |
| 2467 | + background-position: 50% 50%; | |
| 2984 | 2468 | } |
| 2985 | -.elementor-control-type-gallery .elementor-control-gallery-thumbnail + .unoptimized__image { | |
| 2986 | - outline: 2px solid var(--e-a-btn-bg-danger-active); | |
| 2987 | - opacity: 0.6; | |
| 2988 | -} | |
| 2989 | 2469 | .elementor-control-type-gallery .elementor-control-gallery-edit { |
| 2990 | 2470 | position: absolute; |
| 2991 | - inset: 0; | |
| 2992 | - background-color: rgba(0, 0, 0, 0.2); | |
| 2471 | + top: 0; | |
| 2472 | + bottom: 0; | |
| 2473 | + left: 0; | |
| 2474 | + right: 0; | |
| 2475 | + background-color: rgba(109, 120, 130, 0.3); | |
| 2993 | 2476 | padding: 10px; |
| 2994 | 2477 | font-size: 11px; |
| 2478 | + -webkit-transition: all 0.3s ease-in-out; | |
| 2479 | + -o-transition: all 0.3s ease-in-out; | |
| 2995 | 2480 | transition: all 0.3s ease-in-out; |
| 2996 | 2481 | pointer-events: none; |
| 2997 | 2482 | cursor: pointer; |
| 2998 | - opacity: 0; | |
| 2483 | + opacity: 1; | |
| 2999 | 2484 | } |
| 3000 | 2485 | .elementor-control-type-gallery .elementor-control-gallery-edit span { |
| 3001 | 2486 | position: absolute; |
| 3002 | - inset-block-start: 10px; | |
| 3003 | - inset-inline-end: 10px; | |
| 2487 | + top: 10px; | |
| 2488 | + left: 10px; | |
| 3004 | 2489 | width: 21px; |
| 3005 | 2490 | height: 21px; |
| 3006 | - color: var(--e-a-color-white); | |
| 3007 | - background-color: rgba(0, 0, 0, 0.5); | |
| 3008 | - box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.2); | |
| 3009 | - transition: var(--e-a-transition-hover); | |
| 2491 | + background-color: rgba(255, 255, 255, 0.9); | |
| 2492 | + color: #a4afb7; | |
| 2493 | + -webkit-box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.2); | |
| 2494 | + box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.2); | |
| 2495 | + border-radius: 3px; | |
| 3010 | 2496 | } |
| 3011 | 2497 | .elementor-control-type-gallery .elementor-control-gallery-edit span i { |
| 3012 | 2498 | font-size: 11px; |
| 3013 | 2499 | padding: 5px; |
| 3014 | 2500 | } |
| 3015 | -.elementor-control-type-gallery .elementor-control-gallery-edit span:hover { | |
| 3016 | - background-color: rgba(0, 0, 0, 0.6); | |
| 3017 | -} | |
| 3018 | 2501 | .elementor-control-type-gallery .elementor-control-gallery-add { |
| 3019 | 2502 | width: 48px; |
| 3020 | 2503 | height: 48px; |
| 2504 | + color: #fff; | |
| 2505 | + background-color: #d5dadf; | |
| 3021 | 2506 | font-size: 14px; |
| 2507 | + border-radius: 0; | |
| 3022 | 2508 | } |
| 2509 | +.elementor-control-type-gallery .elementor-control-gallery-add:hover { | |
| 2510 | + background-color: #c2cbd2; | |
| 2511 | +} | |
| 3023 | 2512 | .elementor-control-type-gallery .elementor-control-gallery-add i { |
| 3024 | 2513 | margin: 0; |
| 2514 | + color: #a4afb7; | |
| 3025 | 2515 | } |
| 3026 | 2516 | .elementor-control-type-gallery.elementor-gallery-empty .elementor-control-gallery-clear, |
| 3027 | 2517 | .elementor-control-type-gallery.elementor-gallery-empty .elementor-control-gallery-thumbnails, |
| 3028 | 2518 | .elementor-control-type-gallery.elementor-gallery-empty .elementor-control-gallery-edit { |
| @@ -3034,25 +2524,24 @@ | ||
| 3034 | 2524 | .elementor-control-type-gallery.elementor-gallery-has-images .elementor-control-gallery-add { |
| 3035 | 2525 | display: none; |
| 3036 | 2526 | } |
| 3037 | 2527 | .elementor-control-type-gallery.elementor-control-dynamic .elementor-control-gallery-clear { |
| 3038 | - border-inline-start: var(--e-a-border); | |
| 2528 | + border-right: 1px solid #d5dadf; | |
| 3039 | 2529 | } |
| 3040 | 2530 | .elementor-control-type-gallery .elementor-control-gallery-clear { |
| 3041 | - color: currentColor; | |
| 3042 | - background-color: transparent; | |
| 3043 | - border: none; | |
| 3044 | 2531 | cursor: pointer; |
| 3045 | - justify-content: center; | |
| 2532 | + -webkit-box-pack: center; | |
| 2533 | + -ms-flex-pack: center; | |
| 2534 | + justify-content: center; | |
| 3046 | 2535 | } |
| 3047 | -.elementor-control-type-gallery .elementor-control-gallery-clear:hover, .elementor-control-type-gallery .elementor-control-gallery-clear:focus { | |
| 3048 | - color: var(--e-a-color-danger); | |
| 2536 | +.elementor-control-type-gallery .elementor-control-gallery-clear:hover { | |
| 2537 | + color: #b01b1b; | |
| 3049 | 2538 | } |
| 3050 | 2539 | .elementor-control-type-gallery .elementor-control-dynamic-switcher { |
| 3051 | - border-width: 0; | |
| 3052 | - border-inline-start-width: 1px; | |
| 3053 | - border-block-end-width: 1px; | |
| 3054 | - border-radius: 0; | |
| 2540 | + border: none; | |
| 2541 | + border-bottom: 1px solid #d5dadf; | |
| 2542 | + border-right: 1px solid #d5dadf; | |
| 2543 | + border-radius: 3px 0 0 0; | |
| 3055 | 2544 | } |
| 3056 | 2545 | |
| 3057 | 2546 | .e-global__popover { |
| 3058 | 2547 | width: 288px; |
| @@ -3057,49 +2546,55 @@ | ||
| 3057 | 2546 | .e-global__popover { |
| 3058 | 2547 | width: 288px; |
| 3059 | 2548 | z-index: 1; |
| 3060 | 2549 | font-size: 12px; |
| 3061 | - padding-inline-start: 10px; | |
| 2550 | + padding-right: 10px; | |
| 3062 | 2551 | } |
| 3063 | 2552 | .e-global__popover-toggle { |
| 3064 | - border: var(--e-a-border-bold); | |
| 3065 | - border-inline-end: 0; | |
| 3066 | - border-start-start-radius: 3px; | |
| 3067 | - border-start-end-radius: 0; | |
| 3068 | - border-end-start-radius: 3px; | |
| 3069 | - border-end-end-radius: 0; | |
| 2553 | + border: 1px solid #d5dadf; | |
| 2554 | + border-left: 0; | |
| 2555 | + border-radius: 0 3px 3px 0; | |
| 2556 | + display: -webkit-box; | |
| 2557 | + display: -ms-flexbox; | |
| 3070 | 2558 | display: flex; |
| 3071 | - align-items: center; | |
| 3072 | - justify-content: center; | |
| 2559 | + -webkit-box-align: center; | |
| 2560 | + -ms-flex-align: center; | |
| 2561 | + align-items: center; | |
| 2562 | + -webkit-box-pack: center; | |
| 2563 | + -ms-flex-pack: center; | |
| 2564 | + justify-content: center; | |
| 3073 | 2565 | cursor: pointer; |
| 3074 | - transition: var(--e-a-transition-hover); | |
| 3075 | 2566 | } |
| 3076 | -.e-global__popover-toggle:hover { | |
| 3077 | - background-color: var(--e-a-bg-hover); | |
| 2567 | +.e-global__popover-toggle--active i { | |
| 2568 | + color: #71d7f7; | |
| 3078 | 2569 | } |
| 3079 | -.e-global__popover-toggle--active { | |
| 3080 | - color: var(--e-a-color-primary-bold); | |
| 3081 | - background-color: var(--e-a-bg-active-bold); | |
| 3082 | -} | |
| 3083 | 2570 | .e-global__popover-container { |
| 3084 | - box-shadow: var(--e-a-popover-shadow); | |
| 3085 | - border-radius: var(--e-a-border-radius); | |
| 3086 | - background-color: var(--e-a-bg-default); | |
| 2571 | + -webkit-box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3); | |
| 2572 | + box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3); | |
| 2573 | + border-radius: 3px; | |
| 2574 | + background-color: #fff; | |
| 2575 | + padding-bottom: 5px; | |
| 3087 | 2576 | } |
| 3088 | 2577 | .e-global__popover-title { |
| 3089 | 2578 | padding: 15px 20px; |
| 3090 | 2579 | font-weight: 500; |
| 3091 | - border-block-end: var(--e-a-border); | |
| 2580 | + color: #6d7882; | |
| 2581 | + border-bottom: 1px solid #e6e9ec; | |
| 2582 | + display: -webkit-box; | |
| 2583 | + display: -ms-flexbox; | |
| 3092 | 2584 | display: flex; |
| 3093 | 2585 | } |
| 3094 | 2586 | .e-global__popover-title > i { |
| 3095 | - margin-inline-end: 5px; | |
| 2587 | + margin-left: 5px; | |
| 2588 | + color: #d5dadf; | |
| 3096 | 2589 | } |
| 3097 | 2590 | .e-global__popover-title-text { |
| 3098 | - flex-grow: 1; | |
| 2591 | + -webkit-box-flex: 1; | |
| 2592 | + -ms-flex-positive: 1; | |
| 2593 | + flex-grow: 1; | |
| 3099 | 2594 | } |
| 3100 | 2595 | .e-global__popover-info { |
| 3101 | - margin-inline-end: 10px; | |
| 2596 | + margin-left: 5px; | |
| 3102 | 2597 | display: inline-block; |
| 3103 | 2598 | } |
| 3104 | 2599 | .e-global__popover-info-tooltip { |
| 3105 | 2600 | width: 270px; |
| @@ -3104,9 +2599,9 @@ | ||
| 3104 | 2599 | .e-global__popover-info-tooltip { |
| 3105 | 2600 | width: 270px; |
| 3106 | 2601 | z-index: 1; |
| 3107 | 2602 | background-color: rgba(0, 0, 0, 0.9); |
| 3108 | - color: var(--e-a-color-white); | |
| 2603 | + color: #fff; | |
| 3109 | 2604 | padding: 20px; |
| 3110 | 2605 | border-radius: 3px; |
| 3111 | 2606 | } |
| 3112 | 2607 | .e-global__popover-info-tooltip:after { |
| @@ -3111,48 +2606,44 @@ | ||
| 3111 | 2606 | } |
| 3112 | 2607 | .e-global__popover-info-tooltip:after { |
| 3113 | 2608 | content: ""; |
| 3114 | 2609 | position: absolute; |
| 3115 | - inset-block-end: -17px; | |
| 3116 | - inset-inline-start: 16px; | |
| 2610 | + bottom: -17px; | |
| 2611 | + right: 16px; | |
| 3117 | 2612 | border: 10px solid transparent; |
| 3118 | - border-block-start-color: rgba(0, 0, 0, 0.9); | |
| 2613 | + border-top-color: rgba(0, 0, 0, 0.9); | |
| 3119 | 2614 | } |
| 3120 | 2615 | .e-global__popover-info i { |
| 2616 | + color: #d5dadf; | |
| 3121 | 2617 | font-size: 13px; |
| 3122 | 2618 | } |
| 3123 | 2619 | .e-global__preview-items-container { |
| 3124 | - max-height: 400px; | |
| 2620 | + max-height: 260px; | |
| 3125 | 2621 | overflow-y: auto; |
| 3126 | - padding: 5px 0; | |
| 2622 | + margin-top: 5px; | |
| 3127 | 2623 | } |
| 3128 | 2624 | .e-global__preview-items-container::-webkit-scrollbar { |
| 3129 | 2625 | width: 7px; |
| 3130 | 2626 | } |
| 3131 | 2627 | .e-global__preview-items-container::-webkit-scrollbar-thumb { |
| 3132 | - background-color: #BABFC5; | |
| 2628 | + background-color: #c2cbd2; | |
| 3133 | 2629 | border-radius: 10px; |
| 3134 | 2630 | } |
| 3135 | -.e-global__group-header { | |
| 3136 | - padding: 12px 20px 5px; | |
| 2631 | +.e-global__manage-button { | |
| 3137 | 2632 | font-weight: 500; |
| 3138 | - font-size: 11px; | |
| 3139 | - color: var(--e-a-color-txt-muted); | |
| 2633 | + cursor: pointer; | |
| 3140 | 2634 | } |
| 3141 | -.e-global__group-divider { | |
| 3142 | - height: 1px; | |
| 3143 | - background-color: var(--e-a-border-color); | |
| 3144 | - margin: 10px 20px; | |
| 2635 | +.e-global__manage-button:hover i { | |
| 2636 | + color: #4ab7f4; | |
| 3145 | 2637 | } |
| 3146 | -.e-global__manage-button { | |
| 3147 | - font-weight: 500; | |
| 3148 | - cursor: pointer; | |
| 2638 | +.e-global__manage-button i { | |
| 2639 | + color: #6d7882; | |
| 3149 | 2640 | } |
| 3150 | 2641 | .e-global__typography { |
| 3151 | - padding-block: 10px; | |
| 3152 | - padding-inline: 35px 20px; | |
| 2642 | + padding: 5px 35px 5px 10px; | |
| 3153 | 2643 | white-space: nowrap; |
| 3154 | - text-overflow: ellipsis; | |
| 2644 | + -o-text-overflow: ellipsis; | |
| 2645 | + text-overflow: ellipsis; | |
| 3155 | 2646 | overflow: hidden; |
| 3156 | 2647 | } |
| 3157 | 2648 | .e-global__typography.e-global__preview-item--selected:before { |
| 3158 | 2649 | font-family: "eicons"; |
| @@ -3158,61 +2649,91 @@ | ||
| 3158 | 2649 | font-family: "eicons"; |
| 3159 | 2650 | font-size: 13px; |
| 3160 | 2651 | content: "\e90e"; |
| 3161 | 2652 | position: absolute; |
| 3162 | - transform: translateY(-50%); | |
| 3163 | - inset-block-start: 50%; | |
| 3164 | - inset-inline-start: 13px; | |
| 2653 | + -webkit-transform: translateY(-50%); | |
| 2654 | + -ms-transform: translateY(-50%); | |
| 2655 | + transform: translateY(-50%); | |
| 2656 | + top: 50%; | |
| 2657 | + left: 12px; | |
| 3165 | 2658 | } |
| 3166 | 2659 | .e-global__color { |
| 3167 | - padding: 10px 20px; | |
| 2660 | + margin: 5px auto; | |
| 2661 | + padding: 5px 20px; | |
| 2662 | + display: -webkit-box; | |
| 2663 | + display: -ms-flexbox; | |
| 3168 | 2664 | display: flex; |
| 3169 | - align-items: center; | |
| 2665 | + -webkit-box-align: center; | |
| 2666 | + -ms-flex-align: center; | |
| 2667 | + align-items: center; | |
| 3170 | 2668 | } |
| 2669 | +.e-global__color:first-child { | |
| 2670 | + margin-top: 5px; | |
| 2671 | +} | |
| 2672 | +.e-global__color:last-child { | |
| 2673 | + margin-bottom: 10px; | |
| 2674 | +} | |
| 3171 | 2675 | .e-global__color-preview-container { |
| 3172 | 2676 | height: 20px; |
| 3173 | 2677 | width: 20px; |
| 3174 | 2678 | border-radius: 3px; |
| 3175 | 2679 | border: 1px solid rgba(0, 0, 0, 0.1); |
| 3176 | - margin-inline-end: 10px; | |
| 3177 | - flex-shrink: 0; | |
| 2680 | + margin-left: 10px; | |
| 2681 | + -ms-flex-negative: 0; | |
| 2682 | + flex-shrink: 0; | |
| 3178 | 2683 | position: relative; |
| 3179 | 2684 | } |
| 3180 | 2685 | .e-global__color-preview-color, .e-global__color-preview-transparent-bg { |
| 3181 | 2686 | border-radius: 3px; |
| 2687 | + height: 100%; | |
| 2688 | + width: 100%; | |
| 3182 | 2689 | position: absolute; |
| 3183 | - inset: 0; | |
| 2690 | + top: 0; | |
| 2691 | + left: 0; | |
| 3184 | 2692 | } |
| 3185 | 2693 | .e-global__color-preview-transparent-bg { |
| 3186 | - 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)); | |
| 2694 | + 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); | |
| 2695 | + 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); | |
| 3187 | 2696 | background-size: 12px 12px; |
| 3188 | - background-position: 0 0, calc(12px / 2) calc(12px / 2); | |
| 2697 | + background-position: 0 0, calc( 12px / 2 ) calc( 12px / 2 ); | |
| 3189 | 2698 | } |
| 3190 | 2699 | .e-global__color-title { |
| 3191 | - flex-grow: 1; | |
| 2700 | + font-weight: 500; | |
| 2701 | + color: #6d7882; | |
| 2702 | + -webkit-box-flex: 1; | |
| 2703 | + -ms-flex-positive: 1; | |
| 2704 | + flex-grow: 1; | |
| 3192 | 2705 | white-space: nowrap; |
| 3193 | - text-overflow: ellipsis; | |
| 2706 | + -o-text-overflow: ellipsis; | |
| 2707 | + text-overflow: ellipsis; | |
| 3194 | 2708 | overflow: hidden; |
| 3195 | - padding-inline-end: 10px; | |
| 2709 | + padding-left: 10px; | |
| 3196 | 2710 | } |
| 3197 | 2711 | .e-global__color-hex { |
| 3198 | 2712 | font-size: 10px; |
| 3199 | - color: var(--e-a-color-txt-muted); | |
| 2713 | + font-weight: 500; | |
| 2714 | + color: #c2cbd2; | |
| 3200 | 2715 | } |
| 3201 | 2716 | .e-global__color .pcr-button { |
| 3202 | - background-color: var(--e-a-bg-default); | |
| 2717 | + background-color: #fff; | |
| 3203 | 2718 | } |
| 3204 | 2719 | .e-global__color.e-global__preview-item--selected .e-global__color-preview-container { |
| 2720 | + display: -webkit-box; | |
| 2721 | + display: -ms-flexbox; | |
| 3205 | 2722 | display: flex; |
| 3206 | - justify-content: center; | |
| 3207 | - align-items: center; | |
| 3208 | - color: var(--e-a-color-white); | |
| 2723 | + -webkit-box-pack: center; | |
| 2724 | + -ms-flex-pack: center; | |
| 2725 | + justify-content: center; | |
| 2726 | + -webkit-box-align: center; | |
| 2727 | + -ms-flex-align: center; | |
| 2728 | + align-items: center; | |
| 2729 | + color: #ffffff; | |
| 3209 | 2730 | } |
| 3210 | 2731 | .e-global__color.e-global__preview-item--selected .e-global__color-preview-container:before { |
| 3211 | 2732 | font-family: "eicons"; |
| 3212 | 2733 | font-size: 13px; |
| 3213 | 2734 | content: "\e90e"; |
| 3214 | - text-shadow: 0 0 1px #000; | |
| 2735 | + text-shadow: 0px 0px 1px #000; | |
| 3215 | 2736 | z-index: 1; |
| 3216 | 2737 | } |
| 3217 | 2738 | .e-global__preview-item { |
| 3218 | 2739 | cursor: pointer; |
| @@ -3218,23 +2739,37 @@ | ||
| 3218 | 2739 | cursor: pointer; |
| 3219 | 2740 | position: relative; |
| 3220 | 2741 | } |
| 3221 | 2742 | .e-global__preview-item:hover { |
| 3222 | - background-color: var(--e-a-bg-hover); | |
| 2743 | + background-color: #f1f3f5; | |
| 3223 | 2744 | } |
| 3224 | -.e-global__confirm-delete i, .e-global__confirm-message-text i { | |
| 3225 | - color: var(--e-a-color-warning); | |
| 2745 | +.e-global__preview-item:hover .e-global__color-hex { | |
| 2746 | + color: #a4afb7; | |
| 3226 | 2747 | } |
| 2748 | +.e-global__confirm-add .dialog-buttons-wrapper > .dialog-button.dialog-confirm-ok { | |
| 2749 | + color: #39b54a; | |
| 2750 | +} | |
| 2751 | +.e-global__confirm-delete i { | |
| 2752 | + color: #b01b1b; | |
| 2753 | +} | |
| 2754 | +.e-global__confirm-message-text i { | |
| 2755 | + color: #fcb92c; | |
| 2756 | +} | |
| 3227 | 2757 | .e-global__confirm-input-wrapper { |
| 2758 | + display: -webkit-box; | |
| 2759 | + display: -ms-flexbox; | |
| 3228 | 2760 | display: flex; |
| 3229 | - align-items: center; | |
| 3230 | - border: var(--e-a-border); | |
| 3231 | - border-radius: var(--e-a-border-radius); | |
| 3232 | - margin: 15px 0; | |
| 2761 | + -webkit-box-align: center; | |
| 2762 | + -ms-flex-align: center; | |
| 2763 | + align-items: center; | |
| 2764 | + border: 1px solid #a4afb7; | |
| 2765 | + border-radius: 3px; | |
| 2766 | + margin-top: 10px; | |
| 3233 | 2767 | padding: 2px; |
| 3234 | 2768 | } |
| 3235 | 2769 | .e-global__confirm-input-wrapper input { |
| 3236 | - font-family: var(--e-a-font-family); | |
| 2770 | + font-family: Roboto, Arial, sans-serif; | |
| 2771 | + font-weight: 500; | |
| 3237 | 2772 | font-size: 12px; |
| 3238 | 2773 | padding: 2px; |
| 3239 | 2774 | border: 0; |
| 3240 | 2775 | } |
| @@ -3239,20 +2774,22 @@ | ||
| 3239 | 2774 | border: 0; |
| 3240 | 2775 | } |
| 3241 | 2776 | |
| 3242 | 2777 | .e-control-global .elementor-control-input-wrapper { |
| 2778 | + display: -webkit-box; | |
| 2779 | + display: -ms-flexbox; | |
| 3243 | 2780 | display: flex; |
| 3244 | - justify-content: flex-end; | |
| 2781 | + -webkit-box-pack: end; | |
| 2782 | + -ms-flex-pack: end; | |
| 2783 | + justify-content: flex-end; | |
| 3245 | 2784 | max-width: 135px; |
| 3246 | 2785 | width: 100%; |
| 3247 | 2786 | } |
| 3248 | 2787 | .e-control-global.elementor-control .elementor-control-input-wrapper { |
| 3249 | - display: flex; | |
| 3250 | - flex-direction: row; | |
| 3251 | - align-items: stretch; | |
| 2788 | + direction: rtl; | |
| 3252 | 2789 | } |
| 3253 | 2790 | .e-control-global .elementor-control-spinner { |
| 3254 | - margin-inline-end: 4px; | |
| 2791 | + margin-left: 4px; | |
| 3255 | 2792 | } |
| 3256 | 2793 | |
| 3257 | 2794 | .elementor-control-type-hidden { |
| 3258 | 2795 | display: none !important; |
| @@ -3258,9 +2795,9 @@ | ||
| 3258 | 2795 | display: none !important; |
| 3259 | 2796 | } |
| 3260 | 2797 | |
| 3261 | 2798 | .elementor-control-type-icon .select2-selection__rendered .eicon { |
| 3262 | - margin-inline-end: 3px; | |
| 2799 | + margin-right: 3px; | |
| 3263 | 2800 | } |
| 3264 | 2801 | |
| 3265 | 2802 | .elementor-control-type-image_dimensions .elementor-control-field-description { |
| 3266 | 2803 | margin: 0 0 15px; |
| @@ -3266,52 +2803,58 @@ | ||
| 3266 | 2803 | margin: 0 0 15px; |
| 3267 | 2804 | line-height: 1.4; |
| 3268 | 2805 | } |
| 3269 | 2806 | .elementor-control-type-image_dimensions .elementor-control-input-wrapper { |
| 3270 | - display: flex; | |
| 3271 | - align-items: flex-start; | |
| 2807 | + overflow: hidden; | |
| 3272 | 2808 | } |
| 3273 | 2809 | .elementor-control-type-image_dimensions .elementor-image-dimensions-field { |
| 3274 | 2810 | width: 65px; |
| 2811 | + float: right; | |
| 3275 | 2812 | } |
| 3276 | 2813 | .elementor-control-type-image_dimensions .elementor-image-dimensions-field input:focus + .elementor-image-dimensions-field-description { |
| 3277 | - color: var(--e-a-color-txt); | |
| 2814 | + color: #a4afb7; | |
| 3278 | 2815 | } |
| 3279 | 2816 | .elementor-control-type-image_dimensions .elementor-image-dimensions-separator { |
| 3280 | 2817 | width: 20px; |
| 3281 | 2818 | text-align: center; |
| 3282 | - padding-block-start: 4px; | |
| 2819 | + float: right; | |
| 2820 | + padding-top: 4px; | |
| 3283 | 2821 | } |
| 3284 | 2822 | .elementor-control-type-image_dimensions .elementor-image-dimensions-field-description { |
| 3285 | 2823 | display: block; |
| 3286 | - margin-block-start: 5px; | |
| 3287 | - color: var(--e-a-color-txt-disabled); | |
| 3288 | - font-size: 10px; | |
| 2824 | + text-transform: uppercase; | |
| 2825 | + margin-top: 5px; | |
| 2826 | + color: #d5dadf; | |
| 2827 | + font-size: 9px; | |
| 3289 | 2828 | text-align: center; |
| 3290 | 2829 | } |
| 3291 | 2830 | .elementor-control-type-image_dimensions .elementor-image-dimensions-apply-button { |
| 3292 | - margin-inline-start: auto; | |
| 2831 | + float: left; | |
| 2832 | + height: 27px; | |
| 2833 | + width: 65px; | |
| 3293 | 2834 | } |
| 3294 | 2835 | |
| 3295 | -.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 { | |
| 2836 | +.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 { | |
| 3296 | 2837 | display: none; |
| 3297 | 2838 | } |
| 3298 | -.elementor-control-media.e-media-empty-placeholder .e-control-image-size { | |
| 2839 | +.elementor-control-media:not(.elementor-media-empty) .elementor-control-media__content__upload-button { | |
| 3299 | 2840 | display: none; |
| 3300 | 2841 | } |
| 3301 | -.elementor-control-media:not(.e-media-empty) .elementor-control-media__content__upload-button { | |
| 3302 | - display: none; | |
| 2842 | +.elementor-control-media .elementor-control-input-wrapper { | |
| 2843 | + border: 1px solid #d5dadf; | |
| 3303 | 2844 | } |
| 3304 | 2845 | .elementor-control-media .eicon-plus-circle { |
| 3305 | 2846 | position: absolute; |
| 3306 | - inset-block-start: 50%; | |
| 3307 | - inset-inline-start: 50%; | |
| 3308 | - transform: translate(calc(-50% * var(--direction-multiplier)), -50%); | |
| 3309 | - color: var(--e-a-color-white); | |
| 2847 | + top: 50%; | |
| 2848 | + left: 50%; | |
| 2849 | + -webkit-transform: translate(-50%, -50%); | |
| 2850 | + -ms-transform: translate(-50%, -50%); | |
| 2851 | + transform: translate(-50%, -50%); | |
| 2852 | + color: #fff; | |
| 3310 | 2853 | font-size: 20px; |
| 3311 | 2854 | } |
| 3312 | 2855 | .elementor-control-media__content__upload-button { |
| 3313 | - background-color: var(--e-a-bg-active-bold); | |
| 2856 | + background-color: #d5dadf; | |
| 3314 | 2857 | } |
| 3315 | 2858 | .elementor-control-media__preview { |
| 3316 | 2859 | height: 100%; |
| 3317 | 2860 | background-size: cover; |
| @@ -3317,14 +2860,13 @@ | ||
| 3317 | 2860 | background-size: cover; |
| 3318 | 2861 | background-position: center; |
| 3319 | 2862 | } |
| 3320 | 2863 | .elementor-control-media-area { |
| 3321 | - 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)); | |
| 2864 | + 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); | |
| 2865 | + 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); | |
| 3322 | 2866 | background-size: 16px 16px; |
| 3323 | - background-position: 0 0, calc(16px / 2) calc(16px / 2); | |
| 3324 | - background-color: var(--e-a-bg-default); | |
| 3325 | - border: var(--e-a-border-bold); | |
| 3326 | - aspect-ratio: 21/9; | |
| 2867 | + background-position: 0 0, calc( 16px / 2 ) calc( 16px / 2 ); | |
| 2868 | + background-color: #f6f6f6; | |
| 3327 | 2869 | } |
| 3328 | 2870 | .elementor-control-media-area:not(:hover) .elementor-control-media__remove { |
| 3329 | 2871 | display: none; |
| 3330 | 2872 | } |
| @@ -3329,17 +2871,17 @@ | ||
| 3329 | 2871 | display: none; |
| 3330 | 2872 | } |
| 3331 | 2873 | .elementor-control-media-area .eicon-video-camera { |
| 3332 | 2874 | position: absolute; |
| 3333 | - inset-block-start: 50%; | |
| 3334 | - inset-inline-start: 50%; | |
| 3335 | - transform: translate(calc(-50% * var(--direction-multiplier)), -50%); | |
| 2875 | + top: 50%; | |
| 2876 | + left: 50%; | |
| 2877 | + -webkit-transform: translate(-50%, -50%); | |
| 2878 | + -ms-transform: translate(-50%, -50%); | |
| 2879 | + transform: translate(-50%, -50%); | |
| 3336 | 2880 | color: rgba(255, 255, 255, 0.7); |
| 3337 | 2881 | font-size: 21px; |
| 3338 | 2882 | } |
| 3339 | 2883 | .elementor-control-media .elementor-control-media__content { |
| 3340 | - aspect-ratio: 21/9; | |
| 3341 | - position: relative; | |
| 3342 | 2884 | cursor: pointer; |
| 3343 | 2885 | overflow: hidden; |
| 3344 | 2886 | } |
| 3345 | 2887 | .elementor-control-media .elementor-control-media__content:hover:after { |
| @@ -3344,141 +2886,171 @@ | ||
| 3344 | 2886 | } |
| 3345 | 2887 | .elementor-control-media .elementor-control-media__content:hover:after { |
| 3346 | 2888 | content: ""; |
| 3347 | 2889 | position: absolute; |
| 3348 | - inset: 0; | |
| 2890 | + top: 0; | |
| 2891 | + bottom: 0; | |
| 2892 | + left: 0; | |
| 2893 | + right: 0; | |
| 3349 | 2894 | background-color: rgba(0, 0, 0, 0.2); |
| 3350 | 2895 | pointer-events: none; |
| 3351 | 2896 | } |
| 3352 | 2897 | .elementor-control-media .elementor-control-media__content:not(:hover) .elementor-control-media__tools { |
| 3353 | - inset-block-end: -30px; | |
| 2898 | + bottom: -30px; | |
| 3354 | 2899 | } |
| 3355 | 2900 | .elementor-control-media__content { |
| 2901 | + -webkit-transition: all 0.2s ease-in-out; | |
| 2902 | + -o-transition: all 0.2s ease-in-out; | |
| 3356 | 2903 | transition: all 0.2s ease-in-out; |
| 3357 | 2904 | } |
| 3358 | 2905 | .elementor-control-media__tools { |
| 3359 | 2906 | position: absolute; |
| 3360 | - inset-block-end: 0; | |
| 3361 | - inset-inline: 0; | |
| 2907 | + bottom: 0; | |
| 2908 | + left: 0; | |
| 2909 | + right: 0; | |
| 3362 | 2910 | height: 27px; |
| 2911 | + -webkit-transition: all 0.2s ease-in-out; | |
| 2912 | + -o-transition: all 0.2s ease-in-out; | |
| 3363 | 2913 | transition: all 0.2s ease-in-out; |
| 3364 | 2914 | } |
| 3365 | 2915 | .elementor-control-media__tools > *:not(:first-child) { |
| 3366 | - margin-inline-start: 1px; | |
| 2916 | + margin-right: 1px; | |
| 3367 | 2917 | } |
| 3368 | 2918 | .elementor-control-media__tool { |
| 2919 | + display: -webkit-box; | |
| 2920 | + display: -ms-flexbox; | |
| 3369 | 2921 | display: flex; |
| 3370 | - align-items: center; | |
| 3371 | - justify-content: center; | |
| 3372 | - flex-grow: 1; | |
| 3373 | - color: var(--e-a-color-white); | |
| 3374 | - background-color: rgba(0, 0, 0, 0.9); | |
| 2922 | + -webkit-box-align: center; | |
| 2923 | + -ms-flex-align: center; | |
| 2924 | + align-items: center; | |
| 2925 | + -webkit-box-pack: center; | |
| 2926 | + -ms-flex-pack: center; | |
| 2927 | + justify-content: center; | |
| 2928 | + -webkit-box-flex: 1; | |
| 2929 | + -ms-flex-positive: 1; | |
| 2930 | + flex-grow: 1; | |
| 2931 | + color: #fff; | |
| 2932 | + background-color: rgba(109, 120, 130, 0.85); | |
| 3375 | 2933 | font-size: 11px; |
| 3376 | - transition: var(--e-a-transition-hover); | |
| 2934 | + -webkit-transition: background 0.3s; | |
| 2935 | + -o-transition: background 0.3s; | |
| 2936 | + transition: background 0.3s; | |
| 3377 | 2937 | } |
| 3378 | 2938 | .elementor-control-media__tool:hover { |
| 3379 | - background-color: rgba(0, 0, 0, 0.8); | |
| 2939 | + background-color: rgba(109, 120, 130, 0.95); | |
| 3380 | 2940 | } |
| 3381 | 2941 | .elementor-control-media__remove { |
| 2942 | + display: -webkit-box; | |
| 2943 | + display: -ms-flexbox; | |
| 3382 | 2944 | display: flex; |
| 3383 | - align-items: center; | |
| 3384 | - justify-content: center; | |
| 2945 | + -webkit-box-align: center; | |
| 2946 | + -ms-flex-align: center; | |
| 2947 | + align-items: center; | |
| 2948 | + -webkit-box-pack: center; | |
| 2949 | + -ms-flex-pack: center; | |
| 2950 | + justify-content: center; | |
| 2951 | + -webkit-transition: all 0.3s ease-in-out; | |
| 2952 | + -o-transition: all 0.3s ease-in-out; | |
| 3385 | 2953 | transition: all 0.3s ease-in-out; |
| 3386 | 2954 | } |
| 3387 | 2955 | .elementor-control-media__content__remove { |
| 3388 | 2956 | position: absolute; |
| 3389 | 2957 | z-index: 1; |
| 3390 | - inset-block-start: 10px; | |
| 3391 | - inset-inline-end: 10px; | |
| 2958 | + top: 10px; | |
| 2959 | + left: 10px; | |
| 3392 | 2960 | width: 20px; |
| 3393 | 2961 | height: 20px; |
| 3394 | 2962 | font-size: 11px; |
| 3395 | - color: var(--e-a-color-white); | |
| 3396 | - background-color: rgba(0, 0, 0, 0.5); | |
| 3397 | - border-radius: var(--e-border-radius); | |
| 3398 | - box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.2); | |
| 3399 | - transition: var(--e-a-transition-hover); | |
| 2963 | + color: #a4afb7; | |
| 2964 | + background-color: rgba(255, 255, 255, 0.9); | |
| 2965 | + border-radius: 3px; | |
| 2966 | + -webkit-box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.1); | |
| 2967 | + box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.1); | |
| 3400 | 2968 | } |
| 3401 | 2969 | .elementor-control-media__content__remove:hover { |
| 3402 | - background-color: rgba(0, 0, 0, 0.6); | |
| 2970 | + background-color: white; | |
| 2971 | + -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4); | |
| 2972 | + box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4); | |
| 3403 | 2973 | } |
| 3404 | -.elementor-control-media.e-media-empty .elementor-control-file-area { | |
| 2974 | +.elementor-control-media.elementor-media-empty .elementor-control-file-area { | |
| 3405 | 2975 | display: none; |
| 3406 | 2976 | } |
| 3407 | -.elementor-control-media__warnings:empty { | |
| 3408 | - display: none; | |
| 3409 | -} | |
| 3410 | -.elementor-control-media__warnings:not(:empty) { | |
| 3411 | - margin-block-start: 10px; | |
| 3412 | -} | |
| 3413 | 2977 | .elementor-control-media__file { |
| 2978 | + display: -webkit-box; | |
| 2979 | + display: -ms-flexbox; | |
| 3414 | 2980 | display: flex; |
| 3415 | - justify-content: space-between; | |
| 3416 | - align-items: center; | |
| 2981 | + -webkit-box-pack: justify; | |
| 2982 | + -ms-flex-pack: justify; | |
| 2983 | + justify-content: space-between; | |
| 2984 | + -webkit-box-align: center; | |
| 2985 | + -ms-flex-align: center; | |
| 2986 | + align-items: center; | |
| 3417 | 2987 | width: 100%; |
| 3418 | - margin-block-start: 10px; | |
| 3419 | - border: var(--e-a-border); | |
| 2988 | + margin-top: 10px; | |
| 2989 | + border: 1px solid #d5dadf; | |
| 3420 | 2990 | } |
| 3421 | 2991 | .elementor-control-media__file__content { |
| 3422 | - padding-inline-start: 5px; | |
| 2992 | + padding-right: 5px; | |
| 3423 | 2993 | font-size: 12px; |
| 3424 | 2994 | } |
| 3425 | 2995 | .elementor-control-media__file__content__label { |
| 3426 | - color: #9DA5AE; | |
| 2996 | + color: #a4afb7; | |
| 3427 | 2997 | } |
| 3428 | 2998 | .elementor-control-media__file__content__info { |
| 2999 | + display: -webkit-box; | |
| 3000 | + display: -ms-flexbox; | |
| 3429 | 3001 | display: flex; |
| 3430 | - align-items: center; | |
| 3002 | + -webkit-box-align: center; | |
| 3003 | + -ms-flex-align: center; | |
| 3004 | + align-items: center; | |
| 3431 | 3005 | font-weight: 500; |
| 3432 | 3006 | } |
| 3433 | 3007 | .elementor-control-media__file__content__info__icon { |
| 3434 | - margin-inline-end: 5px; | |
| 3008 | + margin-left: 5px; | |
| 3435 | 3009 | } |
| 3436 | 3010 | .elementor-control-media__file__controls { |
| 3011 | + display: -webkit-box; | |
| 3012 | + display: -ms-flexbox; | |
| 3437 | 3013 | display: flex; |
| 3438 | - border-inline-start: var(--e-a-border); | |
| 3014 | + border-right: 1px solid #d5dadf; | |
| 3439 | 3015 | } |
| 3440 | 3016 | .elementor-control-media__file__controls__upload-button, .elementor-control-media__file__controls__remove { |
| 3441 | 3017 | width: 27px; |
| 3442 | 3018 | height: 27px; |
| 3443 | 3019 | cursor: pointer; |
| 3444 | - align-items: center; | |
| 3020 | + -webkit-box-align: center; | |
| 3021 | + -ms-flex-align: center; | |
| 3022 | + align-items: center; | |
| 3445 | 3023 | } |
| 3446 | 3024 | .elementor-control-media__file__controls__upload-button { |
| 3025 | + display: -webkit-box; | |
| 3026 | + display: -ms-flexbox; | |
| 3447 | 3027 | display: flex; |
| 3448 | - justify-content: center; | |
| 3028 | + -webkit-box-pack: center; | |
| 3029 | + -ms-flex-pack: center; | |
| 3030 | + justify-content: center; | |
| 3449 | 3031 | } |
| 3450 | 3032 | .elementor-control-media__file__controls__remove { |
| 3451 | - border-inline-end: var(--e-a-border); | |
| 3033 | + border-left: 1px solid #d5dadf; | |
| 3452 | 3034 | } |
| 3453 | -.elementor-control-media:not(.e-media-empty) .elementor-control-media__file__content__label { | |
| 3035 | +.elementor-control-media:not(.elementor-media-empty) .elementor-control-media__file__content__label { | |
| 3454 | 3036 | display: none; |
| 3455 | 3037 | } |
| 3456 | -.elementor-control-media.e-media-empty .elementor-control-media__file__content__info { | |
| 3038 | +.elementor-control-media.elementor-media-empty .elementor-control-media__file__content__info { | |
| 3457 | 3039 | display: none; |
| 3458 | 3040 | } |
| 3459 | -.elementor-control-media.e-media-empty .elementor-control-media__file__controls__remove { | |
| 3041 | +.elementor-control-media.elementor-media-empty .elementor-control-media__file__controls__remove { | |
| 3460 | 3042 | display: none; |
| 3461 | 3043 | } |
| 3462 | 3044 | .elementor-control-media .elementor-control-dynamic-switcher { |
| 3463 | 3045 | border: none; |
| 3464 | 3046 | border-radius: 0; |
| 3465 | - background-color: rgba(0, 0, 0, 0.9); | |
| 3466 | - color: var(--e-a-color-white); | |
| 3047 | + background-color: rgba(109, 120, 130, 0.85); | |
| 3048 | + color: #fff; | |
| 3467 | 3049 | } |
| 3468 | 3050 | .elementor-control-media .elementor-control-dynamic-switcher:hover { |
| 3469 | - background-color: rgba(0, 0, 0, 0.8); | |
| 3470 | - color: var(--e-a-color-white); | |
| 3051 | + background-color: rgba(109, 120, 130, 0.95); | |
| 3471 | 3052 | } |
| 3472 | -.elementor-control-media .e-control-image-size { | |
| 3473 | - display: flex; | |
| 3474 | - flex-direction: column; | |
| 3475 | - width: 100%; | |
| 3476 | - padding-block-start: 20px; | |
| 3477 | -} | |
| 3478 | -.elementor-control-media .e-control-image-size .elementor-control-input-wrapper { | |
| 3479 | - margin-inline-start: auto; | |
| 3480 | -} | |
| 3481 | 3053 | |
| 3482 | 3054 | .elementor-control-type-media.elementor-control-dynamic-value .elementor-control-input-wrapper { |
| 3483 | 3055 | border: none; |
| 3484 | 3056 | } |
| @@ -3483,81 +3055,60 @@ | ||
| 3483 | 3055 | border: none; |
| 3484 | 3056 | } |
| 3485 | 3057 | |
| 3486 | 3058 | .elementor-control:not(.elementor-control-type-icons) .elementor-control-media__preview { |
| 3487 | - background-color: var(--e-a-bg-active-bold); | |
| 3059 | + background-color: #d5dadf; | |
| 3488 | 3060 | } |
| 3489 | 3061 | |
| 3490 | -.elementor-control-notice { | |
| 3491 | - display: flex; | |
| 3492 | - justify-content: flex-start; | |
| 3493 | - align-items: flex-start; | |
| 3494 | - gap: 8px; | |
| 3495 | - padding: 16px; | |
| 3496 | - border-radius: 3px; | |
| 3497 | - border: 1px solid var(--notice-control-color, var(--e-a-color-txt)); | |
| 3498 | - color: var(--e-a-color-txt); | |
| 3499 | - font-size: 12px; | |
| 3500 | - font-weight: 400; | |
| 3501 | - line-height: 1.5; | |
| 3502 | - text-align: start; | |
| 3503 | - margin-block-start: 10px; | |
| 3062 | +.elementor-control-type-number.elementor-control-dynamic input { | |
| 3063 | + border-radius: 0 3px 3px 0; | |
| 3064 | + border-left: none; | |
| 3504 | 3065 | } |
| 3505 | -.elementor-control-notice-type-info { | |
| 3506 | - --notice-control-color: var(--e-a-color-info); | |
| 3066 | +.elementor-control-type-number.elementor-control-dynamic .elementor-control-dynamic-switcher { | |
| 3067 | + border-radius: 3px 0 0 3px; | |
| 3507 | 3068 | } |
| 3508 | -.elementor-control-notice-type-success { | |
| 3509 | - --notice-control-color: var(--e-a-color-success); | |
| 3510 | -} | |
| 3511 | -.elementor-control-notice-type-warning { | |
| 3512 | - --notice-control-color: var(--e-a-color-warning); | |
| 3513 | -} | |
| 3514 | -.elementor-control-notice-type-danger { | |
| 3515 | - --notice-control-color: var(--e-a-color-danger); | |
| 3516 | -} | |
| 3517 | -.elementor-control-notice-icon { | |
| 3518 | - flex-basis: 18px; | |
| 3519 | - color: var(--notice-control-color); | |
| 3520 | -} | |
| 3521 | -.elementor-control-notice-main { | |
| 3069 | + | |
| 3070 | +.elementor-control-type-order .elementor-control-oreder-wrapper { | |
| 3071 | + display: -webkit-box; | |
| 3072 | + display: -ms-flexbox; | |
| 3522 | 3073 | display: flex; |
| 3523 | - flex-direction: column; | |
| 3524 | - justify-content: flex-start; | |
| 3525 | - align-items: flex-start; | |
| 3526 | - gap: 6px; | |
| 3527 | - flex: 1; | |
| 3528 | 3074 | } |
| 3529 | -.elementor-control-notice-main-heading { | |
| 3530 | - font-weight: 700; | |
| 3531 | - font-style: italic; | |
| 3075 | +.elementor-control-type-order input { | |
| 3076 | + display: none; | |
| 3532 | 3077 | } |
| 3533 | -.elementor-control-notice-main-content { | |
| 3534 | - font-style: italic; | |
| 3535 | - line-height: 1.5; | |
| 3078 | +.elementor-control-type-order input:checked + .elementor-control-order-label { | |
| 3079 | + -webkit-transform: scale(1, -1); | |
| 3080 | + -ms-transform: scale(1, -1); | |
| 3081 | + transform: scale(1, -1); | |
| 3536 | 3082 | } |
| 3537 | -.elementor-control-notice-main-actions { | |
| 3538 | - display: flex; | |
| 3539 | - gap: 10px; | |
| 3540 | - padding-block-start: 8px; | |
| 3083 | +.elementor-control-type-order select { | |
| 3084 | + border-radius: 3px 0 0 3px; | |
| 3541 | 3085 | } |
| 3542 | -.elementor-control-notice-main a { | |
| 3543 | - color: inherit; | |
| 3544 | - font-weight: 700; | |
| 3545 | - cursor: pointer; | |
| 3086 | +.elementor-control-type-order select:not(:focus) ~ .elementor-control-order-label { | |
| 3087 | + border-color: #d5dadf; | |
| 3546 | 3088 | } |
| 3547 | -.elementor-control-notice-main a:hover, .elementor-control-notice-main a:focus { | |
| 3548 | - color: inherit; | |
| 3089 | +.elementor-control-type-order select:focus ~ .elementor-control-order-label { | |
| 3090 | + border-color: #a4afb7; | |
| 3549 | 3091 | } |
| 3550 | -.elementor-control-notice-dismiss { | |
| 3551 | - -webkit-appearance: none; | |
| 3552 | - -moz-appearance: none; | |
| 3553 | - appearance: none; | |
| 3554 | - background-color: transparent; | |
| 3555 | - border: 0; | |
| 3092 | +.elementor-control-type-order .elementor-control-order-label { | |
| 3093 | + position: relative; | |
| 3556 | 3094 | padding: 0; |
| 3557 | - margin: 0; | |
| 3095 | + width: 40px; | |
| 3096 | + border: 1px solid; | |
| 3097 | + font-size: 10px; | |
| 3098 | + border-radius: 0 3px 3px 0; | |
| 3099 | + margin-left: -3px; | |
| 3100 | + background-color: #fff; | |
| 3558 | 3101 | cursor: pointer; |
| 3559 | 3102 | } |
| 3103 | +.elementor-control-type-order .elementor-control-order-label i { | |
| 3104 | + position: absolute; | |
| 3105 | + top: 50%; | |
| 3106 | + left: 50%; | |
| 3107 | + -webkit-transform: translate(-50%, -50%); | |
| 3108 | + -ms-transform: translate(-50%, -50%); | |
| 3109 | + transform: translate(-50%, -50%); | |
| 3110 | +} | |
| 3560 | 3111 | |
| 3561 | 3112 | .elementor-control-type-popover_toggle input { |
| 3562 | 3113 | display: none; |
| 3563 | 3114 | } |
| @@ -3564,107 +3115,104 @@ | ||
| 3564 | 3115 | .elementor-control-type-popover_toggle label { |
| 3565 | 3116 | cursor: pointer; |
| 3566 | 3117 | } |
| 3567 | 3118 | .elementor-control-type-popover_toggle .elementor-control-input-wrapper { |
| 3568 | - display: flex; | |
| 3569 | - flex-direction: row-reverse; | |
| 3570 | - align-items: center; | |
| 3119 | + direction: ltr; | |
| 3571 | 3120 | } |
| 3572 | 3121 | .elementor-control-type-popover_toggle .elementor-control-popover-toggle-toggle:checked + .elementor-control-popover-toggle-toggle-label { |
| 3573 | - color: var(--e-a-color-txt-active); | |
| 3574 | - background-color: var(--e-a-bg-active-bold); | |
| 3122 | + color: #71d7f7; | |
| 3575 | 3123 | } |
| 3576 | 3124 | .elementor-control-type-popover_toggle .elementor-control-popover-toggle-toggle:not(:checked) ~ .elementor-control-popover-toggle-reset-label { |
| 3577 | 3125 | display: none; |
| 3578 | 3126 | } |
| 3127 | +.elementor-control-type-popover_toggle .elementor-control-popover-toggle-reset-label { | |
| 3128 | + color: #c2cbd2; | |
| 3129 | + margin-left: 5px; | |
| 3130 | +} | |
| 3579 | 3131 | .elementor-control-type-popover_toggle .elementor-control-popover-toggle-toggle-label { |
| 3580 | 3132 | height: 27px; |
| 3133 | + display: -webkit-inline-box; | |
| 3134 | + display: -ms-inline-flexbox; | |
| 3581 | 3135 | display: inline-flex; |
| 3582 | - align-items: center; | |
| 3583 | - justify-content: center; | |
| 3584 | - border-radius: var(--e-a-border-radius); | |
| 3585 | - border: var(--e-a-border-bold); | |
| 3586 | - transition: var(--e-a-transition-hover); | |
| 3136 | + -webkit-box-align: center; | |
| 3137 | + -ms-flex-align: center; | |
| 3138 | + align-items: center; | |
| 3139 | + -webkit-box-pack: center; | |
| 3140 | + -ms-flex-pack: center; | |
| 3141 | + justify-content: center; | |
| 3142 | + border-radius: 3px; | |
| 3143 | + border: 1px solid #d5dadf; | |
| 3587 | 3144 | } |
| 3588 | -.elementor-control-type-popover_toggle .elementor-control-popover-toggle-toggle-label:hover { | |
| 3589 | - background-color: var(--e-a-bg-hover); | |
| 3590 | -} | |
| 3591 | -.elementor-control-type-popover_toggle .elementor-control-popover-toggle-reset-label { | |
| 3592 | - color: var(--e-a-color-txt-muted); | |
| 3593 | - margin-inline-end: 5px; | |
| 3594 | -} | |
| 3595 | -.elementor-control-type-popover_toggle .elementor-control-popover-toggle-reset-label:hover { | |
| 3596 | - color: var(--e-a-color-txt); | |
| 3597 | -} | |
| 3598 | 3145 | |
| 3599 | 3146 | .elementor-controls-popover.e-controls-popover--typography { |
| 3600 | - padding-block-start: 0; | |
| 3147 | + padding-top: 0; | |
| 3601 | 3148 | } |
| 3602 | 3149 | |
| 3603 | 3150 | .e-control-global .elementor-control-popover-toggle-toggle-label { |
| 3604 | - border-start-start-radius: 0; | |
| 3605 | - border-start-end-radius: var(--e-a-border-radius); | |
| 3606 | - border-end-start-radius: 0; | |
| 3607 | - border-end-end-radius: var(--e-a-border-radius); | |
| 3608 | - flex-shrink: 0; | |
| 3151 | + border-radius: 3px 0 0 3px; | |
| 3152 | + -ms-flex-negative: 0; | |
| 3153 | + flex-shrink: 0; | |
| 3609 | 3154 | } |
| 3610 | 3155 | |
| 3611 | 3156 | .elementor-control-type-repeater .elementor-control:not(.elementor-control-type-tab) { |
| 3612 | - padding-inline-start: 10px; | |
| 3613 | - padding-inline-end: 10px; | |
| 3614 | - padding-block-end: 10px; | |
| 3157 | + padding-right: 10px; | |
| 3158 | + padding-left: 10px; | |
| 3159 | + padding-bottom: 10px; | |
| 3615 | 3160 | } |
| 3616 | 3161 | .elementor-control-type-repeater.elementor-repeater-has-minimum-rows .elementor-repeater-tool-remove { |
| 3617 | 3162 | display: none; |
| 3618 | 3163 | } |
| 3619 | -.elementor-control-type-repeater.elementor-repeater-has-maximum-rows .elementor-repeater-tool-duplicate, | |
| 3620 | -.elementor-control-type-repeater.elementor-repeater-has-maximum-rows .elementor-repeater-add { | |
| 3621 | - display: none; | |
| 3622 | -} | |
| 3623 | 3164 | .elementor-control-type-repeater .elementor-repeater-fields { |
| 3624 | 3165 | margin: 10px 0; |
| 3625 | 3166 | } |
| 3626 | 3167 | .elementor-control-type-repeater .elementor-repeater-row-controls { |
| 3627 | - border: var(--e-a-border-bold); | |
| 3628 | - border-block-start-width: 0; | |
| 3629 | - padding-block-start: 15px; | |
| 3168 | + border: 1px solid #d5dadf; | |
| 3169 | + border-top-width: 0; | |
| 3170 | + padding-top: 15px; | |
| 3630 | 3171 | } |
| 3631 | 3172 | .elementor-control-type-repeater .elementor-repeater-row-controls:not(.editable) { |
| 3632 | 3173 | display: none; |
| 3633 | 3174 | } |
| 3634 | 3175 | .elementor-control-type-repeater .elementor-repeater-row-tools { |
| 3635 | - display: flex; | |
| 3636 | - align-items: center; | |
| 3176 | + display: table; | |
| 3177 | + table-layout: fixed; | |
| 3637 | 3178 | width: 100%; |
| 3638 | - border: 1px solid var(--e-a-border-color-bold); | |
| 3639 | - transition: var(--e-a-transition-hover); | |
| 3179 | + color: #556068; | |
| 3180 | + background-color: #d5dadf; | |
| 3181 | + height: 40px; | |
| 3182 | + border-spacing: 1px; | |
| 3183 | + -webkit-transition: all 0.5s; | |
| 3184 | + -o-transition: all 0.5s; | |
| 3185 | + transition: all 0.5s; | |
| 3640 | 3186 | } |
| 3641 | -.elementor-control-type-repeater .elementor-repeater-row-tools > button { | |
| 3642 | - display: flex; | |
| 3643 | - align-items: center; | |
| 3644 | - justify-content: center; | |
| 3645 | - height: 40px; | |
| 3646 | - border: none; | |
| 3647 | - background-color: transparent; | |
| 3648 | - color: currentColor; | |
| 3187 | +.elementor-control-type-repeater .elementor-repeater-row-tools:hover { | |
| 3188 | + background-color: #a4afb7; | |
| 3189 | +} | |
| 3190 | +.elementor-control-type-repeater .elementor-repeater-row-tools > div { | |
| 3191 | + display: table-cell; | |
| 3192 | + text-align: center; | |
| 3193 | + vertical-align: middle; | |
| 3649 | 3194 | cursor: pointer; |
| 3650 | 3195 | } |
| 3651 | -.elementor-control-type-repeater .elementor-repeater-row-tools > button:hover, .elementor-control-type-repeater .elementor-repeater-row-tools > button:focus { | |
| 3652 | - background-color: var(--e-a-bg-hover); | |
| 3196 | +.elementor-control-type-repeater .elementor-repeater-row-tools > div:not(.elementor-repeater-row-handle-sortable) { | |
| 3197 | + background-color: #fff; | |
| 3653 | 3198 | } |
| 3199 | +.elementor-control-type-repeater .elementor-repeater-row-tools > div:hover { | |
| 3200 | + opacity: 0.95; | |
| 3201 | +} | |
| 3654 | 3202 | .elementor-control-type-repeater .elementor-repeater-row-tools .elementor-repeater-row-item-title { |
| 3655 | - flex: 1; | |
| 3656 | - justify-content: flex-start; | |
| 3203 | + text-align: right; | |
| 3657 | 3204 | padding: 0 10px; |
| 3658 | - font-size: var(--control-title-size); | |
| 3205 | + font-size: 12px; | |
| 3659 | 3206 | white-space: nowrap; |
| 3660 | - text-overflow: ellipsis; | |
| 3207 | + -o-text-overflow: ellipsis; | |
| 3208 | + text-overflow: ellipsis; | |
| 3661 | 3209 | overflow: hidden; |
| 3662 | 3210 | } |
| 3663 | 3211 | .elementor-control-type-repeater .elementor-repeater-row-tools .elementor-repeater-row-item-title .eicon, |
| 3664 | 3212 | .elementor-control-type-repeater .elementor-repeater-row-tools .elementor-repeater-row-item-title i, |
| 3665 | 3213 | .elementor-control-type-repeater .elementor-repeater-row-tools .elementor-repeater-row-item-title svg { |
| 3666 | - margin-inline-end: 5px; | |
| 3214 | + margin-left: 5px; | |
| 3667 | 3215 | } |
| 3668 | 3216 | .elementor-control-type-repeater .elementor-repeater-row-tools .elementor-repeater-row-item-title img[src$=svg] { |
| 3669 | 3217 | width: 1em; |
| 3670 | 3218 | } |
| @@ -3669,90 +3217,41 @@ | ||
| 3669 | 3217 | width: 1em; |
| 3670 | 3218 | } |
| 3671 | 3219 | .elementor-control-type-repeater .elementor-repeater-row-tools .elementor-repeater-row-tool { |
| 3672 | 3220 | width: 40px; |
| 3673 | - border-inline-start: 1px solid var(--e-a-border-color-bold); | |
| 3674 | 3221 | } |
| 3675 | 3222 | .elementor-control-type-repeater .elementor-repeater-row-tools .elementor-repeater-row-handle-sortable { |
| 3223 | + cursor: move; | |
| 3676 | 3224 | width: 10px; |
| 3677 | - border-inline-end: 1px solid var(--e-a-border-color-bold); | |
| 3678 | - cursor: move; | |
| 3225 | + color: #fff; | |
| 3679 | 3226 | } |
| 3680 | 3227 | .elementor-control-type-repeater .elementor-button-wrapper { |
| 3681 | 3228 | text-align: center; |
| 3682 | - padding-block-start: 5px; | |
| 3229 | + padding-top: 5px; | |
| 3683 | 3230 | } |
| 3684 | 3231 | |
| 3685 | -#elementor-controls, | |
| 3686 | -#elementor-panel-page-settings-controls, | |
| 3687 | -#elementor-panel-editorPreferences-settings-controls { | |
| 3688 | - padding-block-start: 15px; | |
| 3689 | -} | |
| 3690 | - | |
| 3691 | 3232 | .elementor-control-type-section { |
| 3233 | + margin-top: 10px; | |
| 3692 | 3234 | padding: 0; |
| 3693 | 3235 | } |
| 3694 | -.elementor-control-type-section.e-open { | |
| 3695 | - padding-block-end: 10px; | |
| 3236 | +.elementor-control-type-section.elementor-open { | |
| 3237 | + padding-bottom: 15px; | |
| 3696 | 3238 | } |
| 3697 | 3239 | .elementor-control-type-section + .elementor-control:not(.elementor-control-type-section):before { |
| 3698 | 3240 | display: none; |
| 3699 | 3241 | } |
| 3700 | -.elementor-control-type-section:not(:first-child):not(.elementor-control-type-section + .elementor-control-type-section) { | |
| 3701 | - margin-block-start: 25px; | |
| 3702 | -} | |
| 3703 | 3242 | |
| 3704 | -.elementor-control-type-select .elementor-control-input-wrapper { | |
| 3705 | - position: relative; | |
| 3706 | -} | |
| 3707 | -.elementor-control-type-select .elementor-control-input-wrapper select { | |
| 3708 | - -webkit-appearance: none; | |
| 3709 | - -moz-appearance: none; | |
| 3710 | - appearance: none; | |
| 3711 | - font-size: var(--control-title-size); | |
| 3712 | - font-family: inherit; | |
| 3713 | - font-weight: inherit; | |
| 3714 | - font-style: inherit; | |
| 3715 | - text-transform: inherit; | |
| 3716 | - letter-spacing: inherit; | |
| 3717 | - line-height: inherit; | |
| 3718 | - flex-basis: 100%; | |
| 3719 | - padding-inline-start: 5px; | |
| 3720 | - padding-inline-end: 20px; | |
| 3721 | - cursor: pointer; | |
| 3722 | -} | |
| 3723 | -.elementor-control-type-select .elementor-control-input-wrapper select.e-select-placeholder { | |
| 3724 | - color: var(--e-a-color-txt-disabled); | |
| 3725 | -} | |
| 3726 | -.elementor-control-type-select .elementor-control-input-wrapper option.e-option-placeholder { | |
| 3727 | - display: none; | |
| 3728 | -} | |
| 3729 | -.elementor-control-type-select .elementor-control-input-wrapper:after { | |
| 3730 | - font-family: eicons; | |
| 3731 | - content: "\e8ad"; | |
| 3732 | - font-size: 12px; | |
| 3733 | - position: absolute; | |
| 3734 | - inset-block-start: 50%; | |
| 3735 | - inset-inline-end: 5px; | |
| 3736 | - transform: translateY(-50%); | |
| 3737 | - pointer-events: none; | |
| 3738 | -} | |
| 3739 | -.elementor-control-type-select .elementor-control-field.elementor-control-field-select-small .elementor-control-input-wrapper { | |
| 3740 | - max-width: 80px; | |
| 3741 | -} | |
| 3742 | - | |
| 3743 | 3243 | .elementor-shadow-box .elementor-shadow-slider { |
| 3744 | - margin-block-start: 10px; | |
| 3244 | + margin-top: 10px; | |
| 3745 | 3245 | } |
| 3746 | 3246 | .elementor-shadow-box .elementor-color-picker-wrapper .elementor-control-title { |
| 3747 | - flex-grow: 1; | |
| 3247 | + -webkit-box-flex: 1; | |
| 3248 | + -ms-flex-positive: 1; | |
| 3249 | + flex-grow: 1; | |
| 3748 | 3250 | } |
| 3749 | 3251 | |
| 3750 | 3252 | .elementor-control-type-slider.elementor-control-dynamic input { |
| 3751 | - border-start-start-radius: var(--e-a-border-radius); | |
| 3752 | - border-start-end-radius: 0; | |
| 3753 | - border-end-start-radius: var(--e-a-border-radius); | |
| 3754 | - border-end-end-radius: 0; | |
| 3253 | + border-radius: 0 3px 3px 0; | |
| 3755 | 3254 | } |
| 3756 | 3255 | .elementor-control-type-slider .elementor-control-unit-2 { |
| 3757 | 3256 | width: 21%; |
| 3758 | 3257 | } |
| @@ -3759,64 +3258,65 @@ | ||
| 3759 | 3258 | .elementor-control-type-slider.elementor-control-type-slider--multiple .elementor-control-input-wrapper { |
| 3760 | 3259 | display: block; |
| 3761 | 3260 | } |
| 3762 | 3261 | .elementor-control-type-slider--multiple { |
| 3763 | - padding-block-end: 40px; | |
| 3262 | + padding-bottom: 40px; | |
| 3764 | 3263 | } |
| 3765 | 3264 | .elementor-control-type-slider--multiple .elementor-slider { |
| 3766 | - margin-block-start: 12px; | |
| 3265 | + margin-top: 12px; | |
| 3767 | 3266 | width: 98%; |
| 3768 | 3267 | } |
| 3769 | 3268 | .elementor-control-type-slider--handles-range .elementor-slider .noUi-handle { |
| 3770 | 3269 | border-radius: 0; |
| 3771 | 3270 | width: 10px; |
| 3772 | - transform: translateY(calc(50% - 14px)) translateX(calc(4px * var(--direction-multiplier))); | |
| 3271 | + -webkit-transform: translateY(calc(50% - 14px)) translateX(-4px); | |
| 3272 | + -ms-transform: translateY(calc(50% - 14px)) translateX(-4px); | |
| 3273 | + transform: translateY(calc(50% - 14px)) translateX(-4px); | |
| 3773 | 3274 | } |
| 3774 | 3275 | .elementor-control-type-slider--handles-range .elementor-slider .noUi-handle:after { |
| 3775 | 3276 | content: ""; |
| 3776 | 3277 | position: absolute; |
| 3777 | - inset-block-start: 2px; | |
| 3278 | + top: 2px; | |
| 3778 | 3279 | height: 12px; |
| 3779 | 3280 | width: 11px; |
| 3780 | - transform: rotate(45deg); | |
| 3781 | - background-color: var(--e-a-color-white); | |
| 3281 | + -webkit-transform: rotate(45deg); | |
| 3282 | + -ms-transform: rotate(45deg); | |
| 3283 | + transform: rotate(45deg); | |
| 3284 | + background-color: #fff; | |
| 3782 | 3285 | border-radius: 3px; |
| 3783 | 3286 | } |
| 3784 | 3287 | .elementor-control-type-slider--handles-range .elementor-slider .noUi-handle-lower:after { |
| 3785 | 3288 | left: 5px; |
| 3786 | - box-shadow: 2px -2px 3px 0px rgba(0, 0, 0, 0.1); | |
| 3289 | + -webkit-box-shadow: 2px -2px 3px 0px rgba(0, 0, 0, 0.1); | |
| 3290 | + box-shadow: 2px -2px 3px 0px rgba(0, 0, 0, 0.1); | |
| 3787 | 3291 | } |
| 3788 | 3292 | .elementor-control-type-slider--handles-range .elementor-slider .noUi-handle-upper:after { |
| 3789 | 3293 | right: 5px; |
| 3790 | - box-shadow: -2px 2px 3px 0px rgba(0, 0, 0, 0.1); | |
| 3294 | + -webkit-box-shadow: -2px 2px 3px 0px rgba(0, 0, 0, 0.1); | |
| 3295 | + box-shadow: -2px 2px 3px 0px rgba(0, 0, 0, 0.1); | |
| 3791 | 3296 | } |
| 3792 | 3297 | .elementor-control-type-slider .elementor-control-dynamic-switcher { |
| 3793 | - border-inline-start-width: 0; | |
| 3794 | - border-start-start-radius: 0; | |
| 3795 | - border-start-end-radius: var(--e-a-border-radius); | |
| 3796 | - border-end-start-radius: 0; | |
| 3797 | - border-end-end-radius: var(--e-a-border-radius); | |
| 3298 | + border-right-width: 0; | |
| 3299 | + border-radius: 3px 0 0 3px; | |
| 3798 | 3300 | } |
| 3799 | 3301 | .elementor-control-type-slider .elementor-control-input-wrapper { |
| 3302 | + display: -webkit-box; | |
| 3303 | + display: -ms-flexbox; | |
| 3800 | 3304 | display: flex; |
| 3801 | - align-items: center; | |
| 3305 | + -webkit-box-align: center; | |
| 3306 | + -ms-flex-align: center; | |
| 3307 | + align-items: center; | |
| 3802 | 3308 | } |
| 3803 | 3309 | .elementor-control-type-slider .elementor-dynamic-cover { |
| 3804 | - margin-block-start: 10px; | |
| 3310 | + margin-top: 10px; | |
| 3805 | 3311 | } |
| 3806 | -.elementor-control-type-slider.e-units-custom .elementor-slider { | |
| 3807 | - display: none; | |
| 3808 | -} | |
| 3809 | -.elementor-control-type-slider.e-units-custom .elementor-slider-input { | |
| 3810 | - width: 100%; | |
| 3811 | - margin: 0; | |
| 3812 | - transition: none; | |
| 3813 | -} | |
| 3814 | 3312 | |
| 3815 | 3313 | .elementor-slider { |
| 3816 | - flex-grow: 1; | |
| 3314 | + -webkit-box-flex: 1; | |
| 3315 | + -ms-flex-positive: 1; | |
| 3316 | + flex-grow: 1; | |
| 3817 | 3317 | height: 4px; |
| 3818 | - background-color: var(--e-a-border-color-bold); | |
| 3318 | + background-color: #d5dadf; | |
| 3819 | 3319 | border-radius: 5px; |
| 3820 | 3320 | position: relative; |
| 3821 | 3321 | cursor: pointer; |
| 3822 | 3322 | } |
| @@ -3822,42 +3322,52 @@ | ||
| 3822 | 3322 | } |
| 3823 | 3323 | .elementor-slider-input { |
| 3824 | 3324 | width: 21%; |
| 3825 | 3325 | min-width: 54px; |
| 3826 | - margin-inline-start: 12px; | |
| 3827 | - transition: width 0.3s ease-in-out; | |
| 3326 | + margin-right: 12px; | |
| 3828 | 3327 | } |
| 3829 | 3328 | .elementor-slider__extra { |
| 3830 | 3329 | position: relative; |
| 3831 | 3330 | } |
| 3832 | 3331 | .elementor-slider__labels { |
| 3332 | + display: -webkit-box; | |
| 3333 | + display: -ms-flexbox; | |
| 3833 | 3334 | display: flex; |
| 3834 | - justify-content: space-between; | |
| 3335 | + -webkit-box-pack: justify; | |
| 3336 | + -ms-flex-pack: justify; | |
| 3337 | + justify-content: space-between; | |
| 3835 | 3338 | } |
| 3836 | 3339 | .elementor-slider__label { |
| 3837 | 3340 | font-size: 9px; |
| 3838 | - color: var(--e-a-color-txt-disabled); | |
| 3341 | + color: #c2cbd2; | |
| 3839 | 3342 | } |
| 3840 | 3343 | .elementor-slider__scales { |
| 3841 | 3344 | position: absolute; |
| 3345 | + display: -webkit-box; | |
| 3346 | + display: -ms-flexbox; | |
| 3842 | 3347 | display: flex; |
| 3843 | - justify-content: space-evenly; | |
| 3348 | + -webkit-box-pack: space-evenly; | |
| 3349 | + -ms-flex-pack: space-evenly; | |
| 3350 | + justify-content: space-evenly; | |
| 3844 | 3351 | width: 100%; |
| 3845 | - margin-block-start: 4px; | |
| 3352 | + margin-top: 4px; | |
| 3846 | 3353 | } |
| 3847 | 3354 | .elementor-slider__scale { |
| 3848 | 3355 | width: 1px; |
| 3849 | 3356 | height: 21px; |
| 3850 | - background-color: var(--e-a-border-color-focus); | |
| 3357 | + background-color: #a4afb7; | |
| 3851 | 3358 | } |
| 3852 | 3359 | .elementor-slider .noUi-handle { |
| 3853 | 3360 | height: 16px; |
| 3854 | 3361 | width: 16px; |
| 3855 | - background-color: var(--e-a-color-white); | |
| 3362 | + background-color: #fff; | |
| 3363 | + left: 0; | |
| 3364 | + -webkit-transform: translateY(calc(50% - 14px)) translateX(-8px); | |
| 3365 | + -ms-transform: translateY(calc(50% - 14px)) translateX(-8px); | |
| 3366 | + transform: translateY(calc(50% - 14px)) translateX(-8px); | |
| 3856 | 3367 | position: absolute; |
| 3857 | - inset-inline-end: 0; | |
| 3858 | - transform: translateY(calc(50% - 14px)) translateX(calc(8px * var(--direction-multiplier))); | |
| 3859 | - box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3); | |
| 3368 | + -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3); | |
| 3369 | + box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3); | |
| 3860 | 3370 | border-radius: 50%; |
| 3861 | 3371 | } |
| 3862 | 3372 | .elementor-slider .noUi-connects { |
| 3863 | 3373 | position: absolute; |
| @@ -3866,18 +3376,25 @@ | ||
| 3866 | 3376 | } |
| 3867 | 3377 | .elementor-slider .noUi-connect { |
| 3868 | 3378 | position: absolute; |
| 3869 | 3379 | z-index: 0; |
| 3870 | - inset: 0; | |
| 3380 | + top: 0; | |
| 3381 | + left: 0; | |
| 3382 | + height: 100%; | |
| 3383 | + width: 100%; | |
| 3871 | 3384 | will-change: transform; |
| 3872 | - transform-origin: 0 0; | |
| 3873 | - background-color: var(--e-a-border-color-focus); | |
| 3385 | + -webkit-transform-origin: 0 0; | |
| 3386 | + -ms-transform-origin: 0 0; | |
| 3387 | + transform-origin: 0 0; | |
| 3388 | + background-color: #a4afb7; | |
| 3874 | 3389 | } |
| 3875 | 3390 | .elementor-slider .noUi-tooltip { |
| 3876 | 3391 | position: absolute; |
| 3877 | - inset-block-start: calc(100% + 5px); | |
| 3392 | + top: calc(100% + 5px); | |
| 3878 | 3393 | left: calc(50% - 4px); |
| 3879 | - transform: translateX(-50%); | |
| 3394 | + -webkit-transform: translateX(-50%); | |
| 3395 | + -ms-transform: translateX(-50%); | |
| 3396 | + transform: translateX(-50%); | |
| 3880 | 3397 | font-size: 10px; |
| 3881 | 3398 | } |
| 3882 | 3399 | |
| 3883 | 3400 | .elementor-control-type-structure .elementor-control-field { |
| @@ -3884,9 +3401,9 @@ | ||
| 3884 | 3401 | display: initial; |
| 3885 | 3402 | } |
| 3886 | 3403 | .elementor-control-type-structure .elementor-control-structure-preset { |
| 3887 | 3404 | padding: 3px; |
| 3888 | - border-radius: var(--e-border-radius); | |
| 3405 | + border-radius: 3px; | |
| 3889 | 3406 | display: inline-block; |
| 3890 | 3407 | cursor: pointer; |
| 3891 | 3408 | height: 50px; |
| 3892 | 3409 | } |
| @@ -3893,52 +3410,55 @@ | ||
| 3893 | 3410 | .elementor-control-type-structure .elementor-control-structure-preset svg { |
| 3894 | 3411 | height: 100%; |
| 3895 | 3412 | } |
| 3896 | 3413 | .elementor-control-type-structure .elementor-control-structure-preset path { |
| 3897 | - fill: var(--e-a-border-color-bold); | |
| 3414 | + fill: #e6e9ec; | |
| 3898 | 3415 | } |
| 3899 | 3416 | .elementor-control-type-structure .elementor-control-structure-reset { |
| 3900 | 3417 | padding: 15px 20px 0; |
| 3901 | 3418 | font-size: 11px; |
| 3902 | 3419 | cursor: pointer; |
| 3903 | - color: var(--e-a-color-txt-muted); | |
| 3904 | - border-block-start: var(--e-a-border); | |
| 3420 | + color: #a4afb7; | |
| 3421 | + border-top: 1px solid #e6e9ec; | |
| 3905 | 3422 | margin: 0 -20px; |
| 3906 | 3423 | } |
| 3907 | -.elementor-control-type-structure .elementor-control-structure-reset:hover { | |
| 3908 | - color: var(--e-a-color-txt); | |
| 3909 | -} | |
| 3910 | 3424 | .elementor-control-type-structure .elementor-control-structure-title { |
| 3911 | 3425 | margin: 10px -20px 0; |
| 3912 | 3426 | } |
| 3913 | 3427 | .elementor-control-type-structure .elementor-control-structure-title:before { |
| 3914 | 3428 | height: 10px; |
| 3915 | - box-shadow: inset 0 2px 4px rgba(127, 127, 127, 0.1); | |
| 3429 | + -webkit-box-shadow: inset 0 2px 4px rgba(127, 127, 127, 0.1); | |
| 3430 | + box-shadow: inset 0 2px 4px rgba(127, 127, 127, 0.1); | |
| 3916 | 3431 | } |
| 3917 | 3432 | .elementor-control-type-structure .elementor-control-structure-presets { |
| 3433 | + display: -webkit-box; | |
| 3434 | + display: -ms-flexbox; | |
| 3918 | 3435 | display: flex; |
| 3919 | - flex-wrap: wrap; | |
| 3920 | - justify-content: space-between; | |
| 3436 | + -ms-flex-wrap: wrap; | |
| 3437 | + flex-wrap: wrap; | |
| 3438 | + -webkit-box-pack: justify; | |
| 3439 | + -ms-flex-pack: justify; | |
| 3440 | + justify-content: space-between; | |
| 3921 | 3441 | } |
| 3922 | 3442 | .elementor-control-type-structure .elementor-control-structure-presets input { |
| 3923 | 3443 | display: none; |
| 3924 | 3444 | } |
| 3925 | 3445 | .elementor-control-type-structure .elementor-control-structure-presets input:checked + .elementor-control-structure-preset path { |
| 3926 | - fill: var(--e-a-border-color-focus); | |
| 3446 | + fill: #a4afb7; | |
| 3927 | 3447 | } |
| 3928 | 3448 | .elementor-control-type-structure .elementor-control-structure-preset-wrapper { |
| 3929 | - margin-block-end: 15px; | |
| 3449 | + margin-bottom: 15px; | |
| 3930 | 3450 | } |
| 3931 | 3451 | .elementor-control-type-structure .elementor-control-structure-preset-title { |
| 3932 | 3452 | text-align: center; |
| 3933 | - padding-block-start: 5px; | |
| 3453 | + padding-top: 5px; | |
| 3934 | 3454 | font-style: italic; |
| 3935 | 3455 | font-size: 11px; |
| 3936 | - color: #9DA5AE; | |
| 3456 | + color: #a4afb7; | |
| 3937 | 3457 | } |
| 3938 | 3458 | |
| 3939 | 3459 | .elementor-control-type-switcher .elementor-control-input-wrapper { |
| 3940 | - text-align: end; | |
| 3460 | + text-align: left; | |
| 3941 | 3461 | } |
| 3942 | 3462 | .elementor-control-type-switcher .elementor-switch { |
| 3943 | 3463 | position: relative; |
| 3944 | 3464 | display: inline-block; |
| @@ -3943,9 +3463,9 @@ | ||
| 3943 | 3463 | position: relative; |
| 3944 | 3464 | display: inline-block; |
| 3945 | 3465 | vertical-align: top; |
| 3946 | 3466 | height: 20px; |
| 3947 | - background-color: var(--e-a-bg-default); | |
| 3467 | + background-color: white; | |
| 3948 | 3468 | border-radius: 18px; |
| 3949 | 3469 | cursor: pointer; |
| 3950 | 3470 | } |
| 3951 | 3471 | .elementor-control-type-switcher .elementor-switch-input { |
| @@ -3954,35 +3474,48 @@ | ||
| 3954 | 3474 | .elementor-control-type-switcher .elementor-switch-label { |
| 3955 | 3475 | position: relative; |
| 3956 | 3476 | display: block; |
| 3957 | 3477 | height: inherit; |
| 3958 | - font-size: 10px; | |
| 3959 | - background: var(--e-a-bg-active-bold); | |
| 3478 | + font-size: 7px; | |
| 3479 | + text-transform: uppercase; | |
| 3480 | + background: #eceeef; | |
| 3960 | 3481 | border-radius: inherit; |
| 3482 | + -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.12), inset 0 0 2px rgba(0, 0, 0, 0.15); | |
| 3483 | + box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.12), inset 0 0 2px rgba(0, 0, 0, 0.15); | |
| 3484 | + -webkit-transition: 0.15s ease-out; | |
| 3485 | + -o-transition: 0.15s ease-out; | |
| 3961 | 3486 | transition: 0.15s ease-out; |
| 3487 | + -webkit-transition-property: opacity, background; | |
| 3488 | + -o-transition-property: opacity, background; | |
| 3962 | 3489 | transition-property: opacity, background; |
| 3963 | 3490 | } |
| 3964 | 3491 | .elementor-control-type-switcher .elementor-switch-label:before, .elementor-control-type-switcher .elementor-switch-label:after { |
| 3965 | 3492 | position: absolute; |
| 3966 | - inset-block-start: 0; | |
| 3493 | + top: 0; | |
| 3967 | 3494 | width: 50%; |
| 3968 | 3495 | text-align: center; |
| 3969 | 3496 | line-height: 20px; |
| 3497 | + -webkit-transition: inherit; | |
| 3498 | + -o-transition: inherit; | |
| 3970 | 3499 | transition: inherit; |
| 3971 | 3500 | } |
| 3972 | 3501 | .elementor-control-type-switcher .elementor-switch-label:before { |
| 3973 | 3502 | content: attr(data-off); |
| 3974 | - inset-inline-end: 5px; | |
| 3975 | - color: var(--e-a-color-txt-muted); | |
| 3503 | + right: 3px; | |
| 3504 | + color: #a4afb7; | |
| 3505 | + text-shadow: 0 1px rgba(255, 255, 255, 0.5); | |
| 3976 | 3506 | } |
| 3977 | 3507 | .elementor-control-type-switcher .elementor-switch-label:after { |
| 3978 | 3508 | content: attr(data-on); |
| 3979 | - inset-inline-start: 5px; | |
| 3980 | - color: var(--e-a-btn-color); | |
| 3509 | + left: 3px; | |
| 3510 | + color: white; | |
| 3511 | + text-shadow: 0 1px rgba(0, 0, 0, 0.2); | |
| 3981 | 3512 | opacity: 0; |
| 3982 | 3513 | } |
| 3983 | 3514 | .elementor-control-type-switcher .elementor-switch-input:checked ~ .elementor-switch-label { |
| 3984 | - background: var(--e-a-btn-bg-primary); | |
| 3515 | + background: #71d7f7; | |
| 3516 | + -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15), inset 0 0 3px rgba(0, 0, 0, 0.2); | |
| 3517 | + box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15), inset 0 0 3px rgba(0, 0, 0, 0.2); | |
| 3985 | 3518 | } |
| 3986 | 3519 | .elementor-control-type-switcher .elementor-switch-input:checked ~ .elementor-switch-label:before { |
| 3987 | 3520 | opacity: 0; |
| 3988 | 3521 | } |
| @@ -3990,26 +3523,30 @@ | ||
| 3990 | 3523 | opacity: 1; |
| 3991 | 3524 | } |
| 3992 | 3525 | .elementor-control-type-switcher .elementor-switch-handle { |
| 3993 | 3526 | position: absolute; |
| 3994 | - inset-block-start: 1px; | |
| 3995 | - inset-inline-start: 1px; | |
| 3527 | + top: 1px; | |
| 3528 | + left: 1px; | |
| 3996 | 3529 | width: 18px; |
| 3997 | 3530 | height: 18px; |
| 3998 | 3531 | background: white; |
| 3999 | 3532 | border-radius: 10px; |
| 4000 | - transition: inset-inline-start 0.15s ease-out; | |
| 3533 | + -webkit-transition: left 0.15s ease-out; | |
| 3534 | + -o-transition: left 0.15s ease-out; | |
| 3535 | + transition: left 0.15s ease-out; | |
| 4001 | 3536 | } |
| 4002 | 3537 | .elementor-control-type-switcher .elementor-switch-input:checked ~ .elementor-switch-handle { |
| 4003 | - inset-inline-start: initial; | |
| 4004 | - inset-inline-end: 1px; | |
| 3538 | + left: initial; | |
| 3539 | + right: 1px; | |
| 3540 | + -webkit-box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2); | |
| 3541 | + box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2); | |
| 4005 | 3542 | } |
| 4006 | 3543 | |
| 4007 | 3544 | .elementor-control-type-tabs { |
| 4008 | - display: none; | |
| 4009 | - font-size: var(--control-title-size); | |
| 4010 | -} | |
| 4011 | -.elementor-control-type-tabs:has(> :not(.elementor-control-type-tab.elementor-hidden-control)) { | |
| 3545 | + font-size: 0.8em; | |
| 3546 | + text-transform: uppercase; | |
| 3547 | + display: -webkit-box; | |
| 3548 | + display: -ms-flexbox; | |
| 4012 | 3549 | display: flex; |
| 4013 | 3550 | } |
| 4014 | 3551 | |
| 4015 | 3552 | .elementor-control-type-tab { |
| @@ -4016,49 +3553,47 @@ | ||
| 4016 | 3553 | text-align: center; |
| 4017 | 3554 | width: 100%; |
| 4018 | 3555 | padding: 0; |
| 4019 | 3556 | line-height: 25px; |
| 4020 | - border-block-start: var(--e-a-border-bold); | |
| 4021 | - border-block-end: var(--e-a-border-bold); | |
| 4022 | - border-inline-end: var(--e-a-border-bold); | |
| 4023 | - transition: var(--e-a-transition-hover); | |
| 3557 | + border-top: 1px solid #d5dadf; | |
| 3558 | + border-bottom: 1px solid #d5dadf; | |
| 3559 | + border-left: 1px solid #d5dadf; | |
| 4024 | 3560 | cursor: pointer; |
| 4025 | 3561 | } |
| 4026 | 3562 | .elementor-control-type-tab:first-child { |
| 4027 | - border-inline-start: var(--e-a-border-bold); | |
| 4028 | - border-start-start-radius: var(--e-a-border-radius); | |
| 4029 | - border-end-start-radius: var(--e-a-border-radius); | |
| 3563 | + border-right: 1px solid #d5dadf; | |
| 3564 | + border-top-right-radius: 3px; | |
| 3565 | + border-bottom-right-radius: 3px; | |
| 4030 | 3566 | } |
| 4031 | 3567 | .elementor-control-type-tab:last-child { |
| 4032 | - border-start-end-radius: var(--e-a-border-radius); | |
| 4033 | - border-end-end-radius: var(--e-a-border-radius); | |
| 3568 | + border-top-left-radius: 3px; | |
| 3569 | + border-bottom-left-radius: 3px; | |
| 4034 | 3570 | } |
| 4035 | -.elementor-control-type-tab:hover { | |
| 4036 | - background-color: var(--e-a-bg-hover); | |
| 3571 | +.elementor-control-type-tab.elementor-tab-active { | |
| 3572 | + background-color: #a4afb7; | |
| 3573 | + border-color: #a4afb7; | |
| 3574 | + color: #ffffff; | |
| 4037 | 3575 | } |
| 4038 | -.elementor-control-type-tab.e-tab-active { | |
| 4039 | - background-color: var(--e-a-bg-active-bold); | |
| 4040 | - color: var(--e-a-color-txt-accent); | |
| 4041 | -} | |
| 4042 | 3576 | |
| 4043 | -.e-tab-close { | |
| 3577 | +.elementor-tab-close { | |
| 4044 | 3578 | display: none !important; |
| 4045 | 3579 | } |
| 4046 | 3580 | |
| 3581 | +.elementor-control-type-textarea.elementor-control-dynamic-value .elementor-control-dynamic-switcher, | |
| 3582 | +.elementor-control-type-code.elementor-control-dynamic-value .elementor-control-dynamic-switcher { | |
| 3583 | + border-radius: 3px 0 0 3px; | |
| 3584 | + border-right-width: 0; | |
| 3585 | +} | |
| 4047 | 3586 | .elementor-control-type-textarea .elementor-control-dynamic-switcher, |
| 4048 | 3587 | .elementor-control-type-code .elementor-control-dynamic-switcher { |
| 4049 | - border-inline-start-width: 1px; | |
| 4050 | - border-start-start-radius: 0; | |
| 4051 | - border-start-end-radius: 0; | |
| 4052 | - border-end-end-radius: 0; | |
| 4053 | - border-end-start-radius: var(--e-a-border-radius); | |
| 3588 | + border-radius: 0 3px; | |
| 4054 | 3589 | } |
| 4055 | 3590 | .elementor-control-type-textarea:not(.elementor-control-dynamic-value) .elementor-control-dynamic-switcher, |
| 4056 | 3591 | .elementor-control-type-code:not(.elementor-control-dynamic-value) .elementor-control-dynamic-switcher { |
| 4057 | 3592 | position: absolute; |
| 4058 | - inset-block-start: 0; | |
| 4059 | - inset-inline-end: 0; | |
| 3593 | + top: 0; | |
| 4060 | 3594 | z-index: 1; |
| 3595 | + right: 0; | |
| 4061 | 3596 | } |
| 4062 | 3597 | .elementor-control-type-textarea .elementor-control-input-wrapper, |
| 4063 | 3598 | .elementor-control-type-code .elementor-control-input-wrapper { |
| 4064 | 3599 | position: relative; |
| @@ -4076,34 +3611,40 @@ | ||
| 4076 | 3611 | .elementor-control-type-code pre:focus-within + .elementor-control-dynamic-switcher { |
| 4077 | 3612 | display: none; |
| 4078 | 3613 | } |
| 4079 | 3614 | |
| 3615 | +.elementor-control-type-url.elementor-control-dynamic .elementor-input { | |
| 3616 | + border-radius: 3px 0 0 3px; | |
| 3617 | +} | |
| 4080 | 3618 | .elementor-control-type-url .elementor-control-field { |
| 4081 | 3619 | position: relative; |
| 4082 | 3620 | } |
| 3621 | +.elementor-control-type-url:not(.elementor-control-dynamic) .elementor-control-url-more, .elementor-control-type-url.elementor-control-dynamic-value .elementor-control-url-more { | |
| 3622 | + border-radius: 0 3px 3px 0; | |
| 3623 | +} | |
| 4083 | 3624 | .elementor-control-type-url .elementor-control-input-wrapper { |
| 3625 | + display: -webkit-box; | |
| 3626 | + display: -ms-flexbox; | |
| 4084 | 3627 | display: flex; |
| 3628 | + -webkit-box-orient: horizontal; | |
| 3629 | + -webkit-box-direction: reverse; | |
| 3630 | + -ms-flex-direction: row-reverse; | |
| 3631 | + flex-direction: row-reverse; | |
| 4085 | 3632 | } |
| 4086 | -.elementor-control-type-url.elementor-control-dynamic .elementor-control-url-more-options input { | |
| 4087 | - border-radius: var(--e-a-border-radius); | |
| 4088 | -} | |
| 4089 | -.elementor-control-type-url.elementor-control-dynamic-value .e-input-style { | |
| 4090 | - border-start-end-radius: 0; | |
| 4091 | - border-end-end-radius: 0; | |
| 4092 | -} | |
| 4093 | -.elementor-control-type-url.elementor-control-dynamic-value .elementor-control-url-more { | |
| 4094 | - border-start-end-radius: var(--e-a-border-radius); | |
| 4095 | - border-end-end-radius: var(--e-a-border-radius); | |
| 4096 | -} | |
| 4097 | 3633 | .elementor-control-type-url .elementor-control-url-more { |
| 3634 | + display: -webkit-box; | |
| 3635 | + display: -ms-flexbox; | |
| 4098 | 3636 | display: flex; |
| 4099 | - align-items: center; | |
| 4100 | - justify-content: center; | |
| 4101 | - flex-shrink: 0; | |
| 4102 | - border: var(--e-a-border-bold); | |
| 4103 | - color: currentColor; | |
| 4104 | - background-color: transparent; | |
| 4105 | - border-inline-start-width: 0; | |
| 3637 | + -webkit-box-align: center; | |
| 3638 | + -ms-flex-align: center; | |
| 3639 | + align-items: center; | |
| 3640 | + -webkit-box-pack: center; | |
| 3641 | + -ms-flex-pack: center; | |
| 3642 | + justify-content: center; | |
| 3643 | + -ms-flex-negative: 0; | |
| 3644 | + flex-shrink: 0; | |
| 3645 | + border: 1px solid #d5dadf; | |
| 3646 | + border-left: none; | |
| 4106 | 3647 | cursor: pointer; |
| 4107 | 3648 | } |
| 4108 | 3649 | .elementor-control-type-url .elementor-control-url-more i { |
| 4109 | 3650 | font-size: 12px; |
| @@ -4109,56 +3650,114 @@ | ||
| 4109 | 3650 | font-size: 12px; |
| 4110 | 3651 | } |
| 4111 | 3652 | .elementor-control-type-url .elementor-control-url-more-options { |
| 4112 | 3653 | display: none; |
| 4113 | - padding-block-start: 10px; | |
| 3654 | + padding-top: 10px; | |
| 4114 | 3655 | } |
| 4115 | 3656 | .elementor-control-type-url .elementor-control-url-more-options .elementor-control-field-description { |
| 4116 | - margin-block-start: 10px; | |
| 3657 | + margin-top: 10px; | |
| 4117 | 3658 | } |
| 4118 | -.elementor-control-type-url .elementor-control-url-more:hover { | |
| 4119 | - color: var(--e-a-color-txt-hover); | |
| 4120 | -} | |
| 4121 | -.elementor-control-type-url .elementor-control-url-more:focus { | |
| 4122 | - color: var(--e-a-color-txt-active); | |
| 4123 | - border-color: var(--e-a-border-color-focus); | |
| 4124 | -} | |
| 4125 | 3659 | .elementor-control-type-url .elementor-control-url-option { |
| 3660 | + display: -webkit-box; | |
| 3661 | + display: -ms-flexbox; | |
| 4126 | 3662 | display: flex; |
| 4127 | - align-items: center; | |
| 3663 | + -webkit-box-align: center; | |
| 3664 | + -ms-flex-align: center; | |
| 3665 | + align-items: center; | |
| 4128 | 3666 | } |
| 4129 | 3667 | .elementor-control-type-url .elementor-control-url-option:not(:last-child) { |
| 4130 | - padding-block-end: 10px; | |
| 3668 | + padding-bottom: 10px; | |
| 4131 | 3669 | } |
| 4132 | 3670 | .elementor-control-type-url .elementor-control-url-option input, |
| 4133 | 3671 | .elementor-control-type-url .elementor-control-url-option label { |
| 4134 | 3672 | cursor: pointer; |
| 4135 | 3673 | } |
| 3674 | +.elementor-control-type-url .elementor-control-url-option-input { | |
| 3675 | + margin: 0; | |
| 3676 | + padding: 0; | |
| 3677 | + border-radius: 2px; | |
| 3678 | + margin-left: 5px; | |
| 3679 | + -webkit-appearance: none; | |
| 3680 | + -moz-appearance: none; | |
| 3681 | + outline: none; | |
| 3682 | + content: none; | |
| 3683 | + height: 15px; | |
| 3684 | + width: 15px; | |
| 3685 | + border: 1px solid #d5dadf; | |
| 3686 | + display: -webkit-inline-box; | |
| 3687 | + display: -ms-inline-flexbox; | |
| 3688 | + display: inline-flex; | |
| 3689 | + -webkit-box-align: center; | |
| 3690 | + -ms-flex-align: center; | |
| 3691 | + align-items: center; | |
| 3692 | + -webkit-box-pack: center; | |
| 3693 | + -ms-flex-pack: center; | |
| 3694 | + justify-content: center; | |
| 3695 | +} | |
| 3696 | +.elementor-control-type-url .elementor-control-url-option-input:checked { | |
| 3697 | + background: #71d7f7; | |
| 3698 | + border: none; | |
| 3699 | +} | |
| 3700 | +.elementor-control-type-url .elementor-control-url-option-input:checked:before { | |
| 3701 | + display: block; | |
| 3702 | + content: ""; | |
| 3703 | + width: 4px; | |
| 3704 | + height: 7px; | |
| 3705 | + border: solid white; | |
| 3706 | + border-width: 0 2px 2px 0; | |
| 3707 | + -webkit-transform: rotate(45deg); | |
| 3708 | + -ms-transform: rotate(45deg); | |
| 3709 | + transform: rotate(45deg); | |
| 3710 | +} | |
| 3711 | +.elementor-control-type-url .elementor-control-url-option label { | |
| 3712 | + font-size: 12px; | |
| 3713 | +} | |
| 3714 | +.elementor-control-type-url .elementor-control-url-external-hide .elementor-control-url-more { | |
| 3715 | + display: none; | |
| 3716 | +} | |
| 3717 | +.elementor-control-type-url .elementor-control-url-external-show .elementor-input, | |
| 3718 | +.elementor-control-type-url .elementor-control-url-external-show .elementor-dynamic-cover { | |
| 3719 | + border-radius: 3px 0 0 3px; | |
| 3720 | +} | |
| 4136 | 3721 | .elementor-control-type-url .elementor-control-url-autocomplete-spinner { |
| 4137 | 3722 | display: none; |
| 4138 | 3723 | position: absolute; |
| 4139 | - inset-block-start: 5px; | |
| 4140 | - inset-inline-end: 0; | |
| 3724 | + top: 5px; | |
| 3725 | + right: 0px; | |
| 4141 | 3726 | width: 10px; |
| 4142 | 3727 | height: 10px; |
| 4143 | 3728 | font-size: 10px; |
| 4144 | - color: var(--e-a-color-txt-disabled); | |
| 3729 | + color: #D4D4D4; | |
| 4145 | 3730 | } |
| 3731 | +.elementor-control-type-url .elementor-control-url__custom-attributes { | |
| 3732 | + margin-top: 5px; | |
| 3733 | +} | |
| 4146 | 3734 | .elementor-control-type-url .elementor-control-url__custom-attributes label { |
| 4147 | - font-size: var(--control-title-size); | |
| 3735 | + font-size: 12px; | |
| 4148 | 3736 | } |
| 4149 | 3737 | .elementor-control-type-url .elementor-control-url__custom-attributes input { |
| 4150 | 3738 | width: 100%; |
| 4151 | - margin-block-start: 10px; | |
| 3739 | + margin-top: 10px; | |
| 4152 | 3740 | } |
| 3741 | +.elementor-control-type-url .elementor-input { | |
| 3742 | + direction: ltr; | |
| 3743 | +} | |
| 3744 | +.elementor-control-type-url .elementor-input:not(:focus) + .elementor-control-url-more { | |
| 3745 | + border-color: #d5dadf; | |
| 3746 | +} | |
| 4153 | 3747 | .elementor-control-type-url .elementor-input:focus ~ div { |
| 4154 | - border-color: var(--e-a-border-color-focus); | |
| 3748 | + border-color: #a4afb7; | |
| 4155 | 3749 | } |
| 3750 | +.elementor-control-type-url .elementor-control-dynamic-switcher { | |
| 3751 | + border-left: none; | |
| 3752 | + border-radius: 0 3px 3px 0; | |
| 3753 | +} | |
| 4156 | 3754 | |
| 4157 | 3755 | .elementor-autocomplete-menu { |
| 4158 | 3756 | position: absolute; |
| 4159 | - background: var(--e-a-bg-default); | |
| 4160 | - border: var(--e-a-border); | |
| 3757 | + background: #fff; | |
| 3758 | + color: #495157; | |
| 3759 | + border: 1px solid #a4afb7; | |
| 4161 | 3760 | margin: 0; |
| 4162 | 3761 | list-style: none; |
| 4163 | 3762 | padding: 4px 0; |
| 4164 | 3763 | height: auto; |
| @@ -4167,16 +3766,23 @@ | ||
| 4167 | 3766 | max-width: 300px; |
| 4168 | 3767 | max-height: 200px; |
| 4169 | 3768 | overflow-y: auto; |
| 4170 | 3769 | border-radius: 3px; |
| 4171 | - transition: var(--e-a-transition-hover); | |
| 3770 | + -webkit-transition: all 0.3s ease-in-out; | |
| 3771 | + -o-transition: all 0.3s ease-in-out; | |
| 3772 | + transition: all 0.3s ease-in-out; | |
| 4172 | 3773 | cursor: default; |
| 4173 | 3774 | z-index: 1; |
| 4174 | 3775 | } |
| 4175 | 3776 | .elementor-autocomplete-menu .ui-menu-item { |
| 3777 | + display: -webkit-box; | |
| 3778 | + display: -ms-flexbox; | |
| 4176 | 3779 | display: flex; |
| 4177 | - justify-content: space-between; | |
| 4178 | - align-self: baseline; | |
| 3780 | + -webkit-box-pack: justify; | |
| 3781 | + -ms-flex-pack: justify; | |
| 3782 | + justify-content: space-between; | |
| 3783 | + -ms-flex-item-align: baseline; | |
| 3784 | + align-self: baseline; | |
| 4179 | 3785 | padding: 5px 8px; |
| 4180 | 3786 | font-size: 12px; |
| 4181 | 3787 | width: 100%; |
| 4182 | 3788 | line-height: 1.2; |
| @@ -4182,86 +3788,16 @@ | ||
| 4182 | 3788 | line-height: 1.2; |
| 4183 | 3789 | cursor: pointer; |
| 4184 | 3790 | } |
| 4185 | 3791 | .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 { |
| 4186 | - background: var(--e-a-bg-hover); | |
| 3792 | + background: #e6e9ec; | |
| 4187 | 3793 | } |
| 4188 | 3794 | .elementor-autocomplete-menu .elementor-autocomplete-item-info { |
| 4189 | 3795 | font-size: 10px; |
| 4190 | - padding-block-start: 2px; | |
| 3796 | + padding-top: 2px; | |
| 4191 | 3797 | } |
| 4192 | 3798 | |
| 4193 | -.elementor-control-type-visual_choice { | |
| 4194 | - width: 100%; | |
| 4195 | -} | |
| 4196 | - | |
| 4197 | -.elementor-visual-choice-choices { | |
| 4198 | - display: grid; | |
| 4199 | - gap: 8px; | |
| 4200 | - grid-template-columns: repeat(var(--elementor-visual-choice-columns), 1fr); | |
| 4201 | - text-align: center; | |
| 4202 | - border-radius: var(--e-a-border-radius); | |
| 4203 | - overflow: hidden; | |
| 4204 | -} | |
| 4205 | - | |
| 4206 | -.elementor-visual-choice-element { | |
| 4207 | - display: flex; | |
| 4208 | - flex-direction: column; | |
| 4209 | - align-items: center; | |
| 4210 | - justify-content: center; | |
| 4211 | - gap: 8px; | |
| 4212 | - width: auto; | |
| 4213 | -} | |
| 4214 | -.elementor-visual-choice-element-image label { | |
| 4215 | - border: var(--e-a-border-bold); | |
| 4216 | - border-radius: var(--e-a-border-radius); | |
| 4217 | - font-size: 12px; | |
| 4218 | - transition: var(--e-a-transition-hover); | |
| 4219 | - cursor: pointer; | |
| 4220 | - overflow: hidden; | |
| 4221 | - width: 100%; | |
| 4222 | - padding: 8px; | |
| 4223 | -} | |
| 4224 | -.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 { | |
| 4225 | - background-color: var(--e-a-bg-active-bold); | |
| 4226 | - opacity: 1; | |
| 4227 | -} | |
| 4228 | -.elementor-visual-choice-element-image input:checked + label { | |
| 4229 | - border-color: var(--e-a-color-primary-bold); | |
| 4230 | -} | |
| 4231 | -.elementor-visual-choice-element-image input:not(:checked) + label { | |
| 4232 | - background-color: var(--e-a-color-white); | |
| 4233 | - opacity: 0.5; | |
| 4234 | -} | |
| 4235 | -.elementor-visual-choice-element-image img { | |
| 4236 | - width: 100%; | |
| 4237 | - height: auto; | |
| 4238 | -} | |
| 4239 | -.elementor-visual-choice-element-button { | |
| 4240 | - grid-column: span var(--elementor-visual-choice-columns); | |
| 4241 | -} | |
| 4242 | -.elementor-visual-choice-element-button label { | |
| 4243 | - width: -moz-fit-content; | |
| 4244 | - width: fit-content; | |
| 4245 | -} | |
| 4246 | -.elementor-visual-choice-element-button input:checked + .elementor-button, .elementor-visual-choice-element-button input:hover + .elementor-button { | |
| 4247 | - background-color: var(--e-a-bg-active-bold); | |
| 4248 | -} | |
| 4249 | -.elementor-visual-choice-element-button input:checked + .elementor-button { | |
| 4250 | - border-color: var(--e-a-color-primary-bold); | |
| 4251 | -} | |
| 4252 | - | |
| 4253 | -.elementor-label-inline .elementor-visual-choice-choices { | |
| 4254 | - justify-content: flex-end; | |
| 4255 | -} | |
| 4256 | - | |
| 4257 | -.tipsy-inner { | |
| 4258 | - white-space: pre-line; | |
| 4259 | -} | |
| 4260 | - | |
| 4261 | 3799 | .elementor-control-type-wp_widget .widget-inside { |
| 4262 | - line-height: 2; | |
| 4263 | - background-color: inherit; | |
| 4264 | 3800 | display: block; |
| 4265 | 3801 | } |
| 4266 | 3802 | .elementor-control-type-wp_widget .quicktags-toolbar input { |
| 4267 | 3803 | width: auto; |
| @@ -4267,31 +3803,26 @@ | ||
| 4267 | 3803 | width: auto; |
| 4268 | 3804 | } |
| 4269 | 3805 | |
| 4270 | 3806 | .elementor-control-type-wysiwyg * { |
| 4271 | - box-sizing: content-box; | |
| 3807 | + -webkit-box-sizing: content-box; | |
| 3808 | + box-sizing: content-box; | |
| 4272 | 3809 | } |
| 4273 | 3810 | .elementor-control-type-wysiwyg .wp-editor-container { |
| 4274 | - border: var(--e-a-border); | |
| 3811 | + border: 1px solid #e6e9ec; | |
| 4275 | 3812 | } |
| 4276 | 3813 | .elementor-control-type-wysiwyg .wp-editor-tabs { |
| 4277 | - border: var(--e-a-border-bold); | |
| 4278 | - border-block-end: none; | |
| 4279 | - border-start-start-radius: var(--e-a-border-radius); | |
| 4280 | - border-start-end-radius: var(--e-a-border-radius); | |
| 4281 | - border-end-end-radius: 0; | |
| 4282 | - border-end-start-radius: 0; | |
| 3814 | + border: 1px solid #d5dadf; | |
| 3815 | + border-bottom: none; | |
| 3816 | + border-radius: 3px 3px 0 0; | |
| 4283 | 3817 | } |
| 4284 | -.elementor-control-type-wysiwyg .wp-editor-tabs button:hover { | |
| 4285 | - background-color: var(--e-a-bg-hover); | |
| 4286 | -} | |
| 4287 | 3818 | .elementor-control-type-wysiwyg #insert-media-button { |
| 4288 | 3819 | height: initial; |
| 4289 | 3820 | line-height: 24px; |
| 4290 | 3821 | font-size: 10px; |
| 4291 | - color: var(--e-a-color-txt); | |
| 4292 | - border-color: var(--e-a-border-color-bold); | |
| 4293 | - background-color: var(--e-a-bg-default); | |
| 3822 | + color: #6d7882; | |
| 3823 | + border-color: #d5dadf; | |
| 3824 | + background-color: #e6e9ec; | |
| 4294 | 3825 | min-height: initial; |
| 4295 | 3826 | } |
| 4296 | 3827 | .elementor-control-type-wysiwyg .ed_button { |
| 4297 | 3828 | height: 22px; |
| @@ -4307,14 +3838,14 @@ | ||
| 4307 | 3838 | .elementor-control-type-wysiwyg .wp-switch-editor { |
| 4308 | 3839 | position: static; |
| 4309 | 3840 | border: none; |
| 4310 | 3841 | margin: 0; |
| 4311 | - color: var(--e-a-color-txt); | |
| 3842 | + color: #6d7882; | |
| 4312 | 3843 | font-size: 10px; |
| 4313 | 3844 | padding: 3px 9px 4px; |
| 4314 | 3845 | } |
| 4315 | 3846 | .elementor-control-type-wysiwyg .switch-html { |
| 4316 | - border: solid var(--e-a-border-color-bold); | |
| 3847 | + border: solid #d5dadf; | |
| 4317 | 3848 | border-width: 0 1px; |
| 4318 | 3849 | } |
| 4319 | 3850 | .elementor-control-type-wysiwyg .html-active .switch-tmce { |
| 4320 | 3851 | background-color: transparent; |
| @@ -4319,44 +3850,36 @@ | ||
| 4319 | 3850 | .elementor-control-type-wysiwyg .html-active .switch-tmce { |
| 4320 | 3851 | background-color: transparent; |
| 4321 | 3852 | } |
| 4322 | 3853 | .elementor-control-type-wysiwyg .html-active .switch-html { |
| 4323 | - background-color: var(--e-a-bg-active); | |
| 3854 | + background-color: #e6e9ec; | |
| 4324 | 3855 | } |
| 4325 | 3856 | .elementor-control-type-wysiwyg .tmce-active .switch-tmce { |
| 4326 | - background-color: var(--e-a-bg-active); | |
| 3857 | + background-color: #e6e9ec; | |
| 4327 | 3858 | } |
| 4328 | 3859 | .elementor-control-type-wysiwyg .tmce-active .switch-html { |
| 4329 | 3860 | background-color: transparent; |
| 4330 | 3861 | } |
| 4331 | -.elementor-control-type-wysiwyg .mce-toolbar-grp, | |
| 4332 | -.elementor-control-type-wysiwyg .quicktags-toolbar { | |
| 4333 | - background-color: var(--e-a-bg-default); | |
| 3862 | +.elementor-control-type-wysiwyg .mce-toolbar-grp, .elementor-control-type-wysiwyg .quicktags-toolbar { | |
| 3863 | + background-color: #e6e9ec; | |
| 4334 | 3864 | } |
| 4335 | -.elementor-control-type-wysiwyg .mce-toolbar .mce-btn-group .mce-btn.mce-listbox { | |
| 4336 | - background-color: var(--e-a-bg-default); | |
| 4337 | -} | |
| 4338 | -.elementor-control-type-wysiwyg .mce-toolbar .mce-btn-group .mce-btn.mce-listbox button { | |
| 4339 | - color: var(--e-a-color-txt); | |
| 4340 | -} | |
| 4341 | 3865 | .elementor-control-type-wysiwyg .mce-toolbar-grp > div { |
| 4342 | 3866 | padding: 0 3px; |
| 4343 | 3867 | } |
| 4344 | 3868 | .elementor-control-type-wysiwyg .elementor-wp-editor { |
| 4345 | - box-sizing: border-box; | |
| 3869 | + -webkit-box-sizing: border-box; | |
| 3870 | + box-sizing: border-box; | |
| 4346 | 3871 | } |
| 4347 | 3872 | .elementor-control-type-wysiwyg .mce-ico { |
| 4348 | - color: var(--e-a-color-txt); | |
| 3873 | + color: #6d7882; | |
| 4349 | 3874 | font-size: 16px; |
| 4350 | 3875 | } |
| 4351 | -.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 { | |
| 4352 | - color: var(--e-a-color-txt-active); | |
| 4353 | - background: var(--e-a-bg-hover); | |
| 4354 | - border-color: var(--e-a-border-color); | |
| 4355 | - box-shadow: none; | |
| 3876 | +.elementor-control-type-wysiwyg .mce-btn { | |
| 3877 | + margin-right: 0; | |
| 3878 | + margin-left: 0; | |
| 4356 | 3879 | } |
| 4357 | -.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 { | |
| 4358 | - color: var(--e-a-color-txt-active); | |
| 3880 | +.elementor-control-type-wysiwyg .mce-btn:hover, .elementor-control-type-wysiwyg .mce-btn:active, .elementor-control-type-wysiwyg .mce-btn.mce-active { | |
| 3881 | + border-color: #d5dadf; | |
| 4359 | 3882 | } |
| 4360 | 3883 | .elementor-control-type-wysiwyg .mce-path { |
| 4361 | 3884 | padding: 5px 10px; |
| 4362 | 3885 | } |
| @@ -4361,95 +3884,300 @@ | ||
| 4361 | 3884 | padding: 5px 10px; |
| 4362 | 3885 | } |
| 4363 | 3886 | .elementor-control-type-wysiwyg .mce-path-item { |
| 4364 | 3887 | font-size: 12px; |
| 4365 | - color: var(--e-a-color-txt); | |
| 3888 | + color: #6d7882; | |
| 4366 | 3889 | } |
| 4367 | -.elementor-control-type-wysiwyg .mce-top-part:before { | |
| 4368 | - box-shadow: none; | |
| 4369 | -} | |
| 4370 | 3890 | .elementor-control-type-wysiwyg .elementor-control-dynamic-switcher { |
| 4371 | 3891 | border: none; |
| 4372 | 3892 | } |
| 4373 | 3893 | |
| 4374 | -@media screen and (prefers-color-scheme: dark) { | |
| 4375 | - #wp-link-wrap { | |
| 4376 | - color-scheme: light; | |
| 4377 | - --e-a-color-txt: #515962; | |
| 4378 | - --e-a-bg-default: #ffffff; | |
| 4379 | - --e-a-border-color-bold: #D5D8DC; | |
| 4380 | - --e-a-color-primary-bold: #D004D4; | |
| 4381 | - } | |
| 4382 | - #wp-link { | |
| 4383 | - color: var(--e-a-color-txt); | |
| 4384 | - } | |
| 4385 | - #wp-link input { | |
| 4386 | - background-color: var(--e-a-bg-default); | |
| 4387 | - border-color: var(--e-a-border-color-bold); | |
| 4388 | - } | |
| 4389 | - #wp-link input[type=checkbox] { | |
| 4390 | - border-color: var(--e-a-border-color-bold); | |
| 4391 | - } | |
| 4392 | - #wp-link input[type=checkbox]:checked { | |
| 4393 | - background: var(--e-a-color-primary-bold); | |
| 4394 | - } | |
| 4395 | - #wp-link input.button-primary { | |
| 4396 | - background: #2271b1; | |
| 4397 | - border-color: #2271b1; | |
| 4398 | - color: #fff; | |
| 4399 | - } | |
| 3894 | +.elementor-control-type-text .elementor-control-dynamic-switcher { | |
| 3895 | + border-right-width: 0; | |
| 3896 | + border-radius: 3px 0 0 3px; | |
| 4400 | 3897 | } |
| 3898 | +.elementor-control-type-text.elementor-control-dynamic input { | |
| 3899 | + border-radius: 0 3px 3px 0; | |
| 3900 | +} | |
| 3901 | + | |
| 4401 | 3902 | #elementor-mode-switcher { |
| 4402 | - --e-a-mode-switcher-width: 15px; | |
| 4403 | - --e-a-mode-switcher-height: 50px; | |
| 4404 | - --e-a-mode-switcher-icon-size: 15px; | |
| 4405 | 3903 | position: absolute; |
| 4406 | - inset-block-start: 50%; | |
| 4407 | - inset-inline-start: 100%; | |
| 4408 | - transform: translateY(-50%); | |
| 4409 | - background-color: var(--e-a-bg-default); | |
| 4410 | - box-shadow: calc(3px * var(--direction-multiplier, 1)) 1px 3px rgba(0, 0, 0, 0.05); | |
| 4411 | - transition: 0.3s opacity; | |
| 3904 | + right: 100%; | |
| 3905 | + top: 50%; | |
| 3906 | + width: 15px; | |
| 3907 | + height: 50px; | |
| 3908 | + -webkit-transform: translateY(-50%); | |
| 3909 | + -ms-transform: translateY(-50%); | |
| 3910 | + transform: translateY(-50%); | |
| 3911 | + background-color: #e6e9ec; | |
| 3912 | + font-size: 15px; | |
| 3913 | + -webkit-box-shadow: -3px 1px 5px rgba(0, 0, 0, 0.1); | |
| 3914 | + box-shadow: -3px 1px 5px rgba(0, 0, 0, 0.1); | |
| 3915 | + cursor: pointer; | |
| 4412 | 3916 | } |
| 4413 | 3917 | #elementor-mode-switcher:hover { |
| 4414 | - background-color: var(--e-a-bg-hover); | |
| 3918 | + background-color: #93003c; | |
| 3919 | + color: #FFFFFF; | |
| 4415 | 3920 | } |
| 4416 | -#elementor-mode-switcher:focus-within { | |
| 4417 | - background-color: var(--e-a-bg-active); | |
| 3921 | + | |
| 3922 | +#elementor-mode-switcher-inner, #elementor-mode-switcher-preview { | |
| 3923 | + width: 100%; | |
| 3924 | + height: 100%; | |
| 3925 | + position: absolute; | |
| 3926 | + top: 0; | |
| 3927 | + left: 0; | |
| 4418 | 3928 | } |
| 4419 | -.e-panel-block-interactions #elementor-mode-switcher { | |
| 4420 | - opacity: 0; | |
| 4421 | - pointer-events: none; | |
| 3929 | + | |
| 3930 | +#elementor-mode-switcher-preview { | |
| 3931 | + cursor: pointer; | |
| 4422 | 3932 | } |
| 4423 | -#elementor-mode-switcher-preview i { | |
| 3933 | +#elementor-mode-switcher-preview .eicon { | |
| 3934 | + position: absolute; | |
| 3935 | + top: 50%; | |
| 3936 | + left: 50%; | |
| 3937 | + -webkit-transform: translate(-50%, -50%); | |
| 3938 | + -ms-transform: translate(-50%, -50%); | |
| 3939 | + transform: translate(-50%, -50%); | |
| 3940 | +} | |
| 3941 | + | |
| 3942 | +#elementor-mode-switcher-preview-input { | |
| 3943 | + display: none; | |
| 3944 | +} | |
| 3945 | + | |
| 3946 | +:root { | |
| 3947 | + --e-is-device-mode: 0; | |
| 3948 | +} | |
| 3949 | + | |
| 3950 | +.e-is-device-mode { | |
| 3951 | + --e-is-device-mode: 1; | |
| 3952 | +} | |
| 3953 | + | |
| 3954 | +#elementor-responsive-bar { | |
| 3955 | + position: sticky; | |
| 3956 | + height: calc(40px * var(--e-is-device-mode)); | |
| 3957 | + -ms-flex-item-align: stretch; | |
| 3958 | + align-self: stretch; | |
| 3959 | + -ms-flex-negative: 0; | |
| 3960 | + flex-shrink: 0; | |
| 3961 | + -webkit-transition: height 0.2s ease-in-out, opacity 0.1s; | |
| 3962 | + -o-transition: height 0.2s ease-in-out, opacity 0.1s; | |
| 3963 | + transition: height 0.2s ease-in-out, opacity 0.1s; | |
| 3964 | + left: 0; | |
| 3965 | + top: 0; | |
| 3966 | + z-index: 100; | |
| 3967 | + opacity: var(--e-is-device-mode); | |
| 3968 | + -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); | |
| 3969 | + 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); | |
| 3970 | +} | |
| 3971 | +#elementor-responsive-bar:before { | |
| 3972 | + content: ""; | |
| 3973 | + position: absolute; | |
| 3974 | + left: 0; | |
| 3975 | + top: 0; | |
| 3976 | + width: 100%; | |
| 3977 | + height: 100%; | |
| 3978 | + z-index: -1; | |
| 3979 | + -webkit-transform: scaleX(var(--e-preview-scale, 1)); | |
| 3980 | + -ms-transform: scaleX(var(--e-preview-scale, 1)); | |
| 3981 | + transform: scaleX(var(--e-preview-scale, 1)); | |
| 3982 | +} | |
| 3983 | + | |
| 3984 | +.e-responsive-bar-switcher__option { | |
| 3985 | + cursor: pointer; | |
| 3986 | + text-align: center; | |
| 3987 | + width: 22px; | |
| 3988 | + height: 22px; | |
| 3989 | + margin: 0 4px; | |
| 3990 | + line-height: 22px; | |
| 3991 | + border-radius: 3px; | |
| 3992 | + font-size: 16px; | |
| 3993 | + -webkit-transition: background-color 0.3s ease-out; | |
| 3994 | + -o-transition: background-color 0.3s ease-out; | |
| 3995 | + transition: background-color 0.3s ease-out; | |
| 3996 | +} | |
| 3997 | +.e-responsive-bar-switcher__option:hover, .e-responsive-bar-switcher__option[aria-selected=true] { | |
| 3998 | + color: #c2cbd2; | |
| 3999 | + background-color: rgba(255, 255, 255, 0.1); | |
| 4000 | +} | |
| 4001 | +.e-responsive-bar-switcher__option input { | |
| 4002 | + display: none; | |
| 4003 | +} | |
| 4004 | +.e-responsive-bar-switcher__option input:checked + i { | |
| 4005 | + color: #71d7f7; | |
| 4006 | +} | |
| 4007 | +.e-responsive-bar-switcher__option:not(:last-child) { | |
| 4008 | + -webkit-margin-end: 6px; | |
| 4009 | + margin-inline-end: 6px; | |
| 4010 | +} | |
| 4011 | +.e-responsive-bar__button { | |
| 4012 | + -webkit-appearance: none; | |
| 4013 | + -moz-appearance: none; | |
| 4014 | + appearance: none; | |
| 4015 | + background: none; | |
| 4016 | + border: 0 none; | |
| 4017 | + cursor: pointer; | |
| 4018 | + color: inherit; | |
| 4019 | +} | |
| 4020 | +.e-responsive-bar__button:focus:not(:focus-visible) { | |
| 4021 | + outline: none; | |
| 4022 | +} | |
| 4023 | +.e-responsive-bar__button:hover { | |
| 4024 | + color: #c2cbd2; | |
| 4025 | + background-color: rgba(255, 255, 255, 0.1); | |
| 4026 | +} | |
| 4027 | +.e-responsive-bar--pipe { | |
| 4028 | + position: relative; | |
| 4029 | +} | |
| 4030 | +.e-responsive-bar--pipe::before { | |
| 4031 | + content: ""; | |
| 4032 | + display: block; | |
| 4033 | + height: 20px; | |
| 4034 | + width: 1px; | |
| 4035 | + background-color: #6d7882; | |
| 4036 | + position: absolute; | |
| 4037 | + left: -5px; | |
| 4038 | + top: calc(50% - 10px); | |
| 4039 | +} | |
| 4040 | +.e-responsive-bar__input-size { | |
| 4041 | + background-color: transparent; | |
| 4042 | + color: #a4afb7; | |
| 4043 | + border: 1px solid #6d7882 !important; | |
| 4044 | + padding: 0 3px; | |
| 4045 | + width: 60px; | |
| 4046 | + font-size: 12px; | |
| 4047 | + line-height: 16px; | |
| 4048 | + height: 18px; | |
| 4049 | + margin: auto 8px auto 4px; | |
| 4050 | +} | |
| 4051 | +.e-responsive-bar__input-size-separator { | |
| 4052 | + color: #6d7882; | |
| 4053 | +} | |
| 4054 | +.e-responsive-bar__input-size[disabled] { | |
| 4055 | + background-color: transparent; | |
| 4056 | + color: #6d7882; | |
| 4057 | + cursor: default; | |
| 4058 | +} | |
| 4059 | + | |
| 4060 | +#e-responsive-bar { | |
| 4061 | + width: 100%; | |
| 4062 | + margin-top: calc(-40px + 40px * var(--e-is-device-mode)); | |
| 4063 | + z-index: 1; | |
| 4064 | + -webkit-transition: margin-top 0.2s ease-in-out; | |
| 4065 | + -o-transition: margin-top 0.2s ease-in-out; | |
| 4066 | + transition: margin-top 0.2s ease-in-out; | |
| 4067 | + display: -webkit-box; | |
| 4068 | + display: -ms-flexbox; | |
| 4424 | 4069 | display: flex; |
| 4425 | - flex-direction: column; | |
| 4426 | - justify-content: center; | |
| 4427 | - width: var(--e-a-mode-switcher-width); | |
| 4428 | - height: var(--e-a-mode-switcher-height); | |
| 4429 | - font-size: var(--e-a-mode-switcher-icon-size); | |
| 4070 | + -webkit-box-align: center; | |
| 4071 | + -ms-flex-align: center; | |
| 4072 | + align-items: center; | |
| 4073 | + -webkit-box-pack: justify; | |
| 4074 | + -ms-flex-pack: justify; | |
| 4075 | + justify-content: space-between; | |
| 4076 | + color: #a4afb7; | |
| 4077 | + background-color: #495157; | |
| 4078 | +} | |
| 4079 | +#e-responsive-bar__center, #e-responsive-bar__end, #e-responsive-bar-scale, #e-responsive-bar-switcher { | |
| 4080 | + display: -webkit-box; | |
| 4081 | + display: -ms-flexbox; | |
| 4082 | + display: flex; | |
| 4083 | + -webkit-box-pack: center; | |
| 4084 | + -ms-flex-pack: center; | |
| 4085 | + justify-content: center; | |
| 4086 | + -webkit-box-align: center; | |
| 4087 | + -ms-flex-align: center; | |
| 4088 | + align-items: center; | |
| 4089 | + font-size: 13px; | |
| 4090 | + background-color: #495157; | |
| 4091 | + padding: 2px 0; | |
| 4092 | +} | |
| 4093 | +@media (min-width: 1400px) { | |
| 4094 | + #e-responsive-bar__center { | |
| 4095 | + margin-right: 50%; | |
| 4096 | + -webkit-transform: translate(50%, 0); | |
| 4097 | + -ms-transform: translate(50%, 0); | |
| 4098 | + transform: translate(50%, 0); | |
| 4099 | + } | |
| 4100 | +} | |
| 4101 | +#e-responsive-bar__close-button, #e-responsive-bar__settings-button { | |
| 4102 | + width: 22px; | |
| 4103 | + height: 22px; | |
| 4104 | + border-radius: 3px; | |
| 4105 | + margin: 7px 5px; | |
| 4106 | + font-size: 16px; | |
| 4107 | +} | |
| 4108 | +#e-responsive-bar__size-inputs-wrapper { | |
| 4109 | + display: -webkit-box; | |
| 4110 | + display: -ms-flexbox; | |
| 4111 | + display: flex; | |
| 4112 | + -webkit-box-align: center; | |
| 4113 | + -ms-flex-align: center; | |
| 4114 | + align-items: center; | |
| 4115 | + -webkit-margin-end: 8px; | |
| 4116 | + margin-inline-end: 8px; | |
| 4117 | + color: #6d7882; | |
| 4118 | +} | |
| 4119 | +#e-responsive-bar-switcher { | |
| 4120 | + padding: 0 20px; | |
| 4121 | +} | |
| 4122 | +#e-responsive-bar-scale { | |
| 4123 | + padding: 0 20px; | |
| 4124 | +} | |
| 4125 | +#e-responsive-bar-scale__value-wrapper { | |
| 4126 | + margin: 0 14px; | |
| 4127 | + min-width: 32px; | |
| 4128 | + text-align: center; | |
| 4129 | +} | |
| 4130 | +#e-responsive-bar-scale__plus, #e-responsive-bar-scale__minus, #e-responsive-bar-scale__reset { | |
| 4430 | 4131 | cursor: pointer; |
| 4132 | + width: 20px; | |
| 4133 | + height: 20px; | |
| 4134 | + display: -webkit-box; | |
| 4135 | + display: -ms-flexbox; | |
| 4136 | + display: flex; | |
| 4137 | + -webkit-box-align: center; | |
| 4138 | + -ms-flex-align: center; | |
| 4139 | + align-items: center; | |
| 4140 | + -webkit-box-pack: center; | |
| 4141 | + -ms-flex-pack: center; | |
| 4142 | + justify-content: center; | |
| 4431 | 4143 | } |
| 4432 | -#elementor-mode-switcher-preview-input { | |
| 4433 | - display: none; | |
| 4144 | +#e-responsive-bar-scale__minus:before { | |
| 4145 | + content: ""; | |
| 4146 | + display: block; | |
| 4147 | + width: 13px; | |
| 4148 | + height: 2px; | |
| 4149 | + background: #a4afb7; | |
| 4150 | + border-radius: 3px; | |
| 4434 | 4151 | } |
| 4152 | +#e-responsive-bar-scale__reset { | |
| 4153 | + margin: 0px 8px; | |
| 4154 | +} | |
| 4435 | 4155 | |
| 4436 | 4156 | .elementor-revision-item__wrapper { |
| 4157 | + display: -webkit-box; | |
| 4158 | + display: -ms-flexbox; | |
| 4437 | 4159 | display: flex; |
| 4438 | - align-items: center; | |
| 4439 | - text-align: start; | |
| 4440 | - width: 100%; | |
| 4441 | - border: var(--e-a-border); | |
| 4442 | - border-radius: var(--e-a-border-radius); | |
| 4160 | + -webkit-box-align: center; | |
| 4161 | + -ms-flex-align: center; | |
| 4162 | + align-items: center; | |
| 4163 | + border: 1px solid #d5dadf; | |
| 4443 | 4164 | padding: 10px 15px; |
| 4444 | - margin-block-end: 10px; | |
| 4165 | + margin-bottom: 10px; | |
| 4445 | 4166 | font-size: 11px; |
| 4446 | - transition: var(--e-a-transition-hover); | |
| 4447 | - background-color: transparent; | |
| 4167 | + -webkit-transition: all 0.3s; | |
| 4168 | + -o-transition: all 0.3s; | |
| 4169 | + transition: all 0.3s; | |
| 4448 | 4170 | } |
| 4449 | -.elementor-revision-item__wrapper:hover, .elementor-revision-item__wrapper:focus { | |
| 4450 | - background-color: var(--e-a-bg-hover); | |
| 4171 | +.elementor-revision-item__wrapper.current { | |
| 4172 | + font-weight: bold; | |
| 4451 | 4173 | } |
| 4174 | +.elementor-revision-item__wrapper .elementor-revision-item__tools-current { | |
| 4175 | + color: #71d7f7; | |
| 4176 | +} | |
| 4177 | +.elementor-revision-item:hover:not(.elementor-revision-current-preview) { | |
| 4178 | + background-color: rgba(230, 233, 236, 0.3); | |
| 4179 | +} | |
| 4452 | 4180 | .elementor-revision-item-loading .elementor-revision-item__tools-current { |
| 4453 | 4181 | display: none; |
| 4454 | 4182 | } |
| 4455 | 4183 | .elementor-revision-item:not(.elementor-revision-item-loading) .elementor-revision-item__tools-spinner { |
| @@ -4462,67 +4190,71 @@ | ||
| 4462 | 4190 | .elementor-revision-item__gravatar img { |
| 4463 | 4191 | display: block; |
| 4464 | 4192 | } |
| 4465 | 4193 | .elementor-revision-item__details { |
| 4466 | - padding-inline-start: 15px; | |
| 4467 | - flex-grow: 1; | |
| 4194 | + padding-right: 15px; | |
| 4195 | + -webkit-box-flex: 1; | |
| 4196 | + -ms-flex-positive: 1; | |
| 4197 | + flex-grow: 1; | |
| 4468 | 4198 | cursor: pointer; |
| 4469 | 4199 | } |
| 4470 | 4200 | .elementor-revision-meta { |
| 4471 | - padding-block-start: 5px; | |
| 4201 | + padding-top: 5px; | |
| 4472 | 4202 | font-size: 10px; |
| 4473 | 4203 | font-weight: bold; |
| 4474 | 4204 | } |
| 4475 | -.elementor-revision-current-preview .elementor-revision-item__wrapper { | |
| 4476 | - border-color: var(--e-a-border-color-accent); | |
| 4477 | - background-color: var(--e-a-bg-active); | |
| 4205 | +.elementor-revision-current-preview { | |
| 4206 | + background-color: #e6e9ec; | |
| 4478 | 4207 | } |
| 4479 | 4208 | |
| 4209 | +#elementor-restore-autosave-dialog.dialog-widget { | |
| 4210 | + background-color: rgba(0, 0, 0, 0.3); | |
| 4211 | +} | |
| 4212 | + | |
| 4480 | 4213 | #elementor-panel-revisions-loading { |
| 4481 | 4214 | position: absolute; |
| 4482 | - inset-block-start: 50%; | |
| 4483 | - inset-inline-start: 50%; | |
| 4484 | - transform: translate(calc(-50% * var(--direction-multiplier)), -50%); | |
| 4215 | + top: 50%; | |
| 4216 | + left: 50%; | |
| 4217 | + -webkit-transform: translate(-50%, -50%); | |
| 4218 | + -ms-transform: translate(-50%, -50%); | |
| 4219 | + transform: translate(-50%, -50%); | |
| 4485 | 4220 | } |
| 4486 | 4221 | #elementor-panel-revisions-loading .eicon-loading { |
| 4487 | 4222 | font-size: 50px; |
| 4223 | + color: #a4afb7; | |
| 4488 | 4224 | } |
| 4489 | 4225 | |
| 4490 | -.elementor-panel-revisions-buttons { | |
| 4491 | - display: flex; | |
| 4492 | - justify-content: space-between; | |
| 4493 | - padding: 15px 20px; | |
| 4494 | - border-block-end: var(--e-a-border); | |
| 4495 | -} | |
| 4496 | - | |
| 4497 | 4226 | .elementor-history-item { |
| 4227 | + display: -webkit-box; | |
| 4228 | + display: -ms-flexbox; | |
| 4498 | 4229 | display: flex; |
| 4499 | - align-items: center; | |
| 4500 | - text-align: start; | |
| 4501 | - border: var(--e-a-border); | |
| 4502 | - border-radius: var(--e-a-border-radius); | |
| 4230 | + -webkit-box-align: center; | |
| 4231 | + -ms-flex-align: center; | |
| 4232 | + align-items: center; | |
| 4233 | + border: 1px solid #d5dadf; | |
| 4503 | 4234 | padding: 10px 15px; |
| 4504 | - margin-block-end: 10px; | |
| 4505 | - width: 100%; | |
| 4235 | + margin-bottom: 10px; | |
| 4506 | 4236 | font-size: 11px; |
| 4507 | 4237 | line-height: 1.4; |
| 4508 | - background-color: transparent; | |
| 4509 | 4238 | cursor: pointer; |
| 4510 | - transition: var(--e-a-transition-hover); | |
| 4239 | + -webkit-transition: all 0.3s; | |
| 4240 | + -o-transition: all 0.3s; | |
| 4241 | + transition: all 0.3s; | |
| 4511 | 4242 | } |
| 4512 | -.elementor-history-item:hover:not(.elementor-history-item-current), .elementor-history-item:focus:not(.elementor-history-item-current) { | |
| 4513 | - background-color: var(--e-a-bg-hover); | |
| 4514 | - color: var(--e-a-txt-color-hover); | |
| 4243 | +.elementor-history-item:hover { | |
| 4244 | + background-color: rgba(230, 233, 236, 0.3); | |
| 4515 | 4245 | } |
| 4516 | -.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 { | |
| 4246 | +.elementor-history-item:hover .elementor-history-item__icon .eicon:before { | |
| 4517 | 4247 | content: "\e924"; |
| 4518 | 4248 | } |
| 4249 | +.elementor-history-item-applied { | |
| 4250 | + color: #a4afb7; | |
| 4251 | +} | |
| 4519 | 4252 | .elementor-history-item-current { |
| 4520 | - border-color: var(--e-a-border-color-accent); | |
| 4521 | - background-color: var(--e-a-bg-active); | |
| 4522 | - color: var(--e-a-txt-color-active); | |
| 4253 | + background: #e6e9ec; | |
| 4254 | + cursor: default; | |
| 4523 | 4255 | } |
| 4524 | -.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 { | |
| 4256 | +.elementor-history-item-current .elementor-history-item__icon .eicon:before, .elementor-history-item-current:hover .elementor-history-item__icon .eicon:before { | |
| 4525 | 4257 | content: "\e90e"; |
| 4526 | 4258 | } |
| 4527 | 4259 | .elementor-history-item__details { |
| 4528 | 4260 | width: 95%; |
| @@ -4536,23 +4268,26 @@ | ||
| 4536 | 4268 | .elementor-history-item__action { |
| 4537 | 4269 | font-style: italic; |
| 4538 | 4270 | text-decoration: underline; |
| 4539 | 4271 | } |
| 4272 | +.elementor-history-item .__icon { | |
| 4273 | + float: left; | |
| 4274 | +} | |
| 4540 | 4275 | .elementor-history-revisions-message { |
| 4541 | 4276 | font-size: 11px; |
| 4542 | 4277 | text-align: center; |
| 4543 | - padding-block-start: 5px; | |
| 4278 | + padding-top: 5px; | |
| 4544 | 4279 | } |
| 4545 | 4280 | |
| 4546 | 4281 | #elementor-panel-history { |
| 4547 | - padding: 20px; | |
| 4548 | - padding-block-end: 15px; | |
| 4282 | + padding: 20px 20px 15px; | |
| 4549 | 4283 | } |
| 4550 | 4284 | #elementor-panel-history.elementor-empty .elementor-history-revisions-message { |
| 4551 | - padding-block-start: 20px; | |
| 4285 | + padding-top: 20px; | |
| 4552 | 4286 | } |
| 4553 | 4287 | #elementor-panel-history:not(.elementor-empty) { |
| 4554 | - margin-block-start: 10px; | |
| 4288 | + background-color: #fff; | |
| 4289 | + margin-top: 10px; | |
| 4555 | 4290 | } |
| 4556 | 4291 | |
| 4557 | 4292 | #elementor-panel-history-no-items, |
| 4558 | 4293 | #elementor-panel-revisions-no-revisions { |
| @@ -4559,104 +4294,42 @@ | ||
| 4559 | 4294 | text-align: center; |
| 4560 | 4295 | } |
| 4561 | 4296 | #elementor-panel-history-no-items .elementor-nerd-box-icon, |
| 4562 | 4297 | #elementor-panel-revisions-no-revisions .elementor-nerd-box-icon { |
| 4563 | - margin-block-start: 20px; | |
| 4298 | + margin-top: 20px; | |
| 4564 | 4299 | } |
| 4565 | 4300 | |
| 4566 | -.e-control-display-conditions-promotion__wrapper { | |
| 4567 | - display: flex; | |
| 4568 | - justify-content: space-between; | |
| 4569 | -} | |
| 4570 | -.e-control-display-conditions-promotion__wrapper:hover .eicon-upgrade-crown-full.e-control-display-conditions-promotion { | |
| 4571 | - color: var(--e-a-color-accent-promotion); | |
| 4572 | -} | |
| 4573 | -.e-control-display-conditions-promotion__description { | |
| 4574 | - display: flex; | |
| 4575 | - align-self: center; | |
| 4576 | -} | |
| 4577 | -.e-control-display-conditions-promotion__text { | |
| 4578 | - display: inline-block; | |
| 4579 | -} | |
| 4580 | -.e-control-display-conditions-promotion__lock-wrapper { | |
| 4581 | - width: 2.5rem; | |
| 4582 | - display: flex; | |
| 4583 | - justify-content: center; | |
| 4584 | - align-items: center; | |
| 4585 | -} | |
| 4586 | -.e-control-display-conditions-promotion__lock-wrapper .eicon-upgrade-crown-full { | |
| 4587 | - color: var(--e-a-color-accent-promotion-disabled); | |
| 4588 | -} | |
| 4589 | -.e-control-display-conditions-promotion.eicon-flow { | |
| 4590 | - align-self: flex-end; | |
| 4591 | - cursor: pointer; | |
| 4592 | - border: var(--e-a-border-bold); | |
| 4593 | - border-radius: var(--e-a-border-radius); | |
| 4594 | - padding: 5px; | |
| 4595 | -} | |
| 4596 | -.e-control-display-conditions-promotion.eicon-flow.filled { | |
| 4597 | - background-color: var(--e-a-bg-active); | |
| 4598 | - color: #E73CF6; | |
| 4599 | -} | |
| 4600 | - | |
| 4601 | -.e-control-motion-effects-promotion__wrapper:hover .eicon-upgrade-crown-full, .e-control-promotion__wrapper:hover .eicon-upgrade-crown-full { | |
| 4602 | - color: var(--e-a-color-accent-promotion); | |
| 4603 | -} | |
| 4604 | -.e-control-motion-effects-promotion__wrapper .elementor-control-title, .e-control-promotion__wrapper .elementor-control-title { | |
| 4605 | - margin-inline-end: 0; | |
| 4606 | -} | |
| 4607 | -.e-control-motion-effects-promotion__wrapper .select-promotion, .e-control-promotion__wrapper .select-promotion { | |
| 4608 | - display: flex; | |
| 4609 | - flex-direction: column; | |
| 4610 | - justify-content: center; | |
| 4611 | - padding-inline-start: 5px; | |
| 4612 | - padding-inline-end: 20px; | |
| 4613 | - cursor: pointer; | |
| 4614 | - height: 27px; | |
| 4615 | - width: 100%; | |
| 4616 | - color: var(--e-a-color-txt); | |
| 4617 | - border-radius: var(--e-a-border-radius); | |
| 4618 | - background-color: var(--e-a-bg-default); | |
| 4619 | - box-shadow: none; | |
| 4620 | - border: var(--e-a-border-bold); | |
| 4621 | - font-size: var(--control-title-size); | |
| 4622 | -} | |
| 4623 | -.e-control-motion-effects-promotion__lock-wrapper, .e-control-promotion__lock-wrapper { | |
| 4624 | - width: 2.5rem; | |
| 4625 | - display: flex; | |
| 4626 | - justify-content: center; | |
| 4627 | - align-items: center; | |
| 4628 | -} | |
| 4629 | -.e-control-motion-effects-promotion__lock-wrapper .eicon-upgrade-crown-full, .e-control-promotion__lock-wrapper .eicon-upgrade-crown-full { | |
| 4630 | - color: var(--e-a-color-accent-promotion-disabled); | |
| 4631 | -} | |
| 4632 | - | |
| 4633 | -.e-link-promotion { | |
| 4634 | - font-family: "Roboto", sans-serif; | |
| 4635 | - font-weight: 500; | |
| 4636 | - color: #93003f; | |
| 4637 | -} | |
| 4638 | -.e-link-promotion:hover { | |
| 4639 | - color: #93003f; | |
| 4640 | -} | |
| 4641 | - | |
| 4642 | 4301 | .elementor-panel #elementor-panel-header #elementor-panel-header-kit-close, |
| 4643 | 4302 | .elementor-panel #elementor-panel-header #elementor-panel-header-kit-back { |
| 4644 | 4303 | display: none; |
| 4645 | 4304 | } |
| 4646 | 4305 | |
| 4306 | +.elementor-editor-kit .elementor-panel #elementor-panel-header { | |
| 4307 | + background-color: #4ab7f4; | |
| 4308 | +} | |
| 4647 | 4309 | .elementor-editor-kit .elementor-panel #elementor-panel-header #elementor-panel-header-kit-close, |
| 4648 | 4310 | .elementor-editor-kit .elementor-panel #elementor-panel-header #elementor-panel-header-kit-back { |
| 4649 | - display: flex; | |
| 4311 | + display: table-cell; | |
| 4650 | 4312 | } |
| 4651 | 4313 | body:not(.e-routes-has-history) #elementor-panel-header-kit-back { |
| 4652 | 4314 | pointer-events: none; |
| 4653 | - visibility: hidden; | |
| 4315 | + opacity: 0.4; | |
| 4654 | 4316 | } |
| 4317 | +body:not(.e-routes-has-history) #elementor-panel-header-kit-back:hover .elementor-icon { | |
| 4318 | + cursor: inherit; | |
| 4319 | + color: inherit; | |
| 4320 | +} | |
| 4655 | 4321 | |
| 4322 | +.elementor-editor-kit .elementor-panel .elementor-panel-navigation .elementor-panel-navigation-tab.elementor-active { | |
| 4323 | + border-bottom-color: #4ab7f4; | |
| 4324 | +} | |
| 4656 | 4325 | .elementor-editor-kit .elementor-panel #elementor-panel-page-settings .elementor-panel-navigation { |
| 4657 | 4326 | display: none; |
| 4658 | 4327 | } |
| 4328 | +.elementor-editor-kit .elementor-panel #elementor-panel-saver-button-publish.elementor-button.elementor-button-success:not(.elementor-disabled), | |
| 4329 | +.elementor-editor-kit .elementor-panel #elementor-panel-saver-button-save-options.elementor-button.elementor-button-success:not(.elementor-disabled) { | |
| 4330 | + background-color: #4ab7f4; | |
| 4331 | +} | |
| 4659 | 4332 | .elementor-editor-kit .elementor-panel #elementor-panel-page-menu { |
| 4660 | 4333 | padding: 25px 15px 0; |
| 4661 | 4334 | } |
| 4662 | 4335 | .elementor-editor-kit #elementor-panel-header-add-button, |
| @@ -4666,33 +4339,34 @@ | ||
| 4666 | 4339 | display: none; |
| 4667 | 4340 | } |
| 4668 | 4341 | |
| 4669 | 4342 | .elementor-control-type-global-style-repeater .elementor-repeater-fields { |
| 4670 | - margin-block-end: 15px; | |
| 4343 | + margin-bottom: 15px; | |
| 4671 | 4344 | position: relative; |
| 4672 | 4345 | } |
| 4673 | 4346 | .elementor-control-type-global-style-repeater .elementor-repeater-fields.ui-sortable-helper { |
| 4674 | - background-color: var(--e-a-bg-default); | |
| 4347 | + background-color: #ffffff; | |
| 4675 | 4348 | } |
| 4676 | 4349 | .elementor-control-type-global-style-repeater .elementor-repeater-row-controls { |
| 4350 | + display: -webkit-box; | |
| 4351 | + display: -ms-flexbox; | |
| 4677 | 4352 | display: flex; |
| 4678 | - align-items: center; | |
| 4353 | + -webkit-box-align: center; | |
| 4354 | + -ms-flex-align: center; | |
| 4355 | + align-items: center; | |
| 4679 | 4356 | } |
| 4680 | 4357 | .elementor-control-type-global-style-repeater .elementor-repeater-row-tool { |
| 4681 | 4358 | cursor: pointer; |
| 4682 | - color: var(--e-a-color-txt); | |
| 4683 | - background-color: transparent; | |
| 4684 | - border: none; | |
| 4359 | + color: #d5dadf; | |
| 4685 | 4360 | padding: 5px; |
| 4686 | 4361 | } |
| 4687 | -.elementor-control-type-global-style-repeater .elementor-repeater-row-tool:focus, .elementor-control-type-global-style-repeater .elementor-repeater-row-tool:hover { | |
| 4688 | - color: var(--e-a-color-txt-hover); | |
| 4689 | -} | |
| 4690 | 4362 | .elementor-control-type-global-style-repeater .elementor-control { |
| 4691 | 4363 | padding: 0; |
| 4692 | 4364 | } |
| 4693 | 4365 | .elementor-control-type-global-style-repeater .elementor-control-title { |
| 4694 | - flex-grow: 1; | |
| 4366 | + -webkit-box-flex: 1; | |
| 4367 | + -ms-flex-positive: 1; | |
| 4368 | + flex-grow: 1; | |
| 4695 | 4369 | } |
| 4696 | 4370 | .elementor-control-type-global-style-repeater .elementor-control-title input { |
| 4697 | 4371 | max-width: 135px; |
| 4698 | 4372 | } |
| @@ -4700,10 +4374,14 @@ | ||
| 4700 | 4374 | background: none; |
| 4701 | 4375 | border: none; |
| 4702 | 4376 | } |
| 4703 | 4377 | .elementor-control-type-global-style-repeater .elementor-control-input-wrapper { |
| 4378 | + display: -webkit-box; | |
| 4379 | + display: -ms-flexbox; | |
| 4704 | 4380 | display: flex; |
| 4705 | - align-items: center; | |
| 4381 | + -webkit-box-align: center; | |
| 4382 | + -ms-flex-align: center; | |
| 4383 | + align-items: center; | |
| 4706 | 4384 | min-width: 81px; |
| 4707 | 4385 | } |
| 4708 | 4386 | .elementor-control-type-global-style-repeater .elementor-control-input-wrapper:hover .e-global-colors__color-value { |
| 4709 | 4387 | display: none; |
| @@ -4710,37 +4388,41 @@ | ||
| 4710 | 4388 | } |
| 4711 | 4389 | .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 { |
| 4712 | 4390 | display: none; |
| 4713 | 4391 | } |
| 4714 | -.elementor-control-type-global-style-repeater .elementor-repeater-row-controls > .elementor-control > .elementor-control-content > .elementor-control-field > .elementor-control-input-wrapper { | |
| 4715 | - margin-block-start: 0; | |
| 4392 | +.elementor-control-type-global-style-repeater .elementor-control-content > .elementor-control-field > .elementor-control-input-wrapper { | |
| 4393 | + margin-top: 0; | |
| 4716 | 4394 | } |
| 4717 | 4395 | .elementor-control-type-global-style-repeater .elementor-controls-popover { |
| 4718 | - align-self: end; | |
| 4719 | - margin-block-start: 35px; | |
| 4720 | - inset-block-start: 0; | |
| 4396 | + -ms-flex-item-align: end; | |
| 4397 | + align-self: end; | |
| 4398 | + margin-top: 35px; | |
| 4399 | + top: 0; | |
| 4721 | 4400 | width: 100%; |
| 4722 | 4401 | } |
| 4723 | 4402 | .elementor-control-type-global-style-repeater .elementor-controls-popover:before { |
| 4724 | - inset-inline-end: 5px; | |
| 4403 | + left: 5px; | |
| 4725 | 4404 | } |
| 4726 | 4405 | .elementor-control-type-global-style-repeater .elementor-controls-popover .elementor-control { |
| 4727 | 4406 | padding: 0 20px 15px; |
| 4728 | 4407 | } |
| 4729 | 4408 | .elementor-control-type-global-style-repeater .elementor-controls-popover .elementor-control-title { |
| 4730 | - flex-grow: initial; | |
| 4409 | + -webkit-box-flex: initial; | |
| 4410 | + -ms-flex-positive: initial; | |
| 4411 | + flex-grow: initial; | |
| 4731 | 4412 | } |
| 4732 | 4413 | .elementor-control-type-global-style-repeater .elementor-button-wrapper { |
| 4733 | 4414 | text-align: center; |
| 4734 | - border-block-start: var(--e-a-border); | |
| 4735 | - padding-block-start: 15px; | |
| 4415 | + border-top: 1px solid #e6e9ec; | |
| 4416 | + max-width: 260px; | |
| 4417 | + padding-top: 15px; | |
| 4736 | 4418 | } |
| 4737 | 4419 | .elementor-control-type-global-style-repeater .pickr, |
| 4738 | 4420 | .elementor-control-type-global-style-repeater .elementor-control-popover-toggle-toggle-label { |
| 4739 | - margin-inline-start: 5px; | |
| 4421 | + margin-right: 5px; | |
| 4740 | 4422 | } |
| 4741 | 4423 | .elementor-control-type-global-style-repeater .e-sortable-placeholder { |
| 4742 | - background-color: var(--e-a-color-info); | |
| 4424 | + background-color: #71d7f7; | |
| 4743 | 4425 | opacity: 0.9; |
| 4744 | 4426 | width: 100%; |
| 4745 | 4427 | margin: 8px 0; |
| 4746 | 4428 | height: 2px; |
| @@ -4745,20 +4427,34 @@ | ||
| 4745 | 4427 | margin: 8px 0; |
| 4746 | 4428 | height: 2px; |
| 4747 | 4429 | } |
| 4748 | 4430 | .elementor-control-system_colors, .elementor-control-system_typography { |
| 4749 | - padding-block-end: 0; | |
| 4431 | + padding-bottom: 0; | |
| 4750 | 4432 | } |
| 4751 | 4433 | |
| 4752 | 4434 | .e-global-colors__color-value { |
| 4435 | + color: #d5dadf; | |
| 4753 | 4436 | font-size: 10px; |
| 4754 | 4437 | padding: 0 5px; |
| 4755 | - text-align: end; | |
| 4438 | + text-align: left; | |
| 4756 | 4439 | white-space: nowrap; |
| 4757 | - text-overflow: ellipsis; | |
| 4440 | + -o-text-overflow: ellipsis; | |
| 4441 | + text-overflow: ellipsis; | |
| 4758 | 4442 | overflow: hidden; |
| 4759 | 4443 | } |
| 4760 | 4444 | |
| 4445 | +@-webkit-keyframes load { | |
| 4446 | + 0% { | |
| 4447 | + opacity: 0.3; | |
| 4448 | + } | |
| 4449 | + 50% { | |
| 4450 | + opacity: 1; | |
| 4451 | + } | |
| 4452 | + 100% { | |
| 4453 | + opacity: 0.3; | |
| 4454 | + } | |
| 4455 | +} | |
| 4456 | + | |
| 4761 | 4457 | @keyframes load { |
| 4762 | 4458 | 0% { |
| 4763 | 4459 | opacity: 0.3; |
| 4764 | 4460 | } |
| @@ -4768,8 +4464,16 @@ | ||
| 4768 | 4464 | 100% { |
| 4769 | 4465 | opacity: 0.3; |
| 4770 | 4466 | } |
| 4771 | 4467 | } |
| 4468 | +@-webkit-keyframes fadeIn { | |
| 4469 | + from { | |
| 4470 | + opacity: 0; | |
| 4471 | + } | |
| 4472 | + to { | |
| 4473 | + opacity: 1; | |
| 4474 | + } | |
| 4475 | +} | |
| 4772 | 4476 | @keyframes fadeIn { |
| 4773 | 4477 | from { |
| 4774 | 4478 | opacity: 0; |
| 4775 | 4479 | } |
| @@ -4776,255 +4480,48 @@ | ||
| 4776 | 4480 | to { |
| 4777 | 4481 | opacity: 1; |
| 4778 | 4482 | } |
| 4779 | 4483 | } |
| 4484 | +@-webkit-keyframes mover { | |
| 4485 | + 0% { | |
| 4486 | + -webkit-transform: translateY(0); | |
| 4487 | + transform: translateY(0); | |
| 4488 | + } | |
| 4489 | + 100% { | |
| 4490 | + -webkit-transform: translateY(-5px); | |
| 4491 | + transform: translateY(-5px); | |
| 4492 | + } | |
| 4493 | +} | |
| 4780 | 4494 | @keyframes mover { |
| 4781 | 4495 | 0% { |
| 4782 | - transform: translateY(0); | |
| 4496 | + -webkit-transform: translateY(0); | |
| 4497 | + transform: translateY(0); | |
| 4783 | 4498 | } |
| 4784 | 4499 | 100% { |
| 4785 | - transform: translateY(-5px); | |
| 4500 | + -webkit-transform: translateY(-5px); | |
| 4501 | + transform: translateY(-5px); | |
| 4786 | 4502 | } |
| 4787 | 4503 | } |
| 4504 | +@-webkit-keyframes slideDown { | |
| 4505 | + 0% { | |
| 4506 | + -webkit-transform: translateY(-30px); | |
| 4507 | + transform: translateY(-30px); | |
| 4508 | + } | |
| 4509 | + 100% { | |
| 4510 | + -webkit-transform: translateY(0); | |
| 4511 | + transform: translateY(0); | |
| 4512 | + } | |
| 4513 | +} | |
| 4788 | 4514 | @keyframes slideDown { |
| 4789 | 4515 | 0% { |
| 4790 | - transform: translateY(-30px); | |
| 4516 | + -webkit-transform: translateY(-30px); | |
| 4517 | + transform: translateY(-30px); | |
| 4791 | 4518 | } |
| 4792 | 4519 | 100% { |
| 4793 | - transform: translateY(0); | |
| 4520 | + -webkit-transform: translateY(0); | |
| 4521 | + transform: translateY(0); | |
| 4794 | 4522 | } |
| 4795 | 4523 | } |
| 4796 | -.elementor-button, | |
| 4797 | -.e-btn { | |
| 4798 | - font-size: 12px; | |
| 4799 | - font-weight: 500; | |
| 4800 | - line-height: 1.2; | |
| 4801 | - padding: 8px 16px; | |
| 4802 | - outline: none; | |
| 4803 | - border: none; | |
| 4804 | - border-radius: var(--e-a-border-radius); | |
| 4805 | - background-color: var(--e-a-btn-bg); | |
| 4806 | - color: var(--e-a-btn-color-invert); | |
| 4807 | - transition: var(--e-a-transition-hover); | |
| 4808 | -} | |
| 4809 | -.elementor-button:hover, | |
| 4810 | -.e-btn:hover { | |
| 4811 | - border: none; | |
| 4812 | -} | |
| 4813 | -.elementor-button:hover, .elementor-button:focus, | |
| 4814 | -.e-btn:hover, | |
| 4815 | -.e-btn:focus { | |
| 4816 | - background-color: var(--e-a-btn-bg-hover); | |
| 4817 | - color: var(--e-a-btn-color-invert); | |
| 4818 | -} | |
| 4819 | -.elementor-button:active, | |
| 4820 | -.e-btn:active { | |
| 4821 | - background-color: var(--e-a-btn-bg-active); | |
| 4822 | -} | |
| 4823 | -.elementor-button:not([disabled]), | |
| 4824 | -.e-btn:not([disabled]) { | |
| 4825 | - cursor: pointer; | |
| 4826 | -} | |
| 4827 | -.elementor-button:disabled, | |
| 4828 | -.e-btn:disabled { | |
| 4829 | - background-color: var(--e-a-btn-bg-disabled); | |
| 4830 | - color: var(--e-a-btn-color-disabled); | |
| 4831 | -} | |
| 4832 | -.elementor-button:not(.elementor-button-state) .elementor-state-icon, | |
| 4833 | -.e-btn:not(.elementor-button-state) .elementor-state-icon { | |
| 4834 | - display: none; | |
| 4835 | -} | |
| 4836 | -.elementor-button.e-btn-txt, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-cancel, | |
| 4837 | -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-cancel, | |
| 4838 | -.e-btn.e-btn-txt, | |
| 4839 | -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-cancel, | |
| 4840 | -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-cancel { | |
| 4841 | - background: transparent; | |
| 4842 | - color: var(--e-a-color-txt); | |
| 4843 | -} | |
| 4844 | -.elementor-button.e-btn-txt:hover, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-cancel:hover, | |
| 4845 | -.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, | |
| 4846 | -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-cancel:focus, | |
| 4847 | -.e-btn.e-btn-txt:hover, | |
| 4848 | -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-cancel:hover, | |
| 4849 | -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-cancel:hover, | |
| 4850 | -.e-btn.e-btn-txt:focus, | |
| 4851 | -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-cancel:focus, | |
| 4852 | -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-cancel:focus { | |
| 4853 | - background: var(--e-a-bg-hover); | |
| 4854 | - color: var(--e-a-color-txt-hover); | |
| 4855 | -} | |
| 4856 | -.elementor-button.e-btn-txt:disabled, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-cancel:disabled, | |
| 4857 | -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-cancel:disabled, | |
| 4858 | -.e-btn.e-btn-txt:disabled, | |
| 4859 | -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-cancel:disabled, | |
| 4860 | -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-cancel:disabled { | |
| 4861 | - background: transparent; | |
| 4862 | - color: var(--e-a-color-txt-disabled); | |
| 4863 | -} | |
| 4864 | -.elementor-button.e-btn-txt-border, | |
| 4865 | -.e-btn.e-btn-txt-border { | |
| 4866 | - border: 1px solid var(--e-a-color-txt-muted); | |
| 4867 | -} | |
| 4868 | -.elementor-button.elementor-button-success, .elementor-button.e-success, | |
| 4869 | -.e-btn.elementor-button-success, | |
| 4870 | -.e-btn.e-success { | |
| 4871 | - background-color: var(--e-a-btn-bg-success); | |
| 4872 | -} | |
| 4873 | -.elementor-button.elementor-button-success:hover, .elementor-button.elementor-button-success:focus, .elementor-button.e-success:hover, .elementor-button.e-success:focus, | |
| 4874 | -.e-btn.elementor-button-success:hover, | |
| 4875 | -.e-btn.elementor-button-success:focus, | |
| 4876 | -.e-btn.e-success:hover, | |
| 4877 | -.e-btn.e-success:focus { | |
| 4878 | - background-color: var(--e-a-btn-bg-success-hover); | |
| 4879 | -} | |
| 4880 | -.elementor-button.e-primary, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-ok, | |
| 4881 | -.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, | |
| 4882 | -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-take_over, | |
| 4883 | -.e-btn.e-primary, | |
| 4884 | -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok, | |
| 4885 | -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok, | |
| 4886 | -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over, | |
| 4887 | -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over { | |
| 4888 | - background-color: var(--e-a-btn-bg-primary); | |
| 4889 | - color: var(--e-a-btn-color); | |
| 4890 | -} | |
| 4891 | -.elementor-button.e-primary:hover, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-ok:hover, | |
| 4892 | -.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, | |
| 4893 | -.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, | |
| 4894 | -.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, | |
| 4895 | -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-take_over:focus, | |
| 4896 | -.e-btn.e-primary:hover, | |
| 4897 | -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok:hover, | |
| 4898 | -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok:hover, | |
| 4899 | -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over:hover, | |
| 4900 | -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over:hover, | |
| 4901 | -.e-btn.e-primary:focus, | |
| 4902 | -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok:focus, | |
| 4903 | -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok:focus, | |
| 4904 | -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over:focus, | |
| 4905 | -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over:focus { | |
| 4906 | - background-color: var(--e-a-btn-bg-primary-hover); | |
| 4907 | - color: var(--e-a-btn-color); | |
| 4908 | -} | |
| 4909 | -.elementor-button.e-primary.e-btn-txt, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.e-btn-txt.dialog-button.dialog-ok, | |
| 4910 | -.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, | |
| 4911 | -.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, | |
| 4912 | -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.e-primary.dialog-button.dialog-cancel, | |
| 4913 | -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-ok.dialog-cancel, | |
| 4914 | -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-take_over.dialog-cancel, | |
| 4915 | -.e-btn.e-primary.e-btn-txt, | |
| 4916 | -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-ok, | |
| 4917 | -.dialog-type-alert .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-ok, | |
| 4918 | -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-take_over, | |
| 4919 | -.dialog-type-alert .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-take_over, | |
| 4920 | -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.e-primary.dialog-button.dialog-cancel, | |
| 4921 | -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok.dialog-cancel, | |
| 4922 | -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over.dialog-cancel, | |
| 4923 | -.dialog-type-alert .dialog-buttons-wrapper .e-btn.e-primary.dialog-button.dialog-cancel, | |
| 4924 | -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok.dialog-cancel, | |
| 4925 | -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over.dialog-cancel { | |
| 4926 | - background: transparent; | |
| 4927 | - color: var(--e-a-color-primary-bold); | |
| 4928 | -} | |
| 4929 | -.elementor-button.e-primary.e-btn-txt:hover, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.e-btn-txt.dialog-button.dialog-ok:hover, | |
| 4930 | -.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, | |
| 4931 | -.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, | |
| 4932 | -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.e-primary.dialog-button.dialog-cancel:hover, | |
| 4933 | -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-ok.dialog-cancel:hover, | |
| 4934 | -.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, | |
| 4935 | -.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, | |
| 4936 | -.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, | |
| 4937 | -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.e-primary.dialog-button.dialog-cancel:focus, | |
| 4938 | -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-ok.dialog-cancel:focus, | |
| 4939 | -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-take_over.dialog-cancel:focus, | |
| 4940 | -.e-btn.e-primary.e-btn-txt:hover, | |
| 4941 | -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-ok:hover, | |
| 4942 | -.dialog-type-alert .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-ok:hover, | |
| 4943 | -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-take_over:hover, | |
| 4944 | -.dialog-type-alert .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-take_over:hover, | |
| 4945 | -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.e-primary.dialog-button.dialog-cancel:hover, | |
| 4946 | -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok.dialog-cancel:hover, | |
| 4947 | -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over.dialog-cancel:hover, | |
| 4948 | -.dialog-type-alert .dialog-buttons-wrapper .e-btn.e-primary.dialog-button.dialog-cancel:hover, | |
| 4949 | -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok.dialog-cancel:hover, | |
| 4950 | -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over.dialog-cancel:hover, | |
| 4951 | -.e-btn.e-primary.e-btn-txt:focus, | |
| 4952 | -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-ok:focus, | |
| 4953 | -.dialog-type-alert .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-ok:focus, | |
| 4954 | -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-take_over:focus, | |
| 4955 | -.dialog-type-alert .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-take_over:focus, | |
| 4956 | -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.e-primary.dialog-button.dialog-cancel:focus, | |
| 4957 | -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok.dialog-cancel:focus, | |
| 4958 | -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over.dialog-cancel:focus, | |
| 4959 | -.dialog-type-alert .dialog-buttons-wrapper .e-btn.e-primary.dialog-button.dialog-cancel:focus, | |
| 4960 | -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok.dialog-cancel:focus, | |
| 4961 | -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over.dialog-cancel:focus { | |
| 4962 | - background: var(--e-a-bg-primary); | |
| 4963 | -} | |
| 4964 | -.elementor-button.go-pro, .elementor-button.e-accent, | |
| 4965 | -.e-btn.go-pro, | |
| 4966 | -.e-btn.e-accent { | |
| 4967 | - background-color: var(--e-a-btn-bg-accent); | |
| 4968 | -} | |
| 4969 | -.elementor-button.go-pro:hover, .elementor-button.go-pro:focus, .elementor-button.e-accent:hover, .elementor-button.e-accent:focus, | |
| 4970 | -.e-btn.go-pro:hover, | |
| 4971 | -.e-btn.go-pro:focus, | |
| 4972 | -.e-btn.e-accent:hover, | |
| 4973 | -.e-btn.e-accent:focus { | |
| 4974 | - background-color: var(--e-a-btn-bg-accent-hover); | |
| 4975 | -} | |
| 4976 | -.elementor-button.go-pro:active, .elementor-button.e-accent:active, | |
| 4977 | -.e-btn.go-pro:active, | |
| 4978 | -.e-btn.e-accent:active { | |
| 4979 | - background-color: var(--e-a-btn-bg-accent-active); | |
| 4980 | -} | |
| 4981 | -.elementor-button.elementor-button-info, .elementor-button.e-info, | |
| 4982 | -.e-btn.elementor-button-info, | |
| 4983 | -.e-btn.e-info { | |
| 4984 | - background-color: var(--e-a-btn-bg-info); | |
| 4985 | -} | |
| 4986 | -.elementor-button.elementor-button-info:hover, .elementor-button.elementor-button-info:focus, .elementor-button.e-info:hover, .elementor-button.e-info:focus, | |
| 4987 | -.e-btn.elementor-button-info:hover, | |
| 4988 | -.e-btn.elementor-button-info:focus, | |
| 4989 | -.e-btn.e-info:hover, | |
| 4990 | -.e-btn.e-info:focus { | |
| 4991 | - background-color: var(--e-a-btn-bg-info-hover); | |
| 4992 | -} | |
| 4993 | -.elementor-button.elementor-button-warning, .elementor-button.e-warning, | |
| 4994 | -.e-btn.elementor-button-warning, | |
| 4995 | -.e-btn.e-warning { | |
| 4996 | - background-color: var(--e-a-btn-bg-warning); | |
| 4997 | -} | |
| 4998 | -.elementor-button.elementor-button-warning:hover, .elementor-button.elementor-button-warning:focus, .elementor-button.e-warning:hover, .elementor-button.e-warning:focus, | |
| 4999 | -.e-btn.elementor-button-warning:hover, | |
| 5000 | -.e-btn.elementor-button-warning:focus, | |
| 5001 | -.e-btn.e-warning:hover, | |
| 5002 | -.e-btn.e-warning:focus { | |
| 5003 | - background-color: var(--e-a-btn-bg-warning-hover); | |
| 5004 | -} | |
| 5005 | -.elementor-button.elementor-button-danger, .elementor-button.e-danger, | |
| 5006 | -.e-btn.elementor-button-danger, | |
| 5007 | -.e-btn.e-danger { | |
| 5008 | - background-color: var(--e-a-btn-bg-danger); | |
| 5009 | -} | |
| 5010 | -.elementor-button.elementor-button-danger.color-white, .elementor-button.e-danger.color-white, | |
| 5011 | -.e-btn.elementor-button-danger.color-white, | |
| 5012 | -.e-btn.e-danger.color-white { | |
| 5013 | - color: var(--e-a-color-white); | |
| 5014 | -} | |
| 5015 | -.elementor-button.elementor-button-danger:hover, .elementor-button.elementor-button-danger:focus, .elementor-button.e-danger:hover, .elementor-button.e-danger:focus, | |
| 5016 | -.e-btn.elementor-button-danger:hover, | |
| 5017 | -.e-btn.elementor-button-danger:focus, | |
| 5018 | -.e-btn.e-danger:hover, | |
| 5019 | -.e-btn.e-danger:focus { | |
| 5020 | - background-color: var(--e-a-btn-bg-danger-hover); | |
| 5021 | -} | |
| 5022 | -.elementor-button i, | |
| 5023 | -.e-btn i { | |
| 5024 | - margin-inline-end: 5px; | |
| 5025 | -} | |
| 5026 | - | |
| 5027 | 4524 | body { |
| 5028 | 4525 | --e-preview-width: calc(100% - var(--e-editor-panel-width, 300px)); |
| 5029 | 4526 | } |
| 5030 | 4527 | body.elementor-navigator-docked { |
| @@ -5031,9 +4528,11 @@ | ||
| 5031 | 4528 | --e-preview-width: calc(100% - var(--e-editor-panel-width, 300px) - var(--e-editor-navigator-width, 0px)); |
| 5032 | 4529 | } |
| 5033 | 4530 | body.elementor-device-desktop #elementor-preview { |
| 5034 | 4531 | overflow-y: hidden; |
| 5035 | - align-items: flex-start; | |
| 4532 | + -webkit-box-align: start; | |
| 4533 | + -ms-flex-align: start; | |
| 4534 | + align-items: flex-start; | |
| 5036 | 4535 | } |
| 5037 | 4536 | body:not(.elementor-device-desktop) body { |
| 5038 | 4537 | overflow-y: auto; |
| 5039 | 4538 | } |
| @@ -5042,12 +4541,21 @@ | ||
| 5042 | 4541 | background-color: #333; |
| 5043 | 4542 | height: 100%; |
| 5044 | 4543 | border: 0; |
| 5045 | 4544 | width: var(--e-preview-width); |
| 4545 | + display: -webkit-box; | |
| 4546 | + display: -ms-flexbox; | |
| 5046 | 4547 | display: flex; |
| 5047 | - flex-direction: column; | |
| 5048 | - justify-content: flex-start; | |
| 5049 | - align-items: center; | |
| 4548 | + -webkit-box-orient: vertical; | |
| 4549 | + -webkit-box-direction: normal; | |
| 4550 | + -ms-flex-direction: column; | |
| 4551 | + flex-direction: column; | |
| 4552 | + -webkit-box-pack: start; | |
| 4553 | + -ms-flex-pack: start; | |
| 4554 | + justify-content: flex-start; | |
| 4555 | + -webkit-box-align: center; | |
| 4556 | + -ms-flex-align: center; | |
| 4557 | + align-items: center; | |
| 5050 | 4558 | position: relative; |
| 5051 | 4559 | direction: ltr; |
| 5052 | 4560 | } |
| 5053 | 4561 | #elementor-preview > div { |
| @@ -5054,32 +4562,40 @@ | ||
| 5054 | 4562 | direction: rtl; |
| 5055 | 4563 | } |
| 5056 | 4564 | |
| 5057 | 4565 | #elementor-preview-responsive-wrapper { |
| 5058 | - transform-origin: top center; | |
| 5059 | - margin: 20px; | |
| 5060 | - transform: scale(var(--e-preview-scale, 1)); | |
| 5061 | - overflow: hidden; | |
| 4566 | + -webkit-transform-origin: top center; | |
| 4567 | + -ms-transform-origin: top center; | |
| 4568 | + transform-origin: top center; | |
| 4569 | + padding: 20px; | |
| 4570 | + -webkit-transform: scale(var(--e-preview-scale, 1)); | |
| 4571 | + -ms-transform: scale(var(--e-preview-scale, 1)); | |
| 4572 | + transform: scale(var(--e-preview-scale, 1)); | |
| 5062 | 4573 | } |
| 5063 | 4574 | .elementor-device-desktop #elementor-preview-responsive-wrapper { |
| 5064 | 4575 | min-width: 1025px; |
| 5065 | 4576 | width: 100%; |
| 5066 | 4577 | height: 100%; |
| 5067 | - margin: 0; | |
| 4578 | + padding: 0; | |
| 5068 | 4579 | position: relative; |
| 5069 | 4580 | } |
| 5070 | 4581 | body.e-is-device-mode:not(.elementor-device-desktop) #elementor-preview-responsive-wrapper { |
| 5071 | 4582 | width: var(--e-editor-preview-width); |
| 5072 | 4583 | height: var(--e-editor-preview-height); |
| 5073 | - margin: 20px max((100vw - var(--e-editor-panel-width) - var(--e-editor-preview-width)) / 2, 20px); | |
| 5074 | - box-sizing: content-box; | |
| 4584 | + margin: 0 max((100vw - var(--e-editor-panel-width) - var(--e-editor-preview-width)) / 2, 20px); | |
| 4585 | + -webkit-box-sizing: content-box; | |
| 4586 | + box-sizing: content-box; | |
| 5075 | 4587 | position: relative; |
| 5076 | 4588 | max-height: calc(100vh - 80px); |
| 5077 | 4589 | } |
| 5078 | 4590 | body.e-is-device-mode:not(.elementor-device-desktop) #elementor-preview-responsive-wrapper .ui-resizable-handle { |
| 4591 | + display: -webkit-box !important; | |
| 4592 | + display: -ms-flexbox !important; | |
| 5079 | 4593 | display: flex !important; |
| 5080 | 4594 | } |
| 5081 | 4595 | #elementor-preview-responsive-wrapper:not(.ui-resizable-resizing) { |
| 4596 | + -webkit-transition: 0.3s ease-in-out; | |
| 4597 | + -o-transition: 0.3s ease-in-out; | |
| 5082 | 4598 | transition: 0.3s ease-in-out; |
| 5083 | 4599 | } |
| 5084 | 4600 | #elementor-preview-responsive-wrapper .ui-resizable-handle { |
| 5085 | 4601 | top: 0; |
| @@ -5088,10 +4604,14 @@ | ||
| 5088 | 4604 | top: auto; |
| 5089 | 4605 | bottom: 0; |
| 5090 | 4606 | } |
| 5091 | 4607 | #elementor-preview-responsive-wrapper .ui-resizable-n, #elementor-preview-responsive-wrapper .ui-resizable-s { |
| 5092 | - align-items: center; | |
| 5093 | - justify-content: center; | |
| 4608 | + -webkit-box-align: center; | |
| 4609 | + -ms-flex-align: center; | |
| 4610 | + align-items: center; | |
| 4611 | + -webkit-box-pack: center; | |
| 4612 | + -ms-flex-pack: center; | |
| 4613 | + justify-content: center; | |
| 5094 | 4614 | height: 20px; |
| 5095 | 4615 | } |
| 5096 | 4616 | #elementor-preview-responsive-wrapper .ui-resizable-n:before, #elementor-preview-responsive-wrapper .ui-resizable-s:before { |
| 5097 | 4617 | content: ""; |
| @@ -5099,8 +4619,10 @@ | ||
| 5099 | 4619 | background-color: rgba(255, 255, 255, 0.2); |
| 5100 | 4620 | width: 50px; |
| 5101 | 4621 | height: 4px; |
| 5102 | 4622 | border-radius: 3px; |
| 4623 | + -webkit-transition: all 0.2s ease-in-out; | |
| 4624 | + -o-transition: all 0.2s ease-in-out; | |
| 5103 | 4625 | transition: all 0.2s ease-in-out; |
| 5104 | 4626 | } |
| 5105 | 4627 | #elementor-preview-responsive-wrapper .ui-resizable-n:hover:before, #elementor-preview-responsive-wrapper .ui-resizable-s:hover:before { |
| 5106 | 4628 | background-color: rgba(255, 255, 255, 0.6); |
| @@ -5105,16 +4627,18 @@ | ||
| 5105 | 4627 | #elementor-preview-responsive-wrapper .ui-resizable-n:hover:before, #elementor-preview-responsive-wrapper .ui-resizable-s:hover:before { |
| 5106 | 4628 | background-color: rgba(255, 255, 255, 0.6); |
| 5107 | 4629 | width: 100px; |
| 5108 | 4630 | } |
| 5109 | -#elementor-preview-responsive-wrapper .ui-resizable-e, | |
| 5110 | -#elementor-preview-responsive-wrapper .ui-resizable-w { | |
| 5111 | - align-items: center; | |
| 5112 | - justify-content: center; | |
| 4631 | +#elementor-preview-responsive-wrapper .ui-resizable-e, #elementor-preview-responsive-wrapper .ui-resizable-w { | |
| 4632 | + -webkit-box-align: center; | |
| 4633 | + -ms-flex-align: center; | |
| 4634 | + align-items: center; | |
| 4635 | + -webkit-box-pack: center; | |
| 4636 | + -ms-flex-pack: center; | |
| 4637 | + justify-content: center; | |
| 5113 | 4638 | width: 20px; |
| 5114 | 4639 | } |
| 5115 | -#elementor-preview-responsive-wrapper .ui-resizable-e:before, | |
| 5116 | -#elementor-preview-responsive-wrapper .ui-resizable-w:before { | |
| 4640 | +#elementor-preview-responsive-wrapper .ui-resizable-e:before, #elementor-preview-responsive-wrapper .ui-resizable-w:before { | |
| 5117 | 4641 | content: ""; |
| 5118 | 4642 | display: block; |
| 5119 | 4643 | background-color: rgba(255, 255, 255, 0.2); |
| 5120 | 4644 | width: 4px; |
| @@ -5119,12 +4643,13 @@ | ||
| 5119 | 4643 | background-color: rgba(255, 255, 255, 0.2); |
| 5120 | 4644 | width: 4px; |
| 5121 | 4645 | height: 50px; |
| 5122 | 4646 | border-radius: 3px; |
| 4647 | + -webkit-transition: all 0.2s ease-in-out; | |
| 4648 | + -o-transition: all 0.2s ease-in-out; | |
| 5123 | 4649 | transition: all 0.2s ease-in-out; |
| 5124 | 4650 | } |
| 5125 | -#elementor-preview-responsive-wrapper .ui-resizable-e:hover:before, | |
| 5126 | -#elementor-preview-responsive-wrapper .ui-resizable-w:hover:before { | |
| 4651 | +#elementor-preview-responsive-wrapper .ui-resizable-e:hover:before, #elementor-preview-responsive-wrapper .ui-resizable-w:hover:before { | |
| 5127 | 4652 | background-color: rgba(255, 255, 255, 0.6); |
| 5128 | 4653 | height: 100px; |
| 5129 | 4654 | } |
| 5130 | 4655 | #elementor-preview-responsive-wrapper.ui-resizable-resizing .ui-resizable-handle:before { |
| @@ -5133,10 +4658,9 @@ | ||
| 5133 | 4658 | #elementor-preview-responsive-wrapper .ui-resizable-s { |
| 5134 | 4659 | bottom: 0; |
| 5135 | 4660 | } |
| 5136 | 4661 | #elementor-preview-responsive-wrapper .ui-resizable-e { |
| 5137 | - width: 10px; | |
| 5138 | - right: -5px; | |
| 4662 | + right: 0; | |
| 5139 | 4663 | } |
| 5140 | 4664 | #elementor-preview-responsive-wrapper .ui-resizable-w { |
| 5141 | 4665 | left: 0; |
| 5142 | 4666 | } |
| @@ -5144,27 +4668,20 @@ | ||
| 5144 | 4668 | #elementor-preview-iframe { |
| 5145 | 4669 | width: 100%; |
| 5146 | 4670 | height: 100%; |
| 5147 | 4671 | background-color: #fff; |
| 5148 | - box-shadow: 0 0 3px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 0, 0, 0.15); | |
| 4672 | + -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 0, 0, 0.15); | |
| 4673 | + box-shadow: 0 0 3px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 0, 0, 0.15); | |
| 5149 | 4674 | } |
| 5150 | 4675 | |
| 5151 | -#elementor-template-library-modal button:focus-visible, | |
| 5152 | -#elementor-template-library-modal a:focus-visible, | |
| 5153 | -#elementor-template-library-modal input:focus-visible, | |
| 5154 | -#elementor-template-library-modal select:focus-visible, | |
| 5155 | -#elementor-template-library-modal [tabindex="0"]:focus-visible, | |
| 5156 | -#elementor-template-library-modal [role=tab]:focus-visible, | |
| 5157 | -#elementor-template-library-modal [role=radio]:focus-visible, | |
| 5158 | -#elementor-template-library-modal [role=menuitem]:focus-visible { | |
| 5159 | - outline: 2px solid var(--e-a-border-color-focus); | |
| 5160 | - outline-offset: 2px; | |
| 5161 | - border-radius: 2px; | |
| 5162 | -} | |
| 5163 | 4676 | #elementor-template-library-modal a.elementor-template-library-blank-footer-link { |
| 5164 | 4677 | font-style: normal; |
| 5165 | 4678 | text-decoration: underline; |
| 4679 | + color: #39b54a; | |
| 5166 | 4680 | } |
| 4681 | +#elementor-template-library-modal a.elementor-template-library-blank-footer-link:hover { | |
| 4682 | + color: #2d8e3a; | |
| 4683 | +} | |
| 5167 | 4684 | #elementor-template-library-modal .dialog-buttons-wrapper { |
| 5168 | 4685 | display: none; |
| 5169 | 4686 | } |
| 5170 | 4687 | #elementor-template-library-modal .select2-container { |
| @@ -5169,228 +4686,92 @@ | ||
| 5169 | 4686 | } |
| 5170 | 4687 | #elementor-template-library-modal .select2-container { |
| 5171 | 4688 | z-index: 0; |
| 5172 | 4689 | } |
| 5173 | -#elementor-template-library-modal .dialog-message { | |
| 5174 | - overflow-y: scroll; | |
| 5175 | -} | |
| 5176 | -#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 { | |
| 5177 | - overflow-y: auto; | |
| 5178 | -} | |
| 5179 | -#elementor-template-library-modal .e-back-to-editor { | |
| 5180 | - color: var(--e-a-color-txt); | |
| 5181 | - text-decoration: underline; | |
| 5182 | - font-size: 17px; | |
| 5183 | - cursor: pointer; | |
| 5184 | -} | |
| 5185 | 4690 | |
| 5186 | 4691 | #elementor-template-library-header-menu { |
| 5187 | 4692 | text-align: center; |
| 4693 | + color: #6d7882; | |
| 4694 | + font-size: 13px; | |
| 5188 | 4695 | } |
| 5189 | 4696 | |
| 5190 | 4697 | .elementor-template-library-menu-item { |
| 5191 | 4698 | display: inline-block; |
| 5192 | - padding: 17px 20px; | |
| 5193 | - border-block-end: 3px solid transparent; | |
| 4699 | + padding: 17px 0; | |
| 4700 | + width: 115px; | |
| 5194 | 4701 | cursor: pointer; |
| 5195 | - background: transparent; | |
| 5196 | - margin: 0; | |
| 5197 | - font-size: inherit; | |
| 5198 | - font-family: inherit; | |
| 5199 | - color: inherit; | |
| 5200 | - border: none; | |
| 5201 | 4702 | } |
| 5202 | -.elementor-template-library-menu-item:hover { | |
| 5203 | - background-color: var(--e-a-bg-hover); | |
| 5204 | - border-color: var(--e-a-bg-hover); | |
| 4703 | +.elementor-template-library-menu-item.elementor-active { | |
| 4704 | + background-image: -webkit-gradient(linear, left top, left bottom, from(#f1f3f5), to(#fff)); | |
| 4705 | + background-image: -o-linear-gradient(top, #f1f3f5, #fff); | |
| 4706 | + background-image: linear-gradient(to bottom, #f1f3f5, #fff); | |
| 4707 | + border-bottom: 3px solid #93003c; | |
| 5205 | 4708 | } |
| 5206 | -.elementor-template-library-menu-item.elementor-active, .elementor-template-library-menu-item[aria-selected=true] { | |
| 5207 | - border-block-end: 3px solid; | |
| 5208 | - border-color: var(--e-a-border-color-accent); | |
| 5209 | - color: var(--e-a-color-txt-accent); | |
| 5210 | -} | |
| 5211 | 4709 | |
| 5212 | 4710 | #elementor-template-library-header-actions { |
| 4711 | + display: -webkit-box; | |
| 4712 | + display: -ms-flexbox; | |
| 5213 | 4713 | display: flex; |
| 5214 | 4714 | } |
| 5215 | -#elementor-template-library-header-actions > div, | |
| 5216 | -#elementor-template-library-header-actions > button { | |
| 5217 | - background: transparent; | |
| 5218 | - margin: 0; | |
| 5219 | - font-size: inherit; | |
| 5220 | - font-family: inherit; | |
| 5221 | - color: inherit; | |
| 5222 | - border: none; | |
| 5223 | - padding-inline-end: 16px; | |
| 5224 | - cursor: pointer; | |
| 4715 | +#elementor-template-library-header-actions > div { | |
| 4716 | + padding-left: 16px; | |
| 5225 | 4717 | } |
| 5226 | -#elementor-template-library-header-actions > div:focus-visible, | |
| 5227 | -#elementor-template-library-header-actions > button:focus-visible { | |
| 5228 | - outline: 2px solid var(--e-a-border-color-focus); | |
| 5229 | - outline-offset: -2px; | |
| 5230 | - border-radius: 2px; | |
| 5231 | -} | |
| 5232 | 4718 | |
| 5233 | -#elementor-template-library-header-tools.e-hidden-disabled { | |
| 5234 | - opacity: 0; | |
| 5235 | - visibility: hidden; | |
| 5236 | -} | |
| 5237 | - | |
| 5238 | 4719 | #elementor-template-library-header-preview-insert-wrapper { |
| 5239 | 4720 | cursor: default; |
| 5240 | 4721 | padding: 0 10px; |
| 5241 | 4722 | } |
| 5242 | - | |
| 5243 | -.elementor-template-library-template-insert + .elementor-template-library-template-generate-variation { | |
| 5244 | - margin-inline-start: 4px; | |
| 4723 | +#elementor-template-library-header-preview-insert-wrapper .elementor-button { | |
| 4724 | + padding: 8px 14px; | |
| 4725 | + font-size: 11px; | |
| 5245 | 4726 | } |
| 4727 | +#elementor-template-library-header-preview-insert-wrapper .elementor-template-library-template-insert { | |
| 4728 | + color: #fff; | |
| 4729 | + background-color: #39b54a; | |
| 4730 | +} | |
| 4731 | +#elementor-template-library-header-preview-insert-wrapper .elementor-go-pro { | |
| 4732 | + background-color: #93003c; | |
| 4733 | + color: #fff; | |
| 4734 | +} | |
| 5246 | 4735 | |
| 5247 | 4736 | #elementor-template-library-header-preview-back { |
| 5248 | - gap: 10px; | |
| 5249 | - padding-block: 16.5px 15px; | |
| 5250 | - padding-inline: 0 16.5px; | |
| 5251 | - border-inline-end: var(--e-a-border); | |
| 4737 | + padding: 16.5px 0 15px 16.5px; | |
| 4738 | + border-left: 1px solid #e6e9ec; | |
| 5252 | 4739 | cursor: pointer; |
| 4740 | + -webkit-transition: color 0.5s; | |
| 4741 | + -o-transition: color 0.5s; | |
| 5253 | 4742 | transition: color 0.5s; |
| 5254 | 4743 | } |
| 5255 | -#elementor-template-library-header-preview-back .elementor-template-library-header-back-button { | |
| 5256 | - background: transparent; | |
| 5257 | - margin: 0; | |
| 5258 | - font-size: inherit; | |
| 5259 | - font-family: inherit; | |
| 5260 | - color: inherit; | |
| 5261 | - border: none; | |
| 5262 | - display: flex; | |
| 5263 | - align-items: center; | |
| 5264 | - gap: 10px; | |
| 5265 | - cursor: pointer; | |
| 4744 | +#elementor-template-library-header-preview-back:not(:hover) { | |
| 4745 | + color: #a4afb7; | |
| 5266 | 4746 | } |
| 5267 | -#elementor-template-library-header-preview-back .elementor-template-library-header-back-button:focus-visible { | |
| 5268 | - outline: 2px solid var(--e-a-border-color-focus); | |
| 5269 | - outline-offset: 2px; | |
| 5270 | - border-radius: 2px; | |
| 5271 | -} | |
| 5272 | -#elementor-template-library-header-preview-back:hover { | |
| 5273 | - color: var(--e-a-color-txt-hover); | |
| 5274 | -} | |
| 5275 | 4747 | #elementor-template-library-header-preview-back i { |
| 4748 | + padding-left: 10px; | |
| 5276 | 4749 | font-size: 18px; |
| 5277 | - scale: calc(1 * var(--direction-multiplier)) 1; | |
| 5278 | 4750 | } |
| 4751 | +#elementor-template-library-header-preview-back i:before { | |
| 4752 | + content: "\e87d"; | |
| 4753 | +} | |
| 5279 | 4754 | |
| 5280 | 4755 | #elementor-template-library-templates { |
| 5281 | - display: flex; | |
| 5282 | - flex-direction: column; | |
| 5283 | - gap: 20px; | |
| 4756 | + padding: 0 15px; | |
| 5284 | 4757 | } |
| 5285 | -#elementor-template-library-templates .toolbar-container { | |
| 5286 | - display: flex; | |
| 5287 | - justify-content: space-between; | |
| 5288 | - align-items: center; | |
| 5289 | - gap: 2%; | |
| 5290 | - height: 45px; | |
| 4758 | +#elementor-template-library-templates[data-template-source=local] #elementor-template-library-templates-container { | |
| 4759 | + -webkit-box-shadow: 1px 1px 20px 0 rgba(0, 0, 0, 0.03); | |
| 4760 | + box-shadow: 1px 1px 20px 0 rgba(0, 0, 0, 0.03); | |
| 4761 | + margin-top: 10px; | |
| 4762 | + margin-bottom: 45px; | |
| 5291 | 4763 | } |
| 5292 | -#elementor-template-library-templates #elementor-template-library-templates-container { | |
| 5293 | - display: flex; | |
| 5294 | - flex-wrap: wrap; | |
| 5295 | - align-items: flex-start; | |
| 4764 | +#elementor-template-library-templates[data-template-source=local] .elementor-template-library-order-input:checked + .elementor-template-library-order-label { | |
| 4765 | + color: #6d7882; | |
| 5296 | 4766 | } |
| 5297 | -#elementor-template-library-templates[data-template-source=local] .toolbar-container .quota-progress-container { | |
| 5298 | - display: none; | |
| 5299 | -} | |
| 5300 | -#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"])) { | |
| 5301 | - justify-content: flex-end; | |
| 5302 | -} | |
| 5303 | -#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 { | |
| 5304 | - display: flex; | |
| 5305 | - align-items: baseline; | |
| 5306 | - border-radius: 3px; | |
| 5307 | -} | |
| 5308 | -#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 { | |
| 5309 | - outline: 2px solid var(--e-a-border-color-focus); | |
| 5310 | - outline-offset: 2px; | |
| 5311 | -} | |
| 5312 | -#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 { | |
| 5313 | - align-items: center; | |
| 5314 | -} | |
| 5315 | -#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 { | |
| 5316 | - font-size: 14px; | |
| 5317 | - margin-inline-start: 5px; | |
| 5318 | -} | |
| 5319 | -#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 { | |
| 5320 | - width: 200px; | |
| 5321 | - margin: 0px 10px; | |
| 5322 | - align-self: center; | |
| 5323 | - text-align: start; | |
| 5324 | -} | |
| 5325 | -#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 { | |
| 5326 | - font-size: 10px; | |
| 5327 | -} | |
| 5328 | -#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 { | |
| 5329 | - color: var(--e-a-btn-bg-accent); | |
| 5330 | -} | |
| 5331 | -#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 { | |
| 5332 | - height: 4px; | |
| 5333 | - background-color: var(--e-a-color-primary-bold); | |
| 5334 | - position: relative; | |
| 5335 | - display: flex; | |
| 5336 | - align-items: center; | |
| 5337 | - padding: 0; | |
| 5338 | -} | |
| 5339 | -#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 { | |
| 5340 | - height: 100%; | |
| 5341 | - transition: width 0.3s ease; | |
| 5342 | -} | |
| 5343 | -#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 { | |
| 5344 | - background-color: #D004D4; | |
| 5345 | -} | |
| 5346 | -#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 { | |
| 5347 | - background-color: #F59E0B; | |
| 5348 | -} | |
| 5349 | -#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 { | |
| 5350 | - background-color: #93003f; | |
| 5351 | -} | |
| 5352 | -#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 { | |
| 5353 | - background-color: #F0ABFC; | |
| 5354 | -} | |
| 5355 | -#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 { | |
| 5356 | - background-color: rgb(251.0236220472, 216.4291338583, 157.9763779528); | |
| 5357 | -} | |
| 5358 | -#elementor-template-library-templates[data-template-source=cloud] .toolbar-container-value, #elementor-template-library-templates[data-template-source=empty] .toolbar-container-value { | |
| 5359 | - font-size: 12px; | |
| 5360 | - color: var(--e-a-color-txt); | |
| 5361 | -} | |
| 5362 | -#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 { | |
| 5363 | - border-block-start: var(--e-a-border); | |
| 5364 | -} | |
| 5365 | -#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 { | |
| 5366 | - color: var(--e-a-color-txt-active); | |
| 5367 | -} | |
| 5368 | -#elementor-template-library-templates[data-template-source=cloud][data-template-view=grid] #elementor-template-library-templates-container { | |
| 5369 | - border-block-start: none; | |
| 5370 | -} | |
| 5371 | -#elementor-template-library-templates[data-template-source=cloud][data-template-view=grid] #elementor-template-library-order-toolbar-local { | |
| 5372 | - padding: 0; | |
| 5373 | -} | |
| 5374 | -#elementor-template-library-templates[data-template-source=cloud][data-template-view=grid] #elementor-template-library-order-toolbar-local div { | |
| 5375 | - max-width: -moz-fit-content; | |
| 5376 | - max-width: fit-content; | |
| 5377 | -} | |
| 5378 | -#elementor-template-library-templates[data-template-source=cloud][data-template-view=grid] #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-3, | |
| 5379 | -#elementor-template-library-templates[data-template-source=cloud][data-template-view=grid] #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-5 { | |
| 5380 | - display: none; | |
| 5381 | -} | |
| 5382 | -#elementor-template-library-templates[data-template-source=cloud] .elementor-template-library-local-column-3 { | |
| 5383 | - pointer-events: none; | |
| 5384 | -} | |
| 5385 | 4767 | #elementor-template-library-templates[data-template-source=remote] #elementor-template-library-templates-container { |
| 5386 | 4768 | margin: 10px -15px 0; |
| 5387 | 4769 | } |
| 5388 | 4770 | #elementor-template-library-templates[data-template-source=remote] .elementor-template-library-order-input:checked + .elementor-template-library-order-label { |
| 5389 | - color: var(--e-a-color-txt-active); | |
| 4771 | + color: #495157; | |
| 5390 | 4772 | } |
| 5391 | -#elementor-template-library-templates[data-template-source=empty] #elementor-template-library-order-toolbar-local, | |
| 5392 | -#elementor-template-library-templates[data-template-source=empty] #elementor-template-library-footer-banner { | |
| 4773 | +#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 { | |
| 5393 | 4774 | display: none; |
| 5394 | 4775 | } |
| 5395 | 4776 | #elementor-template-library-templates.elementor-templates-filter-active #elementor-template-library-footer-banner { |
| 5396 | 4777 | display: none; |
| @@ -5398,355 +4779,73 @@ | ||
| 5398 | 4779 | #elementor-template-library-templates .elementor-template-library-order-input { |
| 5399 | 4780 | display: none; |
| 5400 | 4781 | } |
| 5401 | 4782 | #elementor-template-library-templates .elementor-template-library-order-input:checked + .elementor-template-library-order-label { |
| 5402 | - padding-inline-end: 8px; | |
| 4783 | + padding-left: 8px; | |
| 5403 | 4784 | } |
| 5404 | 4785 | #elementor-template-library-templates .elementor-template-library-order-input:checked + .elementor-template-library-order-label:after { |
| 5405 | 4786 | font-family: eicons; |
| 5406 | 4787 | content: "\e8ae"; |
| 5407 | - margin-inline-start: 3px; | |
| 4788 | + margin-right: 3px; | |
| 5408 | 4789 | } |
| 5409 | 4790 | #elementor-template-library-templates .elementor-template-library-order-input:checked.elementor-template-library-order-reverse + .elementor-template-library-order-label:after { |
| 5410 | 4791 | content: "\e8ad"; |
| 5411 | 4792 | } |
| 5412 | -#elementor-template-library-templates .elementor-template-library-filter-toolbar-side-actions { | |
| 4793 | + | |
| 4794 | +#elementor-template-library-templates-container { | |
| 4795 | + display: -webkit-box; | |
| 4796 | + display: -ms-flexbox; | |
| 5413 | 4797 | display: flex; |
| 5414 | - align-items: center; | |
| 5415 | - gap: 8px; | |
| 4798 | + -ms-flex-wrap: wrap; | |
| 4799 | + flex-wrap: wrap; | |
| 4800 | + -webkit-box-align: start; | |
| 4801 | + -ms-flex-align: start; | |
| 4802 | + align-items: flex-start; | |
| 5416 | 4803 | } |
| 5417 | -#elementor-template-library-templates .elementor-template-library-filter-toolbar-side-actions .elementor-template-library-action-item { | |
| 5418 | - background: transparent; | |
| 5419 | - margin: 0; | |
| 5420 | - font-size: inherit; | |
| 5421 | - font-family: inherit; | |
| 5422 | - color: inherit; | |
| 5423 | - border: none; | |
| 5424 | - cursor: pointer; | |
| 5425 | - font-size: 20px; | |
| 5426 | - padding: 0 5px; | |
| 5427 | - border-radius: 2px; | |
| 5428 | - color: var(--e-a-color-txt); | |
| 4804 | +#elementor-template-library-templates-container .elementor-template-library-template-local .elementor-template-library-template-insert { | |
| 4805 | + text-transform: none; | |
| 4806 | + font-size: 12px; | |
| 5429 | 4807 | } |
| 5430 | -#elementor-template-library-templates .elementor-template-library-filter-toolbar-side-actions .elementor-template-library-action-item:hover { | |
| 5431 | - background-color: var(--e-a-bg-hover); | |
| 5432 | -} | |
| 5433 | -#elementor-template-library-templates .elementor-template-library-filter-toolbar-side-actions .divider { | |
| 5434 | - width: 1px; | |
| 5435 | - height: 20px; | |
| 5436 | - background-color: var(--e-a-border-color); | |
| 5437 | -} | |
| 5438 | -#elementor-template-library-templates[data-template-view=list] .elementor-template-library-filter-toolbar-side-actions #elementor-template-library-view-list { | |
| 5439 | - background-color: var(--e-a-bg-hover); | |
| 5440 | -} | |
| 5441 | -#elementor-template-library-templates[data-template-view=grid] .elementor-template-library-filter-toolbar-side-actions #elementor-template-library-view-grid { | |
| 5442 | - background-color: var(--e-a-bg-hover); | |
| 5443 | -} | |
| 5444 | -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container { | |
| 5445 | - display: grid; | |
| 5446 | - grid-template-columns: repeat(auto-fill, 208px); | |
| 5447 | - grid-gap: 20px; | |
| 5448 | - padding: 20px 0; | |
| 5449 | -} | |
| 5450 | -#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 { | |
| 5451 | - grid-column: 1; | |
| 5452 | -} | |
| 5453 | -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container #elementor-template-library-templates-empty { | |
| 5454 | - grid-column: 1/-1; | |
| 5455 | -} | |
| 5456 | -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid { | |
| 5457 | - display: flex; | |
| 5458 | - position: relative; | |
| 5459 | - flex-direction: column; | |
| 5460 | - height: 158px; | |
| 5461 | - padding: 8px; | |
| 5462 | - border: var(--e-a-border); | |
| 5463 | - border-radius: 3px; | |
| 5464 | -} | |
| 5465 | -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid:focus-visible { | |
| 5466 | - outline: 2px solid var(--e-a-border-color-focus); | |
| 5467 | - outline-offset: 2px; | |
| 5468 | -} | |
| 5469 | -#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 { | |
| 5470 | - display: flex; | |
| 5471 | -} | |
| 5472 | -#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 { | |
| 5473 | - display: none; | |
| 5474 | -} | |
| 5475 | -#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 { | |
| 5476 | - display: flex !important; | |
| 5477 | -} | |
| 5478 | -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid .elementor-template-library-template-thumbnail { | |
| 5479 | - width: 190px; | |
| 5480 | - height: 100px; | |
| 5481 | - position: relative; | |
| 5482 | - border-radius: 3px; | |
| 5483 | - margin-block-end: 4px; | |
| 5484 | - overflow: hidden; | |
| 5485 | -} | |
| 5486 | -#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 { | |
| 5487 | - -o-object-fit: contain; | |
| 5488 | - object-fit: contain; | |
| 5489 | - width: 100%; | |
| 5490 | - height: 100%; | |
| 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-preview { | |
| 5493 | - display: none; | |
| 5494 | - justify-content: center; | |
| 5495 | - align-items: center; | |
| 5496 | - position: absolute; | |
| 5497 | - inset: 0; | |
| 5498 | - background-color: rgba(0, 0, 0, 0.5); | |
| 5499 | - cursor: default; | |
| 5500 | -} | |
| 5501 | -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid .elementor-template-library-template-name { | |
| 5502 | - font-size: 11px; | |
| 5503 | - white-space: nowrap; | |
| 5504 | - text-overflow: ellipsis; | |
| 5505 | - overflow: hidden; | |
| 5506 | -} | |
| 5507 | -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid .elementor-template-library-card-footer { | |
| 5508 | - display: flex; | |
| 5509 | - position: relative; | |
| 5510 | - justify-content: space-between; | |
| 5511 | - align-items: center; | |
| 5512 | - font-size: 11px; | |
| 5513 | - min-height: 38px; | |
| 5514 | -} | |
| 5515 | -#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 { | |
| 5516 | - display: none; | |
| 5517 | - width: 90%; | |
| 5518 | - gap: 8px; | |
| 5519 | - height: 38px; | |
| 5520 | - padding: 4px 0; | |
| 5521 | -} | |
| 5522 | -#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 { | |
| 5523 | - display: flex; | |
| 5524 | -} | |
| 5525 | -#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 { | |
| 5526 | - display: flex; | |
| 5527 | - align-items: center; | |
| 5528 | -} | |
| 5529 | -#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 { | |
| 5530 | - display: flex; | |
| 5531 | - flex-direction: column; | |
| 5532 | - justify-content: center; | |
| 5533 | - width: 65%; | |
| 5534 | - align-items: start; | |
| 5535 | - white-space: nowrap; | |
| 5536 | - text-overflow: ellipsis; | |
| 5537 | - overflow: hidden; | |
| 5538 | -} | |
| 5539 | -#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 { | |
| 5540 | - flex-direction: row; | |
| 5541 | - align-items: center; | |
| 5542 | - justify-content: start; | |
| 5543 | - height: 56px; | |
| 5544 | - padding: 13px 10px; | |
| 5545 | -} | |
| 5546 | -#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 { | |
| 5547 | - font-size: 25px; | |
| 5548 | - margin-inline-end: 8px; | |
| 5549 | -} | |
| 5550 | -#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 { | |
| 5551 | - margin-inline-start: auto; | |
| 5552 | -} | |
| 5553 | -#elementor-template-library-templates[data-template-view=grid] #bulk-select-all { | |
| 5554 | - display: none; | |
| 5555 | -} | |
| 5556 | -#elementor-template-library-templates.no-bulk-selections #bulk-select-all, #elementor-template-library-templates.no-bulk-selections .bulk-selection-item-checkbox { | |
| 5557 | - visibility: hidden; | |
| 5558 | -} | |
| 5559 | -#elementor-template-library-templates.no-bulk-selections .elementor-template-library-template-name:hover .bulk-selection-item-checkbox { | |
| 5560 | - visibility: visible; | |
| 5561 | -} | |
| 5562 | -#elementor-template-library-templates .bulk-selection-action-bar { | |
| 5563 | - display: none; | |
| 5564 | - background: var(--e-a-bg-active); | |
| 5565 | - padding: 10px 25px; | |
| 5566 | - border-radius: 5px; | |
| 5567 | - color: var(--e-a-bg-invert); | |
| 5568 | - gap: 20px; | |
| 5569 | - align-items: center; | |
| 5570 | - flex: 1; | |
| 5571 | -} | |
| 5572 | -#elementor-template-library-templates .bulk-selection-action-bar button { | |
| 5573 | - background: transparent; | |
| 5574 | - margin: 0; | |
| 5575 | - font-size: inherit; | |
| 5576 | - font-family: inherit; | |
| 5577 | - color: inherit; | |
| 5578 | - border: none; | |
| 5579 | - cursor: pointer; | |
| 5580 | - display: flex; | |
| 5581 | - align-items: center; | |
| 5582 | - justify-content: center; | |
| 5583 | -} | |
| 5584 | -#elementor-template-library-templates .bulk-selection-action-bar button.disabled { | |
| 5585 | - pointer-events: none; | |
| 5586 | - opacity: 0.3; | |
| 5587 | - cursor: not-allowed; | |
| 5588 | -} | |
| 5589 | -#elementor-template-library-templates .bulk-selection-action-bar i { | |
| 5590 | - cursor: pointer; | |
| 5591 | - font-size: 18px; | |
| 5592 | -} | |
| 5593 | -#elementor-template-library-templates .bulk-selection-action-bar .eicon-editor-close { | |
| 5594 | - font-size: 20px; | |
| 5595 | -} | |
| 5596 | -#elementor-template-library-templates #elementor-template-library-navigation-container { | |
| 5597 | - display: flex; | |
| 5598 | - flex: 1; | |
| 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 { | |
| 5604 | - display: flex; | |
| 5605 | - flex-direction: row; | |
| 5606 | - align-items: center; | |
| 5607 | - gap: 15px; | |
| 5608 | - white-space: nowrap; | |
| 5609 | - text-overflow: ellipsis; | |
| 5610 | - overflow: hidden; | |
| 5611 | -} | |
| 5612 | -#elementor-template-library-templates #elementor-template-library-navigation-container .elementor-template-library-navigation-container > span { | |
| 5613 | - white-space: nowrap; | |
| 5614 | - text-overflow: ellipsis; | |
| 5615 | - overflow: hidden; | |
| 5616 | -} | |
| 5617 | -#elementor-template-library-templates #elementor-template-library-navigation-container .elementor-template-library-navigation-container .elementor-template-library-navigation-back-button { | |
| 5618 | - padding-inline-start: 8px; | |
| 5619 | - background-color: var(--e-a-bg-hover); | |
| 5620 | - color: var(--e-a-color-txt); | |
| 5621 | -} | |
| 5622 | -#elementor-template-library-templates #elementor-template-library-order-toolbar-local:hover #bulk-select-all { | |
| 5623 | - visibility: visible; | |
| 5624 | -} | |
| 5625 | -#elementor-template-library-templates .bulk-selected-item { | |
| 5626 | - background: var(--e-a-bg-active); | |
| 5627 | -} | |
| 5628 | -#elementor-template-library-templates .elementor-template-library-local-column-1 input[type=checkbox] { | |
| 5629 | - position: relative; | |
| 5630 | - inset-block-start: 3px; | |
| 5631 | -} | |
| 5632 | -#elementor-template-library-templates .elementor-template-library-local-column-1 input[type=checkbox]:checked { | |
| 5633 | - inset-block-start: 0px; | |
| 5634 | -} | |
| 5635 | -#elementor-template-library-templates .bulk-selection-item-checkbox:checked, | |
| 5636 | -#elementor-template-library-templates #bulk-select-all:checked { | |
| 5637 | - background: #69727D; | |
| 5638 | -} | |
| 5639 | -#elementor-template-library-templates .checkbox-minus:before { | |
| 5640 | - display: block; | |
| 5641 | - content: ""; | |
| 5642 | - width: 10px; | |
| 5643 | - height: 2px; | |
| 5644 | - background-color: white; | |
| 5645 | - transform: none; | |
| 5646 | -} | |
| 5647 | 4808 | |
| 5648 | 4809 | #elementor-template-library-toolbar { |
| 4810 | + display: -webkit-box; | |
| 4811 | + display: -ms-flexbox; | |
| 5649 | 4812 | display: flex; |
| 5650 | - justify-content: space-between; | |
| 5651 | - align-items: center; | |
| 4813 | + -webkit-box-pack: justify; | |
| 4814 | + -ms-flex-pack: justify; | |
| 4815 | + justify-content: space-between; | |
| 4816 | + -webkit-box-align: center; | |
| 4817 | + -ms-flex-align: center; | |
| 4818 | + align-items: center; | |
| 5652 | 4819 | } |
| 5653 | 4820 | |
| 5654 | 4821 | .elementor-template-library-filter-toolbar { |
| 4822 | + display: -webkit-box; | |
| 4823 | + display: -ms-flexbox; | |
| 5655 | 4824 | display: flex; |
| 5656 | - align-items: center; | |
| 4825 | + -webkit-box-align: center; | |
| 4826 | + -ms-flex-align: center; | |
| 4827 | + align-items: center; | |
| 5657 | 4828 | } |
| 5658 | 4829 | |
| 5659 | -.elementor-template-library-filter-select-source { | |
| 5660 | - width: 350px; | |
| 5661 | - display: flex; | |
| 5662 | - gap: 10px; | |
| 5663 | -} | |
| 5664 | -.elementor-template-library-filter-select-source .source-option { | |
| 5665 | - flex: 1; | |
| 5666 | - border: 0.5px solid #BABFC5; | |
| 5667 | - padding: 5px; | |
| 5668 | - border-radius: 3px; | |
| 5669 | - cursor: pointer; | |
| 5670 | - font-size: 12px; | |
| 5671 | -} | |
| 5672 | -.elementor-template-library-filter-select-source .source-option i { | |
| 5673 | - margin-inline-end: 5px; | |
| 5674 | -} | |
| 5675 | -.elementor-template-library-filter-select-source .source-option .new-badge { | |
| 5676 | - border: 1px solid var(--e-a-color-primary-bold-dark); | |
| 5677 | - padding: 2px 4px; | |
| 5678 | - color: var(--e-a-color-primary-bold-dark); | |
| 5679 | - border-radius: 10px; | |
| 5680 | - font-size: 10px; | |
| 5681 | - margin-inline-start: 5px; | |
| 5682 | -} | |
| 5683 | -.elementor-template-library-filter-select-source .source-option.selected, .elementor-template-library-filter-select-source .source-option:hover { | |
| 5684 | - background-color: var(--e-a-bg-hover); | |
| 5685 | -} | |
| 5686 | - | |
| 5687 | -#elementor-template-library-connect-states .elementor-template-library-filter-toolbar { | |
| 5688 | - display: flex; | |
| 5689 | - align-items: center; | |
| 5690 | - justify-content: space-between; | |
| 5691 | -} | |
| 5692 | - | |
| 5693 | -#elementor-template-library-toolbar .source-option-badge, | |
| 5694 | -.elementor-template-library-connect-states-badge .source-option-badge { | |
| 5695 | - display: flex; | |
| 5696 | - align-items: center; | |
| 5697 | - gap: 6px; | |
| 5698 | - padding: 6px 12px; | |
| 5699 | - border: none; | |
| 5700 | - border-radius: 20px; | |
| 5701 | - font-size: 14px; | |
| 5702 | - font-weight: 500; | |
| 5703 | - white-space: nowrap; | |
| 5704 | - margin-inline-start: auto; | |
| 5705 | - margin-inline-end: 15px; | |
| 5706 | -} | |
| 5707 | -#elementor-template-library-toolbar .source-option-badge i, | |
| 5708 | -.elementor-template-library-connect-states-badge .source-option-badge i { | |
| 5709 | - margin: 0; | |
| 5710 | - font-size: 14px; | |
| 5711 | -} | |
| 5712 | -#elementor-template-library-toolbar .source-option-badge.cloud-badge, | |
| 5713 | -.elementor-template-library-connect-states-badge .source-option-badge.cloud-badge { | |
| 5714 | - background-color: var(--e-a-bg-info); | |
| 5715 | - color: var(--e-a-color-info); | |
| 5716 | -} | |
| 5717 | -#elementor-template-library-toolbar .source-option-badge.cloud-badge i, | |
| 5718 | -.elementor-template-library-connect-states-badge .source-option-badge.cloud-badge i { | |
| 5719 | - color: var(--e-a-color-info); | |
| 5720 | -} | |
| 5721 | -#elementor-template-library-toolbar .source-option-badge.site-badge, | |
| 5722 | -.elementor-template-library-connect-states-badge .source-option-badge.site-badge { | |
| 5723 | - background-color: var(--e-a-bg-warning); | |
| 5724 | - color: var(--e-a-btn-bg-warning-hover); | |
| 5725 | -} | |
| 5726 | -#elementor-template-library-toolbar .source-option-badge.site-badge i, | |
| 5727 | -.elementor-template-library-connect-states-badge .source-option-badge.site-badge i { | |
| 5728 | - color: var(--e-a-btn-bg-warning-hover); | |
| 5729 | -} | |
| 5730 | - | |
| 5731 | 4830 | #elementor-template-library-filter-toolbar-remote { |
| 5732 | 4831 | font-size: 11px; |
| 5733 | 4832 | } |
| 5734 | 4833 | |
| 5735 | 4834 | #elementor-template-library-order { |
| 4835 | + display: -webkit-box; | |
| 4836 | + display: -ms-flexbox; | |
| 5736 | 4837 | display: flex; |
| 5737 | - border-inline-end: var(--e-a-border); | |
| 4838 | + border-left: 1px solid #d5dadf; | |
| 5738 | 4839 | } |
| 5739 | 4840 | |
| 5740 | 4841 | .elementor-template-library-order-label { |
| 5741 | 4842 | text-transform: uppercase; |
| 5742 | - padding-inline-end: 22px; | |
| 4843 | + padding-left: 22px; | |
| 5743 | 4844 | -webkit-user-select: none; |
| 5744 | 4845 | -moz-user-select: none; |
| 4846 | + -ms-user-select: none; | |
| 5745 | 4847 | user-select: none; |
| 5746 | - line-height: 1; | |
| 5747 | - font-size: 10px; | |
| 5748 | - font-weight: 500; | |
| 5749 | 4848 | } |
| 5750 | 4849 | |
| 5751 | 4850 | label.elementor-template-library-order-label { |
| 5752 | 4851 | cursor: pointer; |
| @@ -5751,13 +4850,13 @@ | ||
| 5751 | 4850 | label.elementor-template-library-order-label { |
| 5752 | 4851 | cursor: pointer; |
| 5753 | 4852 | } |
| 5754 | 4853 | label.elementor-template-library-order-label:hover { |
| 5755 | - color: var(--e-a-color-txt-hover); | |
| 4854 | + color: #556068; | |
| 5756 | 4855 | } |
| 5757 | 4856 | |
| 5758 | 4857 | #elementor-template-library-filter .select2 { |
| 5759 | - text-align: start; | |
| 4858 | + text-align: right; | |
| 5760 | 4859 | width: calc(27px * 5) !important; |
| 5761 | 4860 | } |
| 5762 | 4861 | #elementor-template-library-filter .select2-selection__rendered { |
| 5763 | 4862 | text-transform: capitalize; |
| @@ -5764,16 +4863,18 @@ | ||
| 5764 | 4863 | } |
| 5765 | 4864 | |
| 5766 | 4865 | #select2-elementor-template-library-filter-subtype-results .select2-results__option { |
| 5767 | 4866 | text-transform: capitalize; |
| 5768 | - text-align: start; | |
| 5769 | - padding-inline-start: 5px; | |
| 4867 | + text-align: right; | |
| 4868 | + padding-right: 5px; | |
| 5770 | 4869 | } |
| 5771 | 4870 | |
| 5772 | 4871 | #elementor-template-library-my-favorites { |
| 5773 | - flex-grow: 1; | |
| 5774 | - text-align: start; | |
| 5775 | - padding-inline-start: 20px; | |
| 4872 | + -webkit-box-flex: 1; | |
| 4873 | + -ms-flex-positive: 1; | |
| 4874 | + flex-grow: 1; | |
| 4875 | + text-align: right; | |
| 4876 | + padding-right: 20px; | |
| 5776 | 4877 | } |
| 5777 | 4878 | |
| 5778 | 4879 | #elementor-template-library-filter-my-favorites { |
| 5779 | 4880 | display: none; |
| @@ -5778,12 +4879,12 @@ | ||
| 5778 | 4879 | #elementor-template-library-filter-my-favorites { |
| 5779 | 4880 | display: none; |
| 5780 | 4881 | } |
| 5781 | 4882 | #elementor-template-library-filter-my-favorites:checked + #elementor-template-library-filter-my-favorites-label { |
| 5782 | - color: var(--e-a-color-txt-active); | |
| 4883 | + color: #495157; | |
| 5783 | 4884 | } |
| 5784 | 4885 | #elementor-template-library-filter-my-favorites:checked + #elementor-template-library-filter-my-favorites-label i:after { |
| 5785 | - color: var(--e-a-color-primary-bold); | |
| 4886 | + color: #93003c; | |
| 5786 | 4887 | content: "\e93f"; |
| 5787 | 4888 | } |
| 5788 | 4889 | |
| 5789 | 4890 | #elementor-template-library-filter-my-favorites-label { |
| @@ -5790,24 +4891,21 @@ | ||
| 5790 | 4891 | cursor: pointer; |
| 5791 | 4892 | text-transform: uppercase; |
| 5792 | 4893 | } |
| 5793 | 4894 | #elementor-template-library-filter-my-favorites-label:hover { |
| 5794 | - color: var(--e-a-color-txt-hover); | |
| 4895 | + color: #556068; | |
| 5795 | 4896 | } |
| 5796 | 4897 | #elementor-template-library-filter-my-favorites-label:hover i:after { |
| 5797 | - color: var(--e-a-color-primary-bold); | |
| 4898 | + color: #93003c; | |
| 5798 | 4899 | } |
| 5799 | 4900 | #elementor-template-library-filter-my-favorites-label i { |
| 5800 | - padding-inline-end: 5px; | |
| 4901 | + padding-left: 5px; | |
| 5801 | 4902 | } |
| 5802 | 4903 | #elementor-template-library-filter-my-favorites-label i:after { |
| 4904 | + color: #a4afb7; | |
| 5803 | 4905 | content: "\e923"; |
| 5804 | 4906 | } |
| 5805 | 4907 | |
| 5806 | -#elementor-template-library-create-new-folder-dialog .elementor-create-folder-template-dialog__p { | |
| 5807 | - margin-block-end: 10px; | |
| 5808 | -} | |
| 5809 | - | |
| 5810 | 4908 | #elementor-template-library-filter-text-wrapper { |
| 5811 | 4909 | width: 200px; |
| 5812 | 4910 | position: relative; |
| 5813 | 4911 | } |
| @@ -5812,79 +4910,76 @@ | ||
| 5812 | 4910 | position: relative; |
| 5813 | 4911 | } |
| 5814 | 4912 | #elementor-template-library-filter-text-wrapper i { |
| 5815 | 4913 | position: absolute; |
| 5816 | - inset-block-start: 50%; | |
| 5817 | - inset-inline-end: 0; | |
| 5818 | - transform: translateY(-50%); | |
| 4914 | + top: 50%; | |
| 4915 | + left: 0; | |
| 4916 | + -webkit-transform: translateY(-50%); | |
| 4917 | + -ms-transform: translateY(-50%); | |
| 4918 | + transform: translateY(-50%); | |
| 5819 | 4919 | } |
| 5820 | -#elementor-template-library-filter-text-wrapper i.eicon-loading.eicon-animation-spin { | |
| 5821 | - inset-block-start: 25%; | |
| 5822 | -} | |
| 5823 | 4920 | |
| 5824 | 4921 | #elementor-template-library-filter-text { |
| 5825 | 4922 | border: none; |
| 5826 | - border-block-end: var(--e-a-border-bold); | |
| 4923 | + border-bottom: 1px solid #d5dadf; | |
| 5827 | 4924 | border-radius: 0; |
| 5828 | 4925 | font-size: 11px; |
| 5829 | 4926 | padding: 8px 15px 8px 0; |
| 4927 | + -webkit-transition: border 0.5s; | |
| 4928 | + -o-transition: border 0.5s; | |
| 5830 | 4929 | transition: border 0.5s; |
| 5831 | 4930 | } |
| 5832 | 4931 | #elementor-template-library-filter-text:focus { |
| 5833 | - border-color: var(--e-a-border-color-focus); | |
| 4932 | + border-color: #c2cbd2; | |
| 5834 | 4933 | } |
| 4934 | +#elementor-template-library-filter-text::-webkit-input-placeholder { | |
| 4935 | + font-weight: 300; | |
| 4936 | + text-transform: uppercase; | |
| 4937 | +} | |
| 5835 | 4938 | #elementor-template-library-filter-text::-moz-placeholder { |
| 5836 | 4939 | font-weight: 300; |
| 5837 | 4940 | text-transform: uppercase; |
| 5838 | 4941 | } |
| 4942 | +#elementor-template-library-filter-text::-ms-input-placeholder { | |
| 4943 | + font-weight: 300; | |
| 4944 | + text-transform: uppercase; | |
| 4945 | +} | |
| 5839 | 4946 | #elementor-template-library-filter-text::placeholder { |
| 5840 | 4947 | font-weight: 300; |
| 5841 | 4948 | text-transform: uppercase; |
| 5842 | 4949 | } |
| 4950 | +#elementor-template-library-filter-text:focus { | |
| 4951 | + border-color: #c2cbd2; | |
| 4952 | +} | |
| 5843 | 4953 | |
| 5844 | 4954 | .elementor-template-library-template-remote { |
| 5845 | - margin: calc(30px / 2); | |
| 4955 | + margin: calc( 30px / 2 ); | |
| 5846 | 4956 | padding: 8px; |
| 5847 | - border: var(--e-a-border); | |
| 4957 | + background-color: #fff; | |
| 4958 | + -webkit-box-shadow: 0 1px 20px 0 rgba(0, 0, 0, 0.07); | |
| 4959 | + box-shadow: 0 1px 20px 0 rgba(0, 0, 0, 0.07); | |
| 5848 | 4960 | border-radius: 3px; |
| 5849 | 4961 | } |
| 5850 | -.elementor-template-library-template-remote:focus-visible { | |
| 5851 | - outline: 2px solid var(--e-a-border-color-focus); | |
| 5852 | - outline-offset: 2px; | |
| 5853 | -} | |
| 5854 | -.elementor-template-library-template-remote:hover, .elementor-template-library-template-remote:focus, .elementor-template-library-template-remote:focus-within { | |
| 5855 | - background-color: var(--e-a-bg-hover); | |
| 5856 | -} | |
| 5857 | -.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 { | |
| 5858 | - opacity: 1; | |
| 5859 | -} | |
| 5860 | -.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 { | |
| 4962 | +.elementor-template-library-template-remote:hover .elementor-template-library-template-name { | |
| 5861 | 4963 | display: none; |
| 5862 | 4964 | } |
| 5863 | -.elementor-template-library-template-remote:hover .elementor-template-library-favorite, | |
| 5864 | -.elementor-template-library-template-remote:hover .elementor-template-library-template-action, .elementor-template-library-template-remote:focus .elementor-template-library-favorite, | |
| 5865 | -.elementor-template-library-template-remote:focus .elementor-template-library-template-action, .elementor-template-library-template-remote:focus-within .elementor-template-library-favorite, | |
| 5866 | -.elementor-template-library-template-remote:focus-within .elementor-template-library-template-action { | |
| 5867 | - display: initial; | |
| 5868 | -} | |
| 5869 | -.elementor-template-library-template-remote:not(:hover):not(:focus):not(:focus-within) .elementor-template-library-template-preview { | |
| 4965 | +.elementor-template-library-template-remote:not(:hover) .elementor-template-library-template-preview { | |
| 5870 | 4966 | opacity: 0; |
| 5871 | 4967 | } |
| 5872 | -.elementor-template-library-template-remote:not(:hover):not(:focus):not(:focus-within) .elementor-template-library-favorite, | |
| 5873 | -.elementor-template-library-template-remote:not(:hover):not(:focus):not(:focus-within) .elementor-template-library-template-action { | |
| 4968 | +.elementor-template-library-template-remote:not(:hover) .elementor-template-library-favorite, | |
| 4969 | +.elementor-template-library-template-remote:not(:hover) .elementor-template-library-template-action { | |
| 5874 | 4970 | display: none; |
| 5875 | 4971 | } |
| 5876 | 4972 | .elementor-template-library-template-remote.elementor-template-library-pro-template .elementor-template-library-template-body:before { |
| 5877 | 4973 | content: var(--elementor-template-library-subscription-plan-label); |
| 5878 | - background-color: var(--e-a-color-accent); | |
| 5879 | - color: var(--e-a-color-white); | |
| 4974 | + background-color: var(--elementor-template-library-subscription-plan-color); | |
| 4975 | + color: #d5dadf; | |
| 5880 | 4976 | position: absolute; |
| 5881 | 4977 | text-transform: uppercase; |
| 5882 | - line-height: 1; | |
| 5883 | - inset-block-start: 5px; | |
| 5884 | - inset-inline-end: 5px; | |
| 5885 | - padding: 3px 5px; | |
| 5886 | - font-size: 8px; | |
| 4978 | + top: 5px; | |
| 4979 | + left: 5px; | |
| 4980 | + padding: 2px 4px 0; | |
| 4981 | + font-size: 9px; | |
| 5887 | 4982 | border-radius: 2px; |
| 5888 | 4983 | } |
| 5889 | 4984 | .elementor-template-library-template-remote:not(.elementor-template-library-template-page):not(.elementor-template-library-template-lp) { |
| 5890 | 4985 | position: relative; |
| @@ -5897,19 +4992,25 @@ | ||
| 5897 | 4992 | } |
| 5898 | 4993 | .elementor-template-library-template-remote:not(.elementor-template-library-template-page):not(.elementor-template-library-template-lp) .elementor-template-library-template-footer { |
| 5899 | 4994 | position: absolute; |
| 5900 | 4995 | width: 100%; |
| 5901 | - inset-block-end: 0; | |
| 5902 | - inset-inline-start: 0; | |
| 4996 | + bottom: 0; | |
| 4997 | + right: 0; | |
| 5903 | 4998 | padding: 10px; |
| 5904 | - background-color: var(--e-a-bg-default); | |
| 4999 | + background-color: #fff; | |
| 5000 | + -webkit-transition: -webkit-transform 0.5s; | |
| 5001 | + transition: -webkit-transform 0.5s; | |
| 5002 | + -o-transition: transform 0.5s; | |
| 5905 | 5003 | transition: transform 0.5s; |
| 5004 | + transition: transform 0.5s, -webkit-transform 0.5s; | |
| 5906 | 5005 | } |
| 5907 | 5006 | .elementor-template-library-template-remote:not(.elementor-template-library-template-page):not(.elementor-template-library-template-lp) .elementor-template-library-template-name { |
| 5908 | 5007 | display: none; |
| 5909 | 5008 | } |
| 5910 | -.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 { | |
| 5911 | - transform: translateY(100%); | |
| 5009 | +.elementor-template-library-template-remote:not(.elementor-template-library-template-page):not(.elementor-template-library-template-lp):not(:hover) .elementor-template-library-template-footer { | |
| 5010 | + -webkit-transform: translateY(100%); | |
| 5011 | + -ms-transform: translateY(100%); | |
| 5012 | + transform: translateY(100%); | |
| 5912 | 5013 | } |
| 5913 | 5014 | .elementor-template-library-template-remote .elementor-template-library-template-body { |
| 5914 | 5015 | position: relative; |
| 5915 | 5016 | } |
| @@ -5921,85 +5022,91 @@ | ||
| 5921 | 5022 | .elementor-template-library-template-remote .elementor-template-library-template-screenshot { |
| 5922 | 5023 | height: 100%; |
| 5923 | 5024 | background-size: cover; |
| 5924 | 5025 | background-position-x: 50%; |
| 5925 | - box-shadow: inset 0px -2px 15px -6px rgba(0, 0, 0, 0.07); | |
| 5026 | + -webkit-box-shadow: inset 0px -2px 15px -6px rgba(0, 0, 0, 0.07); | |
| 5027 | + box-shadow: inset 0px -2px 15px -6px rgba(0, 0, 0, 0.07); | |
| 5926 | 5028 | } |
| 5927 | 5029 | .elementor-template-library-template-remote .elementor-template-library-template-preview { |
| 5928 | 5030 | position: absolute; |
| 5929 | - inset: 0; | |
| 5031 | + top: 0; | |
| 5032 | + left: 0; | |
| 5033 | + width: 100%; | |
| 5034 | + height: 100%; | |
| 5930 | 5035 | background-color: rgba(0, 0, 0, 0.5); |
| 5036 | + -webkit-transition: opacity 0.5s; | |
| 5037 | + -o-transition: opacity 0.5s; | |
| 5931 | 5038 | transition: opacity 0.5s; |
| 5932 | 5039 | cursor: pointer; |
| 5933 | 5040 | } |
| 5934 | 5041 | .elementor-template-library-template-remote .elementor-template-library-template-preview i { |
| 5935 | 5042 | font-size: 20px; |
| 5043 | + color: #d5dadf; | |
| 5936 | 5044 | position: absolute; |
| 5937 | - inset-block-start: 50%; | |
| 5938 | - inset-inline-start: 50%; | |
| 5939 | - transform: translate(calc(-50% * var(--direction-multiplier)), -50%); | |
| 5045 | + top: 50%; | |
| 5046 | + left: 50%; | |
| 5047 | + -webkit-transform: translate(-50%, -50%); | |
| 5048 | + -ms-transform: translate(-50%, -50%); | |
| 5049 | + transform: translate(-50%, -50%); | |
| 5940 | 5050 | } |
| 5051 | +.elementor-template-library-template-remote .elementor-template-library-template-insert { | |
| 5052 | + color: #39b54a; | |
| 5053 | +} | |
| 5054 | +.elementor-template-library-template-remote .elementor-go-pro { | |
| 5055 | + color: #93003c; | |
| 5056 | +} | |
| 5941 | 5057 | .elementor-template-library-template-remote .elementor-template-library-template-footer { |
| 5058 | + display: -webkit-box; | |
| 5059 | + display: -ms-flexbox; | |
| 5942 | 5060 | display: flex; |
| 5943 | - justify-content: space-between; | |
| 5061 | + -webkit-box-pack: justify; | |
| 5062 | + -ms-flex-pack: justify; | |
| 5063 | + justify-content: space-between; | |
| 5064 | + margin-top: 10px; | |
| 5944 | 5065 | font-size: 11px; |
| 5945 | 5066 | line-height: 1; |
| 5946 | - height: 40px; | |
| 5947 | - align-items: center; | |
| 5948 | 5067 | } |
| 5949 | 5068 | .elementor-template-library-template-remote .elementor-template-library-template-name { |
| 5950 | - text-align: start; | |
| 5951 | - flex-grow: 1; | |
| 5069 | + text-align: right; | |
| 5070 | + color: #6d7882; | |
| 5071 | + -webkit-box-flex: 1; | |
| 5072 | + -ms-flex-positive: 1; | |
| 5073 | + flex-grow: 1; | |
| 5952 | 5074 | white-space: nowrap; |
| 5953 | - text-overflow: ellipsis; | |
| 5075 | + -o-text-overflow: ellipsis; | |
| 5076 | + text-overflow: ellipsis; | |
| 5954 | 5077 | overflow: hidden; |
| 5955 | - padding-inline-end: 5px; | |
| 5078 | + padding-left: 5px; | |
| 5956 | 5079 | } |
| 5957 | -.elementor-template-library-template-remote .elementor-template-library-favorite { | |
| 5958 | - margin-inline-start: auto; | |
| 5959 | -} | |
| 5960 | 5080 | .elementor-template-library-template-remote .elementor-template-library-template-favorite-input { |
| 5961 | - position: absolute; | |
| 5962 | - width: 1px; | |
| 5963 | - height: 1px; | |
| 5964 | - padding: 0; | |
| 5965 | - margin: -1px; | |
| 5966 | - overflow: hidden; | |
| 5967 | - clip: rect(0, 0, 0, 0); | |
| 5968 | - white-space: nowrap; | |
| 5969 | - border: 0; | |
| 5081 | + display: none; | |
| 5970 | 5082 | } |
| 5971 | -.elementor-template-library-template-remote .elementor-template-library-template-favorite-input:focus-visible + .elementor-template-library-template-favorite-label { | |
| 5972 | - outline: 2px solid var(--e-a-border-color-focus); | |
| 5973 | - outline-offset: 2px; | |
| 5974 | -} | |
| 5975 | 5083 | .elementor-template-library-template-remote .elementor-template-library-template-favorite-input:checked + .elementor-template-library-template-favorite-label i:before { |
| 5976 | 5084 | content: "\e93f"; |
| 5977 | - color: var(--e-a-color-primary-bold); | |
| 5085 | + color: #93003c; | |
| 5978 | 5086 | } |
| 5979 | 5087 | .elementor-template-library-template-remote .elementor-template-library-template-favorite-label { |
| 5980 | - font-size: 15px; | |
| 5981 | 5088 | cursor: pointer; |
| 5982 | 5089 | } |
| 5983 | 5090 | .elementor-template-library-template-remote .elementor-template-library-template-favorite-label:hover i { |
| 5984 | - color: var(--e-a-color-primary-bold); | |
| 5091 | + color: #93003c; | |
| 5985 | 5092 | } |
| 5986 | 5093 | |
| 5987 | 5094 | @media (max-width: 1439px) { |
| 5988 | 5095 | .elementor-template-library-template-page, |
| 5989 | - .elementor-template-library-template-lp { | |
| 5096 | +.elementor-template-library-template-lp { | |
| 5990 | 5097 | width: calc(25% - 30px); |
| 5991 | 5098 | } |
| 5992 | 5099 | } |
| 5993 | 5100 | @media (min-width: 1440px) { |
| 5994 | 5101 | .elementor-template-library-template-page, |
| 5995 | - .elementor-template-library-template-lp { | |
| 5102 | +.elementor-template-library-template-lp { | |
| 5996 | 5103 | width: calc(20% - 30px); |
| 5997 | 5104 | } |
| 5998 | 5105 | } |
| 5999 | 5106 | @media (max-width: 1025px) { |
| 6000 | 5107 | .elementor-template-library-template-page, |
| 6001 | - .elementor-template-library-template-lp { | |
| 5108 | +.elementor-template-library-template-lp { | |
| 6002 | 5109 | width: calc(33.333% - 30px); |
| 6003 | 5110 | } |
| 6004 | 5111 | } |
| 6005 | 5112 | .elementor-template-library-template-page .elementor-template-library-template-body, |
| @@ -6007,231 +5114,145 @@ | ||
| 6007 | 5114 | height: 200px; |
| 6008 | 5115 | } |
| 6009 | 5116 | |
| 6010 | 5117 | #elementor-template-library-order-toolbar-local, |
| 6011 | -.elementor-template-library-template-local, | |
| 6012 | -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) { | |
| 5118 | +.elementor-template-library-template-local { | |
| 5119 | + display: -webkit-box; | |
| 5120 | + display: -ms-flexbox; | |
| 6013 | 5121 | display: flex; |
| 6014 | - align-items: center; | |
| 5122 | + -webkit-box-align: center; | |
| 5123 | + -ms-flex-align: center; | |
| 5124 | + align-items: center; | |
| 6015 | 5125 | padding: 0 25px; |
| 6016 | - text-align: start; | |
| 5126 | + text-align: right; | |
| 6017 | 5127 | } |
| 6018 | -@media (max-width: 1439px) { | |
| 6019 | - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-1, | |
| 6020 | - .elementor-template-library-template-local .elementor-template-library-local-column-1, | |
| 6021 | - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-1 { | |
| 6022 | - width: 33%; | |
| 6023 | - } | |
| 6024 | - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-2, | |
| 6025 | - .elementor-template-library-template-local .elementor-template-library-local-column-2, | |
| 6026 | - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-2 { | |
| 6027 | - width: 10%; | |
| 6028 | - } | |
| 6029 | - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-3, | |
| 6030 | - .elementor-template-library-template-local .elementor-template-library-local-column-3, | |
| 6031 | - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-3 { | |
| 6032 | - width: 15%; | |
| 6033 | - } | |
| 6034 | - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-4, | |
| 6035 | - .elementor-template-library-template-local .elementor-template-library-local-column-4, | |
| 6036 | - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-4 { | |
| 6037 | - width: 15%; | |
| 6038 | - } | |
| 6039 | - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-5, | |
| 6040 | - .elementor-template-library-template-local .elementor-template-library-local-column-5, | |
| 6041 | - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-5 { | |
| 6042 | - width: 27%; | |
| 6043 | - } | |
| 6044 | -} | |
| 6045 | -@media (min-width: 1440px) { | |
| 6046 | - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-1, | |
| 6047 | - .elementor-template-library-template-local .elementor-template-library-local-column-1, | |
| 6048 | - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-1 { | |
| 6049 | - width: 25%; | |
| 6050 | - } | |
| 6051 | - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-2, | |
| 6052 | - .elementor-template-library-template-local .elementor-template-library-local-column-2, | |
| 6053 | - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-2 { | |
| 6054 | - width: 17%; | |
| 6055 | - } | |
| 6056 | - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-3, | |
| 6057 | - .elementor-template-library-template-local .elementor-template-library-local-column-3, | |
| 6058 | - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-3 { | |
| 6059 | - width: 17%; | |
| 6060 | - } | |
| 6061 | - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-4, | |
| 6062 | - .elementor-template-library-template-local .elementor-template-library-local-column-4, | |
| 6063 | - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-4 { | |
| 6064 | - width: 17%; | |
| 6065 | - } | |
| 6066 | - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-5, | |
| 6067 | - .elementor-template-library-template-local .elementor-template-library-local-column-5, | |
| 6068 | - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-5 { | |
| 6069 | - width: 24%; | |
| 6070 | - } | |
| 6071 | -} | |
| 6072 | -@media (max-width: 1024px) { | |
| 6073 | - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-3, | |
| 6074 | - .elementor-template-library-template-local .elementor-template-library-local-column-3, | |
| 6075 | - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-3 { | |
| 6076 | - display: none; | |
| 6077 | - } | |
| 6078 | - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-5, | |
| 6079 | - .elementor-template-library-template-local .elementor-template-library-local-column-5, | |
| 6080 | - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-5 { | |
| 6081 | - width: 41%; | |
| 6082 | - } | |
| 6083 | -} | |
| 6084 | 5128 | |
| 6085 | -.elementor-template-library-template-local .elementor-template-library-template-more, | |
| 6086 | -.elementor-template-library-template-cloud .elementor-template-library-template-more { | |
| 6087 | - display: none; | |
| 6088 | - position: absolute; | |
| 6089 | - background-color: var(--e-a-bg-default); | |
| 6090 | - border-radius: var(--e-a-border-radius); | |
| 6091 | - box-shadow: 1px 3px 11px rgba(0, 0, 0, 0.3); | |
| 6092 | - inset-block-start: 100%; | |
| 6093 | - inset-inline-end: 0; | |
| 6094 | - z-index: 1; | |
| 6095 | - list-style: none; | |
| 6096 | - margin: 0; | |
| 6097 | - padding: 0; | |
| 5129 | +#elementor-template-library-order-toolbar-local { | |
| 5130 | + margin-top: 30px; | |
| 6098 | 5131 | } |
| 6099 | -.elementor-template-library-template-local .elementor-template-library-template-more > li button, | |
| 6100 | -.elementor-template-library-template-local .elementor-template-library-template-more > li a, | |
| 6101 | -.elementor-template-library-template-cloud .elementor-template-library-template-more > li button, | |
| 6102 | -.elementor-template-library-template-cloud .elementor-template-library-template-more > li a { | |
| 6103 | - background: transparent; | |
| 6104 | - margin: 0; | |
| 6105 | - font-size: inherit; | |
| 6106 | - font-family: inherit; | |
| 6107 | - color: inherit; | |
| 6108 | - border: none; | |
| 6109 | - padding: 10px 20px; | |
| 6110 | - font-size: 11px; | |
| 6111 | - cursor: pointer; | |
| 6112 | - display: flex; | |
| 6113 | - align-items: center; | |
| 6114 | - gap: 8px; | |
| 6115 | - width: 100%; | |
| 5132 | +#elementor-template-library-order-toolbar-local .elementor-template-library-order-label { | |
| 5133 | + line-height: 1; | |
| 5134 | + font-size: 10px; | |
| 5135 | + font-weight: 500; | |
| 6116 | 5136 | } |
| 6117 | -.elementor-template-library-template-local .elementor-template-library-template-more > li button.disabled, | |
| 6118 | -.elementor-template-library-template-local .elementor-template-library-template-more > li a.disabled, | |
| 6119 | -.elementor-template-library-template-cloud .elementor-template-library-template-more > li button.disabled, | |
| 6120 | -.elementor-template-library-template-cloud .elementor-template-library-template-more > li a.disabled { | |
| 6121 | - cursor: not-allowed; | |
| 6122 | - color: var(--e-a-color-txt-disabled); | |
| 5137 | +#elementor-template-library-order-toolbar-local .elementor-template-library-order-label:not(:hover) { | |
| 5138 | + color: #a4afb7; | |
| 6123 | 5139 | } |
| 6124 | -.elementor-template-library-template-local .elementor-template-library-template-more > li a, | |
| 6125 | -.elementor-template-library-template-cloud .elementor-template-library-template-more > li a { | |
| 6126 | - color: var(--e-a-color-txt); | |
| 6127 | - text-decoration: none; | |
| 6128 | -} | |
| 6129 | -.elementor-template-library-template-local .elementor-template-library-template-more .elementor-template-library-template-delete, | |
| 6130 | -.elementor-template-library-template-cloud .elementor-template-library-template-more .elementor-template-library-template-delete { | |
| 6131 | - color: var(--e-a-color-danger); | |
| 6132 | -} | |
| 6133 | -.elementor-template-library-template-local .elementor-template-library-template-more i, | |
| 6134 | -.elementor-template-library-template-cloud .elementor-template-library-template-more i { | |
| 6135 | - font-size: 16px; | |
| 6136 | -} | |
| 6137 | -.elementor-template-library-template-local .elementor-template-library-template-more-toggle, | |
| 6138 | -.elementor-template-library-template-cloud .elementor-template-library-template-more-toggle { | |
| 6139 | - margin-inline-start: auto; | |
| 6140 | - cursor: pointer; | |
| 6141 | - background: none; | |
| 6142 | - border: none; | |
| 6143 | - padding: 0; | |
| 6144 | - display: flex; | |
| 6145 | - align-items: center; | |
| 6146 | - justify-content: center; | |
| 6147 | -} | |
| 6148 | -.elementor-template-library-template-local .elementor-template-library-template-more-toggle i, | |
| 6149 | -.elementor-template-library-template-cloud .elementor-template-library-template-more-toggle i { | |
| 6150 | - font-size: 20px; | |
| 6151 | -} | |
| 6152 | 5140 | |
| 6153 | -.elementor-template-library-template-local, | |
| 6154 | -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) { | |
| 5141 | +.elementor-template-library-template-local { | |
| 6155 | 5142 | height: 50px; |
| 6156 | 5143 | width: 100%; |
| 6157 | - margin-block-start: 1px; | |
| 5144 | + margin-top: 1px; | |
| 5145 | + background-color: #fff; | |
| 5146 | + -webkit-transition: background-color 0.3s linear; | |
| 5147 | + -o-transition: background-color 0.3s linear; | |
| 6158 | 5148 | transition: background-color 0.3s linear; |
| 6159 | 5149 | } |
| 6160 | -.elementor-template-library-template-local:hover, | |
| 6161 | -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid):hover { | |
| 6162 | - background-color: var(--e-a-bg-hover); | |
| 5150 | +.elementor-template-library-template-local:hover { | |
| 5151 | + background-color: #fafbfb; | |
| 6163 | 5152 | } |
| 6164 | -.elementor-template-library-template-local:first-child, | |
| 6165 | -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid):first-child { | |
| 6166 | - border-start-start-radius: 3px; | |
| 6167 | - border-start-end-radius: 3px; | |
| 6168 | - border-end-start-radius: 0; | |
| 6169 | - border-end-end-radius: 0; | |
| 5153 | +.elementor-template-library-template-local:not(:hover) .elementor-template-library-template-insert { | |
| 5154 | + background: none; | |
| 5155 | + color: #a4afb7; | |
| 6170 | 5156 | } |
| 6171 | -.elementor-template-library-template-local:last-child, | |
| 6172 | -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid):last-child { | |
| 6173 | - border-start-start-radius: 0; | |
| 6174 | - border-start-end-radius: 0; | |
| 6175 | - border-end-start-radius: 3px; | |
| 6176 | - border-end-end-radius: 3px; | |
| 5157 | +.elementor-template-library-template-local:first-child { | |
| 5158 | + border-radius: 3px 3px 0 0; | |
| 6177 | 5159 | } |
| 6178 | -.elementor-template-library-template-local .elementor-template-library-template-name, | |
| 6179 | -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-name { | |
| 5160 | +.elementor-template-library-template-local:last-child { | |
| 5161 | + border-radius: 0 0 3px 3px; | |
| 5162 | +} | |
| 5163 | +.elementor-template-library-template-local .elementor-template-library-template-name { | |
| 6180 | 5164 | font-weight: 500; |
| 6181 | 5165 | } |
| 6182 | -.elementor-template-library-template-local .elementor-template-library-template-name i, | |
| 6183 | -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-name i { | |
| 6184 | - font-size: 16px; | |
| 6185 | -} | |
| 6186 | 5166 | .elementor-template-library-template-local .elementor-template-library-template-name, |
| 6187 | -.elementor-template-library-template-local .elementor-template-library-template-meta, | |
| 6188 | -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-name, | |
| 6189 | -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-meta { | |
| 6190 | - padding-inline-end: 20px; | |
| 5167 | +.elementor-template-library-template-local .elementor-template-library-template-meta { | |
| 5168 | + padding-left: 20px; | |
| 6191 | 5169 | } |
| 6192 | -.elementor-template-library-template-local .elementor-template-library-local-column-1 i, | |
| 6193 | -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-1 i { | |
| 6194 | - padding-inline-end: 10px; | |
| 5170 | +.elementor-template-library-template-local .elementor-template-library-template-meta { | |
| 5171 | + color: #a4afb7; | |
| 6195 | 5172 | } |
| 6196 | 5173 | .elementor-template-library-template-local .elementor-template-library-template-name, |
| 6197 | 5174 | .elementor-template-library-template-local .elementor-template-library-template-meta, |
| 6198 | 5175 | .elementor-template-library-template-local .elementor-template-library-template-preview, |
| 6199 | -.elementor-template-library-template-local .elementor-template-library-template-action, | |
| 6200 | -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-name, | |
| 6201 | -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-meta, | |
| 6202 | -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-preview, | |
| 6203 | -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-action { | |
| 5176 | +.elementor-template-library-template-local .elementor-template-library-template-action { | |
| 6204 | 5177 | white-space: nowrap; |
| 6205 | - text-overflow: ellipsis; | |
| 5178 | + -o-text-overflow: ellipsis; | |
| 5179 | + text-overflow: ellipsis; | |
| 6206 | 5180 | overflow: hidden; |
| 6207 | 5181 | } |
| 6208 | -.elementor-template-library-template-local .elementor-template-library-template-controls, | |
| 6209 | -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-controls { | |
| 5182 | +.elementor-template-library-template-local .elementor-template-library-template-controls { | |
| 6210 | 5183 | position: relative; |
| 5184 | + display: -webkit-box; | |
| 5185 | + display: -ms-flexbox; | |
| 6211 | 5186 | display: flex; |
| 6212 | - align-items: center; | |
| 5187 | + -webkit-box-align: center; | |
| 5188 | + -ms-flex-align: center; | |
| 5189 | + align-items: center; | |
| 6213 | 5190 | } |
| 6214 | -.elementor-template-library-template-local .elementor-template-library-template-controls > div, | |
| 6215 | -.elementor-template-library-template-local .elementor-template-library-template-controls > button, | |
| 6216 | -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-controls > div, | |
| 6217 | -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-controls > button { | |
| 5191 | +.elementor-template-library-template-local .elementor-template-library-template-controls, .elementor-template-library-template-local .elementor-template-library-template-controls a { | |
| 5192 | + color: #a4afb7; | |
| 5193 | +} | |
| 5194 | +.elementor-template-library-template-local .elementor-template-library-template-controls > div { | |
| 6218 | 5195 | cursor: pointer; |
| 5196 | + -webkit-transition: color 0.5s; | |
| 5197 | + -o-transition: color 0.5s; | |
| 6219 | 5198 | transition: color 0.5s; |
| 6220 | 5199 | } |
| 6221 | -.elementor-template-library-template-local .elementor-template-library-template-insert.disabled, | |
| 6222 | -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-insert.disabled { | |
| 6223 | - color: #F5D0FE; | |
| 5200 | +.elementor-template-library-template-local .elementor-template-library-template-insert i { | |
| 5201 | + margin-left: 3px; | |
| 6224 | 5202 | } |
| 6225 | -.elementor-template-library-template-local .elementor-template-library-template-insert.disabled:hover, .elementor-template-library-template-local .elementor-template-library-template-insert.disabled:focus, | |
| 6226 | -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-insert.disabled:hover, | |
| 6227 | -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-insert.disabled:focus { | |
| 6228 | - cursor: not-allowed; | |
| 5203 | +.elementor-template-library-template-local .elementor-template-library-template-control-title { | |
| 5204 | + margin-right: 6px; | |
| 6229 | 5205 | } |
| 6230 | -.elementor-template-library-template-local .elementor-template-library-template-insert i, | |
| 6231 | -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-insert i { | |
| 6232 | - margin-inline-end: 3px; | |
| 5206 | +.elementor-template-library-template-local .elementor-template-library-template-more:hover, | |
| 5207 | +.elementor-template-library-template-local .elementor-template-library-template-more a:hover { | |
| 5208 | + color: #556068; | |
| 6233 | 5209 | } |
| 5210 | +.elementor-template-library-template-local .elementor-template-library-template-more .elementor-template-library-template-delete:hover { | |
| 5211 | + color: #d72b3f; | |
| 5212 | +} | |
| 5213 | +.elementor-template-library-template-local .elementor-template-library-template-action { | |
| 5214 | + padding: 8px 18px; | |
| 5215 | + margin: 0 5%; | |
| 5216 | +} | |
| 5217 | +.elementor-template-library-template-local .elementor-template-library-template-more { | |
| 5218 | + display: none; | |
| 5219 | + position: absolute; | |
| 5220 | + background-color: #fff; | |
| 5221 | + padding: 3px 20px; | |
| 5222 | + border-radius: 3px; | |
| 5223 | + -webkit-box-shadow: 1px 3px 11px rgba(0, 0, 0, 0.3); | |
| 5224 | + box-shadow: 1px 3px 11px rgba(0, 0, 0, 0.3); | |
| 5225 | + top: 100%; | |
| 5226 | + left: 0; | |
| 5227 | + -webkit-transform: translateX(-65%) translateY(-7px); | |
| 5228 | + -ms-transform: translateX(-65%) translateY(-7px); | |
| 5229 | + transform: translateX(-65%) translateY(-7px); | |
| 5230 | + z-index: 1; | |
| 5231 | +} | |
| 5232 | +.elementor-template-library-template-local .elementor-template-library-template-more:before { | |
| 5233 | + content: ""; | |
| 5234 | + position: absolute; | |
| 5235 | + border: solid transparent; | |
| 5236 | + border-width: 8px 4px; | |
| 5237 | + border-bottom-color: #fff; | |
| 5238 | + -webkit-transform: translateY(-100%); | |
| 5239 | + -ms-transform: translateY(-100%); | |
| 5240 | + transform: translateY(-100%); | |
| 5241 | +} | |
| 5242 | +.elementor-template-library-template-local .elementor-template-library-template-more > div { | |
| 5243 | + margin: 10px 0; | |
| 5244 | + font-size: 11px; | |
| 5245 | +} | |
| 5246 | +.elementor-template-library-template-local .elementor-template-library-template-more-toggle { | |
| 5247 | + -webkit-box-flex: 1; | |
| 5248 | + -ms-flex-positive: 1; | |
| 5249 | + flex-grow: 1; | |
| 5250 | + text-align: left; | |
| 5251 | +} | |
| 5252 | +.elementor-template-library-template-local .elementor-template-library-template-more-toggle i { | |
| 5253 | + font-size: 16px; | |
| 5254 | +} | |
| 6234 | 5255 | |
| 6235 | 5256 | #elementor-template-library-preview { |
| 6236 | 5257 | height: 100%; |
| 6237 | 5258 | overflow: hidden; |
| @@ -6237,9 +5258,11 @@ | ||
| 6237 | 5258 | overflow: hidden; |
| 6238 | 5259 | } |
| 6239 | 5260 | #elementor-template-library-preview iframe { |
| 6240 | 5261 | height: 150%; |
| 6241 | - transform: scale(0.666) translateX(calc(-25% * var(--direction-multiplier))) translateY(-25%); | |
| 5262 | + -webkit-transform: scale(0.666) translateX(25%) translateY(-25%); | |
| 5263 | + -ms-transform: scale(0.666) translateX(25%) translateY(-25%); | |
| 5264 | + transform: scale(0.666) translateX(25%) translateY(-25%); | |
| 6242 | 5265 | } |
| 6243 | 5266 | @media (max-width: 1439px) { |
| 6244 | 5267 | #elementor-template-library-preview iframe { |
| 6245 | 5268 | width: 1440px; |
| @@ -6246,23 +5269,18 @@ | ||
| 6246 | 5269 | } |
| 6247 | 5270 | } |
| 6248 | 5271 | @media (min-width: 1440px) { |
| 6249 | 5272 | #elementor-template-library-preview iframe { |
| 6250 | - width: 1730px; | |
| 5273 | + width: 1710px; | |
| 6251 | 5274 | } |
| 6252 | 5275 | } |
| 6253 | 5276 | |
| 6254 | 5277 | .elementor-template-library-blank-icon { |
| 6255 | - font-size: 64px; | |
| 6256 | - margin-block-start: 45px; | |
| 5278 | + font-size: 65px; | |
| 5279 | + margin-top: 45px; | |
| 5280 | + color: #c2cbd2; | |
| 6257 | 5281 | line-height: 1; |
| 6258 | 5282 | } |
| 6259 | -.elementor-template-library-blank-icon i { | |
| 6260 | - font-size: 85px; | |
| 6261 | -} | |
| 6262 | -.elementor-template-library-blank-icon i.eicon-library-upload { | |
| 6263 | - font-size: 65px; | |
| 6264 | -} | |
| 6265 | 5283 | .elementor-template-library-blank-icon img { |
| 6266 | 5284 | width: 70px; |
| 6267 | 5285 | } |
| 6268 | 5286 | .elementor-template-library-blank-icon .elementor-template-library-no-results { |
| @@ -6270,9 +5288,9 @@ | ||
| 6270 | 5288 | } |
| 6271 | 5289 | |
| 6272 | 5290 | .elementor-template-library-blank-title { |
| 6273 | 5291 | font-size: 30px; |
| 6274 | - margin-block-start: 20px; | |
| 5292 | + margin-top: 40px; | |
| 6275 | 5293 | } |
| 6276 | 5294 | @media (max-width: 1439px) { |
| 6277 | 5295 | .elementor-template-library-blank-title { |
| 6278 | 5296 | font-size: 25px; |
| @@ -6280,550 +5298,74 @@ | ||
| 6280 | 5298 | } |
| 6281 | 5299 | |
| 6282 | 5300 | .elementor-template-library-blank-message { |
| 6283 | 5301 | font-size: 18px; |
| 6284 | - margin-block-start: 15px; | |
| 5302 | + color: #a4afb7; | |
| 5303 | + margin-top: 15px; | |
| 6285 | 5304 | font-weight: 300; |
| 6286 | 5305 | } |
| 6287 | 5306 | @media (max-width: 1439px) { |
| 6288 | 5307 | .elementor-template-library-blank-message { |
| 6289 | 5308 | font-size: 16px; |
| 6290 | - margin-block-start: 10px; | |
| 5309 | + margin-top: 10px; | |
| 6291 | 5310 | } |
| 6292 | 5311 | } |
| 6293 | 5312 | |
| 6294 | 5313 | #elementor-template-library-save-template-form { |
| 6295 | - margin-block-start: 40px; | |
| 5314 | + margin-top: 40px; | |
| 5315 | + display: -webkit-box; | |
| 5316 | + display: -ms-flexbox; | |
| 6296 | 5317 | display: flex; |
| 6297 | - align-items: center; | |
| 6298 | - justify-content: center; | |
| 5318 | + -webkit-box-align: center; | |
| 5319 | + -ms-flex-align: center; | |
| 5320 | + align-items: center; | |
| 5321 | + -webkit-box-pack: center; | |
| 5322 | + -ms-flex-pack: center; | |
| 5323 | + justify-content: center; | |
| 6299 | 5324 | } |
| 6300 | 5325 | #elementor-template-library-save-template-form > * { |
| 6301 | 5326 | height: 55px; |
| 6302 | 5327 | font-size: 16px; |
| 6303 | 5328 | } |
| 6304 | -#elementor-template-library-save-template-form .cloud-library-form-inputs > * { | |
| 6305 | - height: 55px; | |
| 6306 | - font-size: 16px; | |
| 6307 | - margin-block-end: 15px; | |
| 6308 | -} | |
| 6309 | -#elementor-template-library-save-template-form .cloud-library-form-inputs { | |
| 6310 | - display: block; | |
| 6311 | - width: 500px; | |
| 6312 | - margin: 0 auto; | |
| 6313 | -} | |
| 6314 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .upgrade-tooltip, | |
| 6315 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .connect-badge { | |
| 6316 | - display: none; | |
| 6317 | -} | |
| 6318 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .divider { | |
| 6319 | - margin-inline: 5px; | |
| 6320 | -} | |
| 6321 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .upgrade-badge { | |
| 6322 | - display: none; | |
| 6323 | - border: 1px solid rgba(147, 0, 63, 0.5019607843); | |
| 6324 | - padding: 3px 5px; | |
| 6325 | - border-radius: 100px; | |
| 6326 | - margin-inline: 5px; | |
| 6327 | -} | |
| 6328 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .upgrade-badge a { | |
| 6329 | - color: var(--e-a-btn-bg-accent); | |
| 6330 | -} | |
| 6331 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .upgrade-badge a i { | |
| 6332 | - margin-inline-end: 5px; | |
| 6333 | -} | |
| 6334 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.max-capacity .quota-cta { | |
| 6335 | - display: inline; | |
| 6336 | -} | |
| 6337 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .ellipsis-container { | |
| 6338 | - display: inline; | |
| 6339 | - background: var(--e-a-bg-hover); | |
| 6340 | - padding: 0 2px 1px; | |
| 6341 | - border: none; | |
| 6342 | - border-radius: 2px; | |
| 6343 | - vertical-align: bottom; | |
| 6344 | - cursor: pointer; | |
| 6345 | - font-family: inherit; | |
| 6346 | - font-size: inherit; | |
| 6347 | - color: inherit; | |
| 6348 | - line-height: inherit; | |
| 6349 | -} | |
| 6350 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .ellipsis-container:hover { | |
| 6351 | - background: var(--e-a-bg-active); | |
| 6352 | -} | |
| 6353 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .ellipsis-container:focus-visible { | |
| 6354 | - outline: 2px solid var(--e-a-border-color-focus); | |
| 6355 | - outline-offset: 2px; | |
| 6356 | -} | |
| 6357 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.promotion .upgrade-tooltip, | |
| 6358 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.promotion .connect-badge, | |
| 6359 | -#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, | |
| 6360 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.max-capacity .connect-badge, | |
| 6361 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.max-capacity .upgrade-badge { | |
| 6362 | - display: inline; | |
| 6363 | -} | |
| 6364 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.promotion .ellipsis-container, | |
| 6365 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.promotion #cloud, | |
| 6366 | -#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, | |
| 6367 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.max-capacity #cloud, | |
| 6368 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.max-capacity .cloud label { | |
| 6369 | - pointer-events: none; | |
| 6370 | -} | |
| 6371 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.promotion .ellipsis-container, | |
| 6372 | -#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, | |
| 6373 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.max-capacity .divider { | |
| 6374 | - display: none; | |
| 6375 | -} | |
| 6376 | -#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 { | |
| 6377 | - color: var(--e-a-color-txt-muted); | |
| 6378 | - margin-inline: 5px; | |
| 6379 | -} | |
| 6380 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .quota-cta { | |
| 6381 | - display: none; | |
| 6382 | - float: inline-start; | |
| 6383 | -} | |
| 6384 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .quota-cta p { | |
| 6385 | - font-size: 13px; | |
| 6386 | - color: var(--e-a-btn-bg-accent); | |
| 6387 | - text-align: start; | |
| 6388 | -} | |
| 6389 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .quota-cta a { | |
| 6390 | - color: var(--e-a-btn-bg-accent); | |
| 6391 | - text-decoration: underline; | |
| 6392 | -} | |
| 6393 | -#elementor-template-library-save-template-form .cloud-library-form-inputs #elementor-template-library-save-template-submit { | |
| 6394 | - float: inline-end; | |
| 6395 | -} | |
| 6396 | -#elementor-template-library-save-template-form .cloud-library-form-inputs #elementor-template-library-save-template-submit[disabled] { | |
| 6397 | - cursor: not-allowed; | |
| 6398 | -} | |
| 6399 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections { | |
| 6400 | - display: flex; | |
| 6401 | - flex-direction: column; | |
| 6402 | - text-align: start; | |
| 6403 | - border: var(--e-a-border-bold); | |
| 6404 | - padding: 15px; | |
| 6405 | - height: auto; | |
| 6406 | - gap: 10px; | |
| 6407 | - position: relative; | |
| 6408 | -} | |
| 6409 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections input[type=checkbox]:checked { | |
| 6410 | - background: #69727D; | |
| 6411 | - inset-block-start: -3px; | |
| 6412 | - position: relative; | |
| 6413 | -} | |
| 6414 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input { | |
| 6415 | - position: relative; | |
| 6416 | - display: inline-block; | |
| 6417 | -} | |
| 6418 | -#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 { | |
| 6419 | - white-space: nowrap; | |
| 6420 | - text-overflow: ellipsis; | |
| 6421 | - overflow: hidden; | |
| 6422 | - overflow: visible; | |
| 6423 | - display: inline-flex; | |
| 6424 | - align-items: baseline; | |
| 6425 | - line-height: 27px; | |
| 6426 | -} | |
| 6427 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input #cloud, | |
| 6428 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input #local { | |
| 6429 | - flex-shrink: 0; | |
| 6430 | - position: relative; | |
| 6431 | - inset-block-start: 2px; | |
| 6432 | -} | |
| 6433 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input #cloud:checked, | |
| 6434 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input #local:checked { | |
| 6435 | - inset-block-start: -2px; | |
| 6436 | -} | |
| 6437 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input .eicon-ellipsis-h { | |
| 6438 | - vertical-align: bottom; | |
| 6439 | -} | |
| 6440 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input .eicon-info { | |
| 6441 | - margin-inline: 5px; | |
| 6442 | - color: var(--e-a-color-txt-muted); | |
| 6443 | - cursor: pointer; | |
| 6444 | -} | |
| 6445 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input .selected-folder { | |
| 6446 | - display: none; | |
| 6447 | - margin-inline-end: 5px; | |
| 6448 | - align-items: baseline; | |
| 6449 | - white-space: nowrap; | |
| 6450 | - text-overflow: ellipsis; | |
| 6451 | - overflow: hidden; | |
| 6452 | -} | |
| 6453 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input .selected-folder[style*="display: inline"] { | |
| 6454 | - display: inline-flex !important; | |
| 6455 | -} | |
| 6456 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input .selected-folder-text { | |
| 6457 | - text-decoration: underline; | |
| 6458 | - cursor: pointer; | |
| 6459 | - white-space: nowrap; | |
| 6460 | - text-overflow: ellipsis; | |
| 6461 | - overflow: hidden; | |
| 6462 | -} | |
| 6463 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input .eicon-editor-close { | |
| 6464 | - cursor: pointer; | |
| 6465 | - flex-shrink: 0; | |
| 6466 | -} | |
| 6467 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input #elementor-template-library-connect__badge { | |
| 6468 | - color: var(--e-a-color-primary-bold); | |
| 6469 | - font-size: 14px; | |
| 6470 | -} | |
| 6471 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input #elementor-template-library-connect__badge:hover { | |
| 6472 | - text-decoration: underline; | |
| 6473 | -} | |
| 6474 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown { | |
| 6475 | - display: none; | |
| 6476 | - position: absolute; | |
| 6477 | - inset-block-start: 40px; | |
| 6478 | - background-color: var(--e-a-bg-default); | |
| 6479 | - min-width: 187px; | |
| 6480 | - overflow: auto; | |
| 6481 | - box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2); | |
| 6482 | - z-index: 1; | |
| 6483 | - border-radius: 2px; | |
| 6484 | - max-width: 450px; | |
| 6485 | -} | |
| 6486 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown li { | |
| 6487 | - white-space: nowrap; | |
| 6488 | - text-overflow: ellipsis; | |
| 6489 | - overflow: hidden; | |
| 6490 | -} | |
| 6491 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .eicon-loading { | |
| 6492 | - margin: 15px; | |
| 6493 | -} | |
| 6494 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .eicon-folder-o { | |
| 6495 | - margin-inline-end: 10px; | |
| 6496 | -} | |
| 6497 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-list { | |
| 6498 | - max-height: 170px; | |
| 6499 | -} | |
| 6500 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item { | |
| 6501 | - padding: 5px 15px; | |
| 6502 | - cursor: pointer; | |
| 6503 | - list-style: none; | |
| 6504 | -} | |
| 6505 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item[data-id="0"] .eicon-folder-o { | |
| 6506 | - display: none; | |
| 6507 | -} | |
| 6508 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item .eicon-loading { | |
| 6509 | - margin: 0px; | |
| 6510 | -} | |
| 6511 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item[data-id="0"] { | |
| 6512 | - text-decoration: underline; | |
| 6513 | -} | |
| 6514 | -#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 { | |
| 6515 | - background: var(--e-a-border-color); | |
| 6516 | -} | |
| 6517 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item:focus-visible { | |
| 6518 | - outline: 2px solid var(--e-a-border-color-focus); | |
| 6519 | - outline-offset: -2px; | |
| 6520 | -} | |
| 6521 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item.disabled { | |
| 6522 | - pointer-events: none; | |
| 6523 | - opacity: 0.3; | |
| 6524 | -} | |
| 6525 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .no-results { | |
| 6526 | - text-align: center; | |
| 6527 | - font-size: 13px; | |
| 6528 | - margin: 0 20px; | |
| 6529 | - padding-block: 15px; | |
| 6530 | - pointer-events: none; | |
| 6531 | -} | |
| 6532 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .no-results i { | |
| 6533 | - font-size: 24px; | |
| 6534 | - padding-block-end: 10px; | |
| 6535 | -} | |
| 6536 | -#elementor-template-library-save-template-form .cloud-library-form-inputs #elementor-template-library-save-template-name { | |
| 6537 | - border-block-start: none; | |
| 6538 | - border-inline: none; | |
| 6539 | -} | |
| 6540 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input.disabled { | |
| 6541 | - pointer-events: none; | |
| 6542 | - opacity: 0.3; | |
| 6543 | -} | |
| 6544 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b { | |
| 6545 | - display: flex; | |
| 6546 | - flex-direction: column; | |
| 6547 | - width: 600px; | |
| 6548 | - text-align: start; | |
| 6549 | -} | |
| 6550 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .template-name-label, | |
| 6551 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .save-location-label { | |
| 6552 | - font-size: 12px; | |
| 6553 | - font-weight: 400; | |
| 6554 | - color: var(--e-a-color-txt); | |
| 6555 | -} | |
| 6556 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b #elementor-template-library-save-template-name { | |
| 6557 | - width: 100%; | |
| 6558 | - padding: 12px 15px; | |
| 6559 | - border: var(--e-a-border-bold); | |
| 6560 | - border-radius: 3px; | |
| 6561 | - margin-block-end: 0; | |
| 6562 | -} | |
| 6563 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections { | |
| 6564 | - border: none; | |
| 6565 | - padding: 0; | |
| 6566 | - gap: 12px; | |
| 6567 | - margin-block-start: 20px; | |
| 6568 | -} | |
| 6569 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input { | |
| 6570 | - display: flex; | |
| 6571 | - align-items: center; | |
| 6572 | - padding: 12px 15px; | |
| 6573 | - border: var(--e-a-border-bold); | |
| 6574 | - border-radius: 3px; | |
| 6575 | - width: 100%; | |
| 6576 | - line-height: normal; | |
| 6577 | - gap: 8px; | |
| 6578 | -} | |
| 6579 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input:has(input[type=checkbox]:checked) { | |
| 6580 | - border-color: var(--e-a-color-txt); | |
| 6581 | -} | |
| 6582 | -#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 { | |
| 6583 | - display: flex; | |
| 6584 | -} | |
| 6585 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input input[type=checkbox] { | |
| 6586 | - margin-inline-end: 0; | |
| 6587 | - flex-shrink: 0; | |
| 6588 | - position: relative; | |
| 6589 | -} | |
| 6590 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input input[type=checkbox]:checked { | |
| 6591 | - inset-block-start: 0; | |
| 6592 | -} | |
| 6593 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input input[type=checkbox]::after { | |
| 6594 | - content: ""; | |
| 6595 | - position: absolute; | |
| 6596 | - inset-inline-end: -8px; | |
| 6597 | - width: 1px; | |
| 6598 | - height: 18px; | |
| 6599 | - background-color: var(--e-a-border-color); | |
| 6600 | -} | |
| 6601 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input > i:first-of-type { | |
| 6602 | - margin-inline-start: 12px; | |
| 6603 | - margin-inline-end: 4px; | |
| 6604 | - font-size: 24px; | |
| 6605 | - color: var(--e-a-color-txt); | |
| 6606 | -} | |
| 6607 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input > svg:first-of-type { | |
| 6608 | - margin-inline-start: 8px; | |
| 6609 | - margin-inline-end: 0; | |
| 6610 | - font-size: 24px; | |
| 6611 | - color: var(--e-a-color-txt); | |
| 6612 | -} | |
| 6613 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input label { | |
| 6614 | - flex: 0 0 auto; | |
| 6615 | - margin: 0; | |
| 6616 | - cursor: pointer; | |
| 6617 | -} | |
| 6618 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .divider { | |
| 6619 | - margin-inline: 0; | |
| 6620 | -} | |
| 6621 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .ellipsis-container { | |
| 6622 | - display: inline; | |
| 6623 | - background: transparent; | |
| 6624 | - padding: 0; | |
| 6625 | - border-radius: 0; | |
| 6626 | - vertical-align: baseline; | |
| 6627 | - text-decoration: underline; | |
| 6628 | - cursor: pointer; | |
| 6629 | - margin-inline-start: 0; | |
| 6630 | -} | |
| 6631 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .ellipsis-container:hover { | |
| 6632 | - background: transparent; | |
| 6633 | -} | |
| 6634 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .select-folder-link { | |
| 6635 | - color: var(--e-a-color-primary-bold); | |
| 6636 | - text-decoration: underline; | |
| 6637 | - cursor: pointer; | |
| 6638 | - margin-inline-start: 4px; | |
| 6639 | -} | |
| 6640 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .select-folder-link:hover { | |
| 6641 | - text-decoration: none; | |
| 6642 | -} | |
| 6643 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .upgrade-badge { | |
| 6644 | - display: none; | |
| 6645 | - border: none; | |
| 6646 | - padding: 0; | |
| 6647 | - border-radius: 0; | |
| 6648 | - margin-inline-start: 0; | |
| 6649 | - background: transparent; | |
| 6650 | - transition: background-color 0.2s; | |
| 6651 | - padding: 3px 8px; | |
| 6652 | -} | |
| 6653 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .upgrade-badge:hover { | |
| 6654 | - background-color: var(--e-a-btn-bg-primary-hover); | |
| 6655 | - border-radius: 3px; | |
| 6656 | -} | |
| 6657 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .upgrade-badge a { | |
| 6658 | - color: var(--e-a-btn-bg-accent); | |
| 6659 | - text-decoration: none; | |
| 6660 | - display: flex; | |
| 6661 | - align-items: center; | |
| 6662 | - gap: 4px; | |
| 6663 | - font-size: 14px; | |
| 6664 | - font-weight: 500; | |
| 6665 | -} | |
| 6666 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .upgrade-badge a i { | |
| 6667 | - margin: 0; | |
| 6668 | - font-size: 14px; | |
| 6669 | -} | |
| 6670 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .connect-badge { | |
| 6671 | - display: none; | |
| 6672 | -} | |
| 6673 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .connect-badge .connect-divider { | |
| 6674 | - color: var(--e-a-color-txt-muted); | |
| 6675 | - margin-inline: 5px; | |
| 6676 | -} | |
| 6677 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .connect-badge a { | |
| 6678 | - color: var(--e-a-color-info); | |
| 6679 | - text-decoration: underline; | |
| 6680 | -} | |
| 6681 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .connect-badge a:hover { | |
| 6682 | - text-decoration: none; | |
| 6683 | -} | |
| 6684 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge { | |
| 6685 | - display: flex; | |
| 6686 | - align-items: center; | |
| 6687 | - gap: 6px; | |
| 6688 | - padding: 6px 12px; | |
| 6689 | - border: none; | |
| 6690 | - border-radius: 20px; | |
| 6691 | - font-size: 14px; | |
| 6692 | - font-weight: 500; | |
| 6693 | - cursor: pointer; | |
| 6694 | - transition: opacity 0.2s; | |
| 6695 | - margin-inline-start: auto; | |
| 6696 | -} | |
| 6697 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge:hover { | |
| 6698 | - opacity: 0.8; | |
| 6699 | -} | |
| 6700 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge i { | |
| 6701 | - margin: 0; | |
| 6702 | - font-size: 14px; | |
| 6703 | -} | |
| 6704 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge.cloud-account-badge { | |
| 6705 | - background-color: var(--e-a-bg-info); | |
| 6706 | - color: var(--e-a-color-info); | |
| 6707 | -} | |
| 6708 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge.cloud-account-badge i { | |
| 6709 | - color: var(--e-a-color-info); | |
| 6710 | -} | |
| 6711 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge.site-account-badge { | |
| 6712 | - background-color: var(--e-a-bg-warning); | |
| 6713 | - color: var(--e-a-btn-bg-warning-hover); | |
| 6714 | -} | |
| 6715 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge.site-account-badge i { | |
| 6716 | - color: var(--e-a-btn-bg-warning-hover); | |
| 6717 | -} | |
| 6718 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .selected-folder { | |
| 6719 | - display: none; | |
| 6720 | - margin-inline-start: 8px; | |
| 6721 | - align-items: center; | |
| 6722 | - gap: 6px; | |
| 6723 | -} | |
| 6724 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .selected-folder[style*="display: inline"] { | |
| 6725 | - display: inline-flex !important; | |
| 6726 | -} | |
| 6727 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .selected-folder-text { | |
| 6728 | - text-decoration: underline; | |
| 6729 | - cursor: pointer; | |
| 6730 | -} | |
| 6731 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .eicon-editor-close { | |
| 6732 | - cursor: pointer; | |
| 6733 | - font-size: 14px; | |
| 6734 | -} | |
| 6735 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .cloud-folder-selection-dropdown { | |
| 6736 | - inset-block-start: 75px; | |
| 6737 | - inset-inline-start: 230px; | |
| 6738 | -} | |
| 6739 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:not(:has(.connect-badge)) .connect-badge { | |
| 6740 | - display: none; | |
| 6741 | -} | |
| 6742 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) .connect-badge { | |
| 6743 | - display: inline; | |
| 6744 | -} | |
| 6745 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) .upgrade-badge { | |
| 6746 | - display: none; | |
| 6747 | -} | |
| 6748 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) { | |
| 6749 | - border-color: var(--e-a-border-color); | |
| 6750 | -} | |
| 6751 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) > i:first-of-type, | |
| 6752 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) label, | |
| 6753 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) .divider { | |
| 6754 | - color: var(--e-a-color-txt-disabled); | |
| 6755 | -} | |
| 6756 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) input[type=checkbox]::after { | |
| 6757 | - background-color: var(--e-a-color-txt-disabled); | |
| 6758 | -} | |
| 6759 | -#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 { | |
| 6760 | - border-color: var(--e-a-border-color); | |
| 6761 | -} | |
| 6762 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.promotion .source-selections-input.cloud > i:first-of-type, | |
| 6763 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.promotion .source-selections-input.cloud label, | |
| 6764 | -#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, | |
| 6765 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .source-selections-input.cloud label, | |
| 6766 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .source-selections-input.cloud .divider { | |
| 6767 | - color: var(--e-a-color-txt-disabled); | |
| 6768 | -} | |
| 6769 | -#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 { | |
| 6770 | - background-color: var(--e-a-color-txt-disabled); | |
| 6771 | -} | |
| 6772 | -#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 { | |
| 6773 | - display: inline-flex; | |
| 6774 | -} | |
| 6775 | -#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 { | |
| 6776 | - display: none; | |
| 6777 | -} | |
| 6778 | -#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 { | |
| 6779 | - display: block; | |
| 6780 | -} | |
| 6781 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.promotion .source-selections-input.cloud input[type=checkbox], | |
| 6782 | -#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], | |
| 6783 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .source-selections-input.cloud label { | |
| 6784 | - pointer-events: none; | |
| 6785 | -} | |
| 6786 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .quota-cta { | |
| 6787 | - display: block; | |
| 6788 | - margin-block-start: 15px; | |
| 6789 | -} | |
| 6790 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b #elementor-template-library-save-template-submit { | |
| 6791 | - align-self: center; | |
| 6792 | - margin-block-start: 20px; | |
| 6793 | - float: none; | |
| 6794 | -} | |
| 6795 | 5329 | |
| 6796 | 5330 | #elementor-template-library-save-template-name { |
| 6797 | 5331 | width: 500px; |
| 6798 | - padding-inline-start: 25px; | |
| 6799 | - border-start-start-radius: 3px; | |
| 6800 | - border-start-end-radius: 0; | |
| 6801 | - border-end-start-radius: 3px; | |
| 6802 | - border-end-end-radius: 0; | |
| 5332 | + background-color: #fff; | |
| 5333 | + font-weight: 300; | |
| 5334 | + color: #a4afb7; | |
| 5335 | + padding-right: 25px; | |
| 5336 | + border-radius: 0 3px 3px 0; | |
| 5337 | + border: none; | |
| 6803 | 5338 | } |
| 6804 | 5339 | |
| 6805 | 5340 | #elementor-template-library-save-template-submit { |
| 6806 | 5341 | width: 150px; |
| 6807 | - border-start-start-radius: 0; | |
| 6808 | - border-start-end-radius: 3px; | |
| 6809 | - border-end-start-radius: 0; | |
| 6810 | - border-end-end-radius: 3px; | |
| 5342 | + border-radius: 3px 0 0 3px; | |
| 6811 | 5343 | } |
| 5344 | +#elementor-template-library-save-template-submit:hover { | |
| 5345 | + -webkit-box-shadow: none; | |
| 5346 | + box-shadow: none; | |
| 5347 | +} | |
| 6812 | 5348 | |
| 6813 | 5349 | #elementor-template-library-import-form { |
| 6814 | 5350 | width: 95%; |
| 5351 | + background-color: rgba(255, 255, 255, 0.5); | |
| 6815 | 5352 | padding: 60px; |
| 6816 | - border: 2px dashed var(--e-a-border-color-bold); | |
| 5353 | + border: 2px dashed #d5dadf; | |
| 6817 | 5354 | margin: 35px auto; |
| 6818 | - transition: var(--e-a-transition-hover); | |
| 5355 | + -webkit-transition: background-color 0.5s; | |
| 5356 | + -o-transition: background-color 0.5s; | |
| 5357 | + transition: background-color 0.5s; | |
| 6819 | 5358 | } |
| 5359 | +#elementor-template-library-import-form:hover { | |
| 5360 | + background-color: rgba(255, 255, 255, 0.9); | |
| 5361 | +} | |
| 6820 | 5362 | #elementor-template-library-import-form-or { |
| 6821 | - margin-block-start: 15px; | |
| 5363 | + margin-top: 15px; | |
| 6822 | 5364 | font-size: 18px; |
| 6823 | 5365 | } |
| 6824 | 5366 | #elementor-template-library-import-form-label { |
| 6825 | - margin-block-start: 20px; | |
| 5367 | + margin-top: 20px; | |
| 6826 | 5368 | padding: 15px 35px; |
| 6827 | 5369 | display: inline-block; |
| 6828 | 5370 | } |
| 6829 | 5371 | #elementor-template-library-import-form-input { |
| @@ -6829,15 +5371,15 @@ | ||
| 6829 | 5371 | #elementor-template-library-import-form-input { |
| 6830 | 5372 | display: none; |
| 6831 | 5373 | } |
| 6832 | 5374 | #elementor-template-library-import-form.elementor-drag-over { |
| 6833 | - border-color: var(--e-a-color-primary); | |
| 5375 | + border: 3px dashed #71d7f7; | |
| 6834 | 5376 | } |
| 6835 | 5377 | #elementor-template-library-import .elementor-template-library-blank-icon { |
| 6836 | - margin-block-start: 0; | |
| 5378 | + margin-top: 0; | |
| 6837 | 5379 | } |
| 6838 | 5380 | #elementor-template-library-import .elementor-template-library-blank-message { |
| 6839 | - margin-block-start: 20px; | |
| 5381 | + margin-top: 20px; | |
| 6840 | 5382 | } |
| 6841 | 5383 | |
| 6842 | 5384 | .e-route-library-connect #elementor-template-library-modal .dialog-message { |
| 6843 | 5385 | max-height: 95vh; |
| @@ -6844,12 +5386,8 @@ | ||
| 6844 | 5386 | padding: 100px 0 0; |
| 6845 | 5387 | min-height: 550px; |
| 6846 | 5388 | } |
| 6847 | 5389 | |
| 6848 | -.elementor-template-library-cloud-empty__button { | |
| 6849 | - margin-block-start: 45px; | |
| 6850 | -} | |
| 6851 | - | |
| 6852 | 5390 | #elementor-template-library-connect-logo { |
| 6853 | 5391 | font-size: 20px; |
| 6854 | 5392 | } |
| 6855 | 5393 | #elementor-template-library-connect__button { |
| @@ -6855,9 +5393,9 @@ | ||
| 6855 | 5393 | #elementor-template-library-connect__button { |
| 6856 | 5394 | display: inline-block; |
| 6857 | 5395 | position: relative; |
| 6858 | 5396 | z-index: 1; |
| 6859 | - margin-block-start: 25px; | |
| 5397 | + margin-top: 25px; | |
| 6860 | 5398 | padding: 12px 24px; |
| 6861 | 5399 | font-size: 14px; |
| 6862 | 5400 | } |
| 6863 | 5401 | #elementor-template-library-connect__background-image-left-1 { |
| @@ -6862,24 +5400,28 @@ | ||
| 6862 | 5400 | } |
| 6863 | 5401 | #elementor-template-library-connect__background-image-left-1 { |
| 6864 | 5402 | right: 22.4%; |
| 6865 | 5403 | bottom: -29%; |
| 6866 | - animation: 1.5s fadeIn, 1.5s slideDown, 3.5s mover 1.5s infinite alternate; | |
| 5404 | + -webkit-animation: 1.5s fadeIn, 1.5s slideDown, 3.5s mover 1.5s infinite alternate; | |
| 5405 | + animation: 1.5s fadeIn, 1.5s slideDown, 3.5s mover 1.5s infinite alternate; | |
| 6867 | 5406 | } |
| 6868 | 5407 | #elementor-template-library-connect__background-image-left-2 { |
| 6869 | 5408 | right: 46.25%; |
| 6870 | 5409 | bottom: -15.5%; |
| 6871 | - animation: 3s fadeIn, 3s slideDown, 2s mover 3s infinite alternate; | |
| 5410 | + -webkit-animation: 3s fadeIn, 3s slideDown, 2s mover 3s infinite alternate; | |
| 5411 | + animation: 3s fadeIn, 3s slideDown, 2s mover 3s infinite alternate; | |
| 6872 | 5412 | } |
| 6873 | 5413 | #elementor-template-library-connect__background-image-right-1 { |
| 6874 | 5414 | left: 37%; |
| 6875 | 5415 | bottom: -41%; |
| 6876 | - animation: 2.5s fadeIn, 2.5s slideDown, 2s mover 2.5s infinite alternate; | |
| 5416 | + -webkit-animation: 2.5s fadeIn, 2.5s slideDown, 2s mover 2.5s infinite alternate; | |
| 5417 | + animation: 2.5s fadeIn, 2.5s slideDown, 2s mover 2.5s infinite alternate; | |
| 6877 | 5418 | } |
| 6878 | 5419 | #elementor-template-library-connect__background-image-right-2 { |
| 6879 | 5420 | left: 48%; |
| 6880 | 5421 | bottom: -12.5%; |
| 6881 | - animation: 1.5s fadeIn, 1.5s slideDown, 1.5s mover 1.5s infinite alternate; | |
| 5422 | + -webkit-animation: 1.5s fadeIn, 1.5s slideDown, 1.5s mover 1.5s infinite alternate; | |
| 5423 | + animation: 1.5s fadeIn, 1.5s slideDown, 1.5s mover 1.5s infinite alternate; | |
| 6882 | 5424 | } |
| 6883 | 5425 | |
| 6884 | 5426 | .elementor-template-library-connect__background-image { |
| 6885 | 5427 | position: absolute; |
| @@ -6886,13 +5428,15 @@ | ||
| 6886 | 5428 | } |
| 6887 | 5429 | |
| 6888 | 5430 | .elementor-template-library-blank-footer { |
| 6889 | 5431 | position: absolute; |
| 6890 | - inset-block-end: 70px; | |
| 6891 | - inset-inline-start: 50%; | |
| 6892 | - transform: translateX(calc(-50% * var(--direction-multiplier))); | |
| 5432 | + bottom: 70px; | |
| 5433 | + left: 50%; | |
| 5434 | + -webkit-transform: translateX(-50%); | |
| 5435 | + -ms-transform: translateX(-50%); | |
| 5436 | + transform: translateX(-50%); | |
| 5437 | + color: #a4afb7; | |
| 6893 | 5438 | font-style: italic; |
| 6894 | - color: var(--e-a-color-txt-muted); | |
| 6895 | 5439 | } |
| 6896 | 5440 | @media (max-height: 700px) { |
| 6897 | 5441 | .elementor-template-library-blank-footer { |
| 6898 | 5442 | display: none; |
| @@ -6899,21 +5443,28 @@ | ||
| 6899 | 5443 | } |
| 6900 | 5444 | } |
| 6901 | 5445 | |
| 6902 | 5446 | #elementor-template-library-footer-banner { |
| 6903 | - padding-block-end: 45px; | |
| 5447 | + padding-bottom: 45px; | |
| 6904 | 5448 | } |
| 6905 | 5449 | #elementor-template-library-footer-banner i { |
| 5450 | + color: #c2cbd2; | |
| 6906 | 5451 | font-size: 56px; |
| 6907 | - margin-block-start: 40px; | |
| 5452 | + margin-top: 40px; | |
| 6908 | 5453 | } |
| 6909 | 5454 | #elementor-template-library-footer-banner .elementor-nerd-box-icon { |
| 6910 | - margin-block-start: 70px; | |
| 5455 | + margin-top: 70px; | |
| 6911 | 5456 | } |
| 5457 | +#elementor-template-library-footer-banner .elementor-excerpt { | |
| 5458 | + color: #a4afb7; | |
| 5459 | + font-size: 15px; | |
| 5460 | + font-weight: 500; | |
| 5461 | + margin-top: 20px; | |
| 5462 | +} | |
| 6912 | 5463 | |
| 6913 | 5464 | #elementor-template-library-templates-empty { |
| 6914 | 5465 | width: 100%; |
| 6915 | - margin-block-start: 40px; | |
| 5466 | + margin-top: 40px; | |
| 6916 | 5467 | } |
| 6917 | 5468 | |
| 6918 | 5469 | #elementor-template-library-error-dialog .dialog-message { |
| 6919 | 5470 | text-align: start; |
| @@ -6919,290 +5470,53 @@ | ||
| 6919 | 5470 | text-align: start; |
| 6920 | 5471 | } |
| 6921 | 5472 | |
| 6922 | 5473 | #elementor-template-library-error-info { |
| 6923 | - margin-block-start: 10px; | |
| 5474 | + margin-top: 10px; | |
| 6924 | 5475 | } |
| 6925 | 5476 | |
| 6926 | -#elementor-library--infotip__dialog, | |
| 6927 | -#elementor-library--connect_infotip__dialog, | |
| 6928 | -#elementor-library--cloud-upgrade__dialog, | |
| 6929 | -#elementor-library--site-info__dialog { | |
| 6930 | - position: absolute; | |
| 6931 | - z-index: 10000; | |
| 6932 | - background-color: var(--e-a-bg-default); | |
| 6933 | - box-shadow: var(--e-a-popover-shadow); | |
| 6934 | - border-radius: var(--e-a-border-radius); | |
| 5477 | +@media (max-width: 1439px) { | |
| 5478 | + .elementor-template-library-local-column-1 { | |
| 5479 | + width: 33%; | |
| 5480 | + } | |
| 5481 | + .elementor-template-library-local-column-2 { | |
| 5482 | + width: 10%; | |
| 5483 | + } | |
| 5484 | + .elementor-template-library-local-column-3 { | |
| 5485 | + width: 15%; | |
| 5486 | + } | |
| 5487 | + .elementor-template-library-local-column-4 { | |
| 5488 | + width: 15%; | |
| 5489 | + } | |
| 5490 | + .elementor-template-library-local-column-5 { | |
| 5491 | + width: 27%; | |
| 5492 | + } | |
| 6935 | 5493 | } |
| 6936 | -#elementor-library--infotip__dialog.variant-b, | |
| 6937 | -#elementor-library--connect_infotip__dialog.variant-b, | |
| 6938 | -#elementor-library--cloud-upgrade__dialog.variant-b, | |
| 6939 | -#elementor-library--site-info__dialog.variant-b { | |
| 6940 | - width: 200px; | |
| 6941 | - color: var(--e-a-color-txt-invert); | |
| 6942 | - background-color: var(--e-a-bg-secondary); | |
| 5494 | +@media (min-width: 1440px) { | |
| 5495 | + .elementor-template-library-local-column-1 { | |
| 5496 | + width: 25%; | |
| 5497 | + } | |
| 5498 | + .elementor-template-library-local-column-2 { | |
| 5499 | + width: 17%; | |
| 5500 | + } | |
| 5501 | + .elementor-template-library-local-column-3 { | |
| 5502 | + width: 17%; | |
| 5503 | + } | |
| 5504 | + .elementor-template-library-local-column-4 { | |
| 5505 | + width: 17%; | |
| 5506 | + } | |
| 5507 | + .elementor-template-library-local-column-5 { | |
| 5508 | + width: 24%; | |
| 5509 | + } | |
| 6943 | 5510 | } |
| 6944 | -#elementor-library--infotip__dialog.variant-b .dialog-message, | |
| 6945 | -#elementor-library--connect_infotip__dialog.variant-b .dialog-message, | |
| 6946 | -#elementor-library--cloud-upgrade__dialog.variant-b .dialog-message, | |
| 6947 | -#elementor-library--site-info__dialog.variant-b .dialog-message { | |
| 6948 | - padding: 4px 8px 4px 8px; | |
| 5511 | +@media (max-width: 1024px) { | |
| 5512 | + .elementor-template-library-local-column-3 { | |
| 5513 | + display: none; | |
| 5514 | + } | |
| 5515 | + .elementor-template-library-local-column-5 { | |
| 5516 | + width: 41%; | |
| 5517 | + } | |
| 6949 | 5518 | } |
| 6950 | -#elementor-library--infotip__dialog__title, | |
| 6951 | -#elementor-library--connect_infotip__dialog__title, | |
| 6952 | -#elementor-library--cloud-upgrade__dialog__title, | |
| 6953 | -#elementor-library--site-info__dialog__title { | |
| 6954 | - font-size: 14px; | |
| 6955 | -} | |
| 6956 | -#elementor-library--infotip__dialog .dialog-buttons-wrapper, | |
| 6957 | -#elementor-library--connect_infotip__dialog .dialog-buttons-wrapper, | |
| 6958 | -#elementor-library--cloud-upgrade__dialog .dialog-buttons-wrapper, | |
| 6959 | -#elementor-library--site-info__dialog .dialog-buttons-wrapper { | |
| 6960 | - padding: 10px 0 10px 10px; | |
| 6961 | - float: inline-end; | |
| 6962 | -} | |
| 6963 | -#elementor-library--infotip__dialog .dialog-button, | |
| 6964 | -#elementor-library--connect_infotip__dialog .dialog-button, | |
| 6965 | -#elementor-library--cloud-upgrade__dialog .dialog-button, | |
| 6966 | -#elementor-library--site-info__dialog .dialog-button { | |
| 6967 | - padding: 7px 25px; | |
| 6968 | - font-size: 13px; | |
| 6969 | - background: none; | |
| 6970 | - color: var(--e-a-btn-bg-accent); | |
| 6971 | - border: none; | |
| 6972 | - font-weight: 500; | |
| 6973 | - cursor: pointer; | |
| 6974 | -} | |
| 6975 | -#elementor-library--infotip__dialog:after, | |
| 6976 | -#elementor-library--connect_infotip__dialog:after, | |
| 6977 | -#elementor-library--cloud-upgrade__dialog:after, | |
| 6978 | -#elementor-library--site-info__dialog:after { | |
| 6979 | - content: ""; | |
| 6980 | - position: absolute; | |
| 6981 | - inset-inline-end: 46%; | |
| 6982 | - transform: scaleX(0.7); | |
| 6983 | - border: 10px solid transparent; | |
| 6984 | -} | |
| 6985 | - | |
| 6986 | -#elementor-library--infotip__dialog { | |
| 6987 | - width: 265px; | |
| 6988 | -} | |
| 6989 | -#elementor-library--infotip__dialog .dialog-message { | |
| 6990 | - padding: 20px 20px 0px 20px; | |
| 6991 | -} | |
| 6992 | -#elementor-library--infotip__dialog:after { | |
| 6993 | - inset-block-start: 100%; | |
| 6994 | - border-block-start-color: var(--e-a-bg-default); | |
| 6995 | -} | |
| 6996 | -#elementor-library--infotip__dialog.variant-b:after { | |
| 6997 | - border-block-start-color: var(--e-a-bg-secondary); | |
| 6998 | -} | |
| 6999 | - | |
| 7000 | -#elementor-library--connect_infotip__dialog { | |
| 7001 | - width: 265px; | |
| 7002 | -} | |
| 7003 | -#elementor-library--connect_infotip__dialog .dialog-message { | |
| 7004 | - padding: 20px; | |
| 7005 | -} | |
| 7006 | -#elementor-library--connect_infotip__dialog:not(.variant-b):after { | |
| 7007 | - inset-block-end: 100%; | |
| 7008 | - border-block-end-color: var(--e-a-bg-default); | |
| 7009 | -} | |
| 7010 | -#elementor-library--connect_infotip__dialog.variant-b:after { | |
| 7011 | - border-block-start-color: var(--e-a-bg-secondary); | |
| 7012 | - inset-block-start: 100%; | |
| 7013 | -} | |
| 7014 | -#elementor-library--connect_infotip__dialog.variant-b { | |
| 7015 | - width: 265px; | |
| 7016 | -} | |
| 7017 | - | |
| 7018 | -#elementor-library--cloud-upgrade__dialog { | |
| 7019 | - width: 265px; | |
| 7020 | -} | |
| 7021 | -#elementor-library--cloud-upgrade__dialog:after { | |
| 7022 | - inset-block-start: 100%; | |
| 7023 | - border-block-start-color: var(--e-a-bg-default); | |
| 7024 | -} | |
| 7025 | -#elementor-library--cloud-upgrade__dialog.variant-b:after { | |
| 7026 | - border-block-start-color: var(--e-a-bg-secondary); | |
| 7027 | -} | |
| 7028 | - | |
| 7029 | -#elementor-library--site-info__dialog { | |
| 7030 | - width: 265px; | |
| 7031 | -} | |
| 7032 | -#elementor-library--site-info__dialog:after { | |
| 7033 | - inset-block-start: 100%; | |
| 7034 | - border-block-start-color: var(--e-a-bg-default); | |
| 7035 | -} | |
| 7036 | -#elementor-library--site-info__dialog.variant-b:after { | |
| 7037 | - border-block-start-color: var(--e-a-bg-secondary); | |
| 7038 | -} | |
| 7039 | - | |
| 7040 | -.elementor-global-styles-dialog { | |
| 7041 | - --gsd-color-text-primary: #0c0d0e; | |
| 7042 | - --gsd-color-text-secondary: #3f444b; | |
| 7043 | - --gsd-color-text-tertiary: #69727D; | |
| 7044 | - --gsd-color-divider: rgba(0, 0, 0, 0.12); | |
| 7045 | - --gsd-color-primary-main: #f0abfc; | |
| 7046 | - --gsd-color-primary-hover: #e879f9; | |
| 7047 | - --gsd-color-secondary-main: #515962; | |
| 7048 | - --gsd-border-radius: 4px; | |
| 7049 | - --gsd-spacing-horizontal: 24px; | |
| 7050 | - --gsd-font-family: 'Roboto', sans-serif; | |
| 7051 | - padding: 16px 0 0; | |
| 7052 | - min-width: 444px; | |
| 7053 | -} | |
| 7054 | -.elementor-global-styles-dialog__header { | |
| 7055 | - padding: 10px var(--gsd-spacing-horizontal) 0; | |
| 7056 | - margin-block-end: 16px; | |
| 7057 | -} | |
| 7058 | -.elementor-global-styles-dialog__header h2 { | |
| 7059 | - margin: 0 0 4px; | |
| 7060 | - font-family: var(--gsd-font-family); | |
| 7061 | - font-size: 16px; | |
| 7062 | - font-weight: 500; | |
| 7063 | - line-height: 1.3; | |
| 7064 | - color: var(--gsd-color-text-primary); | |
| 7065 | - letter-spacing: 0.15px; | |
| 7066 | -} | |
| 7067 | -.elementor-global-styles-dialog__header p { | |
| 7068 | - margin: 0; | |
| 7069 | - font-family: var(--gsd-font-family); | |
| 7070 | - font-size: 14px; | |
| 7071 | - font-weight: 400; | |
| 7072 | - line-height: 20px; | |
| 7073 | - color: var(--gsd-color-text-secondary); | |
| 7074 | - letter-spacing: 0.15px; | |
| 7075 | -} | |
| 7076 | -.elementor-global-styles-dialog__options { | |
| 7077 | - display: flex; | |
| 7078 | - flex-direction: column; | |
| 7079 | - gap: 12px; | |
| 7080 | - padding: 0 var(--gsd-spacing-horizontal); | |
| 7081 | -} | |
| 7082 | -.elementor-global-styles-dialog__radio-card { | |
| 7083 | - display: flex; | |
| 7084 | - gap: 0; | |
| 7085 | - padding: 12px 8px; | |
| 7086 | - border: 1px solid var(--gsd-color-divider); | |
| 7087 | - border-radius: var(--gsd-border-radius); | |
| 7088 | - cursor: pointer; | |
| 7089 | - transition: border-color 0.2s ease; | |
| 7090 | -} | |
| 7091 | -.elementor-global-styles-dialog__radio-card:has(input[type=radio]:checked) { | |
| 7092 | - border: 2px solid var(--gsd-color-text-primary); | |
| 7093 | - padding: 11px 7px; | |
| 7094 | -} | |
| 7095 | -.elementor-global-styles-dialog__radio-card input[type=radio] { | |
| 7096 | - flex-shrink: 0; | |
| 7097 | - width: 20px; | |
| 7098 | - height: 20px; | |
| 7099 | - margin: 9px; | |
| 7100 | - cursor: pointer; | |
| 7101 | - color: var(--gsd-color-text-tertiary); | |
| 7102 | - accent-color: var(--gsd-color-text-primary); | |
| 7103 | -} | |
| 7104 | -.elementor-global-styles-dialog__radio-card-content { | |
| 7105 | - display: flex; | |
| 7106 | - align-items: flex-start; | |
| 7107 | - flex-direction: column; | |
| 7108 | - flex: 1; | |
| 7109 | -} | |
| 7110 | -.elementor-global-styles-dialog__radio-label { | |
| 7111 | - font-family: var(--gsd-font-family); | |
| 7112 | - font-size: 14px; | |
| 7113 | - font-weight: 500; | |
| 7114 | - line-height: 18px; | |
| 7115 | - color: var(--gsd-color-text-primary); | |
| 7116 | - letter-spacing: 0.15px; | |
| 7117 | -} | |
| 7118 | -.elementor-global-styles-dialog__radio-description { | |
| 7119 | - font-family: var(--gsd-font-family); | |
| 7120 | - font-size: 12px; | |
| 7121 | - font-weight: 400; | |
| 7122 | - line-height: 20px; | |
| 7123 | - color: var(--gsd-color-text-secondary); | |
| 7124 | - letter-spacing: 0.4px; | |
| 7125 | -} | |
| 7126 | -.elementor-global-styles-dialog__checkbox-container { | |
| 7127 | - display: flex; | |
| 7128 | - align-items: flex-start; | |
| 7129 | - gap: 4px; | |
| 7130 | - padding: 0; | |
| 7131 | - margin-block-start: 0; | |
| 7132 | -} | |
| 7133 | -.elementor-global-styles-dialog__checkbox-option { | |
| 7134 | - display: flex; | |
| 7135 | - align-items: flex-start; | |
| 7136 | - gap: 4px; | |
| 7137 | - cursor: pointer; | |
| 7138 | -} | |
| 7139 | -.elementor-global-styles-dialog__checkbox-option input[type=checkbox] { | |
| 7140 | - width: 18px; | |
| 7141 | - height: 18px; | |
| 7142 | - margin: 4px; | |
| 7143 | - cursor: pointer; | |
| 7144 | -} | |
| 7145 | -.elementor-global-styles-dialog__checkbox-option input[type=checkbox]:checked { | |
| 7146 | - background-color: var(--gsd-color-text-tertiary); | |
| 7147 | -} | |
| 7148 | -.elementor-global-styles-dialog__checkbox-label { | |
| 7149 | - font-family: var(--gsd-font-family); | |
| 7150 | - font-size: 12px; | |
| 7151 | - font-weight: 400; | |
| 7152 | - line-height: 1.43; | |
| 7153 | - color: var(--gsd-color-text-primary); | |
| 7154 | - letter-spacing: 0.15px; | |
| 7155 | - padding-block-start: 4px; | |
| 7156 | - margin-inline-start: 4px; | |
| 7157 | -} | |
| 7158 | -.elementor-global-styles-dialog__checkbox-label a { | |
| 7159 | - color: #2563eb; | |
| 7160 | - text-decoration: underline; | |
| 7161 | -} | |
| 7162 | -.elementor-global-styles-dialog__checkbox-label a:hover { | |
| 7163 | - color: #2563eb; | |
| 7164 | -} | |
| 7165 | -.elementor-global-styles-dialog__footer { | |
| 7166 | - display: flex; | |
| 7167 | - justify-content: flex-end; | |
| 7168 | - align-items: center; | |
| 7169 | - gap: 8px; | |
| 7170 | - padding: 16px var(--gsd-spacing-horizontal); | |
| 7171 | -} | |
| 7172 | -.elementor-global-styles-dialog__button-cancel { | |
| 7173 | - padding: 6px 8px; | |
| 7174 | - font-family: var(--gsd-font-family); | |
| 7175 | - font-size: 15px; | |
| 7176 | - font-weight: 500; | |
| 7177 | - line-height: 24px; | |
| 7178 | - letter-spacing: 0.4px; | |
| 7179 | - color: var(--gsd-color-secondary-main); | |
| 7180 | - background: transparent; | |
| 7181 | - border: none; | |
| 7182 | - border-radius: var(--gsd-border-radius); | |
| 7183 | - cursor: pointer; | |
| 7184 | -} | |
| 7185 | -.elementor-global-styles-dialog__button-cancel:hover { | |
| 7186 | - background: rgba(0, 0, 0, 0.04); | |
| 7187 | -} | |
| 7188 | -.elementor-global-styles-dialog__button-insert { | |
| 7189 | - padding: 6px 16px; | |
| 7190 | - font-family: var(--gsd-font-family); | |
| 7191 | - font-size: 15px; | |
| 7192 | - font-weight: 500; | |
| 7193 | - line-height: 24px; | |
| 7194 | - letter-spacing: 0.4px; | |
| 7195 | - color: var(--gsd-color-text-primary); | |
| 7196 | - background: var(--gsd-color-primary-main); | |
| 7197 | - border: none; | |
| 7198 | - border-radius: var(--gsd-border-radius); | |
| 7199 | - cursor: pointer; | |
| 7200 | -} | |
| 7201 | -.elementor-global-styles-dialog__button-insert:hover { | |
| 7202 | - background: var(--gsd-color-primary-hover); | |
| 7203 | -} | |
| 7204 | - | |
| 7205 | 5519 | .elementor-tags-list { |
| 7206 | 5520 | display: none; |
| 7207 | 5521 | position: absolute; |
| 7208 | 5522 | width: 260px; |
| @@ -7207,25 +5521,29 @@ | ||
| 7207 | 5521 | position: absolute; |
| 7208 | 5522 | width: 260px; |
| 7209 | 5523 | max-height: 300px; |
| 7210 | 5524 | overflow: auto; |
| 7211 | - padding-block-end: 5px; | |
| 7212 | - background-color: var(--e-a-bg-default); | |
| 7213 | - box-shadow: var(--e-a-popover-shadow); | |
| 7214 | - border: var(--e-a-border); | |
| 5525 | + padding-bottom: 5px; | |
| 5526 | + background-color: #fff; | |
| 5527 | + border: 1px solid #a4afb7; | |
| 7215 | 5528 | border-radius: 3px; |
| 7216 | 5529 | z-index: 10000; |
| 7217 | 5530 | } |
| 7218 | 5531 | .elementor-tags-list__group-title { |
| 5532 | + color: #495157; | |
| 7219 | 5533 | font-weight: bold; |
| 7220 | 5534 | font-size: 12px; |
| 7221 | 5535 | padding: 10px 15px; |
| 5536 | + display: -webkit-box; | |
| 5537 | + display: -ms-flexbox; | |
| 7222 | 5538 | display: flex; |
| 7223 | - align-items: center; | |
| 5539 | + -webkit-box-align: center; | |
| 5540 | + -ms-flex-align: center; | |
| 5541 | + align-items: center; | |
| 7224 | 5542 | } |
| 7225 | 5543 | .elementor-tags-list__group-title .eicon-info-circle { |
| 7226 | - padding-inline-end: 5px; | |
| 7227 | - color: var(--e-a-color-primary-bold); | |
| 5544 | + padding-left: 5px; | |
| 5545 | + color: #71d7f7; | |
| 7228 | 5546 | font-size: 14px; |
| 7229 | 5547 | } |
| 7230 | 5548 | .elementor-tags-list__item { |
| 7231 | 5549 | font-size: 10px; |
| @@ -7234,18 +5552,21 @@ | ||
| 7234 | 5552 | } |
| 7235 | 5553 | .elementor-tags-list__item:before { |
| 7236 | 5554 | content: ">"; |
| 7237 | 5555 | font-size: 8px; |
| 7238 | - padding-inline-end: 5px; | |
| 5556 | + padding-left: 5px; | |
| 7239 | 5557 | } |
| 7240 | 5558 | .elementor-tags-list__item:hover { |
| 7241 | - background-color: var(--e-a-bg-hover); | |
| 5559 | + background-color: #e6e9ec; | |
| 7242 | 5560 | } |
| 7243 | 5561 | .elementor-tags-list__teaser { |
| 7244 | - border-block-start: 2px solid var(--e-a-border-color); | |
| 7245 | - padding-block-start: 4px; | |
| 7246 | - margin-block-start: 4px; | |
| 5562 | + border-top: 2px solid #d5dadf; | |
| 5563 | + padding-top: 4px; | |
| 5564 | + margin-top: 4px; | |
| 7247 | 5565 | } |
| 5566 | +.elementor-tags-list__teaser-title { | |
| 5567 | + color: #6d7882; | |
| 5568 | +} | |
| 7248 | 5569 | .elementor-tags-list__teaser-text { |
| 7249 | 5570 | padding: 2px 15px 8px; |
| 7250 | 5571 | line-height: 1.5; |
| 7251 | 5572 | font-size: 12px; |
| @@ -7250,9 +5571,9 @@ | ||
| 7250 | 5571 | line-height: 1.5; |
| 7251 | 5572 | font-size: 12px; |
| 7252 | 5573 | } |
| 7253 | 5574 | .elementor-tags-list__teaser-link { |
| 7254 | - color: var(--e-a-color-primary-bold); | |
| 5575 | + color: #93003c; | |
| 7255 | 5576 | text-decoration: underline; |
| 7256 | 5577 | font-style: italic; |
| 7257 | 5578 | font-weight: bold; |
| 7258 | 5579 | } |
| @@ -7257,47 +5578,58 @@ | ||
| 7257 | 5578 | font-weight: bold; |
| 7258 | 5579 | } |
| 7259 | 5580 | |
| 7260 | 5581 | .elementor-dynamic-cover { |
| 5582 | + display: -webkit-box; | |
| 5583 | + display: -ms-flexbox; | |
| 7261 | 5584 | display: flex; |
| 7262 | - align-items: center; | |
| 5585 | + -webkit-box-align: center; | |
| 5586 | + -ms-flex-align: center; | |
| 5587 | + align-items: center; | |
| 7263 | 5588 | width: 100%; |
| 7264 | 5589 | height: 27px; |
| 7265 | - box-sizing: border-box; | |
| 5590 | + -webkit-box-sizing: border-box; | |
| 5591 | + box-sizing: border-box; | |
| 7266 | 5592 | } |
| 7267 | 5593 | .elementor-dynamic-cover__title { |
| 7268 | 5594 | padding: 0 8px; |
| 7269 | - flex-grow: 1; | |
| 5595 | + -webkit-box-flex: 1; | |
| 5596 | + -ms-flex-positive: 1; | |
| 5597 | + flex-grow: 1; | |
| 7270 | 5598 | white-space: nowrap; |
| 7271 | - text-overflow: ellipsis; | |
| 5599 | + -o-text-overflow: ellipsis; | |
| 5600 | + text-overflow: ellipsis; | |
| 7272 | 5601 | overflow: hidden; |
| 7273 | 5602 | } |
| 7274 | 5603 | .elementor-dynamic-cover__settings, .elementor-dynamic-cover__remove { |
| 5604 | + color: #c2cbd2; | |
| 7275 | 5605 | cursor: pointer; |
| 7276 | - transition: var(--e-a-transition-hover); | |
| 5606 | + -webkit-transition: all 0.3s; | |
| 5607 | + -o-transition: all 0.3s; | |
| 5608 | + transition: all 0.3s; | |
| 7277 | 5609 | } |
| 7278 | 5610 | .elementor-dynamic-cover__settings:hover, .elementor-dynamic-cover__remove:hover { |
| 7279 | - color: var(--e-a-color-txt-hover); | |
| 5611 | + color: #a4afb7; | |
| 7280 | 5612 | } |
| 7281 | 5613 | .elementor-control-type-wysiwyg .elementor-dynamic-cover { |
| 7282 | - margin-block-start: 10px; | |
| 5614 | + margin-top: 10px; | |
| 7283 | 5615 | } |
| 7284 | 5616 | |
| 7285 | 5617 | .elementor-tag-settings-popup { |
| 7286 | 5618 | position: absolute; |
| 7287 | 5619 | width: 260px; |
| 7288 | - background-color: var(--e-a-bg-default); | |
| 7289 | - border: var(--e-a-border); | |
| 7290 | - box-shadow: var(--e-a-popover-shadow); | |
| 5620 | + background-color: #e6e9ec; | |
| 5621 | + -webkit-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3); | |
| 5622 | + box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3); | |
| 7291 | 5623 | z-index: 1; |
| 7292 | 5624 | } |
| 7293 | 5625 | .elementor-tag-settings-popup:before { |
| 7294 | 5626 | content: ""; |
| 7295 | 5627 | position: absolute; |
| 7296 | - inset-block-start: -20px; | |
| 7297 | - inset-inline-start: 5px; | |
| 5628 | + top: -20px; | |
| 5629 | + right: 5px; | |
| 7298 | 5630 | border: 10px solid transparent; |
| 7299 | - border-block-end-color: var(--e-a-border-color); | |
| 5631 | + border-bottom-color: #fff; | |
| 7300 | 5632 | } |
| 7301 | 5633 | .elementor-tag-settings-popup .elementor-control-type-section:first-child { |
| 7302 | 5634 | margin: 0; |
| 7303 | 5635 | } |
| @@ -7302,45 +5634,39 @@ | ||
| 7302 | 5634 | margin: 0; |
| 7303 | 5635 | } |
| 7304 | 5636 | |
| 7305 | 5637 | .elementor-tag-controls-stack-empty { |
| 7306 | - background-color: var(--e-a-bg-default); | |
| 5638 | + background-color: #fff; | |
| 7307 | 5639 | padding: 10px; |
| 7308 | 5640 | font-size: 13px; |
| 7309 | 5641 | text-align: center; |
| 7310 | 5642 | } |
| 7311 | 5643 | |
| 7312 | -.elementor-control-dynamic input { | |
| 7313 | - border-start-start-radius: var(--e-a-border-radius); | |
| 7314 | - border-start-end-radius: 0; | |
| 7315 | - border-end-end-radius: 0; | |
| 7316 | - border-end-start-radius: var(--e-a-border-radius); | |
| 7317 | -} | |
| 7318 | 5644 | .elementor-control-dynamic-switcher { |
| 5645 | + display: -webkit-inline-box; | |
| 5646 | + display: -ms-inline-flexbox; | |
| 7319 | 5647 | display: inline-flex; |
| 7320 | - align-items: center; | |
| 7321 | - justify-content: center; | |
| 7322 | - flex-shrink: 0; | |
| 5648 | + -webkit-box-align: center; | |
| 5649 | + -ms-flex-align: center; | |
| 5650 | + align-items: center; | |
| 5651 | + -webkit-box-pack: center; | |
| 5652 | + -ms-flex-pack: center; | |
| 5653 | + justify-content: center; | |
| 5654 | + -ms-flex-negative: 0; | |
| 5655 | + flex-shrink: 0; | |
| 7323 | 5656 | height: 27px; |
| 7324 | 5657 | cursor: pointer; |
| 7325 | - border: var(--e-a-border-bold); | |
| 7326 | - background: var(--e-a-bg-default); | |
| 7327 | - border-inline-start-width: 0; | |
| 7328 | - border-start-start-radius: 0; | |
| 7329 | - border-start-end-radius: var(--e-a-border-radius); | |
| 7330 | - border-end-end-radius: var(--e-a-border-radius); | |
| 7331 | - border-end-start-radius: 0; | |
| 7332 | - transition: var(--e-a-transition-hover); | |
| 5658 | + border: 1px solid #d5dadf; | |
| 5659 | + border-radius: 3px; | |
| 5660 | + background: #fff; | |
| 7333 | 5661 | } |
| 7334 | -.elementor-control-dynamic-switcher:hover { | |
| 7335 | - background-color: var(--e-a-bg-hover); | |
| 7336 | - color: var(--e-a-color-txt-hover); | |
| 7337 | -} | |
| 7338 | 5662 | .elementor-control-dynamic-switcher.e-control-tool { |
| 7339 | 5663 | height: 20px; |
| 7340 | 5664 | border: 0; |
| 7341 | 5665 | } |
| 7342 | 5666 | .elementor-control-dynamic-switcher-wrapper { |
| 5667 | + display: -webkit-box; | |
| 5668 | + display: -ms-flexbox; | |
| 7343 | 5669 | display: flex; |
| 7344 | 5670 | } |
| 7345 | 5671 | .elementor-control-dynamic-switcher .eicon-database { |
| 7346 | 5672 | font-size: 12px; |
| @@ -7350,193 +5676,277 @@ | ||
| 7350 | 5676 | .elementor-control-dynamic-value .e-global__popover-toggle { |
| 7351 | 5677 | display: none; |
| 7352 | 5678 | } |
| 7353 | 5679 | |
| 5680 | +#elementor-toast { | |
| 5681 | + position: absolute; | |
| 5682 | + width: 280px; | |
| 5683 | + padding: 20px; | |
| 5684 | + border-radius: 5px; | |
| 5685 | + color: #d5dadf; | |
| 5686 | + background-color: rgba(0, 0, 0, 0.8); | |
| 5687 | + z-index: 10000; | |
| 5688 | +} | |
| 5689 | +#elementor-toast .dialog-message { | |
| 5690 | + font-size: 13px; | |
| 5691 | +} | |
| 5692 | +#elementor-toast .dialog-buttons-wrapper { | |
| 5693 | + display: -webkit-box; | |
| 5694 | + display: -ms-flexbox; | |
| 5695 | + display: flex; | |
| 5696 | + -webkit-box-pack: end; | |
| 5697 | + -ms-flex-pack: end; | |
| 5698 | + justify-content: flex-end; | |
| 5699 | + margin-top: 15px; | |
| 5700 | +} | |
| 5701 | +#elementor-toast .dialog-button { | |
| 5702 | + color: #fcb92c; | |
| 5703 | + margin: 0 5px; | |
| 5704 | + text-transform: uppercase; | |
| 5705 | + cursor: pointer; | |
| 5706 | +} | |
| 5707 | +#elementor-toast .dialog-button:last-child { | |
| 5708 | + margin-left: 0; | |
| 5709 | +} | |
| 5710 | + | |
| 7354 | 5711 | .elementor-context-menu { |
| 7355 | 5712 | position: absolute; |
| 7356 | - width: 250px; | |
| 7357 | - padding: 5px 0px; | |
| 7358 | - background-color: var(--e-a-bg-default); | |
| 7359 | - border-radius: var(--e-a-border-radius); | |
| 7360 | - box-shadow: var(--e-a-popover-shadow); | |
| 5713 | + width: 200px; | |
| 5714 | + background-color: #fff; | |
| 5715 | + border: 1px solid #e6e9ec; | |
| 5716 | + border-radius: 3px; | |
| 5717 | + -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.09); | |
| 5718 | + box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.09); | |
| 7361 | 5719 | -webkit-user-select: none; |
| 7362 | 5720 | -moz-user-select: none; |
| 5721 | + -ms-user-select: none; | |
| 7363 | 5722 | user-select: none; |
| 7364 | 5723 | z-index: 101; |
| 7365 | 5724 | } |
| 7366 | -.elementor-context-menu-list { | |
| 7367 | - display: flex; | |
| 7368 | - flex-direction: column; | |
| 7369 | -} | |
| 7370 | 5725 | .elementor-context-menu-list__group { |
| 7371 | - display: flex; | |
| 7372 | - flex-direction: column; | |
| 5726 | + padding: 5px 0; | |
| 7373 | 5727 | } |
| 7374 | 5728 | .elementor-context-menu-list__group:not(:last-child) { |
| 7375 | - border-block-end: var(--e-a-border); | |
| 5729 | + border-bottom: 1px solid #e6e9ec; | |
| 7376 | 5730 | } |
| 7377 | 5731 | .elementor-context-menu-list__item { |
| 7378 | - padding: 12px 20px; | |
| 5732 | + padding: 5px 10px; | |
| 5733 | + padding-left: 20px; | |
| 5734 | + display: -webkit-box; | |
| 5735 | + display: -ms-flexbox; | |
| 7379 | 5736 | display: flex; |
| 7380 | - gap: 16px; | |
| 7381 | 5737 | cursor: pointer; |
| 7382 | - transition: var(--e-a-transition-hover); | |
| 7383 | - align-items: center; | |
| 7384 | 5738 | } |
| 7385 | 5739 | .elementor-context-menu-list__item--disabled { |
| 7386 | 5740 | cursor: default; |
| 7387 | - opacity: 0.5; | |
| 7388 | - color: var(--e-a-color-disabled); | |
| 5741 | + color: #d5dadf; | |
| 7389 | 5742 | } |
| 7390 | -.elementor-context-menu-list__item--disabled.elementor-context-menu-list__item--has-shortcut-action { | |
| 7391 | - opacity: 1; | |
| 5743 | +.elementor-context-menu-list__item:not(.elementor-context-menu-list__item--disabled):hover { | |
| 5744 | + background-color: #71d7f7; | |
| 7392 | 5745 | } |
| 7393 | -.elementor-context-menu-list__item--disabled.elementor-context-menu-list__item--has-shortcut-action > :not(.elementor-context-menu-list__item__shortcut) { | |
| 7394 | - opacity: 0.5; | |
| 5746 | +.elementor-context-menu-list__item:not(.elementor-context-menu-list__item--disabled):hover > * { | |
| 5747 | + color: #fff; | |
| 7395 | 5748 | } |
| 7396 | -.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 { | |
| 7397 | - background-color: var(--e-a-bg-hover); | |
| 7398 | - color: var(--e-a-color-hover); | |
| 7399 | -} | |
| 7400 | 5749 | .elementor-context-menu-list__item__icon { |
| 7401 | - display: none; | |
| 7402 | 5750 | width: 20px; |
| 5751 | + color: #c2cbd2; | |
| 7403 | 5752 | } |
| 7404 | 5753 | .elementor-context-menu-list__item__title { |
| 7405 | - flex-grow: 1; | |
| 5754 | + -webkit-box-flex: 1; | |
| 5755 | + -ms-flex-positive: 1; | |
| 5756 | + flex-grow: 1; | |
| 7406 | 5757 | white-space: nowrap; |
| 7407 | - text-overflow: ellipsis; | |
| 5758 | + -o-text-overflow: ellipsis; | |
| 5759 | + text-overflow: ellipsis; | |
| 7408 | 5760 | overflow: hidden; |
| 7409 | 5761 | } |
| 7410 | 5762 | .elementor-context-menu-list__item__shortcut { |
| 7411 | - color: var(--e-a-color-txt-muted); | |
| 5763 | + color: #d5dadf; | |
| 7412 | 5764 | } |
| 7413 | -.elementor-context-menu-list__item__shortcut--link-fullwidth { | |
| 7414 | - position: absolute; | |
| 7415 | - inset: 0; | |
| 7416 | - z-index: 2; | |
| 7417 | - cursor: pointer; | |
| 5765 | +.elementor-context-menu-list__item.elementor-context-menu-list__item-delete:not(.elementor-context-menu-list__item--disabled):hover { | |
| 5766 | + background-color: #d72b3f; | |
| 7418 | 5767 | } |
| 7419 | -.elementor-context-menu-list__item__shortcut__new-badge { | |
| 7420 | - border: 1px solid var(--e-a-color-primary-bold); | |
| 7421 | - padding: 2px 8px; | |
| 7422 | - color: var(--e-a-color-primary-bold); | |
| 7423 | - border-radius: 10px; | |
| 7424 | - font-size: 10px; | |
| 7425 | -} | |
| 7426 | -.elementor-context-menu-list__item__shortcut__promotion-badge { | |
| 7427 | - display: flex; | |
| 7428 | - align-items: center; | |
| 7429 | - justify-content: center; | |
| 7430 | - width: 24px; | |
| 7431 | - height: 24px; | |
| 7432 | - border-radius: 50%; | |
| 7433 | - background-color: rgba(214, 16, 124, 0.12); | |
| 7434 | - color: var(--e-a-color-accent-promotion, #D6107C); | |
| 7435 | - font-size: 16px; | |
| 7436 | - cursor: pointer; | |
| 7437 | -} | |
| 7438 | -.elementor-context-menu-list__item__title, .elementor-context-menu-list__item__shortcut { | |
| 7439 | - font-size: 14px; | |
| 7440 | - font-style: normal; | |
| 7441 | - font-weight: 400; | |
| 7442 | - line-height: 1; | |
| 7443 | - position: relative; | |
| 7444 | -} | |
| 7445 | -.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 > * { | |
| 7446 | - color: var(--e-global-color-danger); | |
| 7447 | -} | |
| 7448 | -.elementor-context-menu-list__item.elementor-hidden { | |
| 7449 | - display: none; | |
| 7450 | -} | |
| 7451 | 5768 | .elementor-context-menu .eicon-pro-icon { |
| 7452 | - color: var(--e-global-color-accent); | |
| 5769 | + color: #fcb92c; | |
| 7453 | 5770 | } |
| 7454 | 5771 | |
| 7455 | 5772 | #elementor-hotkeys { |
| 7456 | - text-align: start; | |
| 5773 | + text-align: right; | |
| 7457 | 5774 | } |
| 7458 | -#elementor-hotkeys__modal .dialog-buttons-wrapper { | |
| 7459 | - display: none; | |
| 7460 | -} | |
| 7461 | 5775 | #elementor-hotkeys__content { |
| 5776 | + display: -webkit-box; | |
| 5777 | + display: -ms-flexbox; | |
| 7462 | 5778 | display: flex; |
| 7463 | - justify-content: space-between; | |
| 7464 | - gap: 70px; | |
| 7465 | - padding: 20px 30px; | |
| 7466 | 5779 | width: 100%; |
| 7467 | 5780 | overflow: hidden; |
| 5781 | + margin-bottom: 30px; | |
| 7468 | 5782 | } |
| 7469 | 5783 | @media (max-width: 1024px) { |
| 7470 | 5784 | #elementor-hotkeys__content { |
| 7471 | - flex-direction: column; | |
| 7472 | - gap: 20px; | |
| 7473 | - padding: 20px; | |
| 5785 | + -webkit-box-orient: vertical; | |
| 5786 | + -webkit-box-direction: normal; | |
| 5787 | + -ms-flex-direction: column; | |
| 5788 | + flex-direction: column; | |
| 7474 | 5789 | } |
| 7475 | 5790 | } |
| 5791 | +#elementor-hotkeys__actions .elementor-hotkeys__list { | |
| 5792 | + border-radius: 0 3px 3px 0; | |
| 5793 | +} | |
| 5794 | +@media (max-width: 1024px) { | |
| 5795 | + #elementor-hotkeys__actions .elementor-hotkeys__list { | |
| 5796 | + border-radius: 3px; | |
| 5797 | + } | |
| 5798 | +} | |
| 5799 | +@media (min-width: 1025px) { | |
| 5800 | + #elementor-hotkeys__actions .elementor-hotkeys__header, | |
| 5801 | +#elementor-hotkeys__actions .elementor-hotkeys__list { | |
| 5802 | + padding-left: 25px; | |
| 5803 | + } | |
| 5804 | +} | |
| 5805 | +@media (min-width: 1440px) { | |
| 5806 | + #elementor-hotkeys__actions .elementor-hotkeys__header, | |
| 5807 | +#elementor-hotkeys__actions .elementor-hotkeys__list { | |
| 5808 | + padding-left: 50px; | |
| 5809 | + } | |
| 5810 | +} | |
| 5811 | +#elementor-hotkeys__navigation .elementor-hotkeys__list { | |
| 5812 | + border-radius: 3px 0 0 3px; | |
| 5813 | +} | |
| 5814 | +@media (max-width: 1024px) { | |
| 5815 | + #elementor-hotkeys__navigation .elementor-hotkeys__list { | |
| 5816 | + border-radius: 3px; | |
| 5817 | + } | |
| 5818 | +} | |
| 5819 | +@media (min-width: 1025px) { | |
| 5820 | + #elementor-hotkeys__navigation .elementor-hotkeys__header { | |
| 5821 | + padding-right: 25px; | |
| 5822 | + } | |
| 5823 | +} | |
| 5824 | +@media (min-width: 1440px) { | |
| 5825 | + #elementor-hotkeys__navigation .elementor-hotkeys__header { | |
| 5826 | + padding-right: 50px; | |
| 5827 | + } | |
| 5828 | +} | |
| 5829 | +@media (min-width: 1025px) { | |
| 5830 | + #elementor-hotkeys__navigation .elementor-hotkeys__list { | |
| 5831 | + padding-right: 15px; | |
| 5832 | + } | |
| 5833 | +} | |
| 5834 | +@media (min-width: 1440px) { | |
| 5835 | + #elementor-hotkeys__navigation .elementor-hotkeys__list { | |
| 5836 | + padding-right: 40px; | |
| 5837 | + } | |
| 5838 | +} | |
| 7476 | 5839 | |
| 7477 | 5840 | .elementor-hotkeys__col { |
| 7478 | - display: flex; | |
| 7479 | - flex-direction: column; | |
| 7480 | - gap: 20px; | |
| 5841 | + width: 50%; | |
| 5842 | +} | |
| 5843 | +@media (max-width: 1024px) { | |
| 5844 | + .elementor-hotkeys__col { | |
| 5845 | + width: 100%; | |
| 5846 | + } | |
| 5847 | +} | |
| 5848 | +.elementor-hotkeys__header, .elementor-hotkeys__list { | |
| 7481 | 5849 | width: 100%; |
| 7482 | 5850 | } |
| 7483 | 5851 | .elementor-hotkeys__header { |
| 5852 | + padding: 10px 30px; | |
| 7484 | 5853 | font-weight: 500; |
| 7485 | 5854 | } |
| 5855 | +@media (max-width: 479px) { | |
| 5856 | + .elementor-hotkeys__header { | |
| 5857 | + padding-right: 10px; | |
| 5858 | + padding-left: 10px; | |
| 5859 | + } | |
| 5860 | +} | |
| 5861 | +.elementor-hotkeys__list { | |
| 5862 | + background-color: #ffffff; | |
| 5863 | + height: calc(100% - 42px); | |
| 5864 | + padding: 10px 20px; | |
| 5865 | +} | |
| 5866 | +@media (max-width: 479px) { | |
| 5867 | + .elementor-hotkeys__list { | |
| 5868 | + padding: 0; | |
| 5869 | + } | |
| 5870 | +} | |
| 5871 | +@media (max-width: 1024px) { | |
| 5872 | + .elementor-hotkeys__list { | |
| 5873 | + margin-bottom: 30px; | |
| 5874 | + } | |
| 5875 | +} | |
| 5876 | +@media (max-width: 1024px) { | |
| 5877 | + .elementor-hotkeys__list { | |
| 5878 | + height: auto; | |
| 5879 | + } | |
| 5880 | +} | |
| 7486 | 5881 | .elementor-hotkeys__item { |
| 5882 | + display: -webkit-box; | |
| 5883 | + display: -ms-flexbox; | |
| 7487 | 5884 | display: flex; |
| 7488 | - align-items: center; | |
| 5885 | + -webkit-box-align: center; | |
| 5886 | + -ms-flex-align: center; | |
| 5887 | + align-items: center; | |
| 7489 | 5888 | padding: 20px 10px; |
| 5889 | + border-bottom: 1px solid #eceeef; | |
| 7490 | 5890 | } |
| 7491 | -.elementor-hotkeys__item:not(:last-child) { | |
| 7492 | - border-block-end: var(--e-a-border); | |
| 5891 | +.elementor-hotkeys__item:last-child { | |
| 5892 | + margin-bottom: 30px; | |
| 7493 | 5893 | } |
| 5894 | +@media (max-width: 479px) { | |
| 5895 | + .elementor-hotkeys__item:last-child { | |
| 5896 | + margin-bottom: 0; | |
| 5897 | + } | |
| 5898 | +} | |
| 7494 | 5899 | .elementor-hotkeys__item--label { |
| 7495 | 5900 | font-size: 13px; |
| 7496 | 5901 | font-weight: 400; |
| 7497 | - flex-grow: 1; | |
| 5902 | + -webkit-box-flex: 1; | |
| 5903 | + -ms-flex-positive: 1; | |
| 5904 | + flex-grow: 1; | |
| 7498 | 5905 | } |
| 7499 | 5906 | .elementor-hotkeys__item--shortcut { |
| 7500 | - flex-grow: 0; | |
| 5907 | + -webkit-box-flex: 0; | |
| 5908 | + -ms-flex-positive: 0; | |
| 5909 | + flex-grow: 0; | |
| 5910 | + display: -webkit-box; | |
| 5911 | + display: -ms-flexbox; | |
| 7501 | 5912 | display: flex; |
| 7502 | - gap: 27px; | |
| 5913 | + -webkit-box-orient: horizontal; | |
| 5914 | + -webkit-box-direction: reverse; | |
| 5915 | + -ms-flex-direction: row-reverse; | |
| 5916 | + flex-direction: row-reverse; | |
| 7503 | 5917 | } |
| 7504 | -@media (max-width: 1024px) { | |
| 7505 | - .elementor-hotkeys__item--shortcut { | |
| 7506 | - gap: 23px; | |
| 7507 | - } | |
| 7508 | -} | |
| 7509 | -.elementor-hotkeys__item--shortcut kbd { | |
| 5918 | +.elementor-hotkeys__item--shortcut span { | |
| 7510 | 5919 | position: relative; |
| 7511 | - font-family: unset; | |
| 7512 | - background-color: var(--e-a-bg-active); | |
| 5920 | + background-color: #eceeef; | |
| 7513 | 5921 | padding: 5px 12px; |
| 7514 | - border-radius: var(--e-a-border-radius); | |
| 5922 | + margin-right: 27px; | |
| 5923 | + border-radius: 3px; | |
| 7515 | 5924 | } |
| 7516 | -@media (max-width: 1024px) { | |
| 7517 | - .elementor-hotkeys__item--shortcut kbd { | |
| 5925 | +@media (max-width: 479px) { | |
| 5926 | + .elementor-hotkeys__item--shortcut span { | |
| 7518 | 5927 | padding: 4px 9px; |
| 5928 | + margin-right: 23px; | |
| 7519 | 5929 | } |
| 7520 | 5930 | } |
| 7521 | -.elementor-hotkeys__item--shortcut kbd:not(:last-of-type)::after { | |
| 5931 | +.elementor-hotkeys__item--shortcut span:after { | |
| 7522 | 5932 | content: "+"; |
| 7523 | 5933 | position: absolute; |
| 7524 | - inset-inline-end: 0; | |
| 5934 | + right: -18px; | |
| 7525 | 5935 | width: 9px; |
| 7526 | 5936 | text-align: center; |
| 7527 | - margin-inline-end: -18px; | |
| 7528 | 5937 | } |
| 7529 | -@media (max-width: 1024px) { | |
| 7530 | - .elementor-hotkeys__item--shortcut kbd:not(:last-of-type)::after { | |
| 7531 | - margin-inline-end: -16px; | |
| 5938 | +@media (max-width: 479px) { | |
| 5939 | + .elementor-hotkeys__item--shortcut span:after { | |
| 5940 | + right: -16px; | |
| 7532 | 5941 | } |
| 7533 | 5942 | } |
| 7534 | - | |
| 7535 | -.elementor-template-library-template-remote:not(.elementor-template-library-template-page):not(.elementor-template-library-template-lp).elementor-template-library-template-floating_button { | |
| 7536 | - margin-top: 0 !important; | |
| 7537 | - width: calc(25% - 30px); | |
| 5943 | +.elementor-hotkeys__item--shortcut span:last-child { | |
| 5944 | + margin-right: 0; | |
| 7538 | 5945 | } |
| 5946 | +.elementor-hotkeys__item--shortcut span:last-child:after { | |
| 5947 | + display: none; | |
| 5948 | +} | |
| 7539 | 5949 | |
| 7540 | 5950 | .ui-resizable-n { |
| 7541 | 5951 | top: -5px; |
| 7542 | 5952 | } |
| @@ -7595,23 +6005,22 @@ | ||
| 7595 | 6005 | } |
| 7596 | 6006 | |
| 7597 | 6007 | body { |
| 7598 | 6008 | --e-editor-navigator-width: 240px; |
| 7599 | - --e-editor-navigator-indicator-width: 3px; | |
| 7600 | - --e-editor-navigator-promotion-height: 30px; | |
| 7601 | 6009 | } |
| 7602 | 6010 | |
| 7603 | 6011 | #elementor-navigator { |
| 7604 | 6012 | position: fixed; |
| 7605 | - inset-block-start: 100px; | |
| 7606 | - inset-inline-end: 30px; | |
| 6013 | + top: 100px; | |
| 7607 | 6014 | width: var(--e-editor-navigator-width); |
| 7608 | 6015 | height: 50vh; |
| 7609 | - background-color: var(--e-a-bg-default); | |
| 7610 | - border: var(--e-a-border); | |
| 7611 | - box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.1); | |
| 6016 | + left: 30px; | |
| 6017 | + background-color: #fff; | |
| 6018 | + -webkit-box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.1); | |
| 6019 | + box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.1); | |
| 7612 | 6020 | -webkit-user-select: none; |
| 7613 | 6021 | -moz-user-select: none; |
| 6022 | + -ms-user-select: none; | |
| 7614 | 6023 | user-select: none; |
| 7615 | 6024 | overflow: hidden; |
| 7616 | 6025 | z-index: 100; |
| 7617 | 6026 | display: none; |
| @@ -7616,10 +6025,10 @@ | ||
| 7616 | 6025 | z-index: 100; |
| 7617 | 6026 | display: none; |
| 7618 | 6027 | } |
| 7619 | 6028 | body.elementor-navigator-docked #elementor-navigator { |
| 7620 | - inset: 0; | |
| 7621 | - inset-inline-start: auto; | |
| 6029 | + top: 0; | |
| 6030 | + left: 0; | |
| 7622 | 6031 | height: 100%; |
| 7623 | 6032 | } |
| 7624 | 6033 | body:not(.elementor-navigator-docked) #elementor-navigator { |
| 7625 | 6034 | border-radius: 5px; |
| @@ -7625,54 +6034,34 @@ | ||
| 7625 | 6034 | border-radius: 5px; |
| 7626 | 6035 | } |
| 7627 | 6036 | #elementor-navigator__inner { |
| 7628 | 6037 | height: 100%; |
| 7629 | - display: flex; | |
| 7630 | - flex-direction: column; | |
| 6038 | + background-color: #e6e9ec; | |
| 7631 | 6039 | } |
| 7632 | 6040 | #elementor-navigator__header { |
| 6041 | + display: -webkit-box; | |
| 6042 | + display: -ms-flexbox; | |
| 7633 | 6043 | display: flex; |
| 7634 | - align-items: stretch; | |
| 7635 | - border-block-end: var(--e-a-border); | |
| 7636 | - color: var(--e-a-color-txt-accent); | |
| 7637 | -} | |
| 7638 | -#elementor-navigator__header__title { | |
| 7639 | - flex: 1; | |
| 7640 | - text-align: center; | |
| 7641 | - font-size: 13px; | |
| 7642 | - font-weight: 400; | |
| 7643 | - padding: 10px 0; | |
| 6044 | + -webkit-box-align: center; | |
| 6045 | + -ms-flex-align: center; | |
| 6046 | + align-items: center; | |
| 6047 | + -webkit-box-pack: justify; | |
| 6048 | + -ms-flex-pack: justify; | |
| 6049 | + justify-content: space-between; | |
| 6050 | + padding: 12px 10px; | |
| 6051 | + background-color: #fff; | |
| 6052 | + border-bottom: 1px solid #e6e9ec; | |
| 7644 | 6053 | cursor: move; |
| 7645 | 6054 | } |
| 7646 | -iframe + #elementor-navigator__header__title, #elementor-navigator__ai-titles + #elementor-navigator__header__title { | |
| 7647 | - padding-inline-end: 17.5px; | |
| 7648 | -} | |
| 7649 | -#elementor-navigator__ai-titles { | |
| 7650 | - width: 35px; | |
| 7651 | - text-align: center; | |
| 7652 | - cursor: pointer; | |
| 7653 | - background-color: transparent; | |
| 7654 | - border: none; | |
| 7655 | - outline: none; | |
| 7656 | -} | |
| 7657 | -#elementor-navigator__ai-titles:hover { | |
| 7658 | - color: #E73CF6; | |
| 7659 | -} | |
| 7660 | 6055 | #elementor-navigator__close, #elementor-navigator__toggle-all { |
| 7661 | - color: var(--e-a-color-txt); | |
| 7662 | - background-color: transparent; | |
| 7663 | - border: none; | |
| 7664 | - outline: 0; | |
| 7665 | - padding: 10px; | |
| 6056 | + -webkit-transition: color 0.5s; | |
| 6057 | + -o-transition: color 0.5s; | |
| 6058 | + transition: color 0.5s; | |
| 7666 | 6059 | cursor: pointer; |
| 7667 | - transition: color 0.5s; | |
| 7668 | 6060 | } |
| 7669 | -#elementor-navigator__close:hover, #elementor-navigator__toggle-all:hover { | |
| 7670 | - color: var(--e-a-color-txt-hover); | |
| 6061 | +#elementor-navigator__close:not(:hover), #elementor-navigator__toggle-all:not(:hover) { | |
| 6062 | + color: #a4afb7; | |
| 7671 | 6063 | } |
| 7672 | -#elementor-navigator__close:focus, #elementor-navigator__toggle-all:focus { | |
| 7673 | - color: var(--e-a-color-txt-active); | |
| 7674 | -} | |
| 7675 | 6064 | #elementor-navigator__toggle-all { |
| 7676 | 6065 | font-size: 13px; |
| 7677 | 6066 | } |
| 7678 | 6067 | #elementor-navigator__close { |
| @@ -7678,9 +6067,9 @@ | ||
| 7678 | 6067 | #elementor-navigator__close { |
| 7679 | 6068 | font-size: 11px; |
| 7680 | 6069 | } |
| 7681 | 6070 | #elementor-navigator__elements { |
| 7682 | - flex-grow: 1; | |
| 6071 | + height: calc(100% - 49px); | |
| 7683 | 6072 | overflow: auto; |
| 7684 | 6073 | position: relative; |
| 7685 | 6074 | } |
| 7686 | 6075 | .elementor-navigator-docked #elementor-navigator__elements { |
| @@ -7688,88 +6077,77 @@ | ||
| 7688 | 6077 | } |
| 7689 | 6078 | #elementor-navigator__elements .elementor-nerd-box { |
| 7690 | 6079 | padding: 25px; |
| 7691 | 6080 | } |
| 7692 | -#elementor-navigator__elements > .elementor-navigator__element-section { | |
| 7693 | - border-block-end: var(--e-a-border); | |
| 7694 | -} | |
| 7695 | 6081 | #elementor-navigator__footer { |
| 6082 | + position: absolute; | |
| 7696 | 6083 | width: 100%; |
| 6084 | + left: 0; | |
| 6085 | + bottom: 0; | |
| 7697 | 6086 | text-align: center; |
| 6087 | + background-color: #fff; | |
| 6088 | + border-top: 1px solid #e6e9ec; | |
| 6089 | + color: #a4afb7; | |
| 7698 | 6090 | } |
| 7699 | -#elementor-navigator__footer__resize-bar { | |
| 7700 | - border-block-start: var(--e-a-border); | |
| 7701 | -} | |
| 7702 | -.elementor-navigator-docked #elementor-navigator__footer__resize-bar { | |
| 6091 | +.elementor-navigator-docked #elementor-navigator__footer { | |
| 7703 | 6092 | display: none; |
| 7704 | 6093 | } |
| 7705 | -#elementor-navigator__footer__promotion { | |
| 7706 | - font-size: 12px; | |
| 7707 | - padding: 4px 17px; | |
| 7708 | - font-family: "Roboto", sans-serif; | |
| 7709 | - color: var(--e-a-bg-logo); | |
| 7710 | - min-height: var(--e-editor-navigator-promotion-height); | |
| 7711 | - display: flex; | |
| 7712 | - justify-content: center; | |
| 7713 | - align-items: center; | |
| 7714 | -} | |
| 7715 | -#elementor-navigator__footer__promotion a { | |
| 7716 | - color: var(--e-a-color-accent-promotion); | |
| 7717 | - margin-inline-start: 1px; | |
| 7718 | -} | |
| 7719 | 6094 | |
| 7720 | 6095 | .elementor-navigator__item { |
| 7721 | 6096 | position: relative; |
| 6097 | + display: -webkit-box; | |
| 6098 | + display: -ms-flexbox; | |
| 7722 | 6099 | display: flex; |
| 7723 | 6100 | height: 30px; |
| 6101 | + font-size: 11px; | |
| 6102 | + border-bottom: 1px solid #e6e9ec; | |
| 7724 | 6103 | cursor: pointer; |
| 6104 | + -webkit-transition: padding 0.5s linear; | |
| 6105 | + -o-transition: padding 0.5s linear; | |
| 7725 | 6106 | transition: padding 0.5s linear; |
| 7726 | 6107 | overflow: hidden; |
| 7727 | 6108 | } |
| 7728 | -.elementor-navigator__item:hover, .elementor-navigator__item:focus { | |
| 7729 | - background-color: var(--e-a-bg-hover); | |
| 7730 | -} | |
| 7731 | -.elementor-navigator__item:active { | |
| 7732 | - background-color: var(--e-a-bg-active); | |
| 7733 | - color: var(--e-a-color-txt-accent); | |
| 7734 | -} | |
| 7735 | -.elementor-navigator__item[data-locked=true] { | |
| 7736 | - cursor: not-allowed; | |
| 7737 | -} | |
| 7738 | 6109 | .elementor-navigator__item:not(.elementor-active) .elementor-navigator__element__list-toggle i { |
| 7739 | - transform: rotate(calc(-90deg * var(--direction-multiplier))); | |
| 6110 | + -webkit-transform: rotate(90deg); | |
| 6111 | + -ms-transform: rotate(90deg); | |
| 6112 | + transform: rotate(90deg); | |
| 7740 | 6113 | } |
| 7741 | 6114 | .elementor-navigator__item > * { |
| 6115 | + display: -webkit-box; | |
| 6116 | + display: -ms-flexbox; | |
| 7742 | 6117 | display: flex; |
| 7743 | - align-items: center; | |
| 6118 | + -webkit-box-align: center; | |
| 6119 | + -ms-flex-align: center; | |
| 6120 | + align-items: center; | |
| 7744 | 6121 | } |
| 7745 | 6122 | .elementor-navigator__item + .elementor-navigator__elements { |
| 7746 | 6123 | display: none; |
| 7747 | 6124 | } |
| 7748 | -.elementor-navigator__elements > .elementor-navigator__element-section, | |
| 7749 | -.elementor-navigator__elements > .elementor-navigator__element-container:not(:last-child) { | |
| 7750 | - border-block-end: var(--e-a-border); | |
| 7751 | -} | |
| 7752 | 6125 | .elementor-navigator__elements .elementor-empty-view { |
| 7753 | 6126 | padding: 10px; |
| 6127 | + border-bottom: 1px solid #e6e9ec; | |
| 7754 | 6128 | } |
| 7755 | 6129 | .elementor-navigator__elements .elementor-empty-view__title { |
| 7756 | - margin-inline-start: 34px; | |
| 6130 | + margin-right: 23px; | |
| 6131 | + color: #c2cbd2; | |
| 7757 | 6132 | font-size: 10px; |
| 7758 | 6133 | font-style: italic; |
| 7759 | 6134 | } |
| 7760 | 6135 | .elementor-navigator__elements .ui-sortable-helper { |
| 7761 | - box-shadow: 1px 2px 5px 0 rgba(0, 0, 0, 0.1); | |
| 7762 | - transform: rotate(4deg); | |
| 7763 | - background-color: var(--e-a-bg-active); | |
| 7764 | - color: var(--e-a-color-txt-accent); | |
| 6136 | + background-color: #fff; | |
| 6137 | + -webkit-box-shadow: 1px 2px 5px 0 rgba(0, 0, 0, 0.1); | |
| 6138 | + box-shadow: 1px 2px 5px 0 rgba(0, 0, 0, 0.1); | |
| 6139 | + -webkit-transform: rotate(4deg); | |
| 6140 | + -ms-transform: rotate(4deg); | |
| 6141 | + transform: rotate(4deg); | |
| 6142 | + border: 1px solid #e6e9ec; | |
| 7765 | 6143 | pointer-events: none; |
| 7766 | 6144 | } |
| 7767 | 6145 | .elementor-navigator__elements .ui-sortable-placeholder { |
| 7768 | - background-color: var(--e-a-bg-hover); | |
| 6146 | + background-color: #f1f3f5; | |
| 7769 | 6147 | } |
| 7770 | 6148 | .elementor-navigator__element.elementor-dragging-on-child > .elementor-navigator__elements > .elementor-empty-view { |
| 7771 | - border-block-start: var(--e-a-border); | |
| 6149 | + border-top: 2px solid #71d7f7; | |
| 7772 | 6150 | } |
| 7773 | 6151 | .elementor-navigator__element.elementor-dragging-on-child > .elementor-navigator__elements > .elementor-empty-view .elementor-empty-view__title { |
| 7774 | 6152 | display: none; |
| 7775 | 6153 | } |
| @@ -7779,52 +6157,58 @@ | ||
| 7779 | 6157 | .elementor-navigator__element:not(.elementor-navigator__element--has-children) .elementor-navigator__element__list-toggle { |
| 7780 | 6158 | visibility: hidden; |
| 7781 | 6159 | } |
| 7782 | 6160 | .elementor-navigator__element:not(.elementor-navigator__element--hidden) > .elementor-navigator__item .elementor-navigator__element__toggle { |
| 7783 | - color: var(--e-a-color-txt-default); | |
| 6161 | + color: #71d7f7; | |
| 7784 | 6162 | } |
| 7785 | -.elementor-navigator__element:not(.elementor-navigator__element--hidden) > .elementor-navigator__item .elementor-navigator__element__toggle:hover { | |
| 7786 | - color: var(--e-a-color-txt-hover); | |
| 7787 | -} | |
| 7788 | 6163 | .elementor-navigator__element:not(.elementor-navigator__element--hidden) > .elementor-navigator__item:not(:hover) .elementor-navigator__element__toggle { |
| 7789 | 6164 | display: none; |
| 7790 | 6165 | } |
| 7791 | 6166 | .elementor-navigator__element:not(.elementor-navigator__element--hidden) > .elementor-navigator__item.elementor-editing { |
| 7792 | - background-color: var(--e-a-bg-active); | |
| 6167 | + background-color: #71d7f7; | |
| 7793 | 6168 | } |
| 6169 | +.elementor-navigator__element:not(.elementor-navigator__element--hidden) > .elementor-navigator__item.elementor-editing > * { | |
| 6170 | + color: #fff; | |
| 6171 | +} | |
| 7794 | 6172 | .elementor-navigator__element__list-toggle { |
| 7795 | - margin-inline-end: 7px; | |
| 6173 | + margin-left: 7px; | |
| 6174 | + -webkit-transition: -webkit-transform 0.3s; | |
| 6175 | + transition: -webkit-transform 0.3s; | |
| 6176 | + -o-transition: transform 0.3s; | |
| 7796 | 6177 | transition: transform 0.3s; |
| 6178 | + transition: transform 0.3s, -webkit-transform 0.3s; | |
| 6179 | + color: #a4afb7; | |
| 7797 | 6180 | } |
| 7798 | 6181 | .elementor-navigator__element__element-type { |
| 7799 | - margin-inline-end: 8px; | |
| 7800 | - font-size: 14px; | |
| 6182 | + margin-left: 8px; | |
| 7801 | 6183 | } |
| 7802 | 6184 | .elementor-navigator__element__title { |
| 7803 | - flex-grow: 1; | |
| 6185 | + -webkit-box-flex: 1; | |
| 6186 | + -ms-flex-positive: 1; | |
| 6187 | + flex-grow: 1; | |
| 7804 | 6188 | overflow: hidden; |
| 7805 | 6189 | } |
| 7806 | 6190 | .elementor-navigator__element__title__text { |
| 7807 | 6191 | white-space: nowrap; |
| 7808 | 6192 | -webkit-user-select: text; |
| 7809 | - -moz-user-select: text; | |
| 7810 | - user-select: text; | |
| 7811 | 6193 | } |
| 7812 | 6194 | .elementor-navigator__element__title__text[contenteditable=true] { |
| 7813 | 6195 | outline: none; |
| 7814 | - background-color: var(--e-a-bg-hover); | |
| 7815 | - padding: var(--e-admin-border-radius); | |
| 7816 | - border: var(--e-a-border); | |
| 6196 | + color: #6d7882; | |
| 6197 | + background-color: #fff; | |
| 6198 | + padding: 2px 3px; | |
| 6199 | + -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2); | |
| 6200 | + box-shadow: 0 0 4px rgba(0, 0, 0, 0.2); | |
| 7817 | 6201 | } |
| 7818 | 6202 | .elementor-navigator__element__title__text:not([contenteditable=true]) { |
| 7819 | - padding: 3px 0; | |
| 7820 | 6203 | white-space: nowrap; |
| 7821 | - text-overflow: ellipsis; | |
| 6204 | + -o-text-overflow: ellipsis; | |
| 6205 | + text-overflow: ellipsis; | |
| 7822 | 6206 | overflow: hidden; |
| 7823 | 6207 | } |
| 7824 | 6208 | .elementor-navigator__element__toggle { |
| 7825 | 6209 | position: absolute; |
| 7826 | - inset-inline-end: 15px; | |
| 6210 | + left: 15px; | |
| 7827 | 6211 | height: 100%; |
| 7828 | 6212 | z-index: 0; |
| 7829 | 6213 | font-size: 13px; |
| 7830 | 6214 | } |
| @@ -7829,69 +6213,96 @@ | ||
| 7829 | 6213 | font-size: 13px; |
| 7830 | 6214 | } |
| 7831 | 6215 | .elementor-navigator__element__indicators { |
| 7832 | 6216 | position: relative; |
| 6217 | + -webkit-transition: -webkit-transform 0.5s; | |
| 6218 | + transition: -webkit-transform 0.5s; | |
| 6219 | + -o-transition: transform 0.5s; | |
| 7833 | 6220 | transition: transform 0.5s; |
| 6221 | + transition: transform 0.5s, -webkit-transform 0.5s; | |
| 6222 | + padding-right: 5px; | |
| 7834 | 6223 | z-index: 91; |
| 7835 | 6224 | } |
| 7836 | 6225 | .elementor-navigator__element__indicators:not(:hover) { |
| 7837 | - transform: translateX(calc(100% * var(--direction-multiplier) - var(--e-editor-navigator-indicator-width) * var(--direction-multiplier))); | |
| 6226 | + -webkit-transform: translateX(calc(-100% + 8px)); | |
| 6227 | + -ms-transform: translateX(calc(-100% + 8px)); | |
| 6228 | + transform: translateX(calc(-100% + 8px)); | |
| 7838 | 6229 | } |
| 7839 | 6230 | .elementor-navigator__element__indicator { |
| 7840 | 6231 | height: 100%; |
| 7841 | 6232 | width: 31px; |
| 6233 | + display: -webkit-inline-box; | |
| 6234 | + display: -ms-inline-flexbox; | |
| 7842 | 6235 | display: inline-flex; |
| 7843 | - align-items: center; | |
| 7844 | - justify-content: center; | |
| 7845 | - color: var(--e-a-color-txt); | |
| 7846 | - background-color: var(--e-a-bg-default); | |
| 7847 | - border-inline-end: var(--e-a-border); | |
| 6236 | + -webkit-box-align: center; | |
| 6237 | + -ms-flex-align: center; | |
| 6238 | + align-items: center; | |
| 6239 | + -webkit-box-pack: center; | |
| 6240 | + -ms-flex-pack: center; | |
| 6241 | + justify-content: center; | |
| 6242 | + color: #6d7882; | |
| 6243 | + background-color: #fff; | |
| 6244 | + border-right: 1px solid #e6e9ec; | |
| 7848 | 6245 | } |
| 7849 | 6246 | .elementor-navigator__element__indicator:first-child { |
| 7850 | - border-inline-start: var(--e-editor-navigator-indicator-width) solid var(--e-a-border-color-accent); | |
| 6247 | + border-right: 3px solid #71d7f7; | |
| 7851 | 6248 | } |
| 6249 | +.elementor-editing .elementor-navigator__element__indicator:first-child { | |
| 6250 | + border-color: #41c9f4; | |
| 6251 | +} | |
| 7852 | 6252 | .elementor-navigator__element__indicator:hover { |
| 7853 | - color: var(--e-a-color-txt-hover); | |
| 6253 | + color: #495157; | |
| 7854 | 6254 | } |
| 7855 | 6255 | .elementor-navigator__element--hidden .elementor-navigator__element__title, |
| 7856 | 6256 | .elementor-navigator__element--hidden .elementor-navigator__element__toggle { |
| 7857 | 6257 | opacity: 0.5; |
| 7858 | 6258 | } |
| 7859 | -.elementor-navigator__promotion-text { | |
| 7860 | - line-height: 18px; | |
| 6259 | +.elementor-navigator__element-column { | |
| 6260 | + background-color: #fafbfb; | |
| 7861 | 6261 | } |
| 6262 | +.elementor-navigator__element-column > .elementor-navigator__item .elementor-navigator__element__element-type { | |
| 6263 | + color: #a4afb7; | |
| 6264 | +} | |
| 6265 | +.elementor-navigator__element-section, .elementor-navigator__element-container { | |
| 6266 | + background-color: #ffffff; | |
| 6267 | +} | |
| 7862 | 6268 | |
| 7863 | 6269 | .e-notice-bar { |
| 7864 | 6270 | position: absolute; |
| 7865 | 6271 | width: 100%; |
| 7866 | - inset-block-end: 0; | |
| 6272 | + bottom: 0; | |
| 6273 | + display: -webkit-box; | |
| 6274 | + display: -ms-flexbox; | |
| 7867 | 6275 | display: flex; |
| 7868 | - align-items: center; | |
| 6276 | + -webkit-box-align: center; | |
| 6277 | + -ms-flex-align: center; | |
| 6278 | + align-items: center; | |
| 7869 | 6279 | height: 40px; |
| 7870 | 6280 | color: #fff; |
| 7871 | - background-color: var(--e-a-color-accent); | |
| 6281 | + background-color: #93003c; | |
| 7872 | 6282 | padding: 0 25px; |
| 7873 | 6283 | } |
| 7874 | 6284 | .e-notice-bar__message a { |
| 7875 | 6285 | text-decoration: underline; |
| 7876 | - color: var(--e-a-color-txt-invert); | |
| 6286 | + color: #fff; | |
| 7877 | 6287 | } |
| 7878 | 6288 | .e-notice-bar__message a:hover { |
| 7879 | - color: #D5D8DC; | |
| 6289 | + color: #d5dadf; | |
| 7880 | 6290 | } |
| 7881 | 6291 | .e-notice-bar__primary_action { |
| 7882 | 6292 | margin-inline: 12px; |
| 6293 | + text-transform: uppercase; | |
| 7883 | 6294 | } |
| 7884 | 6295 | .e-notice-bar__primary_action a { |
| 7885 | 6296 | background: #ffffff; |
| 7886 | 6297 | border-radius: 3px; |
| 7887 | - color: #93003f; | |
| 6298 | + color: #93003c; | |
| 7888 | 6299 | padding: 4px 10px; |
| 7889 | 6300 | font-size: 11px; |
| 7890 | 6301 | } |
| 7891 | 6302 | .e-notice-bar__primary_action a:hover { |
| 7892 | - color: rgb(70.5, 0, 30.2142857143); | |
| 7893 | - background: #F1F2F3; | |
| 6303 | + color: #47001d; | |
| 6304 | + background: #f1f3f5; | |
| 7894 | 6305 | } |
| 7895 | 6306 | .e-notice-bar__secondary_message, .e-notice-bar__secondary_action { |
| 7896 | 6307 | font-size: 11px; |
| 7897 | 6308 | } |
| @@ -7902,16 +6313,18 @@ | ||
| 7902 | 6313 | color: #ffffff; |
| 7903 | 6314 | text-decoration: underline; |
| 7904 | 6315 | } |
| 7905 | 6316 | .e-notice-bar__secondary_action a:hover { |
| 7906 | - color: #F1F2F3; | |
| 6317 | + color: #eceeef; | |
| 7907 | 6318 | } |
| 7908 | 6319 | .e-notice-bar__close { |
| 7909 | 6320 | cursor: pointer; |
| 7910 | - margin-inline-start: auto; | |
| 6321 | + -webkit-margin-start: auto; | |
| 6322 | + margin-inline-start: auto; | |
| 7911 | 6323 | } |
| 7912 | 6324 | .e-notice-bar__icon { |
| 7913 | - margin-inline-end: 8px; | |
| 6325 | + -webkit-margin-end: 8px; | |
| 6326 | + margin-inline-end: 8px; | |
| 7914 | 6327 | } |
| 7915 | 6328 | .e-notice-bar i { |
| 7916 | 6329 | font-size: 16px; |
| 7917 | 6330 | opacity: 0.9; |
| @@ -7916,13 +6329,15 @@ | ||
| 7916 | 6329 | font-size: 16px; |
| 7917 | 6330 | opacity: 0.9; |
| 7918 | 6331 | } |
| 7919 | 6332 | .e-notice-bar i:hover { |
| 7920 | - color: #D5D8DC; | |
| 6333 | + color: #d5dadf; | |
| 7921 | 6334 | } |
| 7922 | 6335 | .e-notice-bar a, |
| 7923 | 6336 | .e-notice-bar i { |
| 7924 | - transition: var(--e-a-transition-hover); | |
| 6337 | + -webkit-transition: all 0.3s; | |
| 6338 | + -o-transition: all 0.3s; | |
| 6339 | + transition: all 0.3s; | |
| 7925 | 6340 | } |
| 7926 | 6341 | |
| 7927 | 6342 | body:not(.elementor-device-desktop) #e-notice-bar { |
| 7928 | 6343 | display: none; |
| @@ -7927,10 +6342,15 @@ | ||
| 7927 | 6342 | body:not(.elementor-device-desktop) #e-notice-bar { |
| 7928 | 6343 | display: none; |
| 7929 | 6344 | } |
| 7930 | 6345 | |
| 7931 | -#elementor-fatal-error-dialog .dialog-message a { | |
| 6346 | +#elementor-fatal-error-dialog.elementor-preview-loading-error .dialog-header { | |
| 6347 | + color: #495157; | |
| 6348 | +} | |
| 6349 | +#elementor-fatal-error-dialog.elementor-preview-loading-error .dialog-message a { | |
| 6350 | + color: #6d7882; | |
| 7932 | 6351 | text-decoration: underline; |
| 6352 | + font-style: italic; | |
| 7933 | 6353 | } |
| 7934 | 6354 | |
| 7935 | 6355 | #elementor-preview-debug-link-text { |
| 7936 | 6356 | display: inline-block; |
| @@ -7940,11 +6360,20 @@ | ||
| 7940 | 6360 | padding: 0; |
| 7941 | 6361 | height: 700px; |
| 7942 | 6362 | } |
| 7943 | 6363 | #elementor-icons-manager-modal .dialog-content { |
| 6364 | + display: -webkit-box; | |
| 6365 | + display: -ms-flexbox; | |
| 7944 | 6366 | display: flex; |
| 7945 | 6367 | } |
| 6368 | +#elementor-icons-manager-modal .dialog-buttons-wrapper { | |
| 6369 | + display: -webkit-box; | |
| 6370 | + display: -ms-flexbox; | |
| 6371 | + display: flex; | |
| 6372 | +} | |
| 7946 | 6373 | #elementor-icons-manager__wrapper { |
| 6374 | + display: -webkit-box; | |
| 6375 | + display: -ms-flexbox; | |
| 7947 | 6376 | display: flex; |
| 7948 | 6377 | } |
| 7949 | 6378 | @media (max-width: 479px) { |
| 7950 | 6379 | #elementor-icons-manager__sidebar { |
| @@ -7951,17 +6380,23 @@ | ||
| 7951 | 6380 | display: none; |
| 7952 | 6381 | } |
| 7953 | 6382 | } |
| 7954 | 6383 | #elementor-icons-manager__tab-links { |
| 7955 | - margin-block-start: 30px; | |
| 6384 | + margin-top: 30px; | |
| 7956 | 6385 | } |
| 7957 | 6386 | #elementor-icons-manager__upload { |
| 7958 | 6387 | margin: 20px 45px; |
| 7959 | - padding-block-start: 35px; | |
| 7960 | - border-block-start: var(--e-a-border); | |
| 6388 | + padding-top: 35px; | |
| 6389 | + border-top: 1px solid #e6e9ec; | |
| 6390 | + display: -webkit-box; | |
| 6391 | + display: -ms-flexbox; | |
| 7961 | 6392 | display: flex; |
| 7962 | - align-items: center; | |
| 7963 | - justify-content: space-between; | |
| 6393 | + -webkit-box-align: center; | |
| 6394 | + -ms-flex-align: center; | |
| 6395 | + align-items: center; | |
| 6396 | + -webkit-box-pack: justify; | |
| 6397 | + -ms-flex-pack: justify; | |
| 6398 | + justify-content: space-between; | |
| 7964 | 6399 | } |
| 7965 | 6400 | @media (max-width: 1439px) { |
| 7966 | 6401 | #elementor-icons-manager__upload { |
| 7967 | 6402 | margin: 20px 25px; |
| @@ -7966,11 +6401,21 @@ | ||
| 7966 | 6401 | #elementor-icons-manager__upload { |
| 7967 | 6402 | margin: 20px 25px; |
| 7968 | 6403 | } |
| 7969 | 6404 | } |
| 6405 | +#elementor-icons-manager__upload__title { | |
| 6406 | + color: #a4afb7; | |
| 6407 | + font-size: 11px; | |
| 6408 | + text-transform: uppercase; | |
| 6409 | +} | |
| 7970 | 6410 | #elementor-icons-manager__main { |
| 6411 | + display: -webkit-box; | |
| 6412 | + display: -ms-flexbox; | |
| 7971 | 6413 | display: flex; |
| 7972 | - flex-direction: column; | |
| 6414 | + -webkit-box-orient: vertical; | |
| 6415 | + -webkit-box-direction: normal; | |
| 6416 | + -ms-flex-direction: column; | |
| 6417 | + flex-direction: column; | |
| 7973 | 6418 | padding: 30px 80px 0; |
| 7974 | 6419 | } |
| 7975 | 6420 | @media (max-width: 1439px) { |
| 7976 | 6421 | #elementor-icons-manager__main { |
| @@ -7986,15 +6431,30 @@ | ||
| 7986 | 6431 | position: relative; |
| 7987 | 6432 | } |
| 7988 | 6433 | #elementor-icons-manager__search input { |
| 7989 | 6434 | padding: 8px 15px; |
| 7990 | - background-color: transparent; | |
| 6435 | + background-color: #fff; | |
| 6436 | + border: none; | |
| 7991 | 6437 | } |
| 6438 | +#elementor-icons-manager__search input::-webkit-input-placeholder { | |
| 6439 | + font-style: italic; | |
| 6440 | +} | |
| 6441 | +#elementor-icons-manager__search input::-moz-placeholder { | |
| 6442 | + font-style: italic; | |
| 6443 | +} | |
| 6444 | +#elementor-icons-manager__search input::-ms-input-placeholder { | |
| 6445 | + font-style: italic; | |
| 6446 | +} | |
| 6447 | +#elementor-icons-manager__search input::placeholder { | |
| 6448 | + font-style: italic; | |
| 6449 | +} | |
| 7992 | 6450 | #elementor-icons-manager__search i { |
| 7993 | 6451 | position: absolute; |
| 7994 | - inset-block-start: 50%; | |
| 7995 | - inset-inline-end: 15px; | |
| 7996 | - transform: translateY(-50%); | |
| 6452 | + top: 50%; | |
| 6453 | + -webkit-transform: translateY(-50%); | |
| 6454 | + -ms-transform: translateY(-50%); | |
| 6455 | + transform: translateY(-50%); | |
| 6456 | + left: 15px; | |
| 7997 | 6457 | } |
| 7998 | 6458 | #elementor-icons-manager__tab__wrapper { |
| 7999 | 6459 | overflow: auto; |
| 8000 | 6460 | margin: 25px -15px 0; |
| @@ -8000,12 +6460,12 @@ | ||
| 8000 | 6460 | margin: 25px -15px 0; |
| 8001 | 6461 | padding: 0 15px 15px; |
| 8002 | 6462 | } |
| 8003 | 6463 | #elementor-icons-manager__tab__title { |
| 8004 | - color: var(--e-a-color-txt); | |
| 6464 | + color: #556068; | |
| 8005 | 6465 | font-size: 16px; |
| 8006 | 6466 | font-weight: 500; |
| 8007 | - text-align: start; | |
| 6467 | + text-align: right; | |
| 8008 | 6468 | } |
| 8009 | 6469 | @media (max-width: 479px) { |
| 8010 | 6470 | #elementor-icons-manager__tab__title { |
| 8011 | 6471 | display: none; |
| @@ -8037,186 +6497,184 @@ | ||
| 8037 | 6497 | grid-template-columns: repeat(3, 1fr); |
| 8038 | 6498 | } |
| 8039 | 6499 | } |
| 8040 | 6500 | #elementor-icons-manager__promotion { |
| 6501 | + display: -webkit-box; | |
| 6502 | + display: -ms-flexbox; | |
| 8041 | 6503 | display: flex; |
| 8042 | - align-items: center; | |
| 8043 | - flex-direction: column; | |
| 8044 | - padding-block-start: 70px; | |
| 6504 | + -webkit-box-align: center; | |
| 6505 | + -ms-flex-align: center; | |
| 6506 | + align-items: center; | |
| 6507 | + -webkit-box-orient: vertical; | |
| 6508 | + -webkit-box-direction: normal; | |
| 6509 | + -ms-flex-direction: column; | |
| 6510 | + flex-direction: column; | |
| 6511 | + padding-top: 70px; | |
| 8045 | 6512 | } |
| 8046 | 6513 | #elementor-icons-manager__promotion__icon { |
| 8047 | 6514 | font-size: 60px; |
| 6515 | + color: #c2cbd2; | |
| 8048 | 6516 | } |
| 8049 | 6517 | #elementor-icons-manager__promotion__text { |
| 8050 | 6518 | width: 300px; |
| 8051 | 6519 | font-size: 16px; |
| 8052 | - padding-block-start: 25px; | |
| 6520 | + padding-top: 25px; | |
| 8053 | 6521 | } |
| 8054 | 6522 | #elementor-icons-manager__promotion__link { |
| 8055 | - margin-block-start: 20px; | |
| 6523 | + margin-top: 20px; | |
| 8056 | 6524 | } |
| 8057 | 6525 | |
| 8058 | 6526 | .elementor-icons-manager__tab-link { |
| 8059 | - padding-block: 15px; | |
| 8060 | - padding-inline: 45px 0; | |
| 8061 | - font-size: 12px; | |
| 8062 | - text-align: start; | |
| 6527 | + padding: 15px 45px 15px 0; | |
| 6528 | + font-size: 14px; | |
| 6529 | + color: #6d7882; | |
| 6530 | + text-align: right; | |
| 8063 | 6531 | cursor: pointer; |
| 8064 | 6532 | position: relative; |
| 8065 | 6533 | } |
| 8066 | 6534 | .elementor-icons-manager__tab-link i { |
| 8067 | 6535 | font-size: 20px; |
| 8068 | - padding-inline-end: 15px; | |
| 6536 | + padding-left: 15px; | |
| 6537 | + color: #a4afb7; | |
| 8069 | 6538 | } |
| 6539 | +@media (max-width: 1439px) { | |
| 6540 | + .elementor-icons-manager__tab-link { | |
| 6541 | + padding: 15px 25px 15px 15px; | |
| 6542 | + font-size: 11px; | |
| 6543 | + } | |
| 6544 | + .elementor-icons-manager__tab-link i { | |
| 6545 | + font-size: 15px; | |
| 6546 | + } | |
| 6547 | +} | |
| 8070 | 6548 | @media (max-width: 1024px) { |
| 8071 | 6549 | .elementor-icons-manager__tab-link i { |
| 8072 | 6550 | display: none; |
| 8073 | 6551 | } |
| 8074 | 6552 | } |
| 8075 | -.elementor-icons-manager__tab-link:hover { | |
| 8076 | - background-color: var(--e-a-bg-hover); | |
| 8077 | -} | |
| 8078 | 6553 | .elementor-icons-manager__tab-link.elementor-active { |
| 8079 | - background-color: var(--e-a-bg-active); | |
| 8080 | - color: var(--e-a-color-txt-accent); | |
| 6554 | + background-color: #fff; | |
| 6555 | + -webkit-box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.1); | |
| 6556 | + box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.1); | |
| 8081 | 6557 | } |
| 8082 | 6558 | .elementor-icons-manager__tab-link.elementor-active:after { |
| 8083 | 6559 | content: ""; |
| 8084 | 6560 | position: absolute; |
| 8085 | 6561 | height: 100%; |
| 8086 | - width: 3px; | |
| 8087 | - inset-block-start: 0; | |
| 8088 | - inset-inline-start: 0; | |
| 8089 | - background-color: var(--e-a-border-color-accent); | |
| 6562 | + width: 5px; | |
| 6563 | + top: 0; | |
| 6564 | + right: 0; | |
| 6565 | + background-color: #71d7f7; | |
| 8090 | 6566 | } |
| 6567 | +.elementor-icons-manager__tab-link.elementor-active i { | |
| 6568 | + color: #71d7f7; | |
| 6569 | +} | |
| 8091 | 6570 | .elementor-icons-manager__tab__item { |
| 8092 | 6571 | position: relative; |
| 8093 | 6572 | height: 0; |
| 8094 | - padding-block-end: 100%; | |
| 8095 | - border: var(--e-a-border); | |
| 6573 | + padding-bottom: 100%; | |
| 6574 | + background-color: #fff; | |
| 6575 | + -webkit-box-shadow: 0 1px 12px rgba(0, 0, 0, 0.05); | |
| 6576 | + box-shadow: 0 1px 12px rgba(0, 0, 0, 0.05); | |
| 8096 | 6577 | border-radius: 3px; |
| 8097 | 6578 | cursor: pointer; |
| 8098 | - transition: var(--e-a-transition-hover); | |
| 6579 | + -webkit-transition: all 0.3s; | |
| 6580 | + -o-transition: all 0.3s; | |
| 6581 | + transition: all 0.3s; | |
| 8099 | 6582 | overflow: hidden; |
| 8100 | 6583 | } |
| 8101 | 6584 | .elementor-icons-manager__tab__item:hover { |
| 8102 | - background-color: var(--e-a-bg-hover); | |
| 6585 | + -webkit-box-shadow: 0 1px 14px rgba(0, 0, 0, 0.16); | |
| 6586 | + box-shadow: 0 1px 14px rgba(0, 0, 0, 0.16); | |
| 8103 | 6587 | } |
| 8104 | 6588 | .elementor-icons-manager__tab__item.elementor-selected { |
| 8105 | - background-color: var(--e-a-bg-active); | |
| 8106 | - border-color: var(--e-a-border-color-accent); | |
| 8107 | - color: var(--e-a-color-txt-accent); | |
| 6589 | + -webkit-box-shadow: 0 1px 12px rgba(0, 0, 0, 0.05), 0 0 0 3px #71d7f7; | |
| 6590 | + box-shadow: 0 1px 12px rgba(0, 0, 0, 0.05), 0 0 0 3px #71d7f7; | |
| 8108 | 6591 | } |
| 8109 | 6592 | .elementor-icons-manager__tab__item__content { |
| 6593 | + display: -webkit-box; | |
| 6594 | + display: -ms-flexbox; | |
| 8110 | 6595 | display: flex; |
| 8111 | - flex-direction: column; | |
| 8112 | - align-items: center; | |
| 6596 | + -webkit-box-orient: vertical; | |
| 6597 | + -webkit-box-direction: normal; | |
| 6598 | + -ms-flex-direction: column; | |
| 6599 | + flex-direction: column; | |
| 6600 | + -webkit-box-align: center; | |
| 6601 | + -ms-flex-align: center; | |
| 6602 | + align-items: center; | |
| 8113 | 6603 | width: 100%; |
| 8114 | 6604 | position: absolute; |
| 8115 | - inset-block-start: 50%; | |
| 8116 | - inset-inline-start: 50%; | |
| 8117 | - transform: translate(calc(-50% * var(--direction-multiplier)), -50%); | |
| 6605 | + top: 50%; | |
| 6606 | + left: 50%; | |
| 6607 | + -webkit-transform: translate(-50%, -50%); | |
| 6608 | + -ms-transform: translate(-50%, -50%); | |
| 6609 | + transform: translate(-50%, -50%); | |
| 8118 | 6610 | padding: 1px; |
| 8119 | 6611 | } |
| 8120 | 6612 | .elementor-icons-manager__tab__item__icon { |
| 8121 | 6613 | font-size: 25px; |
| 6614 | + color: #6d7882; | |
| 8122 | 6615 | } |
| 8123 | 6616 | .elementor-icons-manager__tab__item__name { |
| 6617 | + color: #c2cbd2; | |
| 8124 | 6618 | font-size: 11px; |
| 8125 | 6619 | padding: 13px 20px 0; |
| 8126 | 6620 | max-width: 100%; |
| 8127 | 6621 | white-space: nowrap; |
| 8128 | - text-overflow: ellipsis; | |
| 6622 | + -o-text-overflow: ellipsis; | |
| 6623 | + text-overflow: ellipsis; | |
| 8129 | 6624 | overflow: hidden; |
| 8130 | 6625 | } |
| 8131 | 6626 | |
| 6627 | +#elementor-enable-fa5-dialog a { | |
| 6628 | + font-style: italic; | |
| 6629 | + text-decoration: underline; | |
| 6630 | +} | |
| 6631 | +#elementor-enable-fa5-dialog .dialog-confirm-ok { | |
| 6632 | + color: #39b54a; | |
| 6633 | +} | |
| 6634 | + | |
| 8132 | 6635 | .elementor-color-picker__header { |
| 6636 | + display: -webkit-box; | |
| 6637 | + display: -ms-flexbox; | |
| 8133 | 6638 | display: flex; |
| 8134 | - justify-content: space-between; | |
| 8135 | - align-items: center; | |
| 6639 | + -webkit-box-pack: justify; | |
| 6640 | + -ms-flex-pack: justify; | |
| 6641 | + justify-content: space-between; | |
| 6642 | + -webkit-box-align: center; | |
| 6643 | + -ms-flex-align: center; | |
| 6644 | + align-items: center; | |
| 8136 | 6645 | font-weight: bold; |
| 8137 | 6646 | padding: 10px; |
| 8138 | - box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); | |
| 6647 | + -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); | |
| 6648 | + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); | |
| 8139 | 6649 | } |
| 8140 | 6650 | |
| 8141 | 6651 | .e-color-picker__tools { |
| 6652 | + display: -webkit-box; | |
| 6653 | + display: -ms-flexbox; | |
| 8142 | 6654 | display: flex; |
| 8143 | 6655 | } |
| 8144 | 6656 | |
| 8145 | 6657 | .e-control-color--no-value .pcr-button { |
| 6658 | + background-image: -o-linear-gradient(315deg, transparent 46%, #ff3030 50%, transparent 54%); | |
| 8146 | 6659 | background-image: linear-gradient(135deg, transparent 46%, #ff3030 50%, transparent 54%); |
| 8147 | 6660 | background-size: cover; |
| 8148 | 6661 | background-color: transparent; |
| 6662 | + border: 1px solid #d5dadf; | |
| 8149 | 6663 | } |
| 8150 | 6664 | |
| 8151 | -.pickr { | |
| 8152 | - border: var(--e-a-border); | |
| 8153 | - height: 27px; | |
| 8154 | -} | |
| 8155 | -.pickr .pcr-button { | |
| 8156 | - height: 100%; | |
| 8157 | - width: 100%; | |
| 8158 | - border-radius: var(--e-a-border-radius); | |
| 8159 | -} | |
| 8160 | -.pickr .pcr-button:before, .pickr .pcr-button:after { | |
| 8161 | - height: 12px; | |
| 8162 | - width: 12px; | |
| 8163 | - position: absolute; | |
| 8164 | - inset-block-start: 50%; | |
| 8165 | - inset-inline-start: 50%; | |
| 8166 | - transform: translate(calc(-50% * var(--direction-multiplier)), -50%); | |
| 8167 | -} | |
| 8168 | - | |
| 8169 | -.pcr-app { | |
| 8170 | - background-color: var(--e-a-bg-default); | |
| 8171 | - color: var(--e-a-color-txt); | |
| 8172 | - box-shadow: var(--e-a-popover-shadow); | |
| 8173 | - font-family: var(--e-a-font-family); | |
| 8174 | -} | |
| 8175 | 6665 | .pcr-app[data-theme=monolith] { |
| 8176 | 6666 | padding: 0; |
| 8177 | - width: 270px; | |
| 8178 | 6667 | } |
| 8179 | -.pcr-app[data-theme=monolith] .pcr-selection .pcr-color-opacity, | |
| 8180 | -.pcr-app[data-theme=monolith] .pcr-selection .pcr-color-chooser { | |
| 8181 | - height: 8px; | |
| 6668 | +.pcr-result { | |
| 6669 | + border-right-width: 1px; | |
| 6670 | + border-radius: 3px; | |
| 8182 | 6671 | } |
| 8183 | -.pcr-app[data-theme=monolith] .pcr-selection .pcr-color-palette { | |
| 8184 | - height: 150px; | |
| 8185 | -} | |
| 8186 | -.pcr-app .pcr-selection .pcr-picker { | |
| 8187 | - box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.2); | |
| 8188 | -} | |
| 8189 | -.pcr-app .pcr-interaction { | |
| 8190 | - padding-block-end: 20px; | |
| 8191 | -} | |
| 8192 | -.pcr-app .pcr-interaction input.pcr-result { | |
| 8193 | - border: var(--e-a-border); | |
| 8194 | - color: var(--e-a-color-txt); | |
| 8195 | - border-radius: var(--e-a-border-radius); | |
| 8196 | - margin: 0; | |
| 8197 | - background-color: transparent; | |
| 8198 | -} | |
| 8199 | -.pcr-app .pcr-interaction input.pcr-result:focus { | |
| 8200 | - box-shadow: none; | |
| 8201 | - border-color: var(--e-a-border-color-bold); | |
| 8202 | -} | |
| 8203 | -.pcr-app .pcr-interaction input.pcr-type { | |
| 8204 | - all: unset; | |
| 8205 | - font-size: 10px; | |
| 8206 | - color: var(--e-a-color-txt-muted); | |
| 8207 | - padding-inline-start: 5px; | |
| 8208 | - cursor: pointer; | |
| 8209 | -} | |
| 8210 | -.pcr-app .pcr-interaction input.pcr-type.active { | |
| 8211 | - background-color: transparent; | |
| 8212 | - color: var(--e-a-color-txt-accent); | |
| 8213 | -} | |
| 8214 | 6672 | .pcr-selection, .pcr-interaction { |
| 8215 | 6673 | padding: 0 20px; |
| 8216 | 6674 | } |
| 8217 | -.pcr-selection { | |
| 8218 | - padding-block-start: 20px; | |
| 6675 | +.pcr-interaction { | |
| 6676 | + padding-bottom: 20px; | |
| 8219 | 6677 | } |
| 8220 | 6678 | .pcr .elementor-control-dynamic-switcher { |
| 8221 | 6679 | height: 20px; |
| 8222 | 6680 | border: 0; |
| @@ -8228,24 +6686,18 @@ | ||
| 8228 | 6686 | z-index: 9999; |
| 8229 | 6687 | font-size: 12px; |
| 8230 | 6688 | } |
| 8231 | 6689 | .select2-container .e-select2-placeholder { |
| 8232 | - color: var(--e-a-color-txt-muted); | |
| 6690 | + color: #a4afb7; | |
| 8233 | 6691 | } |
| 8234 | 6692 | .select2-container.select2-container--default .select2-selection--single { |
| 8235 | 6693 | height: 27px; |
| 8236 | - background-color: transparent; | |
| 8237 | 6694 | } |
| 8238 | 6695 | .select2-container.select2-container--default .select2-selection--single .select2-selection__rendered { |
| 8239 | - color: var(--e-a-color-txt); | |
| 6696 | + color: #6d7882; | |
| 8240 | 6697 | line-height: 27px; |
| 8241 | 6698 | } |
| 8242 | -.select2-container.select2-container--default .select2-results__option--highlighted[aria-selected] { | |
| 8243 | - background-color: var(--e-a-bg-hover); | |
| 8244 | - color: var(--e-a-color-txt-hover); | |
| 8245 | -} | |
| 8246 | 6699 | .select2-container.select2-container--default .select2-selection--multiple { |
| 8247 | - background-color: var(--e-a-bg-default); | |
| 8248 | 6700 | min-height: 27px; |
| 8249 | 6701 | line-height: 0; |
| 8250 | 6702 | } |
| 8251 | 6703 | .select2-container.select2-container--default .select2-selection--multiple .select2-selection__clear { |
| @@ -8251,10 +6703,9 @@ | ||
| 8251 | 6703 | .select2-container.select2-container--default .select2-selection--multiple .select2-selection__clear { |
| 8252 | 6704 | display: none; |
| 8253 | 6705 | } |
| 8254 | 6706 | .select2-container.select2-container--default .select2-selection--multiple .select2-selection__choice { |
| 8255 | - background-color: var(--e-a-btn-bg); | |
| 8256 | - color: var(--e-a-btn-color-invert); | |
| 6707 | + background-color: #f1f3f5; | |
| 8257 | 6708 | line-height: 1.2; |
| 8258 | 6709 | font-size: 10px; |
| 8259 | 6710 | border: none; |
| 8260 | 6711 | border-radius: 0; |
| @@ -8268,33 +6719,40 @@ | ||
| 8268 | 6719 | } |
| 8269 | 6720 | .select2-container.select2-container--default .select2-selection--multiple .select2-selection__choice.select2-selection__e-plus-button:after { |
| 8270 | 6721 | content: "\e815"; |
| 8271 | 6722 | font-family: "eicons"; |
| 8272 | - color: var(--e-a-btn-color-invert); | |
| 6723 | + color: #a4afb7; | |
| 8273 | 6724 | text-indent: 0; |
| 8274 | 6725 | position: absolute; |
| 8275 | - inset: 0; | |
| 6726 | + left: 0; | |
| 6727 | + top: 0; | |
| 6728 | + width: 100%; | |
| 6729 | + height: 100%; | |
| 6730 | + display: -webkit-box; | |
| 6731 | + display: -ms-flexbox; | |
| 8276 | 6732 | display: flex; |
| 8277 | - justify-content: center; | |
| 8278 | - align-items: center; | |
| 6733 | + -webkit-box-pack: center; | |
| 6734 | + -ms-flex-pack: center; | |
| 6735 | + justify-content: center; | |
| 6736 | + -webkit-box-align: center; | |
| 6737 | + -ms-flex-align: center; | |
| 6738 | + align-items: center; | |
| 8279 | 6739 | } |
| 8280 | 6740 | .select2-container.select2-container--default .select2-selection--multiple .select2-selection__rendered { |
| 8281 | - padding-block-end: 5px; | |
| 6741 | + padding-bottom: 5px; | |
| 8282 | 6742 | } |
| 8283 | 6743 | .select2-container.select2-container--default .select2-selection--multiple .select2-selection__choice__remove { |
| 8284 | - color: var(--e-a-btn-color-invert); | |
| 8285 | - margin-inline-end: 3px; | |
| 6744 | + color: #a4afb7; | |
| 6745 | + margin-left: 3px; | |
| 8286 | 6746 | } |
| 8287 | 6747 | .select2-container:not(.select2-container--open):not(.select2-container--focus) .select2-selection--single, |
| 8288 | 6748 | .select2-container:not(.select2-container--open):not(.select2-container--focus) .select2-selection--multiple { |
| 8289 | - background-color: var(--e-a-bg-default); | |
| 8290 | - color: var(--e-a-color-txt); | |
| 8291 | - border-color: var(--e-a-border-color); | |
| 6749 | + border-color: #d5dadf; | |
| 8292 | 6750 | } |
| 8293 | 6751 | .select2-container.select2-container--open .select2-selection--single, |
| 8294 | 6752 | .select2-container.select2-container--open .select2-selection--multiple, .select2-container.select2-container--focus .select2-selection--single, |
| 8295 | 6753 | .select2-container.select2-container--focus .select2-selection--multiple { |
| 8296 | - border-color: var(--e-a-border-color-bold); | |
| 6754 | + border-color: #a4afb7; | |
| 8297 | 6755 | } |
| 8298 | 6756 | |
| 8299 | 6757 | .select2-selection { |
| 8300 | 6758 | outline: none; |
| @@ -8304,24 +6762,20 @@ | ||
| 8304 | 6762 | } |
| 8305 | 6763 | |
| 8306 | 6764 | .select2-selection__arrow { |
| 8307 | 6765 | height: 27px; |
| 8308 | - inset-block-start: 0; | |
| 6766 | + top: 0; | |
| 8309 | 6767 | } |
| 8310 | 6768 | |
| 8311 | 6769 | .select2-results__option[aria-selected=true] { |
| 8312 | - background-color: var(--e-a-bg-active); | |
| 8313 | - color: var(--e-a-color-txt-active); | |
| 6770 | + color: #495157; | |
| 8314 | 6771 | } |
| 8315 | 6772 | .select2-results__option[aria-selected=true]:not(.select2-results__option--highlighted) { |
| 8316 | - background-color: var(--e-a-bg-active); | |
| 6773 | + background-color: initial; | |
| 8317 | 6774 | } |
| 8318 | 6775 | |
| 8319 | 6776 | .select2-dropdown { |
| 8320 | - border-color: var(--e-a-border-color); | |
| 8321 | - background-color: var(--e-a-bg-default); | |
| 8322 | - color: var(--e-a-color-txt); | |
| 8323 | - box-shadow: var(--e-a-dropdown-shadow); | |
| 6777 | + border-color: #a4afb7; | |
| 8324 | 6778 | } |
| 8325 | 6779 | .select2-dropdown .select2-search__field { |
| 8326 | 6780 | outline: none; |
| 8327 | 6781 | } |
| @@ -8329,14 +6783,16 @@ | ||
| 8329 | 6783 | .e-ui-state--document-scrubbing-mode__on, .e-ui-state--document-scrubbing-mode__on * { |
| 8330 | 6784 | cursor: ew-resize; |
| 8331 | 6785 | } |
| 8332 | 6786 | .e-ui-state--document-scrubbing-mode__on input.e-scrubbing--active, .e-ui-state--document-scrubbing-mode__on input.e-scrubbing--active:focus { |
| 8333 | - box-shadow: 0 0 0 1px rgb(14.2857142857, 58.5714285714, 155.7142857143) inset; | |
| 6787 | + -webkit-box-shadow: 0 0 0 1px #10bcf2 inset; | |
| 6788 | + box-shadow: 0 0 0 1px #10bcf2 inset; | |
| 8334 | 6789 | } |
| 8335 | 6790 | .e-ui-state--document-scrubbing-mode__on label.e-scrubbing--active { |
| 8336 | - color: rgb(14.2857142857, 58.5714285714, 155.7142857143); | |
| 6791 | + color: #10bcf2; | |
| 8337 | 6792 | -webkit-user-select: none; |
| 8338 | 6793 | -moz-user-select: none; |
| 6794 | + -ms-user-select: none; | |
| 8339 | 6795 | user-select: none; |
| 8340 | 6796 | } |
| 8341 | 6797 | .e-ui-state--document-scrubbing-mode__on iframe { |
| 8342 | 6798 | pointer-events: none; |
| @@ -8345,95 +6801,44 @@ | ||
| 8345 | 6801 | label.e-scrubbing-over { |
| 8346 | 6802 | cursor: ew-resize; |
| 8347 | 6803 | } |
| 8348 | 6804 | |
| 8349 | -#elementor-paste-area-dialog { | |
| 8350 | - text-align: center; | |
| 8351 | -} | |
| 8352 | -#elementor-paste-area-dialog .dialog-header { | |
| 8353 | - padding-block-start: 60px; | |
| 8354 | - font-size: 30px; | |
| 8355 | -} | |
| 8356 | -#elementor-paste-area-dialog .dialog-message { | |
| 8357 | - padding: 0 15px 15px; | |
| 8358 | - font-size: 15px; | |
| 8359 | - position: relative; | |
| 8360 | -} | |
| 8361 | -#elementor-paste-area-dialog #elementor-paste-area-dialog__input { | |
| 8362 | - background: transparent; | |
| 8363 | - color: transparent; | |
| 8364 | - border-color: transparent; | |
| 8365 | - padding: 0; | |
| 8366 | - margin: 0; | |
| 8367 | - height: 100px; | |
| 8368 | - position: absolute; | |
| 8369 | - inset-block-start: -60px; | |
| 8370 | - inset-inline: 0; | |
| 8371 | -} | |
| 8372 | -#elementor-paste-area-dialog #elementor-paste-area-dialog__input:focus { | |
| 8373 | - border-color: transparent; | |
| 8374 | - outline: none; | |
| 8375 | -} | |
| 8376 | -#elementor-paste-area-dialog .dialog-widget-content { | |
| 8377 | - width: 400px; | |
| 8378 | -} | |
| 8379 | -#elementor-paste-area-dialog .dialog-widget-content .eicon-loading { | |
| 8380 | - display: none; | |
| 8381 | -} | |
| 8382 | -#elementor-paste-area-dialog .dialog-widget-content.e-state-loading .eicon-loading { | |
| 8383 | - display: block; | |
| 8384 | - margin-block-start: 15px; | |
| 8385 | -} | |
| 8386 | -#elementor-paste-area-dialog #elementor-paste-area-dialog__error { | |
| 8387 | - color: var(--e-a-color-danger); | |
| 8388 | - font-size: 12px; | |
| 8389 | -} | |
| 8390 | -#elementor-paste-area-dialog #elementor-paste-area-dialog__error:before { | |
| 8391 | - content: ""; | |
| 8392 | - border-block-start: var(--e-a-border); | |
| 8393 | - display: block; | |
| 8394 | - margin: 10px -15px; | |
| 8395 | -} | |
| 8396 | - | |
| 8397 | 6805 | [class^=eicon-flex], [class*=" eicon-flex"] { |
| 6806 | + -webkit-transition: 0.3s all; | |
| 6807 | + -o-transition: 0.3s all; | |
| 8398 | 6808 | transition: 0.3s all; |
| 6809 | + --is-ltr: 1; | |
| 6810 | + --is-rtl: 0; | |
| 6811 | + --rotation-direction: calc( var( --is-ltr ) - var( --is-rtl ) ); | |
| 6812 | + --is-ltr: 0; | |
| 6813 | + --is-rtl: 1; | |
| 8399 | 6814 | } |
| 8400 | 6815 | [class^=eicon-flex].eicon-inline, [class*=" eicon-flex"].eicon-inline { |
| 8401 | 6816 | max-height: 1em; |
| 8402 | 6817 | max-width: 1em; |
| 8403 | 6818 | } |
| 8404 | -[class^=eicon-flex], [class*=" eicon-flex"] { | |
| 8405 | - --is-ltr: 0; | |
| 8406 | - --is-rtl: 1; | |
| 8407 | -} | |
| 8408 | -[class^=eicon-flex]:is(.eicon-justify-start-h, .eicon-justify-end-h), [class*=" eicon-flex"]:is(.eicon-justify-start-h, .eicon-justify-end-h) { | |
| 8409 | - --rotation-direction: calc(var(--is-ltr) + var(--is-rtl)); | |
| 8410 | -} | |
| 8411 | -[class^=eicon-flex], [class*=" eicon-flex"] { | |
| 8412 | - --rotation-direction: calc(var(--is-ltr) - var(--is-rtl)); | |
| 8413 | -} | |
| 8414 | 6819 | :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) { |
| 8415 | - transform: rotate(calc(var(--rotation-direction) * 90deg)); | |
| 6820 | + -webkit-transform: rotate(calc(var(--rotation-direction) * 90deg)); | |
| 6821 | + -ms-transform: rotate(calc(var(--rotation-direction) * 90deg)); | |
| 6822 | + transform: rotate(calc(var(--rotation-direction) * 90deg)); | |
| 8416 | 6823 | } |
| 8417 | 6824 | :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) { |
| 8418 | - transform: rotate(calc(var(--rotation-direction) * -90deg)); | |
| 6825 | + -webkit-transform: rotate(calc(var(--rotation-direction) * -90deg)); | |
| 6826 | + -ms-transform: rotate(calc(var(--rotation-direction) * -90deg)); | |
| 6827 | + transform: rotate(calc(var(--rotation-direction) * -90deg)); | |
| 8419 | 6828 | } |
| 8420 | 6829 | .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) { |
| 8421 | - transform: rotate(calc(var(--rotation-direction) * -90deg)); | |
| 6830 | + -webkit-transform: rotate(calc(var(--rotation-direction) * -90deg)); | |
| 6831 | + -ms-transform: rotate(calc(var(--rotation-direction) * -90deg)); | |
| 6832 | + transform: rotate(calc(var(--rotation-direction) * -90deg)); | |
| 8422 | 6833 | } |
| 8423 | 6834 | .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) { |
| 8424 | - transform: rotate(calc(var(--is-rtl) * 180deg)); | |
| 6835 | + -webkit-transform: rotate(calc(var(--is-rtl) * 180deg)); | |
| 6836 | + -ms-transform: rotate(calc(var(--is-rtl) * 180deg)); | |
| 6837 | + transform: rotate(calc(var(--is-rtl) * 180deg)); | |
| 8425 | 6838 | } |
| 8426 | 6839 | .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) { |
| 8427 | - transform: rotate(calc(var(--is-ltr) * 180deg)); | |
| 8428 | -} | |
| 8429 | - | |
| 8430 | -.elementor-editor-active .embed-media-settings .setting.caption { | |
| 8431 | - display: none; | |
| 8432 | -} | |
| 8433 | -.elementor-editor-active .embed-media-settings .setting.align { | |
| 8434 | - display: none; | |
| 8435 | -} | |
| 8436 | -.elementor-editor-active .embed-media-settings fieldset.setting-group { | |
| 8437 | - display: none; | |
| 6840 | + -webkit-transform: rotate(calc(var(--is-ltr) * 180deg)); | |
| 6841 | + -ms-transform: rotate(calc(var(--is-ltr) * 180deg)); | |
| 6842 | + transform: rotate(calc(var(--is-ltr) * 180deg)); | |
| 8438 | 6843 | } |
| 8439 | 6844 | /*# sourceMappingURL=editor-rtl.css.map */ |