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

html {
  height: 100%;
}

body {
  min-height: 100dvh;
  background: rgb(20, 20, 20);
  color: rgb(187, 198, 195);
  font-family: "Quicksand", sans-serif;
}

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

#mobile-nav {
  display: none;
}

#mobile-close {
  display: none;
}

button {
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  background: rgb(0, 122, 255);
  border: none;
}
button:disabled {
  cursor: not-allowed;
}

.red-button {
  background: rgb(248, 83, 6);
}

img {
  max-width: 100%;
  max-height: 100%;
}

a {
  color: rgb(187, 198, 195);
  text-decoration: none;
}

nav.nav {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 15vw;
  background: rgb(29, 30, 36);
  box-shadow: 3px 0 6px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 100;
  transition: width 0.3s ease-in-out;
}
nav.nav .logo,
nav.nav .menu {
  padding: 1rem;
}
nav.nav a {
  display: block;
  padding: 0.1rem 0;
  display: flex;
  margin: 0.4rem 0;
}
nav.nav a i {
  margin-right: 10px;
  display: flex;
  justify-content: center;
  width: 10%;
}
nav.nav a:hover {
  transition: color 0.2s ease-in-out;
  color: rgb(248, 83, 6);
}
nav.nav .footer {
  padding: 1rem;
}

.mobile-nav-opened {
  width: 100vw;
  min-width: 100vw;
}

main.main {
  padding: 2rem;
  padding-left: calc(15vw + 2rem);
}
main.main .main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
main.main .main-header .menu {
  display: flex;
  flex-direction: column;
}
main.main .main-header .menu .top {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0;
}
main.main .main-header .menu .bottom p {
  line-height: 0.5;
  text-align: right;
  font-size: 1.2rem;
}
main.main .main-header .menu img {
  max-height: 4vh;
}
main.main .main-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
main.main .main-title a {
  background: rgb(0, 122, 255);
  padding: 0.4rem 1.4rem;
  border-radius: 5px;
  font-weight: bold;
}
main.main article {
  background: rgb(29, 30, 36);
  border-radius: 10px;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  margin: 1rem 0;
}
main.main article .article-title {
  padding: 1rem;
  border-bottom: 0.5px solid rgb(248, 83, 6);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
main.main article .article-title a {
  background: rgb(0, 122, 255);
  padding: 10px 16px;
  border-radius: 5px;
}
main.main article .article-content {
  padding: 1rem;
}

main.no-padding {
  padding: 0;
}

#flight-finished {
  display: none;
  padding: 1rem;
  text-align: center;
  color: rgb(46, 182, 77);
}

.flex {
  display: flex;
}

.justify-center {
  justify-content: center;
}

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

.justify-around {
  justify-content: space-around;
}

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

.full-page {
  height: 100dvh;
  max-height: 100dvh;
}

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

.grid {
  display: grid;
}

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

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

.gap-1 {
  gap: 1rem;
}

.gap-2 {
  gap: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.ptb-2 {
  padding: 2rem 0;
}

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

.cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 8px;
  color: #fff;
  font-size: clamp(16px, 1rem, 1.5vmin);
}

.cta-primary {
  background: rgb(0, 122, 255);
}

#map {
  height: 50dvh;
}

.alert {
  padding: 8px 2rem;
  border-radius: 5px;
  position: fixed;
  left: 50%;
  bottom: 3vh;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  align-items: center;
}
.alert i {
  margin-right: 10px;
}

.alert-error {
  background: rgba(241, 58, 58, 0.6);
  border: 1px solid rgba(241, 58, 58, 0.9);
}

.alert-warning {
  background: rgba(241, 162, 58, 0.6);
  border: 1px solid rgba(241, 162, 58, 0.9);
}

.alert-success {
  background: rgba(73, 241, 58, 0.6);
  border: 1px solid rgba(73, 241, 58, 0.9);
}

.alert-info {
  background: rgba(58, 131, 241, 0.6);
  border: 1px solid rgba(58, 131, 241, 0.9);
}

form .form-field {
  margin-bottom: 1.5rem;
}
form .form-field label {
  display: block;
  font-weight: bold;
}
form .form-field input,
form .form-field select,
form .form-field textarea {
  padding: 12px;
  font-family: inherit;
  font-size: clamp(16px, 1rem, 1.5vmin);
  margin: 8px 0 3px 0;
  background: rgba(29, 30, 36, 0.5);
  border-radius: 8px;
  border: none;
  border: 0.5px solid rgb(94, 92, 90);
  outline: none;
  color: rgb(187, 198, 195);
  width: 100%;
}
form .form-field .checkbox {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
form .form-field .checkbox label {
  margin-bottom: 0;
}
form .form-field .checkbox input[type=checkbox] {
  width: 20px;
  height: 20px;
}
form .form-field .checkbox input {
  width: auto;
}
form #map {
  height: 30dvh;
  width: 100%;
  margin: 0.8rem 0;
  border-radius: 8px;
}
form .form-button {
  display: flex;
  justify-content: flex-end;
}
form .form-button button {
  background: rgb(0, 122, 255);
  padding: 0.8rem 1.4rem;
  border: none;
  border-radius: 5px;
  color: #fff;
}

#search-box-container {
  box-shadow: none;
  position: relative;
}
#search-box-container input {
  color: rgb(187, 198, 195);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: transparent;
  background-color: transparent !important;
}

form.authentication-form {
  max-width: 350px;
  margin: 0 auto;
}

dialog {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgb(29, 30, 36);
  border-radius: 10px;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}
dialog .dialog-title {
  padding: 1rem;
  color: rgb(187, 198, 195);
  border-bottom: 0.5px solid rgb(248, 83, 6);
  text-align: center;
}
dialog .dialog-content {
  padding: 1rem;
  color: rgb(187, 198, 195);
}
dialog .dialog-buttons {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
}
dialog .dialog-buttons button {
  background: rgb(0, 122, 255);
  padding: 0.8rem 1.4rem;
  border: none;
  border-radius: 5px;
  color: #fff;
}
dialog .dialog-buttons .bad {
  background: rgb(248, 83, 6);
}

button.remove {
  background: rgb(248, 83, 6);
}

ul {
  list-style: none;
}
ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgb(94, 92, 90);
  color: rgb(187, 198, 195);
  align-items: center;
}
ul li button {
  align-self: flex-end;
  width: 50px;
}

ul.confirmation-data li {
  display: flex;
  justify-content: space-between;
  gap: 5rem;
}
ul.confirmation-data li:last-child {
  border-bottom: none;
}
ul.confirmation-data li span {
  font-weight: bold;
}

ul.weather-forecast li,
ul.weather-current li {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}
ul.weather-forecast li img,
ul.weather-current li img {
  max-height: 60px;
}
ul.weather-forecast .initial-weather,
ul.weather-current .initial-weather {
  display: flex;
  justify-content: center;
}

ul.flight-plans li.titles {
  padding: 0.2rem 0;
  border-bottom: 0.5px solid rgb(94, 92, 90);
  margin: 0 0 0.5rem 0;
}
ul.flight-plans li {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr 0.5fr;
  padding: 5px 3px;
}
ul.flight-plans li button {
  z-index: 2;
}
ul.flight-plans li:hover {
  transition: 0.2s ease-in-out;
  background: rgb(94, 92, 90);
}

article.drone-details #drone-image {
  padding: 0;
  max-height: 40vh;
}
article.drone-details .article-content h2 {
  font-size: 5rem;
}
article.drone-details .article-content h3 {
  font-size: 4rem;
}

.card {
  background: linear-gradient(to bottom right, rgb(40.3769230769, 41.7692307692, 50.1230769231), rgb(47.2030769231, 48.8307692308, 58.5969230769));
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}
.card .card-icon {
  padding: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card .card-icon i {
  font-size: 2rem;
}
.card .card-content {
  padding: 0 1rem 1rem 1rem;
  text-align: center;
}
.card .card-content p {
  font-size: 2em;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.link-grid a {
  padding: 3rem;
  background: rgb(17.6230769231, 18.2307692308, 21.8769230769);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  text-align: center;
}
.link-grid a:hover {
  transition: 0.2s ease-in-out;
  background: rgb(46, 182, 77);
  color: #000;
  font-weight: bold;
}

.chat-container .message {
  display: flex;
  width: 100%;
}
.chat-container .message .message-content {
  min-width: 30vw;
  border-left: 4px solid rgb(46, 182, 77);
  padding: 5px 5px 5px 10px;
  border-radius: 5px;
  background: rgb(35.7105263158, 141.2894736842, 59.7763157895);
  margin: 1rem 0;
}
.chat-container .message .message-content .message .message-time {
  display: flex;
  justify-content: flex-end;
}
.chat-container .message .not-own-message {
  border-left: 4px solid rgb(46, 182, 77);
  background: rgb(35.7105263158, 141.2894736842, 59.7763157895);
}
.chat-container .message .own-message {
  border-left: 4px solid rgb(0, 97.6, 204);
  background: rgb(0, 122, 255);
}

hr {
  margin: 1rem 0;
  border: none;
  border-bottom: 0.5px solid rgb(248, 83, 6);
}

@media screen and (max-width: 1400px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
  #mobile-nav {
    display: block;
    background: none;
    font-size: 2rem;
    position: fixed;
    right: 1rem;
    top: 1rem;
    color: rgb(248, 83, 6);
    border: none;
  }
  #mobile-close {
    display: block;
    background: none;
    font-size: 2rem;
    right: 1rem;
    top: 1rem;
    color: rgb(248, 83, 6);
    border: none;
    position: absolute;
  }
  main.main {
    padding: 4.5rem 1rem 1rem 1rem;
  }
  main.main .main-title {
    font-size: 0.8rem;
  }
  main.main .main-header h1 {
    font-size: 1rem;
  }
  main.main .main-header .menu .top img {
    height: 2dvh;
  }
  main.main .main-header .menu .top h2 {
    font-size: 0.8rem;
  }
  main.main .main-header .menu .bottom p {
    font-size: 0.7rem;
  }
  main.main article .article-title {
    font-size: 0.7rem;
    padding: 0.7rem;
  }
  main.main article .article-title a {
    padding: 6px 12px;
  }
  ul li {
    font-size: 0.7rem;
  }
  nav.nav {
    width: 0;
    overflow: hidden;
  }
}
@media screen and (max-width: 800px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

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