.gm-style-iw-d {
  margin-top: -24px;
}

.map-card {
  /* display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
  padding: 10px;
  max-width: 300px;
}

.map-card strong {
  font-weight: 800;
}
.map-card h4 {
  margin-top: 0;
}

.dashboard .breadcrumb {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}
.dashboard .breadcrumb a {
  color: #767676;
}
.dashboard {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  margin: 0 auto;
  color: #1c1c1c;
}
.dashboard-title {
  font-size: 34px;
  margin-bottom: 0;
  width: 100%;
  margin-bottom: -16px;
  padding-left: 10px;
  text-transform: uppercase;
}
.dashboard-title span {
  font-size: 20px;
}

.column {
  padding: 10px;
}

.search-column {
  flex: 1 1 30%;
  max-width: 30%;
  margin-top: 38px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.map-column {
  flex: 1 1 70%;
  max-width: 70%;
}

#search-results-list {
  overflow-y: auto;
  max-height: 640px;
}
#search-results-list .result-item h5 {
  margin: 0 0 12px;
  font-size: 16px;
}

#search-results-list .result-item p {
  margin-bottom: 2px;
}
#search-results-list .result-item p strong {
  color: #a3a3a3;
}
#search-results-list .result-item {
  cursor: pointer;
  padding: 16px;
  font-size: 14px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
#search-results-list .result-item.active,
#search-results-list .result-item:hover {
  background-color: #f1f1f1;
}
.search-box {
  display: flex;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 16px;
}
.search-box input {
  flex: 1;
  padding: 10px;
  border: none;
  height: 50px;
}
.search-box input:focus {
  outline: none;
}
.search-box button:hover,
.search-box button {
  background-color: transparent;
  color: black;
  padding: 9px 10px 4px;
  border: none;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  cursor: pointer;
}
.search-box svg {
  width: 20px;
  height: 20px;
  border: none;
}

/* pagination */
.marks-pagination {
  overflow-x: auto;
  padding-top: 24px;
  max-width: 100%;
  width: 1000px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

.mark-pagination-link {
  padding: 10px 15px;
  border: 1px solid #ccc;
  color: #333;
  cursor: pointer;
  margin: 0 5px;
  transition: background-color 0.3s, color 0.3s;
}

.mark-pagination-link.active,
.mark-pagination-link:hover {
  background-color: #333;
  color: #fff;
}

/* media  */

@media (max-width: 768px) {
  div#map {
    max-height: 400px;
  }
  .column {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .dashboard {
    flex-direction: column;
  }
  .dashboard-title,
  .map-column {
    padding: 0;
  }
  .search-column {
    padding: 0;
    order: 3;
  }
  #search-results-list {
    max-height: 400px;
  }
  .dashboard-title {
    margin-bottom: 0;
  }
}

/*  !new pagination ----------------------------------- */
.pajinatify {
  position: relative;
  display: flex;
  justify-content: center;
  align-content: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden;
}
.pajinatify.pajinatify__rtl {
  direction: ltr;
  justify-content: unset;
}
.pajinatify > span {
  display: inline-block;
  text-align: center;
  width: 2em;
  height: 2.3em;
  line-height: 2.2;
  color: #111;
  text-decoration: none;
  border: 1px solid #e7e7e7;
  border-right-color: #fff;
  position: relative;
  background-color: #fff;
  font-size: 1.34rem;
}
.pajinatify > span:last-child {
  border-right-color: #e7e7e7;
}
.pajinatify > span.pajinatify__button {
  cursor: pointer;
}
.pajinatify > span.pajinatify__button:hover,
.pajinatify > span.pajinatify__button:focus {
  background-color: #f0f0f0;
  border-right-color: #f0f0f0;
}
.pajinatify > span.pajinatify__current {
  background-color: #535355;
  border-color: #535355;
  color: #fff;
  cursor: default;
  pointer-events: none;
}
.pajinatify > span.pajinatify__arrow:before {
  content: "";
  display: block;
  border-right: 1px solid #999;
  border-bottom: 1px solid #999;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -4px;
}
.pajinatify > span.pajinatify__arrow.arrow__next {
  right: 0;
}
.pajinatify > span.pajinatify__arrow.arrow__next:before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-left: -6px;
}
.pajinatify > span.pajinatify__arrow.arrow__prev {
  left: 0;
}
.pajinatify > span.pajinatify__arrow.arrow__prev:before {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  margin-left: -4px;
}
