/*--------------------------------------------------------------------
[Colors]

- Text, dividers
- Brandng
- Backgrounds
- Status
- Rights
- Flags
- Pallette

---------------------------------------------------------------------*/
/*--------------------------------------------------------------------
[Text, dividers]                                                    */
/*--------------------------------------------------------------------
[Branding]                                                          */
/*--------------------------------------------------------------------
[Backgrounds]                                                       */
/*--------------------------------------------------------------------
[Status]                                                            */
/*--------------------------------------------------------------------
[Rights]                                                            */
/*--------------------------------------------------------------------
[Flags]                                                             */
/*--------------------------------------------------------------------
[Pallette]                                                          */
:root,
.theme-light {
  --bg-app: #fff;
  --font-on-dark: #fff;
  --font-on-light: #000;
}
.theme-dark {
  --bg-app: #121212;
  --font-on-dark: #000;
  --font-on-light: #fff;
}
@media (max-width: 500px) {
  .theme-dark {
    --bg-app: #000;
    --font-on-light: #d4d4d4;
    --font-on-dark: #000;
  }
}
.top-miniature {
  padding: 20px;
  border-top: 1px solid #dde6f3;
  border-bottom: 1px solid #dde6f3;
  min-height: 215px;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  width: 1563px;
}
.top-miniature .animate-pc {
  animation: slide2 30s linear infinite;
}
@keyframes slide {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-1692px, 0, 0);
  }
}
@keyframes slide2 {
  100% {
    transform: translateX(-2035px);
  }
}
/*# sourceMappingURL=page.css.map */