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;
}

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

#homeworkList {
  width: 100%;
  height: auto;
  color: white;
}

.fachSelect {
  background-color: rgb(44, 49, 53);
  color: white;
  border: none;
  width: calc(100% - 30px);
  float: left;
  height: 50px;
  outline: none;
  border-radius: 10px;
  font-size: 20px;
}

.fachSelect:disabled {
  opacity: 0.4;
}

.aufgabenField {
  width: calc(100% - 30px);
  float: left;
  height: 50px;
  float: left;
  border-radius: 10px;
  background-color: rgb(44, 49, 53);
  color: white;
  border: none;
  outline: none;
  font-size: 16px;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

.aufgabenField:disabled {
  opacity: 0.4;
}

.bisWannField[value=Mo],
.bisWannField[value=Di],
.bisWannField[value=Mi],
.bisWannField[value=Do],
.bisWannField[value=Fr],
.bisWannField[value=Sa],
.bisWannField[value=So] {
  font-size: 30px;
}

.bisWannField[value=Motag],
.bisWannField[value=Dienstag],
.bisWannField[value=Mittwoch],
.bisWannField[value=Donnerstag],
.bisWannField[value=Freitag],
.bisWannField[value=Samstag],
.bisWannField[value=Sonntag] {
  font-size: 17px;
}

.bisWannField[value*="1"],
.bisWannField[value*="2"],
.bisWannField[value*="3"],
.bisWannField[value*="4"],
.bisWannField[value*="5"],
.bisWannField[value*="6"],
.bisWannField[value*="7"],
.bisWannField[value*="8"],
.bisWannField[value*="9"],
.bisWannField[value*="0"],
.bisWannField[value*="/"] {
  font-size: 17px;
}

.bisWannField {
  width: 100%;
  height: 50px;
  border-radius: 10px;
}

.bisWannField:disabled {
  opacity: 0.4;
}

.erledigtField {
  border-radius: 10px;
}

#fach {
  width: 15%;
}

#aufgaben {
  width: 74%;
}

#bisWann {
  width: 6%;
}

#erledigt {
  width: 5%;
}

.archiveRow {
  width: 100%;
  height: 100%;
}

.archiveButton {
  width: 40px;
  height: 40px;
}

.homeworkRow {
  height: 70px;
  border-top: 2px solid rgb(62, 70, 75);
  border-bottom: 2px solid rgb(62, 70, 75);
}

.erledigtRow {
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*Input Checkbox*/
/* The erledigtField */
.erledigtField {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.erledigtField input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: rgb(44, 49, 53);
}

.erledigtField input:disabled ~ .checkmark {
  opacity: 0.4;
}

/* On mouse-over, add a grey background color */
.erledigtField:hover input ~ .checkmark {
  background-color: rgb(62, 70, 75);
}

/* When the checkbox is checked, add a blue background */
.erledigtField input:checked ~ .checkmark {
  background-color: green;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.erledigtField input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.erledigtField .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

#homeworkDateEditor {
  position: fixed;
  display: none;
  width: 200px;
  height: 60px;
  background-color: rgb(44, 49, 53);
}

#homeworkDateEditor::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  left: auto;
  right: -18px;
  border-width: 10px 0 10px 20px;
  border-color: transparent transparent transparent rgb(44, 49, 53);
  transform: translateY(50%);
}

#homeworkDateEditorButtonDiv {
  position: sticky;
  top: 0px;
  left: 0px;
}

#homeworkDateEditorButtonDiv button {
  width: 50%;
  height: 20px;
}

#date {
  float: left;
}

#day {
  float: right;
}

#dayDiv {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 2px;
  /* height: 25px; */
}

#dayDiv select {
  width: 100%;
  font-size: 20px;
  color: white;
}

#dateDiv {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 2px;
}

#dateDiv input {
  width: 95%;
  height: auto;
  background-color: rgb(44, 49, 53);
  border: none;
  color: white;
  font-size: 20px;
}

#dateDiv input:focus {
  border: none;
  outline: none;
  transform: none;
  width: 190px;
  height: auto;
  background-color: rgb(44, 49, 53);
}

#close {
  position: absolute;
  top: 0px;
  right: 0px;
}

#addHomework {
  width: 50px !important;
  height: 50px !important;
  font-size: 30px;
  border-radius: 100%;
  border: 1px solid dimgray;
  padding: 0px;
  margin: 0px;
}

#menu {
  width: 50px !important;
  height: 50px !important;
  position: fixed;
  bottom: 40px;
  right: 10px;
  /* border: 1px solid black; */
}

#homeworkList thead th {
  cursor: pointer;
}

.loeschenButton {
  position: relative;
  align-self: center;
  justify-self: center;
  color: red;
  width: auto;
  height: auto;
  font-size: 55px;
  background: rgb(28, 31, 34);
}

.loeschenButton:hover {
  background-color: rgb(28, 31, 34) !important;
  color: rgb(255, 96, 96) !important;
}

.loeschenButton:active {
  background-color: rgb(28, 31, 34) !important;
  color: darkred !important;
}

.deleteRow {
  display: grid;
  width: 100%;
  height: 100%;
}

#requestToDelete {
  display: grid;
  width: auto;
  height: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-color: rgba(150, 0, 0, 0.4);
  padding: 20px;
}

#buttonPane {
  position: relative;
  bottom: 0px;
  right: 0px;
  width: auto;
  height: auto;
  display: flex;
  align-self: end;
  justify-content: end;
}

#buttonPane button {
  width: 200px;
  height: auto;
  font-size: 20px;
}

#requestToDelete[popup] {
  animation: 20ms popupDeleteDialog ease-in-out;
}

#requestToDelete[popdown] {
  animation: 20ms popdownDeleteDialog ease-in-out;
}

@keyframes popupDeleteDialog {
  from {
    transform: scale(0) translate(-50%, -50%);
  }
  to {
    transform: scale(1) translate(-50%, -50%);
  }
}
@keyframes popdownDeleteDialog {
  from {
    transform: scale(1) translate(-50%, -50%);
  }
  to {
    transform: scale(0) translate(-50%, -50%);
  }
}/*# sourceMappingURL=HomeworkRowMain.css.map */