/* roboto-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("./fonts/roboto-v30-latin-regular.eot"); /* IE9 Compat Modes */
  src: url("./fonts/roboto-v30-latin-regular.eot?#iefix") format("embedded-opentype"), url("./fonts/roboto-v30-latin-regular.woff2") format("woff2"), url("./fonts/roboto-v30-latin-regular.woff") format("woff"), url("./fonts/roboto-v30-latin-regular.ttf") format("truetype"), url("./fonts/roboto-v30-latin-regular.svg#Roboto") format("svg"); /* Legacy iOS */
}
/* roboto-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: url("./fonts/roboto-v30-latin-500.eot"); /* IE9 Compat Modes */
  src: url("./fonts/roboto-v30-latin-500.eot?#iefix") format("embedded-opentype"), url("./fonts/roboto-v30-latin-500.woff2") format("woff2"), url("./fonts/roboto-v30-latin-500.woff") format("woff"), url("./fonts/roboto-v30-latin-500.ttf") format("truetype"), url("./fonts/roboto-v30-latin-500.svg#Roboto") format("svg"); /* Legacy iOS */
}
/* roboto-900 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto";
  font-style: normal;
  font-weight: 900;
  src: url("./fonts/roboto-v30-latin-900.eot"); /* IE9 Compat Modes */
  src: url("./fonts/roboto-v30-latin-900.eot?#iefix") format("embedded-opentype"), url("./fonts/roboto-v30-latin-900.woff2") format("woff2"), url("./fonts/roboto-v30-latin-900.woff") format("woff"), url("./fonts/roboto-v30-latin-900.ttf") format("truetype"), url("./fonts/roboto-v30-latin-900.svg#Roboto") format("svg"); /* Legacy iOS */
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Roboto;
}

img,
picture,
svg {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3 {
  font-family: Roboto;
  text-align: center;
  margin-bottom: 0.8em;
  margin-top: 0.3em;
  color: #ffffff;
}

h1 {
  font-size: clamp(2.1em, 5vw, 4em);
  margin-bottom: 0.4em;
  font-weight: 900;
}

ul,
li {
  list-style-position: inside;
  margin-top: 0.8em;
}

a {
  color: #ffffff;
}

button[type=button] {
  background-color: #d65527;
  color: #ffffff;
  width: 100%;
  padding: 15px;
  margin: 15px 0;
  box-sizing: border-box;
  font-size: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  height: 100%;
  border: 4px solid #d65527;
}

input,
input[type=submit],
select {
  border: 4px solid #d65527;
  border-radius: 100em;
  width: 100%;
  padding: 15px;
  margin: 15px 0;
  box-sizing: border-box;
  font-size: 1em;
  -webkit-appearance: none;
}
input::placeholder,
input[type=submit]::placeholder,
select::placeholder {
  color: #cccccc;
  font-style: italic;
}

select {
  color: #cccccc;
}

.blackColor {
  color: black;
}

.greyColor {
  color: #cccccc;
}

.circle {
  background-color: #d65527;
  border-radius: 100%;
  position: fixed;
  top: 1.5em;
  right: 3vw;
  padding: 1em;
  z-index: 3;
}

#app {
  background: linear-gradient(110deg, #ffffff 10em, #d65527 10em, #d65527 12em, #f8af33 12em) no-repeat;
  background-size: contain;
  background-color: #f8af33 !important;
  background-attachment: fixed !important;
  background-repeat: no-repeat;
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#app header {
  position: fixed;
}
#app header img:nth-of-type(2) {
  margin-top: -3em;
  margin-left: 4em;
}
#app header img:nth-of-type(1) {
  z-index: 3;
  position: relative;
}
#app form {
  margin: 2em;
  margin-top: 45vh;
  z-index: 4;
}
#app input[type=submit] {
  background-color: #d65527;
  color: #ffffff;
  font-weight: 700;
}
#app h1 {
  z-index: 3;
}
#app .toggle {
  height: 3em;
  display: flex;
  padding: 0 2em;
  margin-bottom: 3em;
  z-index: 3;
}
#app .toggle button[type=button]:nth-child(1) {
  border-radius: 100em 0 0 100em;
  margin-right: -1px;
}
#app .toggle button[type=button]:nth-child(2) {
  border-radius: 0 100em 100em 0;
  background-color: #f8af33;
}
#app .toggle img {
  height: 2em;
}
#app .songs {
  z-index: 3;
}
#app .songs div {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1em;
  margin-bottom: 1em;
}
#app .songs div img {
  height: 1.4em;
  width: auto;
}
#app #play {
  display: none;
}
#app .impressum {
  text-align: center;
  margin-bottom: 2em;
}

dialog {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #cccccc;
  box-shadow: 12px 17px 51px rgba(0, 0, 0, 0.22);
  border-radius: 17px;
  width: 80%;
  padding: 2.5em;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: -1;
}
dialog h1 {
  color: black;
}
dialog button {
  border-radius: 100em;
}
dialog img {
  max-width: 30vw;
}
dialog::backdrop {
  background: black;
  opacity: 0.6;
}

.ag-theme-alpine {
  --ag-alpine-active-color: #d65527 !important;
  --ag-background-color: #f8af33 !important;
  --ag-odd-row-background-color: #e0842e !important;
  --ag-row-hover-color: #ffc46b !important;
  --ag-foreground-color: white !important;
  --ag-header-foreground-color: #d65527 !important;
  --ag-font-size: 14px !important;
  --ag-font-family: Roboto !important;
  --ag-borders: none !important;
  --ag-row-border-style: solid !important;
  --ag-row-border-width: 1.3px !important;
  --ag-row-border-color: white !important;
}

.ag-header-icon {
  color: #cccccc !important;
}

#tobi-view {
  background: #f8af33 linear-gradient(120deg, #ffffff 2em, #d65527 2em, #d65527 4em, #f8af33 4em) no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  background-attachment: fixed;
  overflow: hidden;
}
#tobi-view #Logo {
  width: 20vw;
  margin-top: 1em;
  margin-bottom: 0.2em;
}
#tobi-view .back {
  width: 2.4vw;
  height: auto;
}
#tobi-view #controll-Holder {
  align-self: flex-start;
  display: flex;
  padding: 0 5vw;
  flex-wrap: wrap;
}
#tobi-view input,
#tobi-view select {
  width: max(20vw, 160px);
  padding: 10px;
  font-size: 17px;
  margin-right: 0.3em;
}
#tobi-view button[type=button] {
  width: max(13vw, 160px);
  border-radius: 100em;
  font-size: 17px;
}
#tobi-view .cellDiv {
  height: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#tobi-view .cellDiv .play {
  height: 90%;
}

#impressum {
  padding: 3em 1em 1em;
  background: #f8af33 linear-gradient(120deg, #ffffff 2em, #d65527 2em, #d65527 4em, #f8af33 4em) no-repeat;
  color: #ffffff;
}
#impressum p,
#impressum ul {
  padding-left: 5vw;
  padding-right: 4vw;
  text-align: inherit;
}
#impressum h1:nth-of-type(2) {
  margin-top: 3em;
}
#impressum h2,
#impressum h3 {
  margin-top: 1em;
}
#impressum .back {
  width: 9vw;
  height: auto;
}

/*# sourceMappingURL=main.css.map */
