@charset "UTF-8";
iframe {
  border: none;
}

body {
  height: 100%;
  overflow: hidden;
}

html {
  height: 100%;
  background-color: rgb(28, 31, 34);
  overflow: hidden;
}

button {
  background-color: rgb(44, 49, 53);
  color: white;
  border: none;
}

button[buttonIconType=CROSS] {
  top: 8px !important;
  right: 8px !important;
  transform: rotateZ(45deg) !important;
  font-size: 30px !important;
  background-color: rgba(0, 0, 0, 0) !important;
  color: white !important;
}

button[buttonIconType=CROSS]:hover {
  background-color: rgba(0, 0, 0, 0) !important;
  color: rgb(82, 90, 95) !important;
}

button[buttonIconType=CROSS]:active {
  background-color: rgba(0, 0, 0, 0) !important;
  color: rgb(30, 34, 37) !important;
}

button[selected] {
  background-color: rgb(21, 23, 25);
}

button:not([disabled]):hover {
  background-color: rgb(62, 70, 75);
}

button:not([disabled]):active {
  background-color: rgb(30, 34, 37);
}

option, select {
  background-color: rgb(44, 49, 53);
  color: white;
  border: none;
  height: 40px;
  outline: none;
}

input {
  background-color: rgb(44, 49, 53);
  color: white;
  border: none;
  outline: none;
  font-size: 16px;
  border-radius: 10px;
}

h1, h2, h3, h4, h5, h6, span, p, label {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

::-webkit-scrollbar {
  width: 10px;
  border-radius: 5px;
}

::-webkit-scrollbar-track:hover {
  background-color: rgb(50, 50, 50);
  width: 10px;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb {
  background-color: rgb(120, 120, 120);
  width: 10px;
  border-radius: 5px;
}

:not(:hover)::-webkit-scrollbar {
  display: none;
}

.tabitem {
  width: 100%;
  height: 95%;
}

iframe {
  border: none;
}

body {
  overflow: hidden;
  height: 100%;
}

html {
  height: 100%;
  background-color: rgb(28, 31, 34);
}

@media (min-width: 1700px) { /**/
  .navBarItem {
    width: 33.333%;
    height: 100%;
    top: 10px;
    min-height: 40px;
    border: none;
    font-size: 25px;
  }
  #navigationBar {
    width: 99%;
    height: 40px;
    min-height: 40px;
    display: flex;
    overflow: hidden;
    margin-bottom: inherit;
    float: right;
  }
  #profile img {
    width: 25px;
    height: auto;
  }
  #profile {
    width: 40px;
    height: 40px;
    min-height: 40px;
    position: absolute;
    left: 2.5px;
    border-radius: 100%;
    display: grid;
    justify-content: center;
    align-content: center;
    z-index: 20;
  }
  #profile:hover {
    background: rgb(62, 70, 75) !important;
  }
  button {
    background-color: rgb(44, 49, 53);
    color: white;
  }
  button[selected] {
    background-color: rgb(21, 23, 25);
  }
  button:hover {
    background-color: rgb(62, 70, 75);
  }
  button:active {
    background-color: rgb(30, 34, 37);
  }
  #btnChemistry {
    border-left: 1px solid rgb(160, 160, 160);
    border-right: 1px solid rgb(160, 160, 160);
  }
  #btnConverter {
    border-left: 1px solid rgb(160, 160, 160);
    border-right: 1px solid rgb(160, 160, 160);
  }
  #btnHomework {
    border-left: 1px solid rgb(160, 160, 160);
    border-right: 1px solid rgb(160, 160, 160);
  }
  #btnExams {
    border-left: 1px solid rgb(160, 160, 160);
    border-right: 1px solid rgb(160, 160, 160);
  }
  #gradeCalculatorBtn {
    border-right: 1px solid rgb(160, 160, 160);
    border-left: 1px solid rgb(160, 160, 160);
  }
  #btnFormCreator {
    border-right: 1px solid rgb(160, 160, 160);
    border-left: 1px solid rgb(160, 160, 160);
  }
  #btnAdminAg {
    border-left: 1px solid rgb(160, 160, 160);
  }
  .firstElement {
    border-right: 1px solid rgb(160, 160, 160);
    border-left: 0px !important;
  }
  .lastElement {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    border-right: 0px !important;
  }
  #profile.selectedByFirstElement {
    background: linear-gradient(90deg, rgb(44, 49, 53) 0%, rgb(21, 23, 25) 100%);
  }
  #profile.hoverByFirstElement {
    background: linear-gradient(90deg, rgb(44, 49, 53) 0%, rgb(62, 70, 75) 100%);
  }
}
/* Kleinere Geräte Menü an der Seite */
@media (max-width: 1700px) { /* 10000px*/
  .tabitem {
    margin-left: 50px;
    width: calc(100% - 50px);
  }
  #navigationBar[slideIn] {
    animation: slideIn 200ms ease-out 0ms 1 forwards;
  }
  #navigationBar[slideOut] {
    animation: slideOut 200ms ease-out 0ms 1 forwards;
  }
  #navigationBar[show] {
    display: block;
  }
  #navigationBar:not([show]) {
    display: none;
  }
  #navigationBar:after {
    content: "";
    position: fixed;
    top: 0px;
    left: 270px;
    height: 100%;
    width: calc(100% - 270px);
    background-color: black;
    opacity: 0.4;
  }
  #btnMenu[show] {
    transition: left 200ms ease-out;
    left: 210px;
  }
  @keyframes slideOut {
    0% {
      transform-origin: left;
      transform: scaleX(1);
    }
    100% {
      transform-origin: left;
      transform: scaleX(0);
    }
  }
  @keyframes slideIn {
    0% {
      transform-origin: left;
      transform: scaleX(0);
    }
    100% {
      transform-origin: left;
      transform: scaleX(1);
    }
  }
  #navigationBar {
    width: 200px;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    background-color: rgb(64, 69, 73);
    padding-right: 60px;
    padding-top: 20px;
    padding-left: 10px;
    overflow-y: auto;
    overflow-x: hidden;
  }
  #btnMenu {
    display: block !important;
    position: fixed;
    top: 20px;
    left: 10px;
    font-size: 20px;
    height: 40px;
    width: 40px;
    background-color: rgb(44, 49, 53);
    border-radius: 2px;
  }
  #btnMenu .wrapper {
    width: 100%;
    height: 100%;
    transform: translateX(-34.5%);
  }
  .icon-1, .icon-2, .icon-3 {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 70%;
    height: 3px;
    background-color: white;
    transition: all 400ms cubic-bezier(0.84, 0.06, 0.52, 1.2);
  }
  .icon-1 {
    transform: translateY(-8px);
    animation-delay: 100ms;
  }
  .icon-3 {
    transform: translateY(8px);
    animation-delay: 250ms;
  }
  .hamburger-icon {
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    background: rgba(255, 255, 255, 0.2);
    color: white;
  }
  .icon-1.a {
    transform: rotate(45deg);
  }
  .icon-3.b {
    transform: rotate(-45deg);
  }
  .icon-2.c {
    opacity: 0;
  }
  .clear {
    clear: both;
  }
  #btnMenu:hover {
    background: #272c2f;
  }
  #btnMenu:active {
    background: rgb(30, 34, 37);
  }
  .top {
    margin-top: 40px;
  }
  .navBarItem {
    width: 100%;
    min-height: 40px;
    height: 80px;
    border: none;
    font-size: 25px;
  }
  #moveElement {
    position: fixed;
    top: var(--own-pos-y);
    left: var(--own-pos-x);
    width: 200px;
    min-height: 40px;
    height: 80px;
    border: none;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 10%, #585f64 50%, rgba(0, 0, 0, 0) 90%, rgba(0, 0, 0, 0) 100%);
    mix-blend-mode: screen;
    animation: moveAnimation 200ms ease-out 0ms 1 forwards;
  }
  @keyframes moveAnimation {
    0% {
      top: var(--pos-y);
      left: var(--pos-x);
    }
    100% {
      top: var(--own-pos-y);
      left: var(--own-pos-x);
    }
  }
  #profile img {
    width: 30px;
    height: auto;
  }
  #profile {
    width: calc(100% - 60px - 10px);
    height: 40px;
    position: absolute;
    top: 20px;
    left: 10px;
    display: grid;
    justify-content: center;
    align-content: center;
    z-index: 20;
  }
  #profile:hover {
    background: #272c2f;
  }
  #profile:active {
    background: rgb(30, 34, 37);
  }
  button {
    -o-border-image: linear-gradient(90deg, rgb(64, 69, 73) 0%, rgb(64, 69, 73) 10%, lighter(rgb(64, 69, 73)) 50%, rgb(64, 69, 73) 90%, rgb(64, 69, 73) 100% 1);
       border-image: linear-gradient(90deg, rgb(64, 69, 73) 0%, rgb(64, 69, 73) 10%, lighter(rgb(64, 69, 73)) 50%, rgb(64, 69, 73) 90%, rgb(64, 69, 73) 100% 1);
    background-color: rgb(44, 49, 53);
    color: white;
  }
  button[selected] {
    background-color: rgb(21, 23, 25);
  }
  button:hover {
    background-color: rgb(82, 90, 95);
  }
  button:active {
    background-color: rgb(30, 34, 37);
  }
  .borderImg[selected], [selected]#btnAdminAg, [selected]#btnFormCreator, [selected]#gradeCalculatorBtn, [selected]#btnExams, [selected]#btnHomework, [selected]#btnConverter, [selected]#btnChemistry, [selected]#btnMathematics {
    animation: showSelection 0ms linear 200ms 1 forwards;
  }
  @keyframes showSelection {
    100% {
      -o-border-image: linear-gradient(90deg, rgb(64, 69, 73) 0%, #dbdee0 50%, rgb(64, 69, 73) 100%) 1;
         border-image: linear-gradient(90deg, rgb(64, 69, 73) 0%, #dbdee0 50%, rgb(64, 69, 73) 100%) 1;
      background: linear-gradient(90deg, rgb(64, 69, 73) 0%, rgb(64, 69, 73) 10%, #70787f 50%, rgb(64, 69, 73) 90%, rgb(64, 69, 73) 100%);
    }
  }
  .borderImg, #btnAdminAg, #btnFormCreator, #gradeCalculatorBtn, #btnExams, #btnHomework, #btnConverter, #btnChemistry, #btnMathematics {
    -o-border-image: linear-gradient(90deg, rgb(64, 69, 73) 0%, rgb(64, 69, 73) 10%, #70787f 50%, rgb(64, 69, 73) 90%, rgb(64, 69, 73) 100%) 1;
       border-image: linear-gradient(90deg, rgb(64, 69, 73) 0%, rgb(64, 69, 73) 10%, #70787f 50%, rgb(64, 69, 73) 90%, rgb(64, 69, 73) 100%) 1;
    background: linear-gradient(90deg, rgb(64, 69, 73) 0%, rgb(64, 69, 73) 10%, #42484c 50%, rgb(64, 69, 73) 90%, rgb(64, 69, 73) 100%);
  }
  .borderImg:hover:not([selected]), #btnAdminAg:hover:not([selected]), #btnFormCreator:hover:not([selected]), #gradeCalculatorBtn:hover:not([selected]), #btnExams:hover:not([selected]), #btnHomework:hover:not([selected]), #btnConverter:hover:not([selected]), #btnChemistry:hover:not([selected]), #btnMathematics:hover:not([selected]) {
    animation: hoverOverButton 300ms linear 0ms 1 forwards;
  }
  .borderImg:not(:hover):not([selected]), #btnAdminAg:not(:hover):not([selected]), #btnFormCreator:not(:hover):not([selected]), #gradeCalculatorBtn:not(:hover):not([selected]), #btnExams:not(:hover):not([selected]), #btnHomework:not(:hover):not([selected]), #btnConverter:not(:hover):not([selected]), #btnChemistry:not(:hover):not([selected]), #btnMathematics:not(:hover):not([selected]) {
    animation: unhoverOverButton 300ms linear 0ms 1 backwards;
  }
  @keyframes unhoverOverButton {
    0% {
      background: linear-gradient(90deg, rgb(64, 69, 73) 0%, rgb(64, 69, 73) 10%, #51575c 50%, rgb(64, 69, 73) 90%, rgb(64, 69, 73) 100%);
    }
    14.2857142857% {
      background: linear-gradient(90deg, rgb(64, 69, 73) 0%, rgb(64, 69, 73) 10%, #4e5459 50%, rgb(64, 69, 73) 90%, rgb(64, 69, 73) 100%);
    }
    28.5714285714% {
      background: linear-gradient(90deg, rgb(64, 69, 73) 0%, rgb(64, 69, 73) 10%, #4c5257 50%, rgb(64, 69, 73) 90%, rgb(64, 69, 73) 100%);
    }
    42.8571428571% {
      background: linear-gradient(90deg, rgb(64, 69, 73) 0%, rgb(64, 69, 73) 10%, #4a4f54 50%, rgb(64, 69, 73) 90%, rgb(64, 69, 73) 100%);
    }
    57.1428571429% {
      background: linear-gradient(90deg, rgb(64, 69, 73) 0%, rgb(64, 69, 73) 10%, #474d51 50%, rgb(64, 69, 73) 90%, rgb(64, 69, 73) 100%);
    }
    71.4285714286% {
      background: linear-gradient(90deg, rgb(64, 69, 73) 0%, rgb(64, 69, 73) 10%, #454a4e 50%, rgb(64, 69, 73) 90%, rgb(64, 69, 73) 100%);
    }
    85.7142857143% {
      background: linear-gradient(90deg, rgb(64, 69, 73) 0%, rgb(64, 69, 73) 10%, #42484c 50%, rgb(64, 69, 73) 90%, rgb(64, 69, 73) 100%);
    }
    100% {
      background: linear-gradient(90deg, rgb(64, 69, 73) 0%, rgb(64, 69, 73) 10%, #404549 50%, rgb(64, 69, 73) 90%, rgb(64, 69, 73) 100%);
    }
  }
  @keyframes hoverOverButton {
    100% {
      background: linear-gradient(90deg, rgb(64, 69, 73) 0%, rgb(64, 69, 73) 10%, #51575c 50%, rgb(64, 69, 73) 90%, rgb(64, 69, 73) 100%);
    }
    85.7142857143% {
      background: linear-gradient(90deg, rgb(64, 69, 73) 0%, rgb(64, 69, 73) 10%, #4e5459 50%, rgb(64, 69, 73) 90%, rgb(64, 69, 73) 100%);
    }
    71.4285714286% {
      background: linear-gradient(90deg, rgb(64, 69, 73) 0%, rgb(64, 69, 73) 10%, #4c5257 50%, rgb(64, 69, 73) 90%, rgb(64, 69, 73) 100%);
    }
    57.1428571429% {
      background: linear-gradient(90deg, rgb(64, 69, 73) 0%, rgb(64, 69, 73) 10%, #4a4f54 50%, rgb(64, 69, 73) 90%, rgb(64, 69, 73) 100%);
    }
    42.8571428571% {
      background: linear-gradient(90deg, rgb(64, 69, 73) 0%, rgb(64, 69, 73) 10%, #474d51 50%, rgb(64, 69, 73) 90%, rgb(64, 69, 73) 100%);
    }
    28.5714285714% {
      background: linear-gradient(90deg, rgb(64, 69, 73) 0%, rgb(64, 69, 73) 10%, #454a4e 50%, rgb(64, 69, 73) 90%, rgb(64, 69, 73) 100%);
    }
    14.2857142857% {
      background: linear-gradient(90deg, rgb(64, 69, 73) 0%, rgb(64, 69, 73) 10%, #42484c 50%, rgb(64, 69, 73) 90%, rgb(64, 69, 73) 100%);
    }
    0% {
      background: linear-gradient(90deg, rgb(64, 69, 73) 0%, rgb(64, 69, 73) 10%, #404549 50%, rgb(64, 69, 73) 90%, rgb(64, 69, 73) 100%);
    }
  }
  #btnMathematics {
    border-top: 1px solid;
    border-bottom: 1px solid;
  }
  #btnChemistry {
    border-top: 1px solid;
    border-bottom: 1px solid;
  }
  #btnConverter {
    border-top: 1px solid;
    border-bottom: 1px solid;
  }
  #btnHomework {
    border-top: 1px solid;
    border-bottom: 1px solid;
  }
  #btnExams {
    border-top: 1px solid;
    border-bottom: 1px solid;
  }
  #gradeCalculatorBtn {
    border-top: 1px solid;
    border-bottom: 1px solid;
  }
  #btnFormCreator {
    border-top: 1px solid;
    border-bottom: 1px solid;
  }
  #btnAdminAg {
    border-top: 1px solid;
    border-bottom: 1px solid;
  }
  #btnMenu.hoverByFirstElement {
    background: linear-gradient(45deg, #353b40 0%, rgb(44, 49, 53) 60%);
  }
  #btnMenu.selectedByFirstElement {
    background: linear-gradient(45deg, #353b40 0%, rgb(44, 49, 53) 60%);
  }
  #profile.selectedByFirstElement {
    background: linear-gradient(0deg, #353b40 0%, rgb(44, 49, 53) 100%);
  }
  #profile.hoverByFirstElement {
    background: linear-gradient(0deg, #353b40 0%, rgb(44, 49, 53) 100%);
  }
}
#profile:active {
  background: rgb(30, 34, 37) !important;
}

#warning {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 10000000000000000;
  background-color: rgb(28, 31, 34);
}

#requestNotificationPermission {
  position: fixed;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  background-color: rgb(44, 49, 53);
  padding: 30px;
  padding-left: 40px;
  padding-right: 40px;
  border-radius: 20px;
  border: 2px solid white;
  color: white;
}

#ja {
  grid-area: 2/1/3/2;
  color: white;
  background-color: green;
  border-radius: 10px;
}

#nein {
  grid-area: 2/2/3/3;
  color: white;
  background-color: red;
  border-radius: 10px;
}

#ja:hover {
  background-color: lightgreen;
}

#ja:active {
  background-color: darkgreen;
}

#nein:hover {
  background-color: rgb(255, 87, 87);
}

#nein:active {
  background-color: darkred;
}

#q {
  grid-area: 1/1/2/3;
  /* text-align: center;
  width: 100%;
  height: 100%; */
}

#profileMenu[show=true] {
  --tip-ofset-x: 0px;
  --tip-height: 30px;
  --tip-width: 40px;
  --width-of-profile: 40px;
  --height-of-profile: 40px;
  --menu-offset-x: -5px;
  animation: foldOut 150ms linear 0ms 1;
  display: grid !important;
  position: fixed;
  padding: 30px;
  padding-right: 0px;
  padding-left: 0px;
  width: 200px;
  height: auto;
  font-size: 20px;
  top: calc(var(--top) + var(--tip-height) + 10px + var(--height-of-profile) / 2 + var(--menu-offset-x));
  left: calc(var(--left));
  background-color: rgb(90, 90, 90);
  border-radius: 10px;
  z-index: 19;
}

@keyframes foldOut {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}
#profileMenu::before {
  position: absolute;
  top: 10px;
  left: calc(0px + var(--tip-ofset-x));
  transform: translateY(-100%);
  content: " ";
  border-top: 0px solid rgb(90, 90, 90);
  border-bottom: var(--tip-height) solid rgb(90, 90, 90);
  border-left: calc(var(--tip-width) / 2) solid transparent;
  border-right: calc(var(--tip-width) / 2) solid transparent;
}

#profileMenu[show=true] button {
  font-size: inherit;
  margin-top: 0px;
  background-color: rgb(90, 90, 90);
}

#profileMenu[show=true] button:hover {
  font-size: inherit;
  margin-top: 0px;
  background-color: rgb(134, 134, 134);
}

#profileMenu[show=true] button:active {
  font-size: inherit;
  margin-top: 0px;
  background-color: rgb(65, 65, 65);
}

#profileMenu[show=false], #profileMenu {
  display: none;
}/*# sourceMappingURL=main.css.map */