html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px; /* Margin bottom by footer height */
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px; /* Set the fixed height of the footer here */
  line-height: 60px; /* Vertically center the text there */
  background-color: #f5f5f5;
}

.gsi-material-button {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -webkit-appearance: none;
  background-color: WHITE;
  background-image: none;
  border: 1px solid #747775;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #1f1f1f;
  cursor: pointer;
  font-family: "Roboto", arial, sans-serif;
  font-size: 14px;
  height: 40px;
  letter-spacing: 0.25px;
  outline: none;
  overflow: hidden;
  padding: 0 12px;
  position: relative;
  text-align: center;
  -webkit-transition: background-color 0.218s, border-color 0.218s, box-shadow 0.218s;
  transition: background-color 0.218s, border-color 0.218s, box-shadow 0.218s;
  vertical-align: middle;
  white-space: nowrap;
  width: auto;
  max-width: 400px;
  min-width: min-content;
}

.gsi-material-button .gsi-material-button-icon {
  height: 20px;
  margin-right: 12px;
  min-width: 20px;
  width: 20px;
}

.gsi-material-button .gsi-material-button-content-wrapper {
  -webkit-align-items: center;
  align-items: center;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  height: 100%;
  justify-content: space-between;
  position: relative;
  width: 100%;
}

.gsi-material-button .gsi-material-button-contents {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  font-family: "Roboto", arial, sans-serif;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
}

.gsi-material-button .gsi-material-button-state {
  -webkit-transition: opacity 0.218s;
  transition: opacity 0.218s;
  bottom: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.gsi-material-button:disabled {
  cursor: default;
  background-color: rgba(255, 255, 255, 0.3803921569);
  border-color: rgba(31, 31, 31, 0.1215686275);
}

.gsi-material-button:disabled .gsi-material-button-contents {
  opacity: 38%;
}

.gsi-material-button:disabled .gsi-material-button-icon {
  opacity: 38%;
}

.gsi-material-button:not(:disabled):active .gsi-material-button-state,
.gsi-material-button:not(:disabled):focus .gsi-material-button-state {
  background-color: #303030;
  opacity: 12%;
}

.gsi-material-button:not(:disabled):hover {
  -webkit-box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
}

.gsi-material-button:not(:disabled):hover .gsi-material-button-state {
  background-color: #303030;
  opacity: 8%;
}

.grade-radio {
  appearance: none;
}
.grade-radio + label {
  --accent-color: #000;
}
.grade-radio + label::before {
  content: attr(data-grade);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 40px;
  height: 40px;
  background-color: #f4f4f4;
  border: 2px solid #757575;
  border-radius: 50%;
  color: #757575;
  font-weight: bold;
  vertical-align: middle;
  transition: all 0.3s ease;
}
.grade-radio:checked + label[data-grade="1"]:before {
  background-color: rgb(68, 206, 27);
  box-shadow: inset 0 0 0 4px #f4f4f4;
  color: #1f5d0c;
  border-color: rgb(68, 206, 27);
}
.grade-radio:checked + label[data-grade="2"]:before {
  background-color: rgb(187, 219, 68);
  box-shadow: inset 0 0 0 4px #f4f4f4;
  color: #6f861a;
  border-color: rgb(187, 219, 68);
}
.grade-radio:checked + label[data-grade="3"]:before {
  background-color: rgb(247, 227, 121);
  box-shadow: inset 0 0 0 4px #f4f4f4;
  color: #e3c10e;
  border-color: rgb(247, 227, 121);
}
.grade-radio:checked + label[data-grade="4"]:before {
  background-color: rgb(242, 161, 52);
  box-shadow: inset 0 0 0 4px #f4f4f4;
  color: #9c5e0a;
  border-color: rgb(242, 161, 52);
}
.grade-radio:checked + label[data-grade="5"]:before {
  background-color: rgb(229, 31, 31);
  box-shadow: inset 0 0 0 4px #f4f4f4;
  color: #770e0e;
  border-color: rgb(229, 31, 31);
}
.grade-radio:focus + label[data-grade="1"]:before {
  border-color: rgb(68, 206, 27);
}
.grade-radio:focus + label[data-grade="2"]:before {
  border-color: rgb(187, 219, 68);
}
.grade-radio:focus + label[data-grade="3"]:before {
  border-color: rgb(247, 227, 121);
}
.grade-radio:focus + label[data-grade="4"]:before {
  border-color: rgb(242, 161, 52);
}
.grade-radio:focus + label[data-grade="5"]:before {
  border-color: rgb(229, 31, 31);
}

/*# sourceMappingURL=app.output.css.map */
