@charset "UTF-8";
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-Regular.woff2") format("woff2"), url("../fonts/OpenSans-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-Bold.woff2") format("woff2"), url("../fonts/OpenSans-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background: #1C3660;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: #1C3660;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 20px;
  padding: 0;
}

h1 {
  font-size: 32px;
  font-weight: bold;
}

h2 {
  font-size: 24px;
  font-weight: bold;
}

h3 {
  font-size: 20px;
  font-weight: bold;
}

.hidden {
  display: none !important;
}

.button {
  cursor: pointer;
}
.button.disabled {
  pointer-events: none;
}

a.button {
  display: inline-block;
  background: #1C3660;
  color: #fff;
  border: 1px solid #cecece;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  padding: 5px 10px;
  border-radius: 3px;
}
a.button .material-symbols-outlined {
  vertical-align: middle;
  position: relative;
  top: -2px;
}

.centerPage {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30vw;
  text-align: center;
}
.centerPage img#logo {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 20px;
  display: block;
}
.centerPage .container {
  width: 100%;
  padding: 20px;
  border: 1px solid #cecece;
  border-radius: 10px;
  text-align: center;
  background: #fff;
  color: #1C3660;
}

section#content {
  padding: 40px 0 0 340px;
  width: calc(100vw - 40px);
}
@media screen and (max-width: 1500px) {
  section#content {
    padding: 70px 0 0 340px;
    width: calc(100vw - 40px);
  }
}
@media screen and (max-width: 1024px) {
  section#content {
    padding: 80px 0 0 10px;
    width: calc(100vw - 10px);
  }
}
section#content.notfound {
  width: 100vw;
  height: 100vh;
  padding: 0;
}
section#content.notfound .container {
  position: absolute;
  top: 50%;
  left: calc(50% + 150px);
  transform: translate(-50%, -50%);
  text-align: center;
  width: 600px;
}

aside.container {
  background: #fff;
  color: #1C3660;
  padding: 20px;
  border-radius: 10px;
  margin: 0 0 20px;
}
aside.container:last-of-type, aside.container p:last-of-type {
  margin: 0;
}

#overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
}

.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  background: #fff;
  z-index: 9999;
  color: #1C3660;
  padding: 20px;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .popup {
    width: 95vw;
  }
}
.popup a {
  color: #1C3660;
}
.popup.relative {
  position: absolute;
  top: 20px;
  transform: translateX(-50%);
}
.popup .close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 30px;
  line-height: 30px;
  cursor: pointer;
}
.popup.active {
  display: block;
}
.popup a.button, .popup input[type=submit], .popup button {
  background: #1C3660;
  color: #fff;
}

.text-right {
  text-align: right;
}

.margin-bottom {
  margin-bottom: 20px !important;
}

.popup.active, #overlay.active {
  display: block;
}

section#sidebar {
  width: 300px;
  min-height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  background: #fff;
  transition: width 0.5s ease-in-out;
  border-right: 1px solid #1C3660;
  overflow: hidden;
  z-index: 20;
}
section#sidebar img#logo {
  max-width: 240px;
  margin: 30px 30px 0 30px;
}
section#sidebar img#logoSmall {
  display: none;
  max-height: 40px;
  margin: 30px 10px 0 10px;
}
section#sidebar #menuToggle {
  display: none !important;
  font-size: 40px;
  display: block;
  text-align: center;
  margin: 10px 0 0 0;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  section#sidebar #menuToggle {
    display: block !important;
    position: absolute;
    top: 20px;
    right: 10px;
    margin: 0;
  }
}
section#sidebar nav#dashboardNavigation ul {
  list-style-type: none;
  padding: 0;
  margin: 10px 0 0 0;
  font-size: 20px;
  border-top: 1px solid #1C3660;
}
section#sidebar nav#dashboardNavigation ul li {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #1C3660;
}
section#sidebar nav#dashboardNavigation ul li a {
  padding: 10px 30px;
}
section#sidebar nav#dashboardNavigation ul li span.material-symbols-outlined {
  vertical-align: middle;
  margin-right: 10px;
  font-size: 32px;
  position: relative;
  top: -2px;
}
section#sidebar nav#dashboardNavigation ul li .textLabel {
  display: inline-block;
}
section#sidebar nav#dashboardNavigation ul li ul {
  margin: 0;
  max-height: 0;
  padding: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
  font-size: 14px;
  border-top: 0;
}
section#sidebar nav#dashboardNavigation ul li ul li {
  border-bottom: 0;
}
section#sidebar nav#dashboardNavigation ul li ul li a {
  padding: 0 30px 10px 80px;
}
section#sidebar nav#dashboardNavigation ul li ul li:last-of-type {
  border-bottom: 0;
}
section#sidebar nav#dashboardNavigation ul li ul.active {
  max-height: 500px;
}
section#sidebar aside#user {
  position: absolute;
  bottom: 30px;
  left: 0;
}
section#sidebar aside#user span#userIcon {
  position: absolute;
  bottom: 0;
  left: 50px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  overflow: hidden;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #1C3660;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  section#sidebar aside#user span#userIcon {
    left: 30px;
    width: 40px;
    height: 40px;
    font-size: 14px;
    line-height: 40px;
    background: #fff;
    color: #1C3660;
    position: fixed;
    bottom: 10px;
  }
}
section#sidebar aside#user nav#userMenu {
  opacity: 0;
  margin: 0;
  pointer-events: none;
  transition: opacity 0.5s ease-in-out;
  position: absolute;
  bottom: 0;
  left: 80px;
}
@media screen and (max-width: 1024px) {
  section#sidebar aside#user nav#userMenu {
    position: fixed;
    bottom: 10px;
    left: 60px;
  }
}
section#sidebar aside#user nav#userMenu ul {
  background: #fff;
  list-style-type: none;
  padding: 0;
  margin: 0;
  border: 1px solid #888;
  border-radius: 3px;
}
section#sidebar aside#user nav#userMenu li {
  border-bottom: 1px solid #888;
}
section#sidebar aside#user nav#userMenu li a {
  padding: 5px 30px;
  color: #888;
}
section#sidebar aside#user nav#userMenu li:last-of-type {
  border-bottom: 0;
}
section#sidebar aside#user.active nav#userMenu {
  opacity: 1;
  pointer-events: auto;
}
section#sidebar li a {
  color: #1C3660;
  font-weight: bold;
  display: block;
}
@media screen and (max-width: 1024px) {
  section#sidebar {
    width: 100%;
    height: 70px;
    background: transparent;
    border-right: 0;
    color: #fff;
    z-index: 9999;
    position: absolute;
    overflow: auto;
    min-height: auto;
  }
  section#sidebar img#logo {
    display: none;
  }
  section#sidebar img#logoSmall {
    display: block;
  }
}
@media screen and (max-width: 1024px) and (max-width: 1024px) {
  section#sidebar img#logoSmall {
    margin: 20px 0 0 10px;
  }
}
@media screen and (max-width: 1024px) {
  section#sidebar nav#dashboardNavigation ul {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
  }
  section#sidebar nav#dashboardNavigation ul li ul {
    position: relative;
    top: 0;
  }
  section#sidebar nav#dashboardNavigation.active ul {
    display: block;
  }
}

.overview table {
  width: 100%;
  border-collapse: collapse;
  padding: 0;
  margin: 0;
}
.overview table th, .overview table td {
  text-align: left;
  padding: 5px 2px;
  border-bottom: 1px solid #7392c5;
}
.overview table td.actions {
  text-align: right;
}
.overview table td.actions span {
  margin: 0 5px 0 0;
}
.overview table td.actions span:last-of-type {
  margin: 0;
}

.flex-wrapper {
  display: flex;
  gap: 10px;
  margin: 0 0 20px;
  align-items: center;
}
.flex-wrapper.item-row {
  margin: 0 0 10px;
}
.flex-wrapper .form-group {
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
}
.flex-wrapper .form-group.flex-grow-2 {
  flex-grow: 1.5;
}

@media screen and (max-width: 1200px) {
  .centerPage {
    width: 90vw;
  }
  .nonMobile {
    display: none;
  }
}
@media screen and (max-width: 900px) {
  .flex-wrapper {
    display: block;
  }
}
.form-group {
  display: block;
  margin: 0 0 20px;
}

.form-group:last-of-type {
  margin: 0;
}

input[type=text], input[type=email], input[type=password], input[type=date], input[type=number], select {
  display: block;
  border: 1px solid #1C3660;
  color: #1C3660;
  background: #fff;
  border-radius: 3px;
  padding: 3px;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  margin: 5px 0;
  width: 100%;
}

input[type=file] {
  display: block;
  border: 1px solid #1C3660;
  color: #1C3660;
  background: #fff;
  border-radius: 3px;
  padding: 3px;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  margin: 5px 0;
  width: 100%;
}

input[type=submit] {
  background: #1C3660;
  color: #fff;
  border: 1px solid #cecece;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  padding: 5px 20px;
  border-radius: 10px;
}

textarea {
  display: block;
  border: 1px solid #1C3660;
  color: #1C3660;
  background: #fff;
  border-radius: 3px;
  padding: 3px;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  margin: 5px 0;
  width: 100%;
  field-sizing: content;
}

.alert {
  padding: 10px;
  border-radius: 3px;
  margin: 10px 0;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.2);
}
.alert.success {
  border: 1px solid #2f8612;
}
.alert.error {
  border: 1px solid #b31515;
}
.alert.marginTop {
  margin-top: 10px;
}
.alert a {
  text-decoration: underline;
}

.checkbox-wrapper {
  display: inline-block;
  margin: 0;
}

.checkbox-wrapper .check {
  --size: 32px;
  position: relative;
  background: linear-gradient(90deg, #7392c5, #1C3660);
  line-height: 0;
  perspective: 400px;
  font-size: var(--size);
}

.checkbox-wrapper .check input[type=checkbox],
.checkbox-wrapper .check label,
.checkbox-wrapper .check label::before,
.checkbox-wrapper .check label::after,
.checkbox-wrapper .check {
  appearance: none;
  display: inline-block;
  border-radius: var(--size);
  border: 0;
  transition: 0.35s ease-in-out;
  box-sizing: border-box;
  cursor: pointer;
}

.checkbox-wrapper .check label {
  width: calc(2.2 * var(--size));
  height: var(--size);
  background: #d7d7d7;
  overflow: hidden;
}

.checkbox-wrapper .check input[type=checkbox] {
  position: absolute;
  z-index: 1;
  width: calc(0.8 * var(--size));
  height: calc(0.8 * var(--size));
  top: calc(0.1 * var(--size));
  left: calc(0.1 * var(--size));
  background: linear-gradient(45deg, #dedede, #ffffff);
  box-shadow: 0 6px 7px rgba(0, 0, 0, 0.3);
  outline: none;
  margin: 0;
}

.checkbox-wrapper .check input[type=checkbox]:checked {
  left: calc(1.3 * var(--size));
}

.checkbox-wrapper .check input[type=checkbox]:checked + label {
  background: transparent;
}

.checkbox-wrapper .check label::before,
.checkbox-wrapper .check label::after {
  content: "· ·";
  position: absolute;
  overflow: hidden;
  left: calc(0.15 * var(--size));
  top: calc(0.5 * var(--size));
  height: var(--size);
  letter-spacing: calc(-0.04 * var(--size));
  color: #9b9b9b;
  font-family: "Times New Roman", serif;
  z-index: 2;
  font-size: calc(0.6 * var(--size));
  border-radius: 0;
  transform-origin: 0 0 calc(-0.5 * var(--size));
  backface-visibility: hidden;
}

.checkbox-wrapper .check label::after {
  content: "●";
  top: calc(0.65 * var(--size));
  left: calc(0.2 * var(--size));
  height: calc(0.1 * var(--size));
  width: calc(0.35 * var(--size));
  font-size: calc(0.2 * var(--size));
  transform-origin: 0 0 calc(-0.4 * var(--size));
}

.checkbox-wrapper .check input[type=checkbox]:checked + label::before,
.checkbox-wrapper .check input[type=checkbox]:checked + label::after {
  left: calc(1.55 * var(--size));
  top: calc(0.4 * var(--size));
  line-height: calc(0.1 * var(--size));
  transform: rotateY(360deg);
}

.checkbox-wrapper .check input[type=checkbox]:checked + label::after {
  height: calc(0.16 * var(--size));
  top: calc(0.55 * var(--size));
  left: calc(1.6 * var(--size));
  font-size: calc(0.6 * var(--size));
  line-height: 0;
}

.tasks ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.tasks ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #7392c5;
}
.tasks ul li:last-of-type {
  border-bottom: 0;
}

.button.add-row {
  display: block;
  margin: 0 auto;
  text-align: center;
}

/*# sourceMappingURL=style.css.map */
