@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");
:root {
  --ps-primary-color: #107657;
  --ps-primary-color: #185597;
  --ps-primary-color: #e66b19;
  --ps-blue-700: #185597;
  --ps-orange-700: #e66b19;
  --ps-purple-500: #6A35BD;
}

:root {
  --fz: 1rem;
  --fz-xxs: 0.5rem;
  --fz-xs: 0.75rem;
  --fz-sm: 0.875rem;
  --fz-h6: 0.75rem;
  --fz-h5: 0.875rem;
  --fz-h4: 0.875rem;
  --fz-h3: 1rem;
  --fz-h2: 1.5rem;
  --fz-h1: 2rem;
}

@media (min-width: 1024px) {
  :root {
    --fz: 1.125rem;
    --fz-xxs: 0.75rem;
    --fz-xs: 0.875rem;
    --fz-sm: 1rem;
    --fz-h6: 0.875rem;
    --fz-h5: 1rem;
    --fz-h4: 1rem;
    --fz-h3: 1.25rem;
    --fz-h2: 1.75rem;
    --fz-h1: 3rem;
  }
}
:root {
  --ps-size: 1rem;
  --ps-size-xxs: 0.25rem;
  --ps-size-xs: 0.5rem;
  --ps-size-sm: 0.75rem;
  --ps-size-md: 1.25rem;
  --ps-size-lg: 1.5rem;
  --ps-size-xl: 2rem;
  --ps-size-xxl: 2.5rem;
}

html,
body {
  font-family: "Montserrat", sans-serif;
  font-size: var(--fz-sm);
  line-height: 1.5;
  color: #2b2b2b;
}
html *,
body * {
  font-family: inherit;
  font-size: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}

h1 {
  font-size: var(--fz-h1);
  line-height: 1.25;
  font-weight: 700;
}

h2 {
  margin-top: 1rem;
  font-size: var(--wp--preset--font-size--heading-2);
  line-height: 1.25;
}

h3 {
  margin-top: 1rem;
  font-size: var(--wp--preset--font-size--heading-3);
  line-height: 1.25;
}

h4 {
  font-size: var(--fz-h4);
  line-height: 1.25;
}

mark {
  background-color: transparent;
}

.ps-separator {
  padding-inline: 2px;
}

.ps-color-red-500 {
  color: #BE4646;
}
.ps-color-primary {
  color: var(--wp--preset--color--ps-primary);
}

.text-center {
  text-align: center;
}

.display-block {
  display: block;
}
.display-block-i {
  display: block !important;
}

.ps-block-label {
  display: block;
  font-size: var(--wp--preset--font-size--2-xs);
  text-transform: uppercase;
  color: var(--wp--preset--color--ps-primary);
  font-weight: 600;
  letter-spacing: 3px;
}
.ps-block-subtitle {
  color: #4D4D4D;
}

*,
::before,
::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  line-height: 1.5;
}

html {
  overflow: hidden;
  height: 100%;
}

body {
  padding-bottom: 68px;
  background-color: #F8F6F2;
  height: 100%;
  overflow: auto;
}

.ps-site-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.ps-site-page > main {
  flex-basis: 0;
  flex-grow: 1;
}

img,
svg {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}

.ps-grid {
  display: grid;
  gap: var(--ps-size-xl);
}

.ps-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--ps-size);
}

.ps-container-fluid {
  max-width: 100%;
  padding: 0 var(--ps-size);
}

.ps-d-none,
.hidden,
.is-hidden {
  display: none !important;
}

@media (min-width: 1024px) {
  body {
    padding-bottom: 0;
  }
}
body.locked {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.ps-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-height: 100%;
  padding-bottom: 68px;
  background: #fff;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, max-height 0.3s ease, height 0.3s ease;
  z-index: 300;
  overflow: hidden;
  touch-action: none;
}
.ps-sheet.collapsed {
  height: clamp(150px, 18dvh, 200px);
}
.ps-sheet.half {
  height: clamp(280px, 40dvh, 500px);
}
.ps-sheet.full {
  height: clamp(480px, 75dvh, 100vh);
}
.ps-sheet.custom {
  height: var(--start);
}
.ps-sheet-header {
  padding: var(--ps-size-xs);
}
.ps-sheet-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ps-sheet-header-label {
  margin-block: 0;
  font-weight: 600;
}
.ps-sheet .ps-pullbar {
  display: flex;
  padding-block: var(--ps-size-xs) var(--ps-size-md);
  text-align: center;
  cursor: grab;
  touch-action: none;
}
.ps-sheet .ps-pullbar-indicator {
  display: block;
  width: 120px;
  height: 5px;
  background: #ccc;
  border-radius: 5px;
  margin: 0 auto;
}
.ps-sheet-content {
  position: relative;
  flex-grow: 1;
  padding-inline: var(--ps-size-xs);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  scroll-padding-bottom: 2rem;
}
.ps-sheet-text {
  margin-block: var(--ps-size);
  font-size: var(--fz-sm);
  font-weight: 500;
}
.ps-sheet .sheet-content {
  padding: 16px;
  overflow-y: auto;
  flex-grow: 1;
}
@media (min-width: 1024px) {
  .ps-sheet {
    position: relative;
    flex: 0 0 clamp(280px, 30dvw, 400px);
    max-width: 30dvw;
    height: 100%;
    border-radius: 0;
    padding: 0;
    transition: none;
    box-shadow: none;
  }
  .ps-sheet.collapsed, .ps-sheet.half, .ps-sheet.full {
    height: 100%;
  }
  .ps-sheet-header {
    padding: var(--ps-size-md) var(--ps-size-lg);
  }
  .ps-sheet-content {
    padding-inline: var(--ps-size-lg);
  }
  .ps-sheet .ps-pullbar {
    display: none;
  }
}

#ps-map {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.ps-map-wrapper {
  flex-basis: 0;
  flex-grow: 1;
  position: relative;
  width: 100%;
  z-index: 20;
  overflow: hidden;
}
.ps-map-box {
  width: 100%;
  height: 100%;
  border-radius: var(--ps-size-md);
  box-shadow: 0 0 var(--ps-size-xs) var(--ps-size-xxs) rgba(43, 43, 43, 0.1);
}
.ps-map-search {
  position: absolute;
  left: var(--ps-size-sm);
  top: var(--ps-size-sm);
  z-index: 1200;
  width: 100%;
  max-width: 300px;
}
.ps-map-search input {
  box-shadow: 0 0 var(--ps-size-xs) var(--ps-size-xxs) rgba(43, 43, 43, 0.1);
}
.ps-map-controls {
  position: absolute;
  right: var(--ps-size-sm);
  top: calc(74px + var(--ps-size-xs));
  z-index: 1200;
}
.ps-map-label {
  margin-block: 0;
  font-size: var(--fz-sm);
  font-weight: 600;
  line-height: 1.125rem;
}
@media (min-width: 1024px) {
  .ps-map-wrapper {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
    margin-bottom: 0;
  }
}

.ps-marker-wrapper {
  background: transparent;
  border: none;
}
.ps-marker-wrapper.active .ps-pet-marker {
  transform: scale(1.2);
}

.ps-pet-marker img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--wp--preset--color--ps-primary);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}
.ps-pet-icon {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ps-pet-icon.active .ps-pet-circle {
  transform: rotateY(180deg);
  transform: scale(1.2);
  opacity: 0.9;
}
.ps-pet-circle {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  transition: all 0.2s ease-in;
  transform-origin: center center;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}

.ps-color-dog {
  background-color: #409263;
}

.ps-color-cat {
  background-color: #1E8CFF;
}

.ps-color-default {
  background-color: #999;
}

.ps-pet-circle.ps-status-lost {
  border: 4px solid #F28A8A;
}

.ps-pet-circle.ps-status-spotted {
  border: 4px solid #96D3B0;
}

#ps-modal-pet-report-response .error-icon {
  display: none;
}
#ps-modal-pet-report-response.error .success-icon {
  display: none;
}
#ps-modal-pet-report-response.error .error-icon {
  display: inline;
}
#ps-modal-pet-report-response .found .success-icon path {
  fill: green;
}

.ps-map-pet-list {
  margin-inline: calc(-1 * var(--ps-size-xs));
}
@media (min-width: 1024px) {
  .ps-map-pet-list {
    margin-inline: calc(-1 * var(--ps-size-lg));
  }
}
.ps-map-pet-list .ps-pet-list-message {
  padding-inline: var(--ps-size-xs);
  font-weight: 500;
}
@media (min-width: 1024px) {
  .ps-map-pet-list .ps-pet-list-message {
    padding-inline: var(--ps-size-lg);
  }
}

.ps-pet-card {
  display: flex;
  flex-direction: column;
  gap: var(--ps-size-sm);
  padding: var(--ps-size) var(--ps-size-xs);
}
.ps-pet-card:not(:last-child) {
  border-bottom: 1px solid #f5f2f2;
}
.ps-pet-card-owner {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--wp--preset--color--ps-primary) !important;
  background-color: var(--wp--preset--color--ps-primary-100);
}
.ps-pet-card-owner .is-author-icon {
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  max-width: 24px;
  border-radius: 0 0 0 var(--ps-size-xxs);
  padding: var(--ps-size-xxs);
  color: #CC644A;
  background-color: var(--wp--preset--color--ps-primary-800);
}
.ps-pet-card-owner .is-author-icon img {
  filter: invert(1);
}
.ps-pet-card-owner::after {
  position: absolute;
  display: block;
  width: 24px;
  height: 24px;
  top: 0;
  right: 0;
  background-color: #CC644A;
  transform-origin: 50% 50%;
  transform: rotate(45deg) translate(-50%, -50%);
}
.ps-pet-card-inner {
  display: grid;
  column-gap: var(--ps-size-sm);
  grid-template-columns: 80px 1fr 20px;
  align-items: center;
}
.ps-pet-card-photo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border-radius: var(--ps-size-sm);
  background-color: #F8F6F2;
  overflow: hidden;
  align-self: self-start;
}
.ps-pet-card-info {
  display: flex;
  flex-direction: column;
  gap: var(--ps-size-xs);
}
.ps-pet-card-type {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  font-size: var(--fz-xs);
  font-weight: 500;
  text-align: center;
}
.ps-pet-card-type.lost {
  background-color: #FBDEDE;
  color: #BE4646;
}
.ps-pet-card-type.spotted {
  background-color: #CCE8D8;
  color: #328054;
}
.ps-pet-card-row {
  display: flex;
  align-items: flex-start;
  column-gap: var(--ps-size-xxs);
  line-height: 1.2;
}
.ps-pet-card-petdata {
  flex-wrap: wrap;
  font-size: var(--fz-sm);
}
.ps-pet-card-breed, .ps-pet-card-address, .ps-pet-card-date {
  font-size: var(--fz-xs);
  font-weight: 500;
  line-height: 1.5;
  color: #474747;
}
.ps-pet-card-breed img,
.ps-pet-card-breed svg, .ps-pet-card-address img,
.ps-pet-card-address svg, .ps-pet-card-date img,
.ps-pet-card-date svg {
  flex: 0 0 16px;
  max-width: 16px;
}
@media (min-width: 1024px) {
  .ps-pet-card-type {
    font-size: var(--fz-xxs);
  }
  .ps-pet-card-breed, .ps-pet-card-address, .ps-pet-card-date {
    line-height: 1.25;
  }
}

.ps-map-popup {
  position: fixed;
  bottom: 68px;
  left: 0;
  width: 100%;
  background: #ffffff;
  padding: var(--ps-size);
  border-radius: var(--ps-size-sm) var(--ps-size-sm) 0 0;
  z-index: 1300;
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.ps-map-popup-inner {
  display: flex;
  flex-direction: column;
  gap: var(--ps-size);
}
.ps-map-popup.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.ps-map-popup-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--ps-size-sm);
}
.ps-map-popup-header .icon {
  display: none;
}
.ps-map-popup-title {
  margin-block: 0;
  margin-left: auto;
}
.ps-map-popup-breed {
  display: none;
}
.ps-map-popup-breed-label {
  font-size: var(--fz-sm);
  font-weight: 500;
}
.ps-map-popup-content {
  display: flex;
  flex-direction: column;
  gap: var(--ps-size-sm);
}
.ps-map-popup-content.is-hidden {
  display: none;
}
.ps-map-popup-info {
  display: flex;
  align-items: flex-start;
  gap: var(--ps-size-sm);
  font-size: var(--fz-xs);
  text-transform: capitalize;
}
.ps-map-popup-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 80px;
  max-width: 80px;
  height: 80px;
  border-radius: var(--ps-size-sm);
  overflow: hidden;
  background-color: #F8F6F2;
}
.ps-map-popup-photo img {
  object-fit: cover;
  object-position: center;
}
.ps-map-popup-photo img[src*=http] + img {
  display: none;
}
.ps-map-popup-photo img + img {
  object-fit: contain;
}
.ps-map-popup-meta {
  display: flex;
  flex-direction: column;
  flex-basis: 0;
  flex-grow: 1;
  gap: var(--ps-size-xs);
}
.ps-map-popup-cta {
  display: flex;
  justify-content: center;
}
.ps-map-popup-breed, .ps-map-popup-address, .ps-map-popup-date {
  display: flex;
  align-items: flex-start;
  gap: var(--ps-size-xs);
}
.ps-map-popup-breed svg, .ps-map-popup-address svg, .ps-map-popup-date svg {
  flex: 0 0 16px;
  width: 16px;
  margin-top: 1px;
}
.ps-map-popup-breed .icon, .ps-map-popup-address .icon, .ps-map-popup-date .icon {
  display: none;
}
.ps-map-popup-breed .breed-other, .ps-map-popup-address .breed-other, .ps-map-popup-date .breed-other {
  display: none;
}
.ps-map-popup-note {
  flex: 0 0 100%;
  max-width: 100%;
  margin: 0;
  font-size: var(--fz-sm);
}
.ps-map-popup-footer {
  display: flex;
  justify-content: space-between;
  gap: var(--ps-size-md);
  padding-top: var(--ps-size-sm);
  font-size: var(--fz-sm);
}
.ps-map-popup-footer i {
  font-style: normal;
}
.ps-map-popup-close {
  width: 24px;
  height: 24px;
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}
.ps-map-popup-close img,
.ps-map-popup-close svg {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
@media (min-width: 1024px) {
  .ps-map-popup {
    position: absolute;
    max-width: clamp(280px, 30dvw, 400px);
    left: clamp(280px, 30dvw, 400px);
    bottom: auto;
    top: 0;
    border-radius: var(--ps-size);
    padding: var(--ps-size-md) var(--ps-size-lg);
    box-shadow: 0 0 5px 0 rgba(11, 23, 85, 0.05), 0 1px 10px 0 rgba(11, 23, 85, 0.03), 0 3px 15px 0 rgba(11, 23, 85, 0.01);
  }
  .ps-map-popup.visible {
    margin: var(--ps-size-sm);
  }
}
.ps-map-popup.spotted .ps-map-popup-title {
  display: none;
}
.ps-map-popup:not(.spotted) .ps-map-popup-title.title {
  display: none;
}
.ps-map-popup.dog .dog {
  display: block;
}
.ps-map-popup.cat .cat {
  display: block;
}
.ps-map-popup.other .other {
  display: block;
}
.ps-map-popup.breed-other #ps-map-popup-breed-label {
  display: none;
}
.ps-map-popup.breed-other .breed-other {
  display: block;
}
.ps-map-popup.male .male {
  display: block;
}
.ps-map-popup.female .female {
  display: block;
}

.ps-tabs-content.active {
  display: block;
}
.ps-tabs-reverse .ps-tabs-nav-item {
  display: flex;
}
.ps-tabs-reverse .ps-tabs-nav-item.active {
  display: none;
}

.leaflet-cluster-anim .leaflet-marker-icon,
.leaflet-cluster-anim .leaflet-marker-shadow {
  -webkit-transition: -webkit-transform 0.3s ease-out, opacity 0.3s ease-in;
  -moz-transition: -moz-transform 0.3s ease-out, opacity 0.3s ease-in;
  -o-transition: -o-transform 0.3s ease-out, opacity 0.3s ease-in;
  transition: transform 0.3s ease-out, opacity 0.3s ease-in;
}

.leaflet-cluster-spider-leg {
  /* stroke-dashoffset (duration and function) should match with leaflet-marker-icon transform in order to track it exactly */
  -webkit-transition: -webkit-stroke-dashoffset 0.3s ease-out, -webkit-stroke-opacity 0.3s ease-in;
  -moz-transition: -moz-stroke-dashoffset 0.3s ease-out, -moz-stroke-opacity 0.3s ease-in;
  -o-transition: -o-stroke-dashoffset 0.3s ease-out, -o-stroke-opacity 0.3s ease-in;
  transition: stroke-dashoffset 0.3s ease-out, stroke-opacity 0.3s ease-in;
}

.marker-cluster-small {
  background-color: rgba(181, 226, 140, 0.6);
}

.marker-cluster-small div {
  background-color: rgba(110, 204, 57, 0.6);
}

.marker-cluster-medium {
  background-color: rgba(241, 211, 87, 0.6);
}

.marker-cluster-medium div {
  background-color: rgba(240, 194, 12, 0.6);
}

.marker-cluster-large {
  background-color: rgba(253, 156, 115, 0.6);
}

.marker-cluster-large div {
  background-color: rgba(241, 128, 23, 0.6);
}

/* IE 6-8 fallback colors */
.leaflet-oldie .marker-cluster-small {
  background-color: rgb(181, 226, 140);
}

.leaflet-oldie .marker-cluster-small div {
  background-color: rgb(110, 204, 57);
}

.leaflet-oldie .marker-cluster-medium {
  background-color: rgb(241, 211, 87);
}

.leaflet-oldie .marker-cluster-medium div {
  background-color: rgb(240, 194, 12);
}

.leaflet-oldie .marker-cluster-large {
  background-color: rgb(253, 156, 115);
}

.leaflet-oldie .marker-cluster-large div {
  background-color: rgb(241, 128, 23);
}

.marker-cluster {
  background-clip: padding-box;
  border-radius: 20px;
}

.marker-cluster div {
  width: 30px;
  height: 30px;
  margin-left: 5px;
  margin-top: 5px;
  text-align: center;
  border-radius: 15px;
  font: 12px "Helvetica Neue", Arial, Helvetica, sans-serif;
}

.marker-cluster span {
  line-height: 30px;
}

.page-template-map-view {
  height: 100dvh;
  overflow: hidden;
}

.ps-map-topbar {
  width: 100%;
  z-index: 30;
}
.ps-map-topbar-inner {
  padding: var(--ps-size-xs);
  box-shadow: 0px 5px 15px 0px rgba(11, 23, 85, 0.03), 0px 4px 19.433px 0px rgba(11, 23, 85, 0.02), 0px 4.722px 5.786px 0px rgba(11, 23, 85, 0.02);
}
@media (min-width: 1024px) {
  .ps-map-topbar {
    position: absolute;
    left: clamp(280px, 30dvw, 400px);
    max-width: 400px;
    padding: var(--ps-size-sm);
  }
  .ps-map-topbar-inner {
    border-radius: var(--ps-size-xxl);
    padding: var(--ps-size-xxs);
    background-color: #ffffff;
  }
}

.ps-page-map-wrapper {
  width: 100%;
  height: 100dvh;
  padding-bottom: 68px;
}
.ps-page-map-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (min-width: 1024px) {
  .ps-page-map-wrapper {
    padding-bottom: 0;
    height: calc(100dvh - 52px);
  }
  .ps-page-map-inner {
    flex-direction: row;
  }
}

.ps-map-loading {
  position: absolute;
  user-select: none;
  visibility: hidden;
}
.ps-map-loading.is-loading {
  visibility: visible;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(244, 244, 244, 0.2);
  backdrop-filter: blur(2px);
  z-index: 300;
}

.admin-bar .ps-page-map-wrapper {
  width: 100%;
  height: 100dvh;
  padding-bottom: 102px;
}/*# sourceMappingURL=map-view.min.css.map */
