/* [project]/partymode/bad videoplayer/app/globals.css [app-client] (css) */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  color: #fff;
  background: #141414;
  flex-direction: column;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
  display: flex;
}

a {
  color: inherit;
  text-decoration: none;
}

/* [project]/partymode/bad videoplayer/components/Toast.module.css [app-client] (css) */
.Toast-module__rBeE2q__toast {
  color: #fff;
  z-index: 9999;
  pointer-events: none;
  white-space: nowrap;
  background: #000000e6;
  border: 1px solid #fff3;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  animation: .2s Toast-module__rBeE2q__toastIn;
  position: fixed;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
}

@keyframes Toast-module__rBeE2q__toastIn {
  from {
    opacity: 0;
    transform: translate(-50%, 50%)scale(.95);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 50%)scale(1);
  }
}

/*# sourceMappingURL=partymode_bad%20videoplayer_cf99a89f._.css.map*/