/* Ensure the html and body elements take up full height */
html,
body,
#react-app {
  height: 100%;
}

div {
  font-family: 'Inter', Arial, sans-serif;
}

div,
body {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

.no-select {
  -webkit-user-select: none; /* Chrome/Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE10+ */

  /* Rules below may not be implemented in  browsers yet */
  -o-user-select: none;
  user-select: none;
  cursor: default;
}

.hidden {
  display: none;
}

#hamburger {
  height: 30px;
}

.sticky-banner {
  position: fixed;
  top: 0;
  width: 100%;
}

.sticky-bottom-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
}

.need-help-disabled-popup {
  position: absolute;
  width: 200px;
  top: 0px;
  right: 0px;
  background-color: #797676;
  color: white;
  border: 1px solid #ccc;
  padding: 10px;
  z-index: 1;
}

.center {
  position: absolute;
  text-align: center;
  margin-left: 0px;
  margin-right: 0px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.scrollable {
  overflow-y: auto;
  overflow-x: hidden;
}

/* Customize scrollbar appearance for WebKit browsers (like Safari and Chrome) */
.scrollable::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

.scrollable::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  border-radius: 10px;
  border: 3px solid transparent;
  background-clip: content-box;
}

.scrollable::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.test-valid {
  background-color: gray;
  border-color: gray;
}

.test-untried {
  background-color: white;
  border-color: lightgray;
  border-style: solid;
  border-width: 4px;
}

.blue {
  background-color: #33a4c6;
}

.hidden {
  display: none;
}

.work-list-item {
  position: relative;
  display: block;
  height: 45px;
  margin-bottom: 5px;
  background-color: #fff;
  border: 1px solid #337ab7;
  border-radius: 4px;
}

.work-list-item * {
  color: #337ab7;
}

.work-list-item-score {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.work-list-item:not(.unclickable-work-list-item):hover {
  background-color: rgb(220, 229, 240);
  cursor: pointer;
}

.unclickable-work-list-item {
  color: #666666;
  background-color: #dddddd;
  border-color: #666666;
}

.view-work-history {
  color: #e4e7eb;
  text-align: center;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #005a99;
  border: 1px solid #e4e7eb;
  border-radius: 4px;
  font-weight: bold;
}

.view-work-history:hover {
  color: white;
  cursor: pointer;
  background-color: #4a5c6d;
  border-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.limit-list-height {
  overflow-y: auto;
  max-height: 340px;
}

@media (max-height: 415px) {
  .limit-list-height {
    max-height: 190px;
  }
}

.homework-done-circle {
  display: 'flex';
  border-radius: 50%;
  width: 30px;
  height: 30px;
}

.level0 {
  background-color: white;
}

.level1 {
  background-color: rgb(241, 98, 99);
}

.level2 {
  background-color: rgb(232, 219, 60);
}

.level3 {
  background-color: rgb(116, 192, 81);
}

.level4 {
  background-color: rgb(35, 35, 35);
  color: rgb(192, 192, 192);
}

.level5 {
  background-color: rgb(35, 35, 35);
  color: rgb(232, 219, 60);
}

.test-locked {
  background-color: gray;
  border-color: gray;
}

.magentaback {
  background-color: magenta;
  border-color: magenta;
}

.box {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  height: 36px;
  justify-content: center;
  perspective: 1000;
  width: 36px;
  position: relative;
}

.innerBox {
  height: 24px;
  width: 24px;
  position: absolute;
  transform-origin: 50% 50%;
  transform-style: preserve-3d;
  will-change: transform;
}

.box-selected {
  border-color: #33a4c6;
  border-style: solid;
  border-width: 3px;
}

.triangle-topleft {
  width: 0;
  height: 0;
  position: absolute;
  border-top: 10px solid rgb(243, 166, 30);
  border-right: 10px solid transparent;
}

.triangle-topright {
  width: 0;
  height: 0;
  position: absolute;
  right: 0px;
  border-top: 10px solid rgb(243, 166, 30);
  border-left: 10px solid transparent;
}

.triangle-bottomleft {
  width: 0;
  height: 0;
  position: absolute;
  bottom: 0px;
  border-bottom: 10px solid rgb(243, 166, 30);
  border-right: 10px solid transparent;
}

.triangle-bottomright {
  width: 0;
  height: 0;
  position: absolute;
  right: 0px;
  bottom: 0px;
  border-bottom: 10px solid rgb(243, 166, 30);
  border-left: 10px solid transparent;
}

/* added without verification, presumably part of level up animation */
.boxShine {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  inset: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: absolute;
  transform-origin: 50% 50%;
  transform-style: preserve-3d;
}
.boxShine::before,
.boxShine::after {
  content: '';
  display: block;
  position: absolute;
  height: 100%;
  top: 0;
  transform: translateX(var(--translate-x)) skewX(-15deg);
}
.boxShine::before {
  background: rgba(255, 255, 255, 0.7);
  filter: blur(5px);
  width: 10px;
}
.boxShine::after {
  background: rgba(255, 255, 255, 0.4);
  filter: blur(2.5px);
  width: 5px;
}


/*# sourceMappingURL=student.12dbabefae6905952a8d.css.map*/