* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Changa One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

button {
  background: #388686;
  padding: 8px 16px;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  color: rgb(26.6304347826, 45.2717391304, 95.8695652174);
}

ul {
  list-style: none;
}

body {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  background: #f2f2f2;
}

.nav {
  background: #0a1124;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 18vw;
}
.nav .logo {
  padding: 2rem;
}
.nav .menu {
  padding: 0 1rem;
}
.nav a {
  color: #fff;
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 1.2rem;
  margin: 0.5rem 0;
  padding: 1rem;
  border-radius: 10px;
  transition: 0.2s ease-in-out;
}
.nav a:hover {
  background: #388686;
}
.nav a i {
  width: 15%;
}
.nav a p {
  width: 85%;
}
.nav .footer {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 1rem;
}
.nav .footer a {
  padding: 1rem;
  width: 100%;
}

main.main {
  margin-left: 18vw;
  max-width: 82vw;
  padding: 2rem;
}
main.main section {
  margin-bottom: 2rem;
}
main.main .title {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 0 2rem 0;
}
main.main .title h2 {
  font-size: 2.5rem;
}
main.main .header {
  height: 10vh;
}
main.main .header a {
  font-size: 1rem;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 1rem;
  transition: 0.3s ease-in-out;
  border-radius: 5px;
}
main.main .header a i {
  margin-right: 0.5rem;
}
main.main .header a:hover {
  background: #388686;
  color: #fff;
}

.grid {
  display: grid;
  row-gap: 1rem;
}

.grid-2 {
  grid-template-columns: 1fr 1fr;
}

.grid-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.grid-3-1-1 {
  grid-template-columns: 1fr 1fr 1fr 0.4fr 0.2fr;
}

.gap-1 {
  gap: 1rem;
}

.gap-2 {
  gap: 2rem;
}

.flex {
  display: flex;
}

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

.not-approved {
  text-align: center;
  width: 100%;
  padding: 1rem;
  background: rgba(213, 20, 20, 0.5);
  border: 1px solid rgba(213, 20, 20, 0.9);
  border-radius: 5px;
}

form {
  width: 100%;
  background: #ededed;
  padding: 1rem;
  border-radius: 5px;
  z-index: 999;
}
form .form-field label {
  display: block;
  margin-bottom: 0.3rem;
}
form .form-field input,
form .form-field textarea,
form .form-field select {
  width: 100%;
  background: #e9e9e9;
  border: 0.5px solid #f1f1f1;
  font-family: inherit;
  font-size: clamp(16px, 1rem, 1.2rem);
  padding: 8px 10px;
  border-bottom: 1px solid #f0f0f0;
  border-radius: 5px;
  outline: none;
}
form .form-field input:focus,
form .form-field textarea:focus,
form .form-field select:focus {
  border-bottom: 1px solid #388686;
}
form .form-field input:read-only {
  color: #6f6f6f;
  pointer-events: none;
}
form .form-field input[type=file] {
  pointer-events: auto;
}
form .form-field textarea {
  resize: vertical;
  min-height: 20dvh;
}
form .additional-drone-service-types {
  display: none;
}
form .checkbox {
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
form .checkbox input {
  width: auto;
  margin-right: 1rem;
}
form .form-button {
  display: flex;
  justify-content: flex-end;
  padding: 1rem 0 0 0;
}
form .form-button button {
  background: #388686;
  padding: 8px 16px;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-weight: bold;
}
form .form-button .delete {
  background: #c44b4b;
}
form .input-dropdown {
  position: relative;
}
form .input-dropdown #dropdown-list,
form .input-dropdown #project-dropdown-list {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
}
form .input-dropdown #dropdown-list li,
form .input-dropdown #project-dropdown-list li {
  background: #fff;
  cursor: pointer;
}
form h3 {
  margin: 1rem 0 0.7rem 0;
  border-bottom: 1px solid #388686;
  padding: 3px 0;
}

form.user-action-form {
  max-width: 300px;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 10px;
}

#open-mobile-nav,
#close-mobile-nav {
  background: none;
  display: none;
}

.card {
  background: #ececec;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  margin-bottom: 1rem;
  position: relative;
}
.card ul li {
  border: none;
  padding: 5px 0;
}
.card .card-title {
  color: #388686;
  padding: 1rem;
  border-bottom: 1px solid #d4d3d3;
}
.card .card-content {
  padding: 0.5rem 1rem;
  min-height: 10vh;
  display: flex;
  align-items: center;
  padding-bottom: 1.5rem;
}
.card .card-content p.statistics {
  font-size: 3rem;
}
.card .card-footer {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 1rem 1rem 0.2rem 1rem;
}
.card .card-footer p {
  color: #afafaf;
}

ul .titles {
  background: #388686;
  padding: 1rem;
  border-radius: 5px 5px 0 0;
  border: 1px solid #414141;
  border-bottom: 4px solid #414141;
}
ul .titles strong {
  color: #fff;
}
ul a:hover li {
  background: rgb(71.0315789474, 169.9684210526, 169.9684210526);
}
ul li {
  padding: 0.5rem 1rem;
  border-left: 1px solid #388686;
  border-right: 1px solid #388686;
  border-bottom: 1px solid #388686;
  transition: 0.2s ease-in-out;
}
ul a:last-child li {
  border-radius: 0 0 5px 5px;
}

.alert {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
}

.info {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  width: 320px;
  padding: 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  background: #d7f1fd;
  border-radius: 8px;
  box-shadow: 0px 0px 5px -3px #111;
}
.info .info__icon {
  width: 20px;
  height: 20px;
  transform: translateY(-2px);
  margin-right: 8px;
}
.info .info__icon path {
  fill: #509af8;
}
.info .info__title {
  font-weight: 500;
  font-size: 14px;
  color: #0c2a75;
}
.info .info__close {
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin-left: auto;
}
.info .info__close path {
  fill: #0c2a75;
}

.success {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  width: 320px;
  padding: 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  background: #edfbd8;
  border-radius: 8px;
  box-shadow: 0px 0px 5px -3px #111;
}
.success .success__icon {
  width: 20px;
  height: 20px;
  transform: translateY(-2px);
  margin-right: 8px;
}
.success .success__icon path {
  fill: #84d65a;
}
.success .success__title {
  font-weight: 500;
  font-size: 14px;
  color: #2b641e;
}
.success .success__close {
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin-left: auto;
}
.success .success__close path {
  fill: #2b641e;
}

.warning {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  width: 320px;
  padding: 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  background: #f7c752;
  border-radius: 8px;
  box-shadow: 0px 0px 5px -3px #111;
}
.warning .warning__icon {
  width: 20px;
  height: 20px;
  transform: translateY(-2px);
  margin-right: 8px;
}
.warning .warning__icon path {
  fill: #393a37;
}
.warning .warning__title {
  font-weight: 500;
  font-size: 14px;
  color: #393a37;
}
.warning .warning__close {
  width: 20px;
  height: 20px;
  margin-left: auto;
  cursor: pointer;
}
.warning .warning__close path {
  fill: #393a37;
}

.chart {
  width: 100%;
}

.dialog {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: none;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}
.dialog .close-dialog {
  position: absolute;
  right: 1rem;
  top: 1rem;
}

@media screen and (max-width: 768px) {
  #open-mobile-nav,
  #close-mobile-nav {
    background: none;
    display: block;
    color: #000;
    font-size: 1.5rem;
    position: fixed;
    right: 1rem;
    top: 1rem;
    z-index: 9;
  }
  #close-mobile-nav {
    position: absolute;
    right: 1rem;
    top: 1rem;
    color: #fff;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .nav {
    position: fixed;
    right: 0;
    top: 0;
    width: 100dvw;
    height: 0;
    overflow: hidden;
    z-index: 100;
    transition: 0.3s ease-in-out;
  }
  .nav .logo {
    padding: 2rem 5rem 2rem 2rem;
  }
  .nav .menu {
    padding: 0 1rem;
  }
  .nav a {
    font-size: 1.2rem;
    margin: 0.2rem 0;
    padding: 0.5rem;
  }
  .nav-open {
    height: 100dvh;
  }
  main.main {
    margin-left: 0;
    max-width: 100vw;
    padding: 2rem;
  }
}

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