additionalcopyrightnotes, chordsequence, language, songnotes, uuid {
    display: none;
}


translation {
    color: lightslategray;
}

p {
    font-family: 'Roboto', sans-serif;
    text-align:left; 
    font-size:200%;
    margin-left: 50px;
    margin-right: 50px;
}



/* LOGGIN FORM */

@import url(https://fonts.googleapis.com/css?family=Roboto:400,300);
body {
  /*background: linear-gradient(135deg, #4D4E63, #333342);*/
  height: 100vh;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
}

.login {
  width: 420px;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.login:before {
  content: "";
  position: absolute;
  background: transparent;
  bottom: 195px;
  right: 40px;
  width: 55px;
  height: 55px;
  z-index: 5;
  transition: all .6s ease-in-out, background 0s ease;
}
.login .form {
  display: block;
  position: relative;
}
.login .playstore {
  background: #f5f5fa;
  box-sizing: border-box;
  width: 100%;
  padding: 40px;
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 150px;
  cursor: pointer;
}
.login .playstore h2 {
  font-weight: 200;
  color: #9596A2;
  text-decoration: none;
  font-size: 24px;
}
.login .playstore img {
  margin-left: 24px;
  width: 190px;
}

.login .form h2.header img {
  width: 70px;
  height: 70px;
  margin-right: 36px;
  border-radius: 20%;
  border-width: 0;
  box-shadow: 0 1px 2px 0 rgba(60,64,67,.3),0 1px 3px 1px rgba(60,64,67,.15);
}
.login .form h2.header  {
  background: #f5f5fa;
  box-sizing: border-box;
  width: 100%;
  margin: 0 0 30px 0;
  padding: 40px;
  font-weight: 200;
  color: #9596A2;
  font-size: 32px;
  display: flex;
  align-items: center;
}
.login .form .form-field {
  display: flex;
  align-items: center;
  height: 55px;
  margin: 0 40px 30px 40px;
  border-bottom: 1px solid #9596A2;
}
.login .form .form-field label {
  width: 10px;
  padding: 0 15px 0 0;
  color: #9596A2;
}
.login .form .form-field input {
  width: 100%;
  background: transparent;
  color: #9596A2;
  padding: 15px;
  border: 0;
  margin: 0;
}
.login .form .form-field input + svg {
  width: 35px;
  width: 35px;
  fill: none;
  stroke: #F9AA33;
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: -100;
  transition: all .3s ease-in-out;
}
.login .form .form-field input:valid + svg {
  stroke-dashoffset: 0;
}
.login .form .form-field input:focus {
  outline: none;
}
.login .form .form-field *::placeholder {
  color: #9596A2;
}
.login .form .button {
  width: 100%;
  position: relative;
  cursor: pointer;
  box-sizing: border-box;
  padding: 0 40px 45px 40px;
  margin: 0;
  border: 0;
  background: transparent;
  outline: none;
}
.login .form .button .arrow-wrapper {
  transition: all 0.45s ease-in-out;
  position: relative;
  margin: 0;
  width: 100%;
  height: 55px;
  right: 0;
  float: right;
  background: linear-gradient(90deg, #F9AA33, #FFC934);
  box-shadow: 0 3px 20px #f9aa3334;
  border-radius: 12px;
}
.login .form .button .arrow-wrapper .arrow {
  position: absolute;
  top: 50%;
  margin: auto;
  transition: all 0.45s ease-in-out;
  right: 35px;
  width: 15px;
  height: 2px;
  background: none;
  transform: translateY(-50%);
}
.login .form .button .arrow-wrapper .arrow:before {
  position: absolute;
  content: '';
  top: -4px;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
.login .form .button .button-text {
  transition: all 0.45s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 0;
  margin: 0;
  color: #fff;
  line-height: 55px;
  text-align: center;
  text-transform: uppercase;
}
.login .finished {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 7;
}
.login .finished svg {
  width: 100px;
  width: 100px;
  fill: none;
  stroke: #fff;
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: -100;
  transition: all .3s ease-in-out .5s;
}
.login.loading .form .button .arrow-wrapper {
  width: 55px;
  animation: sk-rotateplane 1.2s infinite ease-in-out .5s;
}
.login.loading .form .button .arrow-wrapper .arrow {
  background: #fff;
  transform: translate(15px, 0);
  opacity: 0;
  transition: opacity 0.3s ease-in-out .5s;
}
.login.loading .form .button .button-text {
  color: #9596A2;
}
.login.active:before {
  bottom: 0;
  right: 0;
  background: linear-gradient(90deg, #F9AA33, #FFC934);
  border-radius: 12px;
  height: 100%;
  width: 100%;
}
.login.active .form .button .arrow-wrapper {
  animation-iteration-count: 1;
}
.login.active .finished svg {
  stroke-dashoffset: 0;
}
.login.done, .login.done.form {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s 2s, opacity 2s linear;
}

.login.failed:before {
  /* background: linear-gradient(90deg, #f93a33, #ff4234);*/
}

@-webkit-keyframes sk-rotateplane {
  0% {
    transform: perspective(120px);
  }
  50% {
    transform: perspective(120px) rotateY(180deg);
  }
  100% {
    transform: perspective(120px) rotateY(180deg) rotateX(180deg);
  }
}

html {
  /* brand foundation */
  --brand-hue: 36;
  --brand-saturation: 94%;
  --brand-lightness: 59%;

  /* light */
  --brand-light: hsl(var(--brand-hue) var(--brand-saturation) var(--brand-lightness));
  --text1-light: hsl(var(--brand-hue) var(--brand-saturation) 10%);
  --text2-light: hsl(var(--brand-hue) 30% 30%);
  --surface1-light: hsl(var(--brand-hue) 25% 90%);
  --surface2-light: hsl(var(--brand-hue) 20% 99%);
  --surface3-light: hsl(var(--brand-hue) 20% 92%);
  --surface4-light: hsl(var(--brand-hue) 20% 85%);
  --surface-shadow-light: var(--brand-hue) 10% 20%;
  --shadow-strength-light: .02;

  /* dark */
  --brand-dark: hsl(
    var(--brand-hue) 
    calc(var(--brand-saturation) / 2)
    calc(var(--brand-lightness) / 1.5)
  );
  --text1-dark: hsl(var(--brand-hue) 15% 85%);
  --text2-dark: hsl(var(--brand-hue) 5% 65%);
  --surface1-dark: hsl(var(--brand-hue) 10% 10%);
  --surface2-dark: hsl(var(--brand-hue) 10% 15%);
  --surface3-dark: hsl(var(--brand-hue) 5%  20%);
  --surface4-dark: hsl(var(--brand-hue) 5% 25%);
  --surface-shadow-dark: var(--brand-hue) 50% 3%;
  --shadow-strength-dark: .8;

  /* dim */
  --brand-dim: hsl(
    var(--brand-hue) 
    calc(var(--brand-saturation) / 1.25)
    calc(var(--brand-lightness) / 1.25)
  );
  --text1-dim: hsl(var(--brand-hue) 15% 75%);
  --text2-dim: hsl(var(--brand-hue) 10% 61%);
  --surface1-dim: hsl(var(--brand-hue) 10% 20%);
  --surface2-dim: hsl(var(--brand-hue) 10% 25%);
  --surface3-dim: hsl(var(--brand-hue) 5%  30%);
  --surface4-dim: hsl(var(--brand-hue) 5% 35%);
  --surface-shadow-dim: var(--brand-hue) 30% 13%;
  --shadow-strength-dim: .2;
}

:root {
  color-scheme: light;

  /* set defaults */
  --brand: var(--brand-light);
  --text1: var(--text1-light);
  --text2: var(--text2-light);
  --surface1: var(--surface1-light);
  --surface2: var(--surface2-light);
  --surface3: var(--surface3-light);
  --surface4: var(--surface4-light);
  --surface-shadow: var(--surface-shadow-light);
  --shadow-strength: var(--shadow-strength-light);
}

@media (color-index: 48) {
  :root {
    color-scheme: dark;

    --brand: var(--brand-dark);
    --text1: var(--text1-dark);
    --text2: var(--text2-dark);
    --surface1: var(--surface1-dark);
    --surface2: var(--surface2-dark);
    --surface3: var(--surface3-dark);
    --surface4: var(--surface4-dark);
    --surface-shadow: var(--surface-shadow-dark);
    --shadow-strength: var(--shadow-strength-dark);
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;

    --brand: var(--brand-dark);
    --text1: var(--text1-dark);
    --text2: var(--text2-dark);
    --surface1: var(--surface1-dark);
    --surface2: var(--surface2-dark);
    --surface3: var(--surface3-dark);
    --surface4: var(--surface4-dark);
    --surface-shadow: var(--surface-shadow-dark);
    --shadow-strength: var(--shadow-strength-dark);
  }
}

[color-scheme="light"] {
  color-scheme: light;

  --brand: var(--brand-light);
  --text1: var(--text1-light);
  --text2: var(--text2-light);
  --surface1: var(--surface1-light);
  --surface2: var(--surface2-light);
  --surface3: var(--surface3-light);
  --surface4: var(--surface4-light);
  --surface-shadow: var(--surface-shadow-light);
  --shadow-strength: var(--shadow-strength-light);
}

[color-scheme="dark"] {
  color-scheme: dark;
  
  --brand: var(--brand-dark);
  --text1: var(--text1-dark);
  --text2: var(--text2-dark);
  --surface1: var(--surface1-dark);
  --surface2: var(--surface2-dark);
  --surface3: var(--surface3-dark);
  --surface4: var(--surface4-dark);
  --surface-shadow: var(--surface-shadow-dark);
  --shadow-strength: var(--shadow-strength-dark);
}

[color-scheme="dim"] {
  color-scheme: dark;

  --brand: var(--brand-dim);
  --text1: var(--text1-dim);
  --text2: var(--text2-dim);
  --surface1: var(--surface1-dim);
  --surface2: var(--surface2-dim);
  --surface3: var(--surface3-dim);
  --surface4: var(--surface4-dim);
  --surface-shadow: var(--surface-shadow-dim);
  --shadow-strength: var(--shadow-strength-dim);
}

* {
  box-sizing: border-box;
  margin: 0;
}

html {
  height: 100%;
  background-color: hsl(200, 25%, 90%);
  background-color: var(--surface1);
  color: hsl(200, 100%, 10%);
  color: var(--text1);
}

body {
  min-height: 100%;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif;
  padding: 5vmax;
}

main {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  grid-gap: 10vmax 10vmin;
  gap: 10vmax 10vmin;
}

sidebar_layout {
  display: grid;
  grid-gap: 2.5vh;
  gap: 2.5vh;
  grid-template-columns: 1fr 2fr;
}

section {
  display: grid;
  grid-gap: 2.5vh;
  gap: 2.5vh;
}

h1 {
  font-weight: 100;
}

p {
  /*max-width: 35ch;*/
  font-size: 1.25rem;
  line-height: 1.5;
}

header {
  display: inline-grid;
  grid-gap: 1ch;
  gap: 1ch;
  display: none;
}

form {
  display: flex;
  grid-gap: 2ch;
  gap: 2ch
}

form > div {
    display: inline-flex;
    align-items: center;
    grid-gap: .75ch;
    gap: .75ch;
  }


.surface-sample {
  display: grid;
  border-radius: 1rem;
  font-size: 2rem;
  font-weight: 200;
  padding: 30px;
}

#playlist .surface-sample {
  font-size: 2rem;
  padding: 30px;
  justify-content: center;
}

#p1 .surface-sample {
  font-size: 2rem;
  padding: 30px;
}

.surface-samples.lyrics {
  display: grid;
  --size: 40ch;
  grid-template-columns: 2fr;
  grid-auto-rows: var(--size);
  grid-gap: 2ch;
  gap: 2ch
}

.surface-samples {
  display: grid;
  --size: 40ch;
  grid-template-columns: 1fr 2fr;
  grid-auto-rows: var(--size);
  grid-gap: 2ch;
  gap: 2ch
}

@media (max-width: 480px) { .surface-samples {
    --size: 40vw;
  }}

.surface-samples > * {
    border-radius: 1rem;
    display: grid;
    align-content: center;
    justify-content: center;
    place-content: center;
    font-size: 3rem;
    font-weight: 200;
  }

.text-samples {
  display: grid;
  grid-gap: 1.5ch;
  gap: 1.5ch
}

.text-samples > h1 {
    font-size: 2.5rem;
    display: inline-flex;
    align-items: center;
    grid-gap: 1ch;
    gap: 1ch;
  }

.brand {
  color: hsl(200, 100%, 50%);
  color: var(--brand);
  background-color: hsl(200, 100%, 50%);
  background-color: var(--brand);
}

.surface1 {
  background-color: hsl(200, 25%, 90%);
  background-color: var(--surface1);
  color: hsl(200, 30%, 30%);
  color: var(--text2);
}

.surface2 {
  background-color: hsl(200, 20%, 99%);
  background-color: var(--surface2);
  color: hsl(200, 30%, 30%);
  color: var(--text2);
}

.surface3 {
  background-color: hsl(200, 20%, 92%);
  background-color: var(--surface3);
  color: hsl(200, 100%, 10%);
  color: var(--text1);
}

.surface4 {
  background-color: hsl(200, 20%, 85%);
  background-color: var(--surface4);
  color: hsl(200, 100%, 10%);
  color: var(--text1);
}

.text1 {
  color: hsl(200, 100%, 10%);
  color: var(--text1)
}

p.text1 {
    font-weight: 200
}

.text2 {
  color: hsl(200, 30%, 30%);
  color: var(--text2);
}

.swatch {
  display: inline-block;
  flex-shrink: 0;
  width: 1.5ch;
  height: 1.5ch;
  border-radius: 50%
}

.swatch.text1 { background-color: hsl(200, 100%, 10%); background-color: var(--text1); }

.swatch.text2 { background-color: hsl(200, 30%, 30%); background-color: var(--text2); }

.rad-shadow {
  border: 1px solid hsla(200, 10%, 50%, 0.15);
  border: 1px solid hsl(var(--brand-hue) 10% 50% / 15%);
  box-shadow: 0 1rem .5rem -.5rem;
  box-shadow:
    0 2.8px 2.2px hsla(200, 10%, 20%, calc(.02 + .03)),
    0 6.7px 5.3px hsla(200, 10%, 20%, calc(.02 + .01)),
    0 12.5px 10px hsla(200, 10%, 20%, calc(.02 + .02)),
    0 22.3px 17.9px hsla(200, 10%, 20%, calc(.02 + .02)),
    0 41.8px 33.4px hsla(200, 10%, 20%, calc(.02 + .03)),
    0 100px 80px hsla(200, 10%, 20%, .02);
  box-shadow:
    0 2.8px 2.2px hsl(var(--surface-shadow) / calc(var(--shadow-strength) + .03)),
    0 6.7px 5.3px hsl(var(--surface-shadow) / calc(var(--shadow-strength) + .01)),
    0 12.5px 10px hsl(var(--surface-shadow) / calc(var(--shadow-strength) + .02)),
    0 22.3px 17.9px hsl(var(--surface-shadow) / calc(var(--shadow-strength) + .02)),
    0 41.8px 33.4px hsl(var(--surface-shadow) / calc(var(--shadow-strength) + .03)),
    0 100px 80px hsl(var(--surface-shadow) / var(--shadow-strength))
  ;
}