html, body, .content, #map {
    font-family: system, -apple-system, BlinkMacSystemFont;
    height: 100%;
    width: 100%;
    margin:0px;
    padding:0px;
    -webkit-tap-highlight-color: transparent;
}

#loading-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    height:100%;
    width:100%;
    top:0px;
    left:0px;
    background-color: rgba(0, 0, 0, 0.5);
}

#loading-spinner img {
    height: 50px;
    width: 50px;
}

.gm-style iframe + div {
    border:none !important;
}
.level-selector {
    width: 100%;
    background-color: white;
    opacity: 0.95;
    text-align: center;
    font-size: 18px;
    display: flex;
    flex-direction: column;
}

#current-level, .level {
    padding: 10px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#current-level:after {
    content: "";
    min-width: 16px;
    height: 16px;
    margin-left: 5px;
    display: inline-block;
    background: url("/static/map/img/icon_down.2cf5310035c3.png") no-repeat;
    background-size: contain;
}

.level-selector.expanded #available-levels {
    border-top: 2px solid black;
}

#available-levels {
    display: none;
}

.level-selector.expanded #available-levels {
    display: block;
}

.level:not(:last-child) {
    border-bottom: 1px solid black;
}
.feature-detail {
    width: 100%;
    border-top-left-radius: 13px;
    border-top-right-radius: 13px;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, .25);
    z-index: 10000000 !important;
    left: 0px !important;
    overflow: hidden;
}

.feature-detail-image {
    opacity: 1;
    object-fit: contain;
    width: 100%;
    height: auto;
    background-color: white;
}

.feature-detail-content {
    padding: 15px;
    background-color: white;
    opacity: 0.95;
}

.feature-detail-row {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

#feature-detail-name {
    flex: 1;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

#feature-detail-close {
    height: 24px;
    width: 24px;
}

#feature-detail-typeinfo {
    flex: 1;
}

#feature-detail-amenity-type {
    font-size: 14px;
}

#feature-detail-level-info {
    font-size: 14px;
    color: rgb(155, 155, 155);
}

#feature-detail-location {
    text-align: right;
    font-size: 14px;
    color: rgb(155, 155, 155);
    margin-left: 10px;
    white-space: pre-wrap;
}

#feature-detail-description {
    font-size: 14px;
    white-space: pre-wrap;
    margin-top: 15px;
}

.action-button-row {
    margin-top: 15px;
}

.action-button-row a {
    flex: 1;
    background-color: white;
    border: 1px solid #007AFF;
    color: #007AFF;
    border-radius: 5px;
    padding: 7px 0px;
    margin: 0px 5px;
    text-decoration: none;
    text-align: center;
    font-size: 13px;
}

#feature-detail-navigate-button {
    display: none;
}
.search {
    width: 100%;
    left:0px !important;
    background-color: white;
    border-top-left-radius: 13px;
    border-top-right-radius: 13px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, .25);
    display: flex;
    flex-direction: column;
    padding-bottom: 15px;
    box-sizing: border-box;
}

.search.expanded {
    height: 100%;
}

.search-input-container {
    display: flex;
    flex-direction: row;
    padding: 12px 8px;
    align-items: center;
}

.search.expanded .search-input-container {
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.25);
}

.search-input {
    border-radius: 10px;
    height: 20px;
    background-color: rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: row;
    padding: 8px;
    align-items: center;
    flex: 1;
}

.search-icon {
    display: block;
    width: auto;
    height: 100%;
    margin-right: 10px;
}

.selected-category {
    padding: 3px 8px;
    background-color: black;
    color: white;
    font-size: 17px;
    flex-shrink: 0;
    border-radius: 13px;
    align-items: center;
    margin-right: 5px;
    display: none;
}

.selected-category.active {
    display: flex;
}

.selected-category-delete {
    width: 25px;
}

.search-query-input {
    background-color: transparent;
    border: none;
    height: 100%;
    outline: none;
    flex: 1;
    font-size: 17px;
    width: 0px;
}

.search.expanded #search-close {
    display: block;
}

#search-close {
    height: 24px;
    width: 24px;
    margin-left: 5px;
    display: none;
    flex-shrink: 0;
}

.search.expanded .search-results {
    display: block;
    flex: 1;
}

.search-results {
    display: none;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.available-categories {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    padding: 5px 10px;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.25);
}

.search-category {
    width: 80px;
    margin: 5px 5px;
    word-wrap: break-word;
}

.search-category-image {
    width: 100%;
    height: auto;
}

.search-category-name {
    margin-top: 5px;
    font-size: 14px;
    text-align: center;
    width: 100%;
}

.matching-search-entities {
    padding: 0px 0px 0px 15px;
}

.search-entity {
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.25);
    padding: 10px 0px;
}

.search-entity-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
}

.search-entity-details {
    display: flex;
    flex-direction: row;
}

.search-entity-typeinfo {
    flex: 1;
}

.search-entity-subtitle {
    font-size: 14px;
}

.search-entity-level {
    font-size: 14px;
    color: rgb(155, 155, 155);
}

.search-entity-location {
    text-align: right;
    font-size: 14px;
    color: rgb(155, 155, 155);
    margin-left: 10px;
    margin-right: 15px;
    white-space: pre-wrap;
}
.navigate {
  width: 100%;
  left: 0px !important;
  background-color: white;
  border-top-left-radius: 13px;
  border-top-right-radius: 13px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
  box-sizing: border-box;
  z-index: 10000001 !important; }
  .navigate.expanded {
    height: 100%; }
  .navigate #navigate-close {
    height: 24px;
    width: 24px;
    margin-left: 5px;
    display: block;
    flex-shrink: 0; }
  .navigate .navigation-feature-detail {
    width: 100%;
    border-top-left-radius: 13px;
    border-top-right-radius: 13px;
    display: flex;
    flex-direction: column;
    z-index: 10000000 !important;
    left: 0px !important;
    overflow: hidden;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.25); }
    .navigate .navigation-feature-detail .navigation-feature-detail-content {
      padding: 15px;
      background-color: white;
      opacity: 0.95; }
      .navigate .navigation-feature-detail .navigation-feature-detail-content #navigation-feature-detail-name {
        flex: 1;
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 5px; }
      .navigate .navigation-feature-detail .navigation-feature-detail-content #navigation-feature-detail-typeinfo {
        flex: 1; }
      .navigate .navigation-feature-detail .navigation-feature-detail-content #navigation-feature-detail-amenity-type {
        font-size: 14px; }
      .navigate .navigation-feature-detail .navigation-feature-detail-content #navigation-feature-detail-level-info {
        font-size: 14px;
        color: #9b9b9b; }
      .navigate .navigation-feature-detail .navigation-feature-detail-content #navigation-feature-detail-location {
        text-align: right;
        font-size: 14px;
        color: #9b9b9b;
        margin-left: 10px;
        white-space: pre-wrap; }
      .navigate .navigation-feature-detail .navigation-feature-detail-content #navigation-feature-detail-description {
        font-size: 14px;
        white-space: pre-wrap;
        margin-top: 15px; }
    .navigate .navigation-feature-detail .navigation-feature-detail-row {
      display: flex;
      flex-direction: row;
      justify-content: flex-start; }
  .navigate .navigate-input-container {
    display: flex;
    flex-direction: column;
    padding: 12px 8px; }
    .navigate .navigate-input-container .current-location-selector {
      display: flex;
      flex-direction: column;
      align-items: center; }
      .navigate .navigate-input-container .current-location-selector .use-current-location {
        background-color: #007AFF;
        color: white;
        border-radius: 10px;
        font-weight: bold;
        width: 100%;
        border: none;
        padding: 10px 0; }
      .navigate .navigate-input-container .current-location-selector .current-location-or {
        font-size: 14px;
        color: #9b9b9b;
        padding: 10px 0; }
    .navigate .navigate-input-container .navigate-input {
      border-radius: 10px;
      max-height: 20px;
      background-color: rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: row;
      padding: 8px;
      align-items: center;
      flex: 1; }
      .navigate .navigate-input-container .navigate-input .search-icon {
        display: block;
        width: auto;
        height: 100%;
        margin-right: 10px; }
      .navigate .navigate-input-container .navigate-input .selected-category {
        padding: 3px 8px;
        background-color: black;
        color: white;
        font-size: 17px;
        flex-shrink: 0;
        border-radius: 13px;
        align-items: center;
        margin-right: 5px;
        display: none; }
        .navigate .navigate-input-container .navigate-input .selected-category.active {
          display: flex; }
        .navigate .navigate-input-container .navigate-input .selected-category .selected-category-delete {
          width: 25px; }
      .navigate .navigate-input-container .navigate-input .navigate-query-input {
        background-color: transparent;
        border: none;
        height: 100%;
        outline: none;
        flex: 1;
        font-size: 17px;
        width: 0px; }
  .navigate .navigate-results {
    display: none;
    flex: 1; }
    .navigate.expanded .navigate-results {
      display: block;
      overflow: auto;
      -webkit-overflow-scrolling: touch; }
    .navigate .navigate-results .available-categories {
      display: flex;
      flex-wrap: wrap;
      flex-direction: row;
      padding: 5px 10px;
      border-bottom: 0.5px solid rgba(0, 0, 0, 0.25); }
      .navigate .navigate-results .available-categories .navigate-category {
        width: 60px;
        margin: 5px 5px;
        word-wrap: break-word; }
        .navigate .navigate-results .available-categories .navigate-category .navigate-category-image {
          width: 100%;
          height: auto; }
        .navigate .navigate-results .available-categories .navigate-category .navigate-category-name {
          margin-top: 5px;
          font-size: 14px;
          text-align: center;
          width: 100%; }
    .navigate .navigate-results .matching-navigate-entities {
      padding: 0px 0px 0px 15px; }
      .navigate .navigate-results .matching-navigate-entities .navigate-entity {
        border-bottom: 0.5px solid rgba(0, 0, 0, 0.25);
        padding: 10px 0px; }
        .navigate .navigate-results .matching-navigate-entities .navigate-entity .navigate-entity-title {
          font-size: 20px;
          font-weight: 600;
          margin-bottom: 6px; }
        .navigate .navigate-results .matching-navigate-entities .navigate-entity .navigate-entity-details {
          display: flex;
          flex-direction: row; }
          .navigate .navigate-results .matching-navigate-entities .navigate-entity .navigate-entity-details .navigate-entity-typeinfo {
            flex: 1; }
            .navigate .navigate-results .matching-navigate-entities .navigate-entity .navigate-entity-details .navigate-entity-typeinfo .navigate-entity-subtitle {
              font-size: 14px; }
            .navigate .navigate-results .matching-navigate-entities .navigate-entity .navigate-entity-details .navigate-entity-typeinfo .navigate-entity-level {
              font-size: 14px;
              color: #9b9b9b; }
          .navigate .navigate-results .matching-navigate-entities .navigate-entity .navigate-entity-details .navigate-entity-location {
            text-align: right;
            font-size: 14px;
            color: #9b9b9b;
            margin-left: 10px;
            margin-right: 15px;
            white-space: pre-wrap; }

.navigate-detail {
  width: 100%;
  left: 0px !important;
  background-color: white;
  border-top-left-radius: 13px;
  border-top-right-radius: 13px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
  box-sizing: border-box;
  z-index: 10000001 !important;
  padding: 10px; }
  .navigate-detail .navigate-detail-top-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center; }
    .navigate-detail .navigate-detail-top-row .view-steps {
      height: 24px;
      width: 24px; }
    .navigate-detail .navigate-detail-top-row .step-title {
      font-size: 14px;
      color: #9b9b9b; }
    .navigate-detail .navigate-detail-top-row #navigate-detail-close {
      height: 24px;
      width: 24px;
      display: block;
      flex-shrink: 0; }
  .navigate-detail .navigate-detail-step-description {
    font-size: 20px;
    font-weight: bold;
    margin-top: 15px; }
  .navigate-detail .navigate-detail-start-end {
    display: flex;
    flex-direction: row;
    font-size: 14px;
    margin-top: 15px; }
    .navigate-detail .navigate-detail-start-end .navigate-detail-start-point {
      flex: 1; }
      .navigate-detail .navigate-detail-start-end .navigate-detail-start-point .navigate-detail-start-description {
        color: #9b9b9b;
        white-space: pre-wrap; }
    .navigate-detail .navigate-detail-start-end .navigate-detail-end-point {
      flex: 1; }
      .navigate-detail .navigate-detail-start-end .navigate-detail-end-point .navigate-detail-end-description {
        color: #9b9b9b;
        white-space: pre-wrap; }
  .navigate-detail .navigate-detail-action-buttons {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-top: 15px; }
    .navigate-detail .navigate-detail-action-buttons a {
      flex: 1;
      background-color: white;
      border: 1px solid #007AFF;
      color: #007AFF;
      border-radius: 5px;
      padding: 7px 0px;
      margin: 0px 5px;
      text-decoration: none;
      text-align: center;
      font-size: 13px; }
      .navigate-detail .navigate-detail-action-buttons a.disabled {
        opacity: 50%;
        pointer-events: none; }
  .navigate-detail .navigate-detail-list .navigate-detail-list-top-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.25); }
    .navigate-detail .navigate-detail-list .navigate-detail-list-top-row .navigate-detail-list-title {
      flex: 1;
      font-weight: bolder;
      font-size: 16px; }
    .navigate-detail .navigate-detail-list .navigate-detail-list-top-row #navigate-detail-list-close {
      height: 24px;
      width: 24px;
      display: block;
      flex-shrink: 0; }
  .navigate-detail .navigate-detail-list .navigate-detail-list-steps > * {
    padding: 10px 0;
    font-size: 16px;
    font-weight: bold;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.25); }
