main.css
1128 lines
| 1 | @import url(https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap); |
| 2 | /* Figtree Font Import */ |
| 3 | @-webkit-keyframes react-loading-skeleton { |
| 4 | 100% { |
| 5 | -webkit-transform: translateX(100%); |
| 6 | transform: translateX(100%); |
| 7 | } |
| 8 | } |
| 9 | |
| 10 | @keyframes react-loading-skeleton { |
| 11 | 100% { |
| 12 | -webkit-transform: translateX(100%); |
| 13 | transform: translateX(100%); |
| 14 | } |
| 15 | } |
| 16 | |
| 17 | .react-loading-skeleton { |
| 18 | --base-color: #ebebeb; |
| 19 | --highlight-color: #f5f5f5; |
| 20 | --animation-duration: 1.5s; |
| 21 | --animation-direction: normal; |
| 22 | --pseudo-element-display: block; /* Enable animation */ |
| 23 | |
| 24 | background-color: var(--base-color); |
| 25 | |
| 26 | width: 100%; |
| 27 | border-radius: 0.25rem; |
| 28 | display: inline-flex; |
| 29 | line-height: 1; |
| 30 | |
| 31 | position: relative; |
| 32 | -webkit-user-select: none; |
| 33 | user-select: none; |
| 34 | overflow: hidden; |
| 35 | z-index: 1; /* Necessary for overflow: hidden to work correctly in Safari */ |
| 36 | } |
| 37 | |
| 38 | .react-loading-skeleton::after { |
| 39 | content: ' '; |
| 40 | display: var(--pseudo-element-display); |
| 41 | position: absolute; |
| 42 | top: 0; |
| 43 | left: 0; |
| 44 | right: 0; |
| 45 | height: 100%; |
| 46 | background-repeat: no-repeat; |
| 47 | background-image: linear-gradient( |
| 48 | 90deg, |
| 49 | var(--base-color), |
| 50 | var(--highlight-color), |
| 51 | var(--base-color) |
| 52 | ); |
| 53 | -webkit-transform: translateX(-100%); |
| 54 | transform: translateX(-100%); |
| 55 | |
| 56 | -webkit-animation-name: react-loading-skeleton; |
| 57 | |
| 58 | animation-name: react-loading-skeleton; |
| 59 | -webkit-animation-direction: var(--animation-direction); |
| 60 | animation-direction: var(--animation-direction); |
| 61 | -webkit-animation-duration: var(--animation-duration); |
| 62 | animation-duration: var(--animation-duration); |
| 63 | -webkit-animation-timing-function: ease-in-out; |
| 64 | animation-timing-function: ease-in-out; |
| 65 | -webkit-animation-iteration-count: infinite; |
| 66 | animation-iteration-count: infinite; |
| 67 | } |
| 68 | |
| 69 | @media (prefers-reduced-motion) { |
| 70 | .react-loading-skeleton { |
| 71 | --pseudo-element-display: none; /* Disable animation */ |
| 72 | } |
| 73 | } |
| 74 | |
| 75 | :root { |
| 76 | --toastify-color-light: #fff; |
| 77 | --toastify-color-dark: #121212; |
| 78 | --toastify-color-info: #3498db; |
| 79 | --toastify-color-success: #07bc0c; |
| 80 | --toastify-color-warning: #f1c40f; |
| 81 | --toastify-color-error: #e74c3c; |
| 82 | --toastify-color-transparent: rgba(255, 255, 255, 0.7); |
| 83 | --toastify-icon-color-info: var(--toastify-color-info); |
| 84 | --toastify-icon-color-success: var(--toastify-color-success); |
| 85 | --toastify-icon-color-warning: var(--toastify-color-warning); |
| 86 | --toastify-icon-color-error: var(--toastify-color-error); |
| 87 | --toastify-toast-width: 320px; |
| 88 | --toastify-toast-background: #fff; |
| 89 | --toastify-toast-min-height: 64px; |
| 90 | --toastify-toast-max-height: 800px; |
| 91 | --toastify-font-family: sans-serif; |
| 92 | --toastify-z-index: 9999; |
| 93 | --toastify-text-color-light: #757575; |
| 94 | --toastify-text-color-dark: #fff; |
| 95 | --toastify-text-color-info: #fff; |
| 96 | --toastify-text-color-success: #fff; |
| 97 | --toastify-text-color-warning: #fff; |
| 98 | --toastify-text-color-error: #fff; |
| 99 | --toastify-spinner-color: #616161; |
| 100 | --toastify-spinner-color-empty-area: #e0e0e0; |
| 101 | --toastify-color-progress-light: linear-gradient( |
| 102 | to right, |
| 103 | #4cd964, |
| 104 | #5ac8fa, |
| 105 | #007aff, |
| 106 | #34aadc, |
| 107 | #5856d6, |
| 108 | #ff2d55 |
| 109 | ); |
| 110 | --toastify-color-progress-dark: #bb86fc; |
| 111 | --toastify-color-progress-info: var(--toastify-color-info); |
| 112 | --toastify-color-progress-success: var(--toastify-color-success); |
| 113 | --toastify-color-progress-warning: var(--toastify-color-warning); |
| 114 | --toastify-color-progress-error: var(--toastify-color-error); |
| 115 | } |
| 116 | |
| 117 | .Toastify__toast-container { |
| 118 | z-index: var(--toastify-z-index); |
| 119 | -webkit-transform: translate3d(0, 0, var(--toastify-z-index) px); |
| 120 | position: fixed; |
| 121 | padding: 4px; |
| 122 | width: var(--toastify-toast-width); |
| 123 | box-sizing: border-box; |
| 124 | color: #fff; |
| 125 | } |
| 126 | .Toastify__toast-container--top-left { |
| 127 | top: 1em; |
| 128 | left: 1em; |
| 129 | } |
| 130 | .Toastify__toast-container--top-center { |
| 131 | top: 1em; |
| 132 | left: 50%; |
| 133 | -webkit-transform: translateX(-50%); |
| 134 | transform: translateX(-50%); |
| 135 | } |
| 136 | .Toastify__toast-container--top-right { |
| 137 | top: 1em; |
| 138 | right: 1em; |
| 139 | } |
| 140 | .Toastify__toast-container--bottom-left { |
| 141 | bottom: 1em; |
| 142 | left: 1em; |
| 143 | } |
| 144 | .Toastify__toast-container--bottom-center { |
| 145 | bottom: 1em; |
| 146 | left: 50%; |
| 147 | -webkit-transform: translateX(-50%); |
| 148 | transform: translateX(-50%); |
| 149 | } |
| 150 | .Toastify__toast-container--bottom-right { |
| 151 | bottom: 1em; |
| 152 | right: 1em; |
| 153 | } |
| 154 | |
| 155 | @media only screen and (max-width : 480px) { |
| 156 | .Toastify__toast-container { |
| 157 | width: 100vw; |
| 158 | padding: 0; |
| 159 | left: 0; |
| 160 | margin: 0; |
| 161 | } |
| 162 | .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right { |
| 163 | top: 0; |
| 164 | -webkit-transform: translateX(0); |
| 165 | transform: translateX(0); |
| 166 | } |
| 167 | .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right { |
| 168 | bottom: 0; |
| 169 | -webkit-transform: translateX(0); |
| 170 | transform: translateX(0); |
| 171 | } |
| 172 | .Toastify__toast-container--rtl { |
| 173 | right: 0; |
| 174 | left: initial; |
| 175 | } |
| 176 | } |
| 177 | .Toastify__toast { |
| 178 | position: relative; |
| 179 | min-height: var(--toastify-toast-min-height); |
| 180 | box-sizing: border-box; |
| 181 | margin-bottom: 1rem; |
| 182 | padding: 8px; |
| 183 | border-radius: 4px; |
| 184 | box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05); |
| 185 | display: flex; |
| 186 | justify-content: space-between; |
| 187 | max-height: var(--toastify-toast-max-height); |
| 188 | overflow: hidden; |
| 189 | font-family: var(--toastify-font-family); |
| 190 | cursor: pointer; |
| 191 | direction: ltr; |
| 192 | } |
| 193 | .Toastify__toast--rtl { |
| 194 | direction: rtl; |
| 195 | } |
| 196 | .Toastify__toast-body { |
| 197 | margin: auto 0; |
| 198 | flex: 1 1 auto; |
| 199 | padding: 6px; |
| 200 | display: flex; |
| 201 | align-items: center; |
| 202 | } |
| 203 | .Toastify__toast-body > div:last-child { |
| 204 | flex: 1; |
| 205 | } |
| 206 | .Toastify__toast-icon { |
| 207 | -webkit-margin-end: 10px; |
| 208 | margin-inline-end: 10px; |
| 209 | width: 20px; |
| 210 | flex-shrink: 0; |
| 211 | display: flex; |
| 212 | } |
| 213 | |
| 214 | .Toastify--animate { |
| 215 | -webkit-animation-fill-mode: both; |
| 216 | animation-fill-mode: both; |
| 217 | -webkit-animation-duration: 0.7s; |
| 218 | animation-duration: 0.7s; |
| 219 | } |
| 220 | |
| 221 | .Toastify--animate-icon { |
| 222 | -webkit-animation-fill-mode: both; |
| 223 | animation-fill-mode: both; |
| 224 | -webkit-animation-duration: 0.3s; |
| 225 | animation-duration: 0.3s; |
| 226 | } |
| 227 | |
| 228 | @media only screen and (max-width : 480px) { |
| 229 | .Toastify__toast { |
| 230 | margin-bottom: 0; |
| 231 | border-radius: 0; |
| 232 | } |
| 233 | } |
| 234 | .Toastify__toast-theme--dark { |
| 235 | background: var(--toastify-color-dark); |
| 236 | color: var(--toastify-text-color-dark); |
| 237 | } |
| 238 | .Toastify__toast-theme--light { |
| 239 | background: var(--toastify-color-light); |
| 240 | color: var(--toastify-text-color-light); |
| 241 | } |
| 242 | .Toastify__toast-theme--colored.Toastify__toast--default { |
| 243 | background: var(--toastify-color-light); |
| 244 | color: var(--toastify-text-color-light); |
| 245 | } |
| 246 | .Toastify__toast-theme--colored.Toastify__toast--info { |
| 247 | color: var(--toastify-text-color-info); |
| 248 | background: var(--toastify-color-info); |
| 249 | } |
| 250 | .Toastify__toast-theme--colored.Toastify__toast--success { |
| 251 | color: var(--toastify-text-color-success); |
| 252 | background: var(--toastify-color-success); |
| 253 | } |
| 254 | .Toastify__toast-theme--colored.Toastify__toast--warning { |
| 255 | color: var(--toastify-text-color-warning); |
| 256 | background: var(--toastify-color-warning); |
| 257 | } |
| 258 | .Toastify__toast-theme--colored.Toastify__toast--error { |
| 259 | color: var(--toastify-text-color-error); |
| 260 | background: var(--toastify-color-error); |
| 261 | } |
| 262 | |
| 263 | .Toastify__progress-bar-theme--light { |
| 264 | background: var(--toastify-color-progress-light); |
| 265 | } |
| 266 | .Toastify__progress-bar-theme--dark { |
| 267 | background: var(--toastify-color-progress-dark); |
| 268 | } |
| 269 | .Toastify__progress-bar--info { |
| 270 | background: var(--toastify-color-progress-info); |
| 271 | } |
| 272 | .Toastify__progress-bar--success { |
| 273 | background: var(--toastify-color-progress-success); |
| 274 | } |
| 275 | .Toastify__progress-bar--warning { |
| 276 | background: var(--toastify-color-progress-warning); |
| 277 | } |
| 278 | .Toastify__progress-bar--error { |
| 279 | background: var(--toastify-color-progress-error); |
| 280 | } |
| 281 | .Toastify__progress-bar-theme--colored.Toastify__progress-bar--info, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--success, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--error { |
| 282 | background: var(--toastify-color-transparent); |
| 283 | } |
| 284 | |
| 285 | .Toastify__close-button { |
| 286 | color: #fff; |
| 287 | background: transparent; |
| 288 | outline: none; |
| 289 | border: none; |
| 290 | padding: 0; |
| 291 | cursor: pointer; |
| 292 | opacity: 0.7; |
| 293 | transition: 0.3s ease; |
| 294 | align-self: flex-start; |
| 295 | } |
| 296 | .Toastify__close-button--light { |
| 297 | color: #000; |
| 298 | opacity: 0.3; |
| 299 | } |
| 300 | .Toastify__close-button > svg { |
| 301 | fill: currentColor; |
| 302 | height: 16px; |
| 303 | width: 14px; |
| 304 | } |
| 305 | .Toastify__close-button:hover, .Toastify__close-button:focus { |
| 306 | opacity: 1; |
| 307 | } |
| 308 | |
| 309 | @-webkit-keyframes Toastify__trackProgress { |
| 310 | 0% { |
| 311 | -webkit-transform: scaleX(1); |
| 312 | transform: scaleX(1); |
| 313 | } |
| 314 | 100% { |
| 315 | -webkit-transform: scaleX(0); |
| 316 | transform: scaleX(0); |
| 317 | } |
| 318 | } |
| 319 | |
| 320 | @keyframes Toastify__trackProgress { |
| 321 | 0% { |
| 322 | -webkit-transform: scaleX(1); |
| 323 | transform: scaleX(1); |
| 324 | } |
| 325 | 100% { |
| 326 | -webkit-transform: scaleX(0); |
| 327 | transform: scaleX(0); |
| 328 | } |
| 329 | } |
| 330 | .Toastify__progress-bar { |
| 331 | position: absolute; |
| 332 | bottom: 0; |
| 333 | left: 0; |
| 334 | width: 100%; |
| 335 | height: 5px; |
| 336 | z-index: var(--toastify-z-index); |
| 337 | opacity: 0.7; |
| 338 | -webkit-transform-origin: left; |
| 339 | transform-origin: left; |
| 340 | } |
| 341 | .Toastify__progress-bar--animated { |
| 342 | -webkit-animation: Toastify__trackProgress linear 1 forwards; |
| 343 | animation: Toastify__trackProgress linear 1 forwards; |
| 344 | } |
| 345 | .Toastify__progress-bar--controlled { |
| 346 | transition: -webkit-transform 0.2s; |
| 347 | transition: transform 0.2s; |
| 348 | transition: transform 0.2s, -webkit-transform 0.2s; |
| 349 | } |
| 350 | .Toastify__progress-bar--rtl { |
| 351 | right: 0; |
| 352 | left: initial; |
| 353 | -webkit-transform-origin: right; |
| 354 | transform-origin: right; |
| 355 | } |
| 356 | |
| 357 | .Toastify__spinner { |
| 358 | width: 20px; |
| 359 | height: 20px; |
| 360 | box-sizing: border-box; |
| 361 | border: 2px solid; |
| 362 | border-radius: 100%; |
| 363 | border-color: var(--toastify-spinner-color-empty-area); |
| 364 | border-right-color: var(--toastify-spinner-color); |
| 365 | -webkit-animation: Toastify__spin 0.65s linear infinite; |
| 366 | animation: Toastify__spin 0.65s linear infinite; |
| 367 | } |
| 368 | |
| 369 | @-webkit-keyframes Toastify__bounceInRight { |
| 370 | from, 60%, 75%, 90%, to { |
| 371 | -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); |
| 372 | animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); |
| 373 | } |
| 374 | from { |
| 375 | opacity: 0; |
| 376 | -webkit-transform: translate3d(3000px, 0, 0); |
| 377 | transform: translate3d(3000px, 0, 0); |
| 378 | } |
| 379 | 60% { |
| 380 | opacity: 1; |
| 381 | -webkit-transform: translate3d(-25px, 0, 0); |
| 382 | transform: translate3d(-25px, 0, 0); |
| 383 | } |
| 384 | 75% { |
| 385 | -webkit-transform: translate3d(10px, 0, 0); |
| 386 | transform: translate3d(10px, 0, 0); |
| 387 | } |
| 388 | 90% { |
| 389 | -webkit-transform: translate3d(-5px, 0, 0); |
| 390 | transform: translate3d(-5px, 0, 0); |
| 391 | } |
| 392 | to { |
| 393 | -webkit-transform: none; |
| 394 | transform: none; |
| 395 | } |
| 396 | } |
| 397 | |
| 398 | @keyframes Toastify__bounceInRight { |
| 399 | from, 60%, 75%, 90%, to { |
| 400 | -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); |
| 401 | animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); |
| 402 | } |
| 403 | from { |
| 404 | opacity: 0; |
| 405 | -webkit-transform: translate3d(3000px, 0, 0); |
| 406 | transform: translate3d(3000px, 0, 0); |
| 407 | } |
| 408 | 60% { |
| 409 | opacity: 1; |
| 410 | -webkit-transform: translate3d(-25px, 0, 0); |
| 411 | transform: translate3d(-25px, 0, 0); |
| 412 | } |
| 413 | 75% { |
| 414 | -webkit-transform: translate3d(10px, 0, 0); |
| 415 | transform: translate3d(10px, 0, 0); |
| 416 | } |
| 417 | 90% { |
| 418 | -webkit-transform: translate3d(-5px, 0, 0); |
| 419 | transform: translate3d(-5px, 0, 0); |
| 420 | } |
| 421 | to { |
| 422 | -webkit-transform: none; |
| 423 | transform: none; |
| 424 | } |
| 425 | } |
| 426 | @-webkit-keyframes Toastify__bounceOutRight { |
| 427 | 20% { |
| 428 | opacity: 1; |
| 429 | -webkit-transform: translate3d(-20px, 0, 0); |
| 430 | transform: translate3d(-20px, 0, 0); |
| 431 | } |
| 432 | to { |
| 433 | opacity: 0; |
| 434 | -webkit-transform: translate3d(2000px, 0, 0); |
| 435 | transform: translate3d(2000px, 0, 0); |
| 436 | } |
| 437 | } |
| 438 | @keyframes Toastify__bounceOutRight { |
| 439 | 20% { |
| 440 | opacity: 1; |
| 441 | -webkit-transform: translate3d(-20px, 0, 0); |
| 442 | transform: translate3d(-20px, 0, 0); |
| 443 | } |
| 444 | to { |
| 445 | opacity: 0; |
| 446 | -webkit-transform: translate3d(2000px, 0, 0); |
| 447 | transform: translate3d(2000px, 0, 0); |
| 448 | } |
| 449 | } |
| 450 | @-webkit-keyframes Toastify__bounceInLeft { |
| 451 | from, 60%, 75%, 90%, to { |
| 452 | -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); |
| 453 | animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); |
| 454 | } |
| 455 | 0% { |
| 456 | opacity: 0; |
| 457 | -webkit-transform: translate3d(-3000px, 0, 0); |
| 458 | transform: translate3d(-3000px, 0, 0); |
| 459 | } |
| 460 | 60% { |
| 461 | opacity: 1; |
| 462 | -webkit-transform: translate3d(25px, 0, 0); |
| 463 | transform: translate3d(25px, 0, 0); |
| 464 | } |
| 465 | 75% { |
| 466 | -webkit-transform: translate3d(-10px, 0, 0); |
| 467 | transform: translate3d(-10px, 0, 0); |
| 468 | } |
| 469 | 90% { |
| 470 | -webkit-transform: translate3d(5px, 0, 0); |
| 471 | transform: translate3d(5px, 0, 0); |
| 472 | } |
| 473 | to { |
| 474 | -webkit-transform: none; |
| 475 | transform: none; |
| 476 | } |
| 477 | } |
| 478 | @keyframes Toastify__bounceInLeft { |
| 479 | from, 60%, 75%, 90%, to { |
| 480 | -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); |
| 481 | animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); |
| 482 | } |
| 483 | 0% { |
| 484 | opacity: 0; |
| 485 | -webkit-transform: translate3d(-3000px, 0, 0); |
| 486 | transform: translate3d(-3000px, 0, 0); |
| 487 | } |
| 488 | 60% { |
| 489 | opacity: 1; |
| 490 | -webkit-transform: translate3d(25px, 0, 0); |
| 491 | transform: translate3d(25px, 0, 0); |
| 492 | } |
| 493 | 75% { |
| 494 | -webkit-transform: translate3d(-10px, 0, 0); |
| 495 | transform: translate3d(-10px, 0, 0); |
| 496 | } |
| 497 | 90% { |
| 498 | -webkit-transform: translate3d(5px, 0, 0); |
| 499 | transform: translate3d(5px, 0, 0); |
| 500 | } |
| 501 | to { |
| 502 | -webkit-transform: none; |
| 503 | transform: none; |
| 504 | } |
| 505 | } |
| 506 | @-webkit-keyframes Toastify__bounceOutLeft { |
| 507 | 20% { |
| 508 | opacity: 1; |
| 509 | -webkit-transform: translate3d(20px, 0, 0); |
| 510 | transform: translate3d(20px, 0, 0); |
| 511 | } |
| 512 | to { |
| 513 | opacity: 0; |
| 514 | -webkit-transform: translate3d(-2000px, 0, 0); |
| 515 | transform: translate3d(-2000px, 0, 0); |
| 516 | } |
| 517 | } |
| 518 | @keyframes Toastify__bounceOutLeft { |
| 519 | 20% { |
| 520 | opacity: 1; |
| 521 | -webkit-transform: translate3d(20px, 0, 0); |
| 522 | transform: translate3d(20px, 0, 0); |
| 523 | } |
| 524 | to { |
| 525 | opacity: 0; |
| 526 | -webkit-transform: translate3d(-2000px, 0, 0); |
| 527 | transform: translate3d(-2000px, 0, 0); |
| 528 | } |
| 529 | } |
| 530 | @-webkit-keyframes Toastify__bounceInUp { |
| 531 | from, 60%, 75%, 90%, to { |
| 532 | -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); |
| 533 | animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); |
| 534 | } |
| 535 | from { |
| 536 | opacity: 0; |
| 537 | -webkit-transform: translate3d(0, 3000px, 0); |
| 538 | transform: translate3d(0, 3000px, 0); |
| 539 | } |
| 540 | 60% { |
| 541 | opacity: 1; |
| 542 | -webkit-transform: translate3d(0, -20px, 0); |
| 543 | transform: translate3d(0, -20px, 0); |
| 544 | } |
| 545 | 75% { |
| 546 | -webkit-transform: translate3d(0, 10px, 0); |
| 547 | transform: translate3d(0, 10px, 0); |
| 548 | } |
| 549 | 90% { |
| 550 | -webkit-transform: translate3d(0, -5px, 0); |
| 551 | transform: translate3d(0, -5px, 0); |
| 552 | } |
| 553 | to { |
| 554 | -webkit-transform: translate3d(0, 0, 0); |
| 555 | transform: translate3d(0, 0, 0); |
| 556 | } |
| 557 | } |
| 558 | @keyframes Toastify__bounceInUp { |
| 559 | from, 60%, 75%, 90%, to { |
| 560 | -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); |
| 561 | animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); |
| 562 | } |
| 563 | from { |
| 564 | opacity: 0; |
| 565 | -webkit-transform: translate3d(0, 3000px, 0); |
| 566 | transform: translate3d(0, 3000px, 0); |
| 567 | } |
| 568 | 60% { |
| 569 | opacity: 1; |
| 570 | -webkit-transform: translate3d(0, -20px, 0); |
| 571 | transform: translate3d(0, -20px, 0); |
| 572 | } |
| 573 | 75% { |
| 574 | -webkit-transform: translate3d(0, 10px, 0); |
| 575 | transform: translate3d(0, 10px, 0); |
| 576 | } |
| 577 | 90% { |
| 578 | -webkit-transform: translate3d(0, -5px, 0); |
| 579 | transform: translate3d(0, -5px, 0); |
| 580 | } |
| 581 | to { |
| 582 | -webkit-transform: translate3d(0, 0, 0); |
| 583 | transform: translate3d(0, 0, 0); |
| 584 | } |
| 585 | } |
| 586 | @-webkit-keyframes Toastify__bounceOutUp { |
| 587 | 20% { |
| 588 | -webkit-transform: translate3d(0, -10px, 0); |
| 589 | transform: translate3d(0, -10px, 0); |
| 590 | } |
| 591 | 40%, 45% { |
| 592 | opacity: 1; |
| 593 | -webkit-transform: translate3d(0, 20px, 0); |
| 594 | transform: translate3d(0, 20px, 0); |
| 595 | } |
| 596 | to { |
| 597 | opacity: 0; |
| 598 | -webkit-transform: translate3d(0, -2000px, 0); |
| 599 | transform: translate3d(0, -2000px, 0); |
| 600 | } |
| 601 | } |
| 602 | @keyframes Toastify__bounceOutUp { |
| 603 | 20% { |
| 604 | -webkit-transform: translate3d(0, -10px, 0); |
| 605 | transform: translate3d(0, -10px, 0); |
| 606 | } |
| 607 | 40%, 45% { |
| 608 | opacity: 1; |
| 609 | -webkit-transform: translate3d(0, 20px, 0); |
| 610 | transform: translate3d(0, 20px, 0); |
| 611 | } |
| 612 | to { |
| 613 | opacity: 0; |
| 614 | -webkit-transform: translate3d(0, -2000px, 0); |
| 615 | transform: translate3d(0, -2000px, 0); |
| 616 | } |
| 617 | } |
| 618 | @-webkit-keyframes Toastify__bounceInDown { |
| 619 | from, 60%, 75%, 90%, to { |
| 620 | -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); |
| 621 | animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); |
| 622 | } |
| 623 | 0% { |
| 624 | opacity: 0; |
| 625 | -webkit-transform: translate3d(0, -3000px, 0); |
| 626 | transform: translate3d(0, -3000px, 0); |
| 627 | } |
| 628 | 60% { |
| 629 | opacity: 1; |
| 630 | -webkit-transform: translate3d(0, 25px, 0); |
| 631 | transform: translate3d(0, 25px, 0); |
| 632 | } |
| 633 | 75% { |
| 634 | -webkit-transform: translate3d(0, -10px, 0); |
| 635 | transform: translate3d(0, -10px, 0); |
| 636 | } |
| 637 | 90% { |
| 638 | -webkit-transform: translate3d(0, 5px, 0); |
| 639 | transform: translate3d(0, 5px, 0); |
| 640 | } |
| 641 | to { |
| 642 | -webkit-transform: none; |
| 643 | transform: none; |
| 644 | } |
| 645 | } |
| 646 | @keyframes Toastify__bounceInDown { |
| 647 | from, 60%, 75%, 90%, to { |
| 648 | -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); |
| 649 | animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); |
| 650 | } |
| 651 | 0% { |
| 652 | opacity: 0; |
| 653 | -webkit-transform: translate3d(0, -3000px, 0); |
| 654 | transform: translate3d(0, -3000px, 0); |
| 655 | } |
| 656 | 60% { |
| 657 | opacity: 1; |
| 658 | -webkit-transform: translate3d(0, 25px, 0); |
| 659 | transform: translate3d(0, 25px, 0); |
| 660 | } |
| 661 | 75% { |
| 662 | -webkit-transform: translate3d(0, -10px, 0); |
| 663 | transform: translate3d(0, -10px, 0); |
| 664 | } |
| 665 | 90% { |
| 666 | -webkit-transform: translate3d(0, 5px, 0); |
| 667 | transform: translate3d(0, 5px, 0); |
| 668 | } |
| 669 | to { |
| 670 | -webkit-transform: none; |
| 671 | transform: none; |
| 672 | } |
| 673 | } |
| 674 | @-webkit-keyframes Toastify__bounceOutDown { |
| 675 | 20% { |
| 676 | -webkit-transform: translate3d(0, 10px, 0); |
| 677 | transform: translate3d(0, 10px, 0); |
| 678 | } |
| 679 | 40%, 45% { |
| 680 | opacity: 1; |
| 681 | -webkit-transform: translate3d(0, -20px, 0); |
| 682 | transform: translate3d(0, -20px, 0); |
| 683 | } |
| 684 | to { |
| 685 | opacity: 0; |
| 686 | -webkit-transform: translate3d(0, 2000px, 0); |
| 687 | transform: translate3d(0, 2000px, 0); |
| 688 | } |
| 689 | } |
| 690 | @keyframes Toastify__bounceOutDown { |
| 691 | 20% { |
| 692 | -webkit-transform: translate3d(0, 10px, 0); |
| 693 | transform: translate3d(0, 10px, 0); |
| 694 | } |
| 695 | 40%, 45% { |
| 696 | opacity: 1; |
| 697 | -webkit-transform: translate3d(0, -20px, 0); |
| 698 | transform: translate3d(0, -20px, 0); |
| 699 | } |
| 700 | to { |
| 701 | opacity: 0; |
| 702 | -webkit-transform: translate3d(0, 2000px, 0); |
| 703 | transform: translate3d(0, 2000px, 0); |
| 704 | } |
| 705 | } |
| 706 | .Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left { |
| 707 | -webkit-animation-name: Toastify__bounceInLeft; |
| 708 | animation-name: Toastify__bounceInLeft; |
| 709 | } |
| 710 | .Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right { |
| 711 | -webkit-animation-name: Toastify__bounceInRight; |
| 712 | animation-name: Toastify__bounceInRight; |
| 713 | } |
| 714 | .Toastify__bounce-enter--top-center { |
| 715 | -webkit-animation-name: Toastify__bounceInDown; |
| 716 | animation-name: Toastify__bounceInDown; |
| 717 | } |
| 718 | .Toastify__bounce-enter--bottom-center { |
| 719 | -webkit-animation-name: Toastify__bounceInUp; |
| 720 | animation-name: Toastify__bounceInUp; |
| 721 | } |
| 722 | |
| 723 | .Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left { |
| 724 | -webkit-animation-name: Toastify__bounceOutLeft; |
| 725 | animation-name: Toastify__bounceOutLeft; |
| 726 | } |
| 727 | .Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right { |
| 728 | -webkit-animation-name: Toastify__bounceOutRight; |
| 729 | animation-name: Toastify__bounceOutRight; |
| 730 | } |
| 731 | .Toastify__bounce-exit--top-center { |
| 732 | -webkit-animation-name: Toastify__bounceOutUp; |
| 733 | animation-name: Toastify__bounceOutUp; |
| 734 | } |
| 735 | .Toastify__bounce-exit--bottom-center { |
| 736 | -webkit-animation-name: Toastify__bounceOutDown; |
| 737 | animation-name: Toastify__bounceOutDown; |
| 738 | } |
| 739 | |
| 740 | @-webkit-keyframes Toastify__zoomIn { |
| 741 | from { |
| 742 | opacity: 0; |
| 743 | -webkit-transform: scale3d(0.3, 0.3, 0.3); |
| 744 | transform: scale3d(0.3, 0.3, 0.3); |
| 745 | } |
| 746 | 50% { |
| 747 | opacity: 1; |
| 748 | } |
| 749 | } |
| 750 | |
| 751 | @keyframes Toastify__zoomIn { |
| 752 | from { |
| 753 | opacity: 0; |
| 754 | -webkit-transform: scale3d(0.3, 0.3, 0.3); |
| 755 | transform: scale3d(0.3, 0.3, 0.3); |
| 756 | } |
| 757 | 50% { |
| 758 | opacity: 1; |
| 759 | } |
| 760 | } |
| 761 | @-webkit-keyframes Toastify__zoomOut { |
| 762 | from { |
| 763 | opacity: 1; |
| 764 | } |
| 765 | 50% { |
| 766 | opacity: 0; |
| 767 | -webkit-transform: scale3d(0.3, 0.3, 0.3); |
| 768 | transform: scale3d(0.3, 0.3, 0.3); |
| 769 | } |
| 770 | to { |
| 771 | opacity: 0; |
| 772 | } |
| 773 | } |
| 774 | @keyframes Toastify__zoomOut { |
| 775 | from { |
| 776 | opacity: 1; |
| 777 | } |
| 778 | 50% { |
| 779 | opacity: 0; |
| 780 | -webkit-transform: scale3d(0.3, 0.3, 0.3); |
| 781 | transform: scale3d(0.3, 0.3, 0.3); |
| 782 | } |
| 783 | to { |
| 784 | opacity: 0; |
| 785 | } |
| 786 | } |
| 787 | .Toastify__zoom-enter { |
| 788 | -webkit-animation-name: Toastify__zoomIn; |
| 789 | animation-name: Toastify__zoomIn; |
| 790 | } |
| 791 | |
| 792 | .Toastify__zoom-exit { |
| 793 | -webkit-animation-name: Toastify__zoomOut; |
| 794 | animation-name: Toastify__zoomOut; |
| 795 | } |
| 796 | |
| 797 | @-webkit-keyframes Toastify__flipIn { |
| 798 | from { |
| 799 | -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); |
| 800 | transform: perspective(400px) rotate3d(1, 0, 0, 90deg); |
| 801 | -webkit-animation-timing-function: ease-in; |
| 802 | animation-timing-function: ease-in; |
| 803 | opacity: 0; |
| 804 | } |
| 805 | 40% { |
| 806 | -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); |
| 807 | transform: perspective(400px) rotate3d(1, 0, 0, -20deg); |
| 808 | -webkit-animation-timing-function: ease-in; |
| 809 | animation-timing-function: ease-in; |
| 810 | } |
| 811 | 60% { |
| 812 | -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg); |
| 813 | transform: perspective(400px) rotate3d(1, 0, 0, 10deg); |
| 814 | opacity: 1; |
| 815 | } |
| 816 | 80% { |
| 817 | -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg); |
| 818 | transform: perspective(400px) rotate3d(1, 0, 0, -5deg); |
| 819 | } |
| 820 | to { |
| 821 | -webkit-transform: perspective(400px); |
| 822 | transform: perspective(400px); |
| 823 | } |
| 824 | } |
| 825 | |
| 826 | @keyframes Toastify__flipIn { |
| 827 | from { |
| 828 | -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); |
| 829 | transform: perspective(400px) rotate3d(1, 0, 0, 90deg); |
| 830 | -webkit-animation-timing-function: ease-in; |
| 831 | animation-timing-function: ease-in; |
| 832 | opacity: 0; |
| 833 | } |
| 834 | 40% { |
| 835 | -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); |
| 836 | transform: perspective(400px) rotate3d(1, 0, 0, -20deg); |
| 837 | -webkit-animation-timing-function: ease-in; |
| 838 | animation-timing-function: ease-in; |
| 839 | } |
| 840 | 60% { |
| 841 | -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg); |
| 842 | transform: perspective(400px) rotate3d(1, 0, 0, 10deg); |
| 843 | opacity: 1; |
| 844 | } |
| 845 | 80% { |
| 846 | -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg); |
| 847 | transform: perspective(400px) rotate3d(1, 0, 0, -5deg); |
| 848 | } |
| 849 | to { |
| 850 | -webkit-transform: perspective(400px); |
| 851 | transform: perspective(400px); |
| 852 | } |
| 853 | } |
| 854 | @-webkit-keyframes Toastify__flipOut { |
| 855 | from { |
| 856 | -webkit-transform: perspective(400px); |
| 857 | transform: perspective(400px); |
| 858 | } |
| 859 | 30% { |
| 860 | -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); |
| 861 | transform: perspective(400px) rotate3d(1, 0, 0, -20deg); |
| 862 | opacity: 1; |
| 863 | } |
| 864 | to { |
| 865 | -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); |
| 866 | transform: perspective(400px) rotate3d(1, 0, 0, 90deg); |
| 867 | opacity: 0; |
| 868 | } |
| 869 | } |
| 870 | @keyframes Toastify__flipOut { |
| 871 | from { |
| 872 | -webkit-transform: perspective(400px); |
| 873 | transform: perspective(400px); |
| 874 | } |
| 875 | 30% { |
| 876 | -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); |
| 877 | transform: perspective(400px) rotate3d(1, 0, 0, -20deg); |
| 878 | opacity: 1; |
| 879 | } |
| 880 | to { |
| 881 | -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); |
| 882 | transform: perspective(400px) rotate3d(1, 0, 0, 90deg); |
| 883 | opacity: 0; |
| 884 | } |
| 885 | } |
| 886 | .Toastify__flip-enter { |
| 887 | -webkit-animation-name: Toastify__flipIn; |
| 888 | animation-name: Toastify__flipIn; |
| 889 | } |
| 890 | |
| 891 | .Toastify__flip-exit { |
| 892 | -webkit-animation-name: Toastify__flipOut; |
| 893 | animation-name: Toastify__flipOut; |
| 894 | } |
| 895 | |
| 896 | @-webkit-keyframes Toastify__slideInRight { |
| 897 | from { |
| 898 | -webkit-transform: translate3d(110%, 0, 0); |
| 899 | transform: translate3d(110%, 0, 0); |
| 900 | visibility: visible; |
| 901 | } |
| 902 | to { |
| 903 | -webkit-transform: translate3d(0, 0, 0); |
| 904 | transform: translate3d(0, 0, 0); |
| 905 | } |
| 906 | } |
| 907 | |
| 908 | @keyframes Toastify__slideInRight { |
| 909 | from { |
| 910 | -webkit-transform: translate3d(110%, 0, 0); |
| 911 | transform: translate3d(110%, 0, 0); |
| 912 | visibility: visible; |
| 913 | } |
| 914 | to { |
| 915 | -webkit-transform: translate3d(0, 0, 0); |
| 916 | transform: translate3d(0, 0, 0); |
| 917 | } |
| 918 | } |
| 919 | @-webkit-keyframes Toastify__slideInLeft { |
| 920 | from { |
| 921 | -webkit-transform: translate3d(-110%, 0, 0); |
| 922 | transform: translate3d(-110%, 0, 0); |
| 923 | visibility: visible; |
| 924 | } |
| 925 | to { |
| 926 | -webkit-transform: translate3d(0, 0, 0); |
| 927 | transform: translate3d(0, 0, 0); |
| 928 | } |
| 929 | } |
| 930 | @keyframes Toastify__slideInLeft { |
| 931 | from { |
| 932 | -webkit-transform: translate3d(-110%, 0, 0); |
| 933 | transform: translate3d(-110%, 0, 0); |
| 934 | visibility: visible; |
| 935 | } |
| 936 | to { |
| 937 | -webkit-transform: translate3d(0, 0, 0); |
| 938 | transform: translate3d(0, 0, 0); |
| 939 | } |
| 940 | } |
| 941 | @-webkit-keyframes Toastify__slideInUp { |
| 942 | from { |
| 943 | -webkit-transform: translate3d(0, 110%, 0); |
| 944 | transform: translate3d(0, 110%, 0); |
| 945 | visibility: visible; |
| 946 | } |
| 947 | to { |
| 948 | -webkit-transform: translate3d(0, 0, 0); |
| 949 | transform: translate3d(0, 0, 0); |
| 950 | } |
| 951 | } |
| 952 | @keyframes Toastify__slideInUp { |
| 953 | from { |
| 954 | -webkit-transform: translate3d(0, 110%, 0); |
| 955 | transform: translate3d(0, 110%, 0); |
| 956 | visibility: visible; |
| 957 | } |
| 958 | to { |
| 959 | -webkit-transform: translate3d(0, 0, 0); |
| 960 | transform: translate3d(0, 0, 0); |
| 961 | } |
| 962 | } |
| 963 | @-webkit-keyframes Toastify__slideInDown { |
| 964 | from { |
| 965 | -webkit-transform: translate3d(0, -110%, 0); |
| 966 | transform: translate3d(0, -110%, 0); |
| 967 | visibility: visible; |
| 968 | } |
| 969 | to { |
| 970 | -webkit-transform: translate3d(0, 0, 0); |
| 971 | transform: translate3d(0, 0, 0); |
| 972 | } |
| 973 | } |
| 974 | @keyframes Toastify__slideInDown { |
| 975 | from { |
| 976 | -webkit-transform: translate3d(0, -110%, 0); |
| 977 | transform: translate3d(0, -110%, 0); |
| 978 | visibility: visible; |
| 979 | } |
| 980 | to { |
| 981 | -webkit-transform: translate3d(0, 0, 0); |
| 982 | transform: translate3d(0, 0, 0); |
| 983 | } |
| 984 | } |
| 985 | @-webkit-keyframes Toastify__slideOutRight { |
| 986 | from { |
| 987 | -webkit-transform: translate3d(0, 0, 0); |
| 988 | transform: translate3d(0, 0, 0); |
| 989 | } |
| 990 | to { |
| 991 | visibility: hidden; |
| 992 | -webkit-transform: translate3d(110%, 0, 0); |
| 993 | transform: translate3d(110%, 0, 0); |
| 994 | } |
| 995 | } |
| 996 | @keyframes Toastify__slideOutRight { |
| 997 | from { |
| 998 | -webkit-transform: translate3d(0, 0, 0); |
| 999 | transform: translate3d(0, 0, 0); |
| 1000 | } |
| 1001 | to { |
| 1002 | visibility: hidden; |
| 1003 | -webkit-transform: translate3d(110%, 0, 0); |
| 1004 | transform: translate3d(110%, 0, 0); |
| 1005 | } |
| 1006 | } |
| 1007 | @-webkit-keyframes Toastify__slideOutLeft { |
| 1008 | from { |
| 1009 | -webkit-transform: translate3d(0, 0, 0); |
| 1010 | transform: translate3d(0, 0, 0); |
| 1011 | } |
| 1012 | to { |
| 1013 | visibility: hidden; |
| 1014 | -webkit-transform: translate3d(-110%, 0, 0); |
| 1015 | transform: translate3d(-110%, 0, 0); |
| 1016 | } |
| 1017 | } |
| 1018 | @keyframes Toastify__slideOutLeft { |
| 1019 | from { |
| 1020 | -webkit-transform: translate3d(0, 0, 0); |
| 1021 | transform: translate3d(0, 0, 0); |
| 1022 | } |
| 1023 | to { |
| 1024 | visibility: hidden; |
| 1025 | -webkit-transform: translate3d(-110%, 0, 0); |
| 1026 | transform: translate3d(-110%, 0, 0); |
| 1027 | } |
| 1028 | } |
| 1029 | @-webkit-keyframes Toastify__slideOutDown { |
| 1030 | from { |
| 1031 | -webkit-transform: translate3d(0, 0, 0); |
| 1032 | transform: translate3d(0, 0, 0); |
| 1033 | } |
| 1034 | to { |
| 1035 | visibility: hidden; |
| 1036 | -webkit-transform: translate3d(0, 500px, 0); |
| 1037 | transform: translate3d(0, 500px, 0); |
| 1038 | } |
| 1039 | } |
| 1040 | @keyframes Toastify__slideOutDown { |
| 1041 | from { |
| 1042 | -webkit-transform: translate3d(0, 0, 0); |
| 1043 | transform: translate3d(0, 0, 0); |
| 1044 | } |
| 1045 | to { |
| 1046 | visibility: hidden; |
| 1047 | -webkit-transform: translate3d(0, 500px, 0); |
| 1048 | transform: translate3d(0, 500px, 0); |
| 1049 | } |
| 1050 | } |
| 1051 | @-webkit-keyframes Toastify__slideOutUp { |
| 1052 | from { |
| 1053 | -webkit-transform: translate3d(0, 0, 0); |
| 1054 | transform: translate3d(0, 0, 0); |
| 1055 | } |
| 1056 | to { |
| 1057 | visibility: hidden; |
| 1058 | -webkit-transform: translate3d(0, -500px, 0); |
| 1059 | transform: translate3d(0, -500px, 0); |
| 1060 | } |
| 1061 | } |
| 1062 | @keyframes Toastify__slideOutUp { |
| 1063 | from { |
| 1064 | -webkit-transform: translate3d(0, 0, 0); |
| 1065 | transform: translate3d(0, 0, 0); |
| 1066 | } |
| 1067 | to { |
| 1068 | visibility: hidden; |
| 1069 | -webkit-transform: translate3d(0, -500px, 0); |
| 1070 | transform: translate3d(0, -500px, 0); |
| 1071 | } |
| 1072 | } |
| 1073 | .Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left { |
| 1074 | -webkit-animation-name: Toastify__slideInLeft; |
| 1075 | animation-name: Toastify__slideInLeft; |
| 1076 | } |
| 1077 | .Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right { |
| 1078 | -webkit-animation-name: Toastify__slideInRight; |
| 1079 | animation-name: Toastify__slideInRight; |
| 1080 | } |
| 1081 | .Toastify__slide-enter--top-center { |
| 1082 | -webkit-animation-name: Toastify__slideInDown; |
| 1083 | animation-name: Toastify__slideInDown; |
| 1084 | } |
| 1085 | .Toastify__slide-enter--bottom-center { |
| 1086 | -webkit-animation-name: Toastify__slideInUp; |
| 1087 | animation-name: Toastify__slideInUp; |
| 1088 | } |
| 1089 | |
| 1090 | .Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left { |
| 1091 | -webkit-animation-name: Toastify__slideOutLeft; |
| 1092 | animation-name: Toastify__slideOutLeft; |
| 1093 | } |
| 1094 | .Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right { |
| 1095 | -webkit-animation-name: Toastify__slideOutRight; |
| 1096 | animation-name: Toastify__slideOutRight; |
| 1097 | } |
| 1098 | .Toastify__slide-exit--top-center { |
| 1099 | -webkit-animation-name: Toastify__slideOutUp; |
| 1100 | animation-name: Toastify__slideOutUp; |
| 1101 | } |
| 1102 | .Toastify__slide-exit--bottom-center { |
| 1103 | -webkit-animation-name: Toastify__slideOutDown; |
| 1104 | animation-name: Toastify__slideOutDown; |
| 1105 | } |
| 1106 | |
| 1107 | @-webkit-keyframes Toastify__spin { |
| 1108 | from { |
| 1109 | -webkit-transform: rotate(0deg); |
| 1110 | transform: rotate(0deg); |
| 1111 | } |
| 1112 | to { |
| 1113 | -webkit-transform: rotate(360deg); |
| 1114 | transform: rotate(360deg); |
| 1115 | } |
| 1116 | } |
| 1117 | |
| 1118 | @keyframes Toastify__spin { |
| 1119 | from { |
| 1120 | -webkit-transform: rotate(0deg); |
| 1121 | transform: rotate(0deg); |
| 1122 | } |
| 1123 | to { |
| 1124 | -webkit-transform: rotate(360deg); |
| 1125 | transform: rotate(360deg); |
| 1126 | } |
| 1127 | } |
| 1128 |