@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500;600&family=Montserrat:wght@300;400;500;600;700&display=swap");
:root {
  --text-color: #444;
  --surface-a: #fff; }

* {
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 2px; }

html {
  height: 100%;
  background: #fff;
  font-size: 62.5%; }

body {
  background-color: transparent !important;
  font-family: 'Roboto', sans-serif;
  margin: 0;
  height: 100%;
  background-size: cover;
  background-attachment: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  position: fixed;
  font-size: 1.6em; }

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

.padded-all-1unit {
  padding: 1rem; }

.padded-all-2units {
  padding: 2rem; }

.padded-we-1unit {
  padding-left: 1rem;
  padding-right: 1rem; }

.padded-we-2units {
  padding-left: 2rem;
  padding-right: 2rem; }

.padded-ns-1unit {
  padding-top: 1rem;
  padding-bottom: 1rem; }

.padded-ns-2units {
  padding-top: 2rem;
  padding-bottom: 2rem; }

.margin-all-1unit {
  margin: 1rem; }

.margin-all-2units {
  margin: 2rem; }

.margin-we-1unit {
  margin-left: 1rem;
  margin-right: 1rem; }

.margin-we-2units {
  margin-left: 2rem;
  margin-right: 2rem; }

.margin-w-2units {
  margin-left: 2rem; }

.margin-w-4units {
  margin-left: 4rem; }

.margin-w-1unit {
  margin-left: 1rem; }

.margin-w-halfunit {
  margin-left: 0.5rem; }

.margin-ns-1unit {
  margin-top: 1rem;
  margin-bottom: 1rem; }

.margin-ns-2units {
  margin-top: 2rem;
  margin-bottom: 2rem; }

.margin-n-2units {
  margin-top: 2rem; }

.margin-s-1unit {
  margin-bottom: 1rem; }

.margin-s-2units {
  margin-bottom: 2rem; }

.full {
  width: 100%; }

.hidden {
  display: none; }

button, button.ui-corner-all, input, input.ui-corner-all, textarea, textarea.ui-corner-all, span.ui-linkbutton {
  border-radius: 0.5rem; }

button {
  font-weight: bolder; }

.bold {
  font-weight: bold; }

.ui-inputgroup-addon {
  background-color: #66b3ff;
  border-radius: 0.5rem 0 0 0.5rem;
  border-color: #66b3ff; }

.ui-inputgroup-addon i.fa {
  color: #66b3ff;
  color: white; }

.ui-widget {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem; }

.ui-growl-item-container.ui-state-highlight.ui-growl-error, .ui-growl-item-container.ui-state-highlight.ui-growl-warn {
  background: #85191b;
  border-left: 1rem solid #e5e5e5; }

.ui-growl-item-container.ui-state-highlight.ui-growl-image-info, .ui-growl-item-container.ui-state-highlight.ui-growl-info {
  background: #66b3ff;
  border-left: 1rem solid #e5e5e5; }

.ui-growl-item-container {
  border-width: 0; }
  .ui-growl-item-container .ui-growl-image {
    display: none; }
  .ui-growl-item-container .ui-growl-message {
    float: inherit;
    max-width: 100%;
    overflow: hidden;
    overflow-wrap: break-word; }

.block {
  display: block; }

.no-underline {
  text-decoration: none; }

.muted {
  color: #777; }

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

.loading-wrapper {
  position: absolute;
  display: none;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  opacity: 0;
  animation: fadein 1s; }
  .loading-wrapper.loader-show {
    display: flex;
    opacity: 1;
    animation: fade-in ease 1s; }
  .loading-wrapper .loading {
    display: flex;
    justify-content: center; }
    .loading-wrapper .loading .dot {
      position: relative;
      width: 3rem;
      height: 3rem;
      margin: 2rem;
      border-radius: 50%;
      box-shadow: 0 0 1rem #0e0e0e; }
      .loading-wrapper .loading .dot::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        background: inherit;
        border-radius: inherit;
        animation: loader-bounce 2s ease-out infinite; }
      .loading-wrapper .loading .dot:nth-child(1) {
        background: #FE66FF; }
        .loading-wrapper .loading .dot:nth-child(1)::before {
          animation-delay: 0.2s; }
      .loading-wrapper .loading .dot:nth-child(2) {
        background: #66B3FF; }
        .loading-wrapper .loading .dot:nth-child(2)::before {
          animation-delay: 0.4s; }
      .loading-wrapper .loading .dot:nth-child(3) {
        background: #FE66FF; }
        .loading-wrapper .loading .dot:nth-child(3)::before {
          animation-delay: 0.6s; }
      .loading-wrapper .loading .dot:nth-child(4) {
        background: #66B3FF; }
        .loading-wrapper .loading .dot:nth-child(4)::before {
          animation-delay: 0.8s; }
      .loading-wrapper .loading .dot:nth-child(5) {
        background: #FE66FF; }
        .loading-wrapper .loading .dot:nth-child(5)::before {
          animation-delay: 1s; }
@keyframes fade-in {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes loader-bounce {
  0% {
    background: #ffffff;
    filter: blur(0); }
  50%,
    75% {
    transform: scale(3.5); }
  100% {
    opacity: 0;
    filter: blur(4px); } }
.form-container {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap; }
  .form-container .form-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    margin-bottom: 1rem; }
    .form-container .form-row .ui-selectonemenu label {
      white-space: inherit; }
    @media (max-width: 992px) {
      .form-container .form-row {
        flex-wrap: wrap; } }
    .form-container .form-row > div:first-child {
      box-sizing: border-box;
      flex: 0 0 50%;
      display: flex;
      align-items: center;
      justify-content: right;
      text-align: right;
      padding-right: 2rem; }
      .form-container .form-row > div:first-child label {
        font-weight: bold; }
      @media (max-width: 768px) {
        .form-container .form-row > div:first-child {
          flex: 1 0 100%;
          justify-content: left; } }
    .form-container .form-row div:nth-child(2) {
      flex: 0 0 50%; }
      @media (max-width: 768px) {
        .form-container .form-row div:nth-child(2) {
          flex: 1 0 100%; } }
    @media (max-width: 768px) {
      .form-container .form-row {
        margin-bottom: 2rem; } }
    .form-container .form-row input, .form-container .form-row textarea, .form-container .form-row .ui-selectonemenu, .form-container .form-row select {
      width: 100%;
      padding: 1rem;
      box-sizing: border-box; }
    .form-container .form-row .ui-selectonemenu {
      padding: 0; }
      .form-container .form-row .ui-selectonemenu label {
        box-sizing: border-box;
        padding: 1rem 0 1rem 1rem; }

select {
  border: 1px solid #D9D9D9;
  background: #ffffff;
  border-radius: 0.5rem; }

select:hover {
  border-color: #66b3ff; }

textarea {
  box-sizing: border-box; }

.textarea-full {
  width: 100%; }

.form-buttons {
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  gap: 1rem; }
  @media (max-width: 992px) {
    .form-buttons {
      flex-wrap: wrap; } }
  .form-buttons .group-left {
    margin-right: auto;
    margin-left: 1rem; }
  .form-buttons .group-right {
    margin-right: 1rem; }
  .form-buttons .group-center {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center; }

.footer {
  margin-top: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem; }
  .footer .transparent-text {
    color: transparent; }
  .footer a {
    text-decoration: none;
    color: inherit; }
  @media (max-width: 768px) {
    .footer {
      display: none; } }
  @media (max-width: 992px) {
    .footer .owner {
      display: none; } }

.divider {
  position: relative;
  margin-top: 1rem;
  margin-bottom: 1rem;
  height: 2px; }

.divider:before {
  content: "";
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  width: 90%;
  height: 2px;
  background-image: linear-gradient(to right, transparent, #e5e5e5, transparent); }

.ui-fileupload-content {
  min-height: 100px;
  -moz-border-radius-bottomleft: 0px !important;
  -webkit-border-bottom-left-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
  -moz-border-radius-bottomright: 0px !important;
  -webkit-border-bottom-right-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
  background-image: url("../../public/images/drop.png");
  background-repeat: no-repeat; }
  .ui-fileupload-content .ui-fileupload-files {
    margin-top: 100px; }

.ui-datatable table {
  table-layout: auto !important; }
.ui-datatable .ui-datatable-header {
  text-align: left !important; }
.ui-datatable .data-search {
  display: inline-block;
  width: 90%;
  text-align: center !important; }
  .ui-datatable .data-search button {
    margin-left: 0px; }
.ui-datatable .ui-column-filter {
  max-width: 200px; }

.ui-panel.ui-widget-content {
  border-width: 1px; }

.crud-actions a {
  text-decoration: none;
  padding-left: 6px;
  padding-right: 6px; }
  .crud-actions a:first-child {
    padding-left: 0px; }

.ui-datatable .ui-widget-header {
  background: #66b3ff;
  border-color: #66b3ff; }

.ui-widget-content.ui-tabs, .ui-widget-header.ui-tabs-nav, .ui-widget-header.ui-tabs-nav {
  background: transparent; }

.ui-widget-content {
  color: #0e0e0e; }

.ui-tabs-panels {
  background: rgba(255, 255, 255, 0.8); }

.ui-tabs .ui-tabs-panels {
  border: 1px #66b3ff solid; }

.ui-tabs .ui-tabs-nav li.ui-state-active.ui-tabs-selected {
  border-width: 4px 0 1px 0;
  background: rgba(255, 255, 255, 0.8); }

.ui-tabs .ui-tabs-nav li.ui-state-default {
  border: 0 solid #66b3ff;
  border-width: 0 0 1px 0; }

.ui-tabs-header.ui-state-default {
  background: transparent; }
  .ui-tabs-header.ui-state-default.ui-state-hover a {
    color: #0e0e0e; }

.no-wrap {
  white-space: nowrap; }

.text-error {
  color: #BC1500; }

.text-warn {
  color: #CBCB65; }

.text-positive {
  color: #187B00; }

.full-width {
  width: 100%; }

.break-words {
  overflow-wrap: break-word; }

.ql-container {
  background: #ffffff; }

.centered-flew-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center; }
  .centered-flew-row div {
    flex-shrink: 1;
    flex-basis: 20%;
    min-width: 100px;
    max-width: 500px; }

.pre {
  display: block;
  font-family: monospace;
  white-space: pre-wrap;
  margin: 1em 0; }

.no-underline {
  text-decoration: none; }

.simple-flex-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 0.5rem; }

.icon-active {
  color: #449c24; }

.icon-spacer {
  width: 2rem;
  background: red; }

svg > g > g.google-visualization-tooltip {
  pointer-events: none; }

.ui-texteditor .ui-editor-toolbar {
  background: #f8f9fa; }

@keyframes grad {
  0% {
    background-position: 0% 50%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 0% 50%; } }
body {
  height: 100vh;
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: 400% 400%;
  animation: grad 60s ease infinite; }
  body:after, body:before {
    content: '';
    display: block;
    position: fixed;
    z-index: -1;
    top: 0;
    width: 100vw;
    height: 100vh;
    width: 100vmax;
    height: 100vmax;
    border-radius: 20%;
    background: rgba(0, 0, 0, 0.05);
    animation: background 300s linear infinite; }
  body:after {
    left: 15vw; }
  body:before {
    right: 15vw;
    animation-delay: -40s;
    animation-direction: reverse; }

@keyframes background {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
.page-wrapper {
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-y: scroll; }

.login-body {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 2rem;
  margin-left: 1rem;
  margin-right: 1rem; }

.logo-box {
  flex: 0 0 100%; }
  .logo-box div {
    margin-left: auto;
    margin-right: auto;
    max-width: 500px;
    width: 50%;
    min-width: 300px; }
  .logo-box img {
    width: 100%;
    filter: drop-shadow(0px 0px 5px #e5e5e5); }
    @media (max-width: 768px) {
      .logo-box img {
        display: none; } }

.login-box, .tos-box, .larger-box {
  display: block;
  background: #ffffffd0;
  border-radius: 1rem;
  flex-grow: 0;
  margin-top: 0rem;
  margin-bottom: 1rem;
  min-height: 300px;
  min-width: 250px;
  width: 40%;
  max-width: 500px;
  align-self: stretch;
  box-shadow: 0 0 0.5rem #e5e5e5;
  display: flex;
  flex-direction: column; }
  @media (max-width: 768px) {
    .login-box, .tos-box, .larger-box {
      margin-top: 2rem;
      width: 100%;
      max-width: 100%; } }
  .login-box .middle-section, .tos-box .middle-section, .larger-box .middle-section {
    flex-grow: 1; }
  .login-box .top-section, .tos-box .top-section, .larger-box .top-section {
    background: #ffffff80;
    border-radius: 1rem 1rem 0 0;
    border-bottom: 1px solid #66b3ff; }
    .login-box .top-section h2, .tos-box .top-section h2, .larger-box .top-section h2 {
      font-family: 'EB Garamond';
      text-align: center; }
  .login-box .bottom-section, .tos-box .bottom-section, .larger-box .bottom-section {
    background: #ffffff80;
    border-radius: 0 0 1rem 1rem;
    border-top: 1px solid #66b3ff;
    padding-top: 1rem;
    padding-bottom: 1.5rem; }
    .login-box .bottom-section button, .tos-box .bottom-section button, .larger-box .bottom-section button {
      display: block;
      margin: 0.5rem auto; }
    .login-box .bottom-section.multiple, .tos-box .bottom-section.multiple, .larger-box .bottom-section.multiple {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: space-around;
      align-items: center;
      gap: 1rem; }
      .login-box .bottom-section.multiple button, .tos-box .bottom-section.multiple button, .larger-box .bottom-section.multiple button {
        margin: 0.5rem; }
  .login-box input, .tos-box input, .larger-box input {
    width: 100%;
    box-sizing: border-box; }

.larger-box {
  min-width: 250px;
  width: 80%;
  max-width: 1200px; }

.box-error {
  background: #ffcacade; }

.form-field {
  margin-top: 1rem; }

.general-warn-box, .general-info-box {
  margin-top: 1rem;
  margin-bottom: 3rem; }

.general-warn-box h3 {
  color: #85191b; }

.signup h1 {
  font-size: 2rem;
  display: block;
  border-bottom: 1px solid #0e0e0e;
  margin-top: 2rem;
  margin-bottom: 2rem; }

.mobile-bar {
  display: none; }

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