.nav-utils {
  display: flex;
  gap: var(--gap-md);
  padding: var(--gap-md) var(--gap-sm);
  flex-wrap: wrap;
  justify-content: space-between;
  position: sticky;
  top: 73px;
  z-index: 99;
  background: white;
}
.nav-utils.scrollable {
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 13px 8px;
  -ms-overflow-style: none;
  scrollbar-width: none;
  ::-webkit-scrollbar {
    display: none;
  }
}

.nav-utils-container-wrapper {
  position: relative;
  order: 2;
}

.mobile-content.map-switcher {
  margin: 0px;
  margin-bottom: 29px;
}

.nav-utils-container-wrapper .mobile-content .map-trigger {
  width: 50%;
}

.nav-utils-container-wrapper .mobile-content .map-switcher__btn {
  width: 50%;
}

.nav-utils-container {
  position: relative;
}
.nav-utils-container .pagination-button {
  position: absolute;
  left: 0px;
  top: 0px;
  display: flex;
  height: 100%;
  background: white;
  padding: 0px 5px 0px 10px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 100;
  box-shadow: 0px 0px 4px 0px #00000040;
}

.nav-utils-container .pagination-button.hide {
  display: none;
}

.nav-utils-container .pagination-button.next-button {
  right: 0;
  left: auto;
}

.nav-utils .pc-content.map-switcher {
  border-left: 1px solid var(--color-gray-light-1);
  padding-left: var(--gap-lg);
  min-width: 26rem;
}

@media screen and (max-width: 860px) {
  .mobile-content.map-switcher {
    padding: 6px 8px;
  }
}
