/* src/styles.scss */
body {
  font-style: normal;
  font-family:
    -apple-system,
    system-ui,
    "Segoe UI",
    "Liberation Sans",
    sans-serif;
  font-size: 1.1em;
}
code {
  font-family:
    source-code-pro,
    Menlo,
    Monaco,
    Consolas,
    "Courier New",
    monospace;
}
.main-title {
  font-family: "Chalkboard SE", serif;
  font-size: 2em;
  padding: 5px 5px 5px 5px;
  font-weight: bold;
  color: #694681;
  font-variant-caps: petite-caps;
}
.content {
  text-align: center;
  height: 700px;
  display: flex;
  justify-content: center;
  align-items: center;
}
hr.dashed-line {
  border: 1px dashed darkorange;
}
hr.buttons-section {
  border: 1px dashed darkblue;
}
.topbar {
  width: 100%;
  height: 25px;
  border-bottom: 1px dashed darkorange;
  display: flex;
  justify-content: space-between;
}
.topbar .section {
  padding-left: 10px;
  padding-right: 10px;
  font-size: 0.9em;
  border-left: 1px darkorange dashed;
}
a {
  text-decoration: none;
}
.topbar .right {
  justify-self: self-end;
  border-right: 1px darkorange dashed;
}
input[type=text],
input[type=password],
input[type=date] {
  padding: 5px;
  font-family: inherit;
  font-size: inherit;
  border: 1px #7aa5be solid;
  margin: 5px 0 5px 5px;
  border-radius: 8px;
}
input[readonly] {
  background-color: #dfe5ef;
  border: 0;
}
label {
  font-size: 1em;
  padding-top: 5px;
  padding-bottom: 5px;
  font-weight: normal;
  text-align: right;
  width: 120px;
  display: inline-block;
}
.small75 {
  font-size: 0.75em;
}
.input-control {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px;
  align-items: center;
}
.input-control label {
  text-align: right;
  white-space: nowrap;
}
.input-control input,
.input-control .help-block {
  grid-column: 2;
}
.input-control input {
  margin-bottom: 3px;
}
.input-control .help-block {
  color: red;
  font-size: 0.8em;
  text-align: left;
  margin-left: 10px;
}
.recharge-options,
.groupped {
  border: 1px dashed;
  margin: 10px;
  padding: 10px;
}
.recharge-options .title,
.groupped .title {
  text-align: center;
  padding-bottom: 10px;
  margin-bottom: 0;
  border-bottom: 1px dashed #91aabd;
}
.grid-wrapper {
  grid-gap: 1px;
  display: grid;
  padding-top: 10px;
  grid-template-columns: auto auto 150px;
  grid-template-rows: 50px auto;
}
.event-wrapper {
  grid-gap: 1px;
  display: grid;
  padding-top: 10px;
  grid-template-columns: auto auto auto auto auto auto;
  grid-template-rows: 50px auto;
}
.grid-wrapper div,
.event-wrapper div {
  padding: 5px;
  outline: 1px solid;
}
.grid-wrapper div.header,
.event-wrapper div.header {
  background-color: #97c3de;
  font-weight: bold;
}
.onerow {
  display: flex;
  justify-content: start;
  flex-direction: row-reverse;
  padding-top: 10px;
}
.onerow label {
  width: auto;
  text-align: left;
  padding-top: 1px;
  padding-left: 10px;
  color: #d33838;
}
form input[type=checkbox] {
  appearance: none;
  font: inherit;
  color: currentColor;
  width: 1.15em;
  height: 1.15em;
  border: 0.15em solid #d33838;
  border-radius: 0.15em;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
}
form input[type=checkbox]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em #4ebd4e;
}
form input[type=checkbox]:checked::before {
  transform: scale(1);
}
.content {
  margin-top: 20px;
  height: auto;
}
.form-recharge {
  outline: dashed 1px black;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 5px;
  padding-right: 5px;
  background-color: aliceblue;
  width: 700px;
}
form input {
  width: 400px;
}
label-w200 {
  width: 200px;
}
.description {
  justify-content: start;
  text-align: start;
  width: 94%;
  margin: 10px 10px 10px 10px;
  padding: 10px 10px 10px 10px;
  border: 1px dashed #694681;
}
.description .header {
  justify-items: start;
  font-weight: bold;
  font-size: 1.1em;
  color: #694681;
}
.description .body {
  color: #694681;
  text-align: start;
  justify-items: start;
}
.description .body ul {
  margin-top: 0;
}
.buttons {
  margin: 20px 10px 5px 10px;
  display: flex;
  justify-content: space-evenly;
}
.buttons button {
  background-color: #694681;
  border: 1px solid transparent;
  border-radius: 10px;
  box-shadow: rgba(255, 255, 255, 0.4) 0 1px 0 0 inset;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family:
    -apple-system,
    system-ui,
    "Segoe UI",
    "Liberation Sans",
    sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.15385;
  margin: 0;
  outline: none;
  padding: 8px 0.8em;
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: baseline;
  white-space: nowrap;
}
.buttons button[type=reset] {
  border-radius: 3px;
  background-color: #7aa5be;
}
.buttons button[type=submit] {
  border-radius: 3px;
  background-color: #0095ff;
}
.buttons button[type=submit][disabled] {
  border-radius: 3px;
  cursor: default;
  background-color: #d5d9de;
}
.buttons button.selected button:hover {
  background-color: #65a434;
  border: 3px solid #39591d;
  border-radius: 15px;
}
.buttons button:hover,
.buttons button:focus {
  background-color: #07c;
  box-shadow: 0 0 0 4px rgba(0, 149, 255, 0.5);
}
.buttons button[type=reset]:hover,
.buttons button[type=reset]:focus {
  background-color: #527e93;
}
.buttons button:active {
  background-color: #0064bd;
  box-shadow: none;
}

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