@import "./Dialog.css";
@import "./Input.css";
@import "./SongLI.css";
@import "./Notifyer.css";

::-webkit-scrollbar {
  display: none;
}
* {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
@media (prefers-color-scheme: light) {
  :root {
    --being-hover: rgba(50 51 52 / 0.05);
    --being-active: rgba(50 51 52 / 0.1);
    --being-background-top: #f1f2f3;
    --being-background-bottom: #edeeef;
    --being-primary-material: #ffffff;
    --being-primary-font-color: #1d1e1f;
    --being-secondary-font-color: #3d3e3f;
    --being-tertiary-font-color: #5d5e5f;
    --being-fade-font-color: rgba(30 31 32 / 0.5);
    --being-light-border: #dddedf;
    --being-opaque-background: rgba(250 251 252 / 0.25);
    --being-input-dialog-background: rgba(50 51 52 / 0.075);
    --being-placeholder-color: rgba(0 0 0 / 0.65);
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --being-hover: rgba(250 251 252 / 0.05);
    --being-active: rgba(250 251 252 / 0.1);
    --being-background-top: #212223;
    --being-background-bottom: #1d1e1f;
    --being-primary-material: #000000;
    --being-primary-font-color: #fdfeff;
    --being-secondary-font-color: #edeeef;
    --being-tertiary-font-color: #dddedf;
    --being-fade-font-color: rgba(200 201 202 / 0.5);
    --being-light-border: #3d3e3f;
    --being-opaque-background: rgba(150 151 152 / 0.25);
    --being-input-dialog-background: rgba(250 251 252 / 0.175);
    --being-placeholder-color: rgba(250 250 250 / 0.65);
  } 
}
body {
  margin: 0;
  background-color: var(--being-background-top);
  background-image: linear-gradient(to bottom, var(--being-background-top), var(--being-background-bottom));
  background-image: -moz-linear-gradient(to bottom, var(--being-background-top), var(--being-background-bottom));
  background-image: -o-linear-gradient(to bottom, var(--being-background-top), var(--being-background-bottom));
  background-image: -webkit-linear-gradient(to bottom, var(--being-background-top), var(--being-background-bottom));
  background-image: -ms-linear-gradient(to bottom, var(--being-background-top), var(--being-background-bottom));
  filter: progid:DXImageTransform.Microsoft.Gradient(startColorStr=var(--being-background-top), endColorStr=var(--being-background-bottom), GradientType=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Gradient(startColorStr='#f1f2f3', endColorStr='#edeeef', GradientType=0)";
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  cursor: normal;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  text-align: left;
  font-size: 12pt;
  font-weight: 400;
}
body nav {
  position: fixed;
  top: calc(100% - 90px);
  left: 0px;
  width: 100%;
  height: 90px;
  background-color: transparent;
  overflow: hidden;
  z-index: 2;
  padding: 0px;
  box-sizing: border-box;
  transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
}
body nav ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
  display: flex;
  width: min(100%, 720px);
  height: 100%;
  justify-content: space-evenly;
  align-items: center;
  margin: 0px auto;
}
body nav ul li {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}
body nav ul li a {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 9px;
  color: var(--being-primary-font-color);
  font-weight: 400;
  cursor: pointer;
  transition-duration: 0.15s;
  -webkit-transition-duration: 0.15s;
  font-size: 12pt;
}
body nav ul li.active a {
  color: #258aef;
}
body main {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: transparent;
  overflow: hidden;
  z-index: 1;
  padding: 0px;
  box-sizing: border-box;
  transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
}
body main section {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: calc(100% - 90px);
  background-color: transparent;
  overflow: hidden;
  z-index: 1;
  padding: calc(env(safe-area-inset-top) + 36px) calc(env(safe-area-inset-right) + 18px) 0px calc(env(safe-area-inset-left) + 18px);
  box-sizing: border-box;
  transition-duration: 0.25s;
  -webkit-transition-duration: 0.25s;
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}
body main section.active {
  opacity: 1;
  pointer-events: initial;
}
body main section h2 {
  width: min(100%, 720px);
  height: 54px;
  padding: 0px;
  margin: 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18pt;
  color: var(--being-primary-font-color);
  flex-shrink: 0;
}
body main section button {
  width: min(100%, 720px);
  height: 63px;
  background-color: transparent;
  color: var(--being-primary-font-color);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 15pt;
  font-weight: 400;
  border: none;
  outline: none;
  border-radius: 12px;
  cursor: pointer;
  margin: 9px 0px;
  transform: scale(1);
  -webkit-transform: scale(1);
  transition-duration: 0.15s;
  -webkit-transition-duration: 0.15s;
  padding: 0px;
  flex-shrink: 0;
}
body main section button:hover {
  background-color: var(--being-hover);
}
body main section button:active {
  background-color: var(--being-active);
  transform: scale(0.98);
  -webkit-transform: scale(0.98);
}
body main section button.primary {
  background-color: #258aef;
  color: #ffffff;
}
body main section h2 button {
  width: 45px;
  height: 45px;
  padding: 0px;
  margin: 0px;
  font-weight: 600;
  color: #258aef;
  padding: 15px;
  fill: #258aef;
  line-height: 0;
}
body main section input {
  width: min(100%, 720px);
  height: 63px;
  background-color: var(--being-primary-material);
  color: var(--being-primary-font-color);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 15pt;
  font-weight: 400;
  border: none;
  outline: none;
  border-radius: 12px;
  cursor: text;
  margin: 9px 0px;
  padding: 18px;
  box-sizing: border-box;
  text-align: center;
  flex-shrink: 0;
}
body main section ul {
  position: relative;
  top: 0px;
  left: 0px;
  width: min(100%, 720px);
  height: auto;
  flex-grow: 1;
  overflow: auto;
  padding: 18px 0px 90px 0px;
  margin: 0px;
  mask-image: linear-gradient(to bottom, transparent, #000000 18px, #000000 calc(100% - 90px), transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000000 18px, #000000 calc(100% - 90px), transparent);
  list-style: none;
}
body main section div.tempo-row {
  display: flex;
  width: min(100%, 720px);
  align-items: center;
}
body main section div.tempo-row button {
  flex-shrink: 0;
  width: 63px;
  fill: #ffffff;
  padding: 18px;
}
body main section div.tempo-row input {
  flex-grow: 1;
  flex-shrink: 1;
  margin: 0px 9px; 
}
body div.dialog-box div.dialog div.tempo-row {
  display: flex;
  align-items: center;
}
body div.dialog-box div.dialog div.tempo-row button {
  width: 63px;
  height: 63px;
  flex-shrink: 0;
  padding: 18px;
  background-color: var(--being-input-dialog-background);
  margin: 0px;
  fill: #258aef;
}
body div.dialog-box div.dialog div.tempo-row div.text-input {
  margin: 0px 9px;  
}