4 animation-name: fadeIn;
5 animation-duration: 120ms;
6 animation-timing-function: ease-in-out;
7 animation-fill-mode: forwards;
19 .search-suggestions-animation{
20 animation-name: searchSuggestions;
21 animation-duration: 120ms;
22 animation-fill-mode: forwards;
23 animation-timing-function: cubic-bezier(.62, .28, .23, .99);
26 @keyframes searchSuggestions {
29 transform: scale(0.9);
37 @keyframes loadingBob {
39 transform: translate3d(0, 0, 0);
42 transform: translate3d(0, 0, 0);
45 transform: translate3d(0, -10px, 0);
48 transform: translate3d(0, 0, 0);
51 transform: translate3d(0, 0, 0);
57 transform: translate3d(0, 20px, 0) scale3d(0, 0, 0);
60 transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
65 transform-origin: 50% 100%;
66 animation-name: pointer;
67 animation-duration: 180ms;
69 animation-timing-function: cubic-bezier(.62, .28, .23, .99);
72 @keyframes highlight {
74 background-color: var(--color-primary-light);
77 background-color: transparent;
80 background-color: var(--color-primary-light);
83 background-color: transparent;
88 animation-name: highlight;
89 animation-duration: 2s;
91 animation-timing-function: linear;