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

a {
  color: #000;
  text-decoration: none;
}

a:hover {
  color: #000;
}

.nav-link {
  transition: all .2s;
}

.active-link {
  border-left: 2px solid #000;
  padding: 10px;
}

.image-input-file {
  transition: all .2s;
}

.image-input-file:hover {
  filter: brightness(50%);
}

.map-data {
  width: 100%;
}

@media (width >= 992px) {
  .map-data {
    width: 25%;
    height: 100%;
  }
}

.collapsible-content {
  max-height: 0;
  transition: max-height .3s ease-out;
  overflow: hidden;
}

.collapsible-content.expanded {
  max-height: 1000px;
}

.collapsible-container {
  border-top: 1px solid #ddd;
  padding: 0;
}

.collapsible-header {
  cursor: pointer;
  border-bottom: 1px solid #ddd;
  padding: 1rem;
}

.collapsible-body {
  padding: 1rem;
}

.sidebar {
  z-index: 1;
  width: 0;
  height: 100%;
  transition: all .5s;
  overflow: hidden;
}

.sidebar-open {
  width: 250px;
}

.sidebar a {
  white-space: nowrap;
  transition: all .3s;
  display: block;
}

#main {
  padding: 16px;
  transition: margin-left .5s;
}

@media screen and (height <= 450px) {
  .sidebar {
    padding-top: 15px;
  }

  .sidebar a {
    font-size: 18px;
  }
}

@media screen and (width <= 991px) {
  .sidebar {
    height: 0;
    transition: height .5s;
  }

  .sidebar-open {
    height: 450px;
  }

  #main {
    margin-left: 0;
  }
}

.text-multiline-ellipsis {
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  max-height: 3em;
  line-height: 1.5;
  display: -webkit-box;
  overflow: hidden;
}
/*# sourceMappingURL=index.01da57a6.css.map */
