/* src/styles.scss */
.button,
form input,
.button-alert,
.button-secondary {
  padding: 0.5rem 1rem;
  border-radius: 0.4rem;
  border: 1px solId #FFC857;
  background-color: #FFC857;
  margin: 0.5rem;
  cursor: pointer;
  text-align: center;
}
.button:hover,
form input:hover,
.button-alert:hover,
.button-secondary:hover {
  border-color: rgb(167, 120, 27);
}
.button-secondary {
  background-color: #333333;
  border-color: #333333;
  color: #F3F4F6;
}
.button-secondary:hover {
  background-color: #cccccc;
  color: #333333;
}
.button-alert {
  background-color: #B22222;
  border-color: #7e0303;
  color: #F3F4F6;
}
.button-alert:hover {
  background-color: #ff9898;
}
section {
  margin-bottom: 2rem;
  padding: 1rem;
}
section hr {
  width: 100%;
}
section.bordered {
  border: 1px solId #cccccc;
  border-radius: 1rem;
}
section.inner:not(:last-child) {
  border: none;
  border-bottom: 1px solId #cccccc;
}
section section:last-child {
  margin-bottom: 0.5rem;
}
.header {
  display: flex;
  flex-direction: row;
  align-items: start;
}
.header h1,
.header .group {
  flex: 1;
}
.card,
.card-text,
.card-accent2,
.card-accent {
  border: 1px solId #ccc;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: rgba(204, 204, 204, 0.0666666667);
  max-width: 40rem;
}
.card.clickable,
.clickable.card-text,
.clickable.card-accent2,
.clickable.card-accent {
  cursor: pointer;
}
.card-accent {
  background-color: rgba(255, 200, 87, 0.2);
  border-color: #FFC857;
}
.card-accent h2 {
  color: #FFC857 !important;
}
.card-accent.clickable:hover {
  background-color: rgba(255, 200, 87, 0.5);
  border-color: rgb(167, 120, 27);
}
.card-accent2 {
  background-color: rgba(178, 34, 34, 0.2);
  border-color: #B22222;
}
.card-accent2 h2 {
  color: #B22222 !important;
}
.card-accent2.clickable:hover {
  background-color: rgba(178, 34, 34, 0.5);
  border-color: #7e0303;
}
.card-text {
  background-color: rgba(51, 51, 51, 0.2);
  border-color: #333333;
}
.card-text h2 {
  color: #333333 !important;
}
.card-text.clickable:hover {
  background-color: rgba(19, 19, 19, 0.5);
  border-color: #131313;
}
form {
  display: flex;
  flex-direction: column;
}
form input {
  text-align: left;
}
form input[type=button] {
  text-align: center;
}
form input:not([type=button]) {
  background-color: rgb(253, 228, 178);
}
form section {
  padding: 0.5rem;
  border: 1px solId #ccc;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}
form .form-input {
  margin-bottom: 0.5rem;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
form .form-input.fixed-label {
  align-items: baseline;
}
form .form-input label {
  width: 7rem;
}
form .form-input .note {
  font-size: 0.8rem;
  color: rgb(167, 120, 27);
  width: 100%;
}
.class-level-tags {
  display: flex;
  flex-direction: column;
  padding: 0.4rem 0.1rem !important;
}
.class-level-tags h4 {
  display: flex;
  margin-bottom: 0.1rem;
}
.class-level-tags .tags {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin-left: 0.1rem;
}
.class-level-tags .tags li {
  border: 1px solId #B22222;
  background-color: rgba(178, 34, 34, 0.1);
  padding: 0.1rem 0.2rem;
  font-size: 0.8rem;
  margin: 0 0.1rem 0.1rem 0 !important;
}
.tag {
  padding: 0 0.1rem;
  margin-left: 0.2rem;
  display: inline-flex;
}
.tag.green {
  border: 1px solId #39771c;
  background-color: #77fd38;
}
.tag.green-light {
  border: 1px solId #77fd38;
  background-color: #d4fac2;
}
.tag.red {
  border: 1px solId #7e0303;
  background-color: #B22222;
  color: #F3F4F6;
}
.tag.red-light {
  border: 1px solId #B22222;
  background-color: #ff9898;
}
.tag.blue {
  border: 1px solId #030f7e;
  background-color: #223cb2;
  color: #F3F4F6;
}
.tag.blue-light {
  border: 1px solId #223cb2;
  background-color: #989aff;
}
.teacher-tag {
  margin-top: 1rem;
}
.teacher-tag .name {
  border: 1px solId #131313;
  padding: 0 0.1rem;
  background-color: #131313;
  color: #F3F4F6;
  margin-left: 0.2rem;
}
.account-type-tag {
  margin-top: 1rem;
}
.account-type-tag .name {
  border: 1px solId #39771c;
  padding: 0 0.1rem;
  background-color: #77fd38;
  color: #F3F4F6;
  margin-left: 0.2rem;
}
.squareSpinner {
  animation: squareSpinnerRotate 1s infinite;
  height: 50px;
  width: 50px;
}
.squareSpinner:before,
.squareSpinner:after {
  content: "";
  display: block;
  height: 20px;
  width: 20px;
}
.squareSpinner:before {
  animation: squareSpinnerBox1 1s infinite;
  background-color: #fff;
  box-shadow: 30px 0 0 #333333;
  margin-bottom: 10px;
}
.squareSpinner:after {
  animation: squareSpinnerBox2 1s infinite;
  background-color: #333333;
  box-shadow: 30px 0 0 #fff;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg) scale(0.8);
  }
  50% {
    transform: rotate(360deg) scale(1.2);
  }
  100% {
    transform: rotate(720deg) scale(0.8);
  }
}
@keyframes squareSpinnerBox1 {
  0% {
    box-shadow: 30px 0 0 #333333;
  }
  50% {
    box-shadow: 0 0 0 #333333;
    margin-bottom: 0;
    transform: translate(15px, 15px);
  }
  100% {
    box-shadow: 30px 0 0 #333333;
    margin-bottom: 10px;
  }
}
@keyframes squareSpinnerBox2 {
  0% {
    box-shadow: 30px 0 0 #fff;
  }
  50% {
    box-shadow: 0 0 0 #fff;
    margin-top: -20px;
    transform: translate(15px, 15px);
  }
  100% {
    box-shadow: 30px 0 0 #fff;
    margin-top: 0;
  }
}
.squareBounce {
  position: relative;
  width: 164px;
  height: 164px;
}
.squareBounce::before,
.squareBounce::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: #fff;
  left: 50%;
  top: 50%;
  animation: squareBounceRotate 1s ease-in infinite;
}
.squareBounce::after {
  width: 20px;
  height: 20px;
  background-color: #333333;
  animation: squareBounceRotate 1s ease-in infinite, squareBounceMoveY 1s ease-in infinite;
}
@keyframes squareBounceMoveY {
  0%, 100% {
    top: 10%;
  }
  45%, 55% {
    top: 59%;
  }
  60% {
    top: 40%;
  }
}
@keyframes squareBounceRotate {
  0% {
    transform: translate(-50%, -100%) rotate(0deg) scale(1, 1);
  }
  25% {
    transform: translate(-50%, 0%) rotate(180deg) scale(1, 1);
  }
  45%, 55% {
    transform: translate(-50%, 100%) rotate(180deg) scale(3, 0.5);
  }
  60% {
    transform: translate(-50%, 100%) rotate(180deg) scale(1, 1);
  }
  75% {
    transform: translate(-50%, 0%) rotate(270deg) scale(1, 1);
  }
  100% {
    transform: translate(-50%, -100%) rotate(360deg) scale(1, 1);
  }
}
body {
  margin: 0;
  font-family: "Lato";
  font-weight: 700;
  background-color: #F3F4F6;
  color: #333333;
  font-size: 1rem;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: "Montserrat";
  font-weight: 700;
  font-size: 3rem;
  margin-top: 0;
  margin-bottom: 1rem;
}
h2,
h3,
h4,
h5 {
  font-weight: 600;
  font-size: 2.25rem;
}
h2,
h3,
h4,
h5 {
  font-size: 2.25rem;
}
h3 {
  font-size: 1.25rem;
}
h4,
h5 {
  font-size: 0.75rem;
}
.link {
  cursor: pointer;
  text-decoration: underline;
}
table {
  text-align: left;
  border-spacing: 0;
}
table tr {
  margin-bottom: 0.5rem;
}
table tr:nth-child(odd) {
  background-color: rgba(204, 204, 204, 0.2);
}
table th {
  padding: 0.5rem 0.2rem;
  border-right: 1px solId #c4c4c4;
}
table th:first-child {
  border-left: 1px solId #c4c4c4;
}
table td {
  padding: 0.5rem 0.2rem;
  border-right: 1px solId #c4c4c4;
}
table td:first-child {
  border-left: 1px solId #c4c4c4;
}
table .tools {
  text-align: center;
}
table .tools fa-icon {
  cursor: pointer;
  margin-right: 0.5rem;
}
table .tools fa-icon:last-child {
  margin-right: 0;
}
table .empty-table-td {
  text-align: center;
  padding: 2rem;
}
table .loading-table-td {
  text-align: center;
  padding: 2rem;
}
table .loading-table-td .spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
table .loading-table-td .spinner div {
  margin-bottom: 1rem;
}
.data-key-pair {
  display: flex;
  margin-bottom: 0.5rem;
}
.data-key-pair > span {
  width: 10rem;
}
.data-key-pair > img {
  max-width: 5rem;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
