body {
  padding: 0;
  margin: auto;
  font-size: 16px;
  background-color: #192D35;
  color: #F2F4F3;
  box-sizing: border-box;
}

.login {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.creds {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(34, 51, 59, 0.4);
  padding: 20px 40px 20px 40px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.8) 0px 24px 60px 0px;
  scale: 100%;
}
.creds:hover, .creds :focus, .creds :active {
  animation: scaleUp 0.3s forwards;
}
.creds:not(:hover, :focus, :active) {
  animation: scaleDown 0.3s forwards;
}

.login-inputs {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.login-inputs input {
  margin: 0px 0 10px 0;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #192D35;
}
.login-inputs input:focus, .login-inputs input :active {
  outline: none;
  border: 1px solid #22333B;
}
.login-inputs textarea {
  font-family: Tahoma, sans-serif;
  font-size: 16px;
  margin: 0 0 20px 0;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #192D35;
  max-width: 600px;
  min-width: 300px;
  height: 100px;
}
.login-inputs textarea:focus, .login-inputs textarea :active {
  outline: none;
  border: 1px solid #22333B;
}
.login-inputs label {
  font-weight: bold;
  margin: 5px 0;
}

.login-logo {
  display: flex;
  align-items: center;
}
.login-logo img {
  height: 80px;
  width: 80px;
  margin: 0px 0 10px 0;
}

.primary {
  border: 1px solid #192D35;
  background-color: #22333B;
  color: white;
}
.primary:hover {
  background-color: #0A0908;
}

.warning {
  border: 1px solid #192D35;
  background-color: #cc203a;
  color: white;
}
.warning:hover {
  background-color: rgba(255, 0, 0, 0.822);
}

.btn {
  position: relative;
  height: 40px;
  width: 100px;
  padding: 10px;
  margin: 10px 15px 10px 15px;
  border-radius: 10px;
  cursor: pointer;
}

.lg {
  width: 150px;
}

.form-switch {
  display: flex;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.form-switch i {
  position: relative;
  display: inline-block;
  margin-right: 0.5rem;
  width: 46px;
  height: 26px;
  background-color: grey;
  border-radius: 23px;
  vertical-align: text-bottom;
  transition: all 0.3s linear;
}

.form-switch i::before {
  content: "";
  position: absolute;
  left: 0;
  width: 42px;
  height: 22px;
  background-color: grey;
  border-radius: 11px;
  transform: translate3d(2px, 2px, 0) scale3d(1, 1, 1);
  transition: all 0.25s linear;
}

.form-switch i::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 22px;
  background-color: #F2F4F3;
  border-radius: 11px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.24);
  transform: translate3d(2px, 2px, 0);
  transition: all 0.2s ease-in-out;
}

.form-switch:active i::after {
  width: 28px;
  transform: translate3d(2px, 2px, 0);
}

.form-switch:active input:checked + i::after {
  transform: translate3d(16px, 2px, 0);
}

.form-switch input {
  display: none;
}

.form-switch input:checked + i {
  background-color: #19c93f;
}

.form-switch input:checked + i::before {
  transform: translate3d(18px, 2px, 0) scale3d(0, 0, 0);
}

.form-switch input:checked + i::after {
  transform: translate3d(22px, 2px, 0);
}

.uc {
  text-transform: uppercase;
}

.span-item {
  font-size: 18px;
}

.pointer {
  cursor: pointer;
}

.ul {
  text-decoration: underline;
}

.bold {
  font-weight: bold;
}

.color-red {
  color: red;
}

.color-green {
  color: #22333B;
}

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

.date {
  font-family: monospace;
}

.f-18 {
  font-size: 18px;
}

@keyframes scaleUp {
  0% {
    scale: 100%;
  }
  100% {
    scale: 103%;
  }
}
@keyframes scaleDown {
  0% {
    scale: 103%;
  }
  100% {
    scale: 100%;
  }
}
@keyframes shake {
  10%, 90% {
    transform: translate(-48%, -50%);
  }
  20%, 80% {
    transform: translate(-52%, -50%);
  }
  30%, 50%, 70% {
    transform: translate(-48%, -50%);
  }
  40%, 60% {
    transform: translate(-52%, -50%);
  }
}
.shake {
  animation: shake 0.4s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

header {
  display: flex;
  height: 50px;
  padding: 10px;
  background-color: rgba(34, 51, 59, 0.4);
  align-items: center;
  justify-content: center;
}

.menu-item {
  margin: 10px;
  padding: 15px;
  cursor: pointer;
}
.menu-item span {
  font-size: 18px;
  font-weight: bold;
}

.flexbox {
  display: flex;
}

.f-col {
  flex-direction: column;
}

.f-row {
  flex-direction: row;
}

.f-sb {
  justify-content: space-between;
}

.aic {
  align-items: center;
}

.g-10 {
  gap: 10px;
}

.p-10 {
  padding: 10px;
}

.m-10 {
  margin: 10px;
}

.mt-10 {
  margin-top: 10px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mr-10 {
  margin-right: 10px;
}

.ml-10 {
  margin-left: 10px;
}

.ofx-auto {
  overflow-x: auto;
}

.ml-auto {
  margin-left: auto;
}

.mr-auto {
  margin-right: auto;
}

.m-0 {
  margin: 0;
}

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

.item-list {
  height: 20px;
  background-color: #192D35;
  padding: 10px 5px 10px 5px;
  border-bottom: 1px solid white;
}

.verification-item {
  margin: 0 0 35px 0;
  padding: 15px;
  border-bottom: 3px solid black;
}

.box-menu-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  font-size: 18px;
}

.stats {
  justify-content: center;
}

.stat-item {
  width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #263238;
  margin: 20px;
}

.stat {
  font-size: 14px;
}

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

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* Modal Header */
.modal-header {
  padding: 2px 16px;
  background-color: rgba(34, 51, 59, 0.4);
  color: white;
}

/* Modal Body */
.modal-body {
  padding: 2px 16px;
}

/* Modal Footer */
.modal-footer {
  padding: 2px 16px;
  background-color: rgba(34, 51, 59, 0.4);
  color: white;
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #192D35;
  margin: auto;
  padding: 0;
  border: 1px solid #888;
  width: 80%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  animation-name: animatetop;
  animation-duration: 0.4s;
}

/* Add Animation */
@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
video {
  width: 100%;
  max-height: 300px;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

thead {
  background: #1d272c;
}

th, td {
  text-align: left;
  padding: 8px;
}

tr:nth-child(even) {
  background-color: #263238;
}

.inputs input, .inputs select {
  width: 100%;
  padding: 5px;
  margin: 10px 0 10px 0;
  font-size: 16px;
}
.inputs textarea {
  font-family: Tahoma, sans-serif;
  font-size: 16px;
  margin: 0 0 20px 0;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #192D35;
  max-width: 600px;
  min-width: 300px;
  height: 100px;
}
.inputs textarea:focus, .inputs textarea :active {
  outline: none;
  border: 1px solid #22333B;
}
.inputs label {
  font-weight: bold;
  margin: 5px 0;
}

.filepond--root {
  width: 100%;
}

.thumb {
  height: 60px;
  width: 60px;
}

a {
  color: #6bb9d3;
}

.dot {
  display: inline-block;
  position: absolute;
  top: 15px;
  left: 20px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 8px;
}

.dot-green {
  background-color: #19c93f;
}

.dot-grey {
  background-color: grey;
}

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