/* your styles go here */

.gradient-overlay::after {
  opacity: 1;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 54%,
    rgba(0, 0, 0, 0.65) 100%
  );
}

/* For react-clamp-lines */
.clamp-lines__button {
  background: none;
  border: 0;
  color: #4e66f8;
  cursor: pointer;
  padding: 0;
}

.clamp-lines__button:focus {
  outline: 0;
}

.clamp-lines__button:hover {
  text-decoration: underline;
}

html {
  /* 61 px is the size of the bottom nav bar for mobile / tablet */
  --mobile-nav-bar-height: 61px;
}

@media (max-width: 991px) {
  .tablet-mobile-container {
    padding-bottom: var(--mobile-nav-bar-height);
  }

  .map-container {
    height: calc(var(--vh, 1vh) * 100 - var(--mobile-nav-bar-height));
  }
}

@media (min-width: 992px) {
  .map-container {
    height: 100vh;
  }
}

.mobile-navbar > .nav-item > a.nav-link.active {
  color: #4e66f8 !important;
}

.mobile-navbar > .nav-item > a.nav-link:hover {
  color: #4e66f8 !important;
}
