:host,
:root {
  --step: 4px;
  --sidebar: 280px;
  --container-padding: 0px;
  --neutral-000: #ffffff;
  --neutral-050: #f9fafb;
  --neutral-100: #f3f4f6;
  --neutral-200: #e5e7eb;
  --neutral-300: #d1d5db;
  --neutral-400: #9ca3af;
  --neutral-500: #6b7280;
  --neutral-600: #4b5563;
  --neutral-700: #374151;
  --neutral-800: #1f2937;
  --neutral-900: #111827;
  --neutral-950: #030712;
  --neutral-dim: rgba(217, 222, 223, 0.3);
  --select: #1476ff10;
  --primary: #001936;
  --secondary: #bb8459;
  --error: #ef6f6c;
  --success: #7eca63;
}

.easymap-element {
  position: relative;
  overflow: hidden;
}

.easymap-element input,
.easymap-element button,
.easymap-element a,
.easymap-element a:active {
  outline: none;
  box-shadow: none;
  text-decoration: none !important;
}

.easymap-element a:focus {
  outline: none;
}

.easymap-element>* {
  opacity: 1;
  transition: opacity 0.4s;
}

.easymap-element.easymap-loading>* {
  opacity: 0;
}

.easymap-element strong {
  color: #333;
}

/* Preloader & Error */
.easymap-element.easymap-loading {
  background: url(images/loader.gif) no-repeat center;
}

.easymap-element.easymap-error {
  background: url(images/error-icon.png) no-repeat center;
}

/* Scrollbars */
/* Firefox */
.easymap-element * {
  scrollbar-width: thin;
  scrollbar-color: #ddd #fdfdfd;
}

/* Chrome, Edge, and Safari */
.easymap-element *::-webkit-scrollbar {
  width: 12px;
}

.easymap-element *::-webkit-scrollbar-track {
  background-color: #fdfdfd;
}

.easymap-element *::-webkit-scrollbar-thumb {
  background-color: #ddd;
  border-radius: 20px;
  border: 3px solid #fdfdfd;
  box-sizing: border-box;
}

.easymap-element .easymap-tooltip * {
  scrollbar-color: #ddd #fff;
}

.easymap-element .easymap-tooltip *::-webkit-scrollbar-track {
  background-color: #fff;
}

.easymap-element .easymap-tooltip *::-webkit-scrollbar-thumb {
  border: 3px solid #fff;
}

/* Map container */
.easymap-container {
  background-color: var(--neutral-050);
  flex-shrink: 0;
  padding: var(--container-padding);
  box-sizing: border-box;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  margin-left: 280px;
}

.easymap-map {
  transform-origin: 0 0;
}

.easymap-rights {
  display: none;
  margin: 12px;
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 10px;
  line-height: 16px;
  letter-spacing: 1px;
  color: #fff;
  mix-blend-mode: overlay;
  filter: drop-shadow(0px 6px 4px rgb(0 0 0 /50%));
}

.easymap-rights a {
  font-size: 12px;
  color: #fff !important;
  font-weight: bold;
}

.map-info2 {
  margin: 12px;
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 10px;
  line-height: 16px;
  letter-spacing: 1px;
  color: #fff;
  mix-blend-mode: overlay;
  filter: drop-shadow(0px 6px 4px rgb(0 0 0 /50%));
}

.map-info2 strong {
  font-size: 12px;
  color: #fff !important;
  font-weight: bold;
}


.map-info {
  display: none !important;
  padding: 12px;
  margin: 0px 4px;
  position: absolute;
  right: 58px;
  /* left: 8px; */
  bottom: 12px;
  background: #ffffffb3;
  border-radius: 12px;
  width: 170px;
}

.map-info span {
  font-size: 12px;
}

.easymap-logo {
  padding: 12px;
  margin: 0px 12px;
  position: absolute;
  right: 0px;
  top: 0;
  background: #fff;
  border-radius: 0 0 12px 12px;
  width: 180px;
  /*	display: none !important;*/
}

.easymap-logo img {
  width: 100%;
  height: auto;
  object-fit: scale-down;
}

.back-btn {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  margin: 12px;
  width: 40px;
  height: 40px;
  border-radius: 15px;
  padding: 10px;
  z-index: 1;
  background: #fff;
  cursor: pointer;
}

/* Map layer */
.easymap-layer img {
  width: 100%;
}

.easymap-map .easymap-map-image {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.easymap-map .easymap-map-video {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Animation and stuff */
.easymap-layer {
  height: 100%;
  width: 100%;
  position: absolute;
  opacity: 0;
  display: block;
  transition:
    transform 0.3s,
    opacity 0.3s;
}

.easymap-layer.easymap-visible {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.easymap-layer.easymap-hidden {
  pointer-events: none;
  display: none;
}

.easymap-layer.easymap-layer-up {
  transform:
    /*scale(1.1)*/
    translateY(-100px);
}

.easymap-layer.easymap-layer-down {
  transform:
    /*scale(0.9)*/
    translateY(100px);
}

/* Hand cursor */
.easymap-map.easymap-zoomable .easymap-map-image {
  cursor: url(images/openhand.cur), default;
}

.easymap-map.easymap-zoomable.easymap-dragging .easymap-map-image {
  cursor: url(images/closedhand.cur), move;
}

/* Marker types */
.easymap-pin {
  background-color: #fb7575;
  background-image: none;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 6px;
  box-shadow: 0 -2px 0 rgba(0, 0, 0, 0.1) inset;
  box-sizing: border-box;
  cursor: pointer;
  font-size: 0;
  width: 12px;
  height: 12px;
  margin-left: -6px;
  margin-top: -6px;
  position: absolute !important;
  transform-origin: 50% 50%;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.easymap-pin:before {
  box-sizing: content-box !important;
}

.easymap-pin.hide {
  display: none;
}

.easymap-pin.easymap-active {
  display: block !important;
}

.easymap-pin.pin-label {
  color: #000;
  font-size: 10px;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
}

.easymap-pin.pin-text {
  background: transparent !important;
  border-radius: 0;
  color: #666;
}

.easymap-pin {
  background-color: #dd3333;
  border-color: #dd3333;
  background-image: none;
  background-size: contain;
  border-radius: 50%;
  box-sizing: border-box;
  line-height: 21px;
  font-size: 12px;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  transform-origin: 50% 50%;
}

.easymap-pin.pin-square {
  background-color: #0071a1;
  border-color: #0071a1;
  border-radius: 0;
}

.easymap-pin.pin-square.pin-bordered:before {
  border-radius: 0;
}

.easymap-pin.pin-rounded {
  background-color: #6b9b26;
  border-color: #6b9b26;
  border-radius: 4px;
}

.easymap-pin.pin-rounded.pin-bordered:before {
  border-radius: 7px;
}

.easymap-pin.pin-sm {
  margin: -5px 0 0 -5px;
  font-size: 0;
  width: 10px;
  height: 10px;
}

.easymap-pin.pin-sm.pin-rounded {
  border-radius: 3px;
}

.easymap-pin.pin-lg {
  margin: -14px 0 0 -14px;
  font-size: 15px;
  line-height: 30px;
  width: 28px;
  height: 28px;
  box-sizing: border-box;
}

.easymap-pin.pin-bordered {
  background-color: white !important;
  background-image: none;
  color: #333 !important;
  line-height: 18px;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
}

.easymap-pin.pin-bordered:before {
  border-color: inherit;
  border-style: solid;
  border-radius: 50%;
  border-width: 3px;
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  position: absolute;
  left: -3px;
  top: -3px;
}

.easymap-pin.pin-triangle {
  margin-top: -20px;
  transform-origin: 50% 140%;
}

.easymap-pin.pin-triangle:before {
  border-style: solid;
  border-width: 9px 8px 0 8px;
  border-color: inherit;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  content: '';
  display: block;
  position: absolute;
  top: 16px;
  left: 2px;
}

/* classic */
.easymap-pin.pin-classic {
  background-color: #f23543;
  background-image: none;
  border-color: #f23543;
  border-radius: 10px;
  line-height: 22px !important;
  width: 20px;
  height: 20px;
  margin-top: -22px;
  margin-left: -10px;
  transform-origin: 50% 140%;
}

.easymap-pin.pin-classic:before {
  border-style: solid;
  border-width: 9px 8px 0 8px;
  border-color: inherit;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  content: '';
  display: block;
  position: absolute;
  top: 16px;
  left: 2px;
}

.easymap-pin.pin-marker {
  background-color: #fcac2b;
  border-color: #fcac2b;
  background-image: none;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  line-height: 20px;
  margin-top: -9px;
  margin-left: -9px;
  transform-origin: 50% 50%;
}

.easymap-pin.pin-marker:before {
  border-color: inherit;
  border-style: solid;
  border-width: 6px;
  border-radius: 50%;
  content: '';
  display: block;
  opacity: 0.2;
  width: 18px;
  height: 18px;
  position: absolute;
  left: -6px;
  top: -6px;
}

.easymap-pin.pin-disk {
  background-color: white !important;
  background-image: none;
  border-color: #f19819;
  border-radius: 8px;
  color: #333 !important;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  margin-left: -8px;
  transform-origin: 50% 50%;
}

.easymap-pin.pin-disk:before {
  border-color: inherit;
  border-style: solid;
  border-width: 3px;
  border-radius: 16px;
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  left: -3px;
  top: -3px;
}

.easymap-pin.pin-ribbon {
  background-color: #46b450;
  background-image: none;
  border-color: #46b450;
  border-radius: 2px 2px 2px 0;
  height: 16px;
  line-height: 16px;
  min-width: 10px;
  width: auto;
  padding: 0 3px;
  margin-left: -8px;
  margin-top: -20px;
  transform-origin: 8px 20px;
}

.easymap-pin.pin-ribbon:after {
  border-style: solid;
  border-width: 0 8px 4px 0;
  border-color: transparent rgba(0, 0, 0, 0.5) transparent transparent;
  content: '';
  display: block;
  position: absolute;
  top: 16px;
  left: 0px;
}

.easymap-pin.pin-ribbon:before {
  border-style: solid;
  border-width: 0 8px 4px 0;
  border-color: inherit;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  content: '';
  display: block;
  position: absolute;
  top: 16px;
  left: 0px;
}

.easymap-pin.pin-dot {
  background-color: transparent !important;
  background-image: none;
  border-color: #29afa1;
  border-radius: 0;
  color: #333 !important;
  height: 16px;
  line-height: 16px;
  font-size: 11px;
  min-width: 10px;
  width: auto;
  padding: 0 3px;
  margin-left: 4px;
  margin-top: -8px;
  transform-origin: -4px 8px;
}

.easymap-pin.pin-dot:before {
  border-color: inherit;
  border-style: solid;
  border-width: 3px;
  border-radius: 12px;
  content: '';
  display: block;
  width: 0px;
  height: 0px;
  position: absolute;
  top: 5px;
  left: -7px;
}

.easymap-pin.pin-image {
  background-size: 32px;
  border: 2px solid #fff;
  border-radius: 50%;
  box-sizing: border-box;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  font-size: 0 !important;
  width: 32px;
  height: 32px;
  margin-top: -16px;
  margin-left: -16px;
  transform-origin: 50%;
}

.easymap-pin.pin-icon {
  background-size: 16px;
  background-color: transparent;
  border: none;
  border-radius: 0;
  font-size: 0 !important;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  margin-left: -8px;
  transform-origin: 50%;
}

.easymap-pin.pin-circle {
  background: none !important;
  border: 2px solid #fb7575;
  width: 8px;
  height: 8px;
  margin-left: -6px;
  margin-top: -6px;
  transform-origin: 50% 50%;
}

.easymap-pin.pin-transparent {
  background-image: none;
  background-color: #795ecd;
  border-radius: 10px;
  width: 20px;
  height: 20px;
  margin-left: -10px;
  margin-top: -10px;
  opacity: 0.5 !important;
  transform-origin: 50% 50%;
}

.easymap-pin.pin-md {
  border-radius: 50%;
  margin-left: -10px;
  margin-top: -10px;
  line-height: 20px;
  width: 20px;
  height: 20px;
}

.easymap-pin.pin-pulse {
  background-color: #007cba;
}

.easymap-pin.pin-pulse:before {
  content: '';
  border: 2px solid #888;
  border-radius: 30px;
  height: inherit;
  width: inherit;
  top: -2px;
  left: -2px;
  position: absolute;
  animation: pulsate 1.8s ease-out;
  animation-iteration-count: infinite;
  animation-delay: 1s;
  opacity: 0;
  box-sizing: content-box;
}

@-webkit-keyframes pulsate {
  0% {
    -webkit-transform: scale(1, 1);
    opacity: 0;
  }

  25% {
    opacity: 0.5;
  }

  50% {
    -webkit-transform: scale(1.6, 1.6);
    opacity: 0;
  }
}

@keyframes pulsate {
  0% {
    transform: scale(1, 1);
    opacity: 0;
  }

  25% {
    opacity: 0.5;
  }

  50% {
    transform: scale(1.6, 1.6);
    opacity: 0;
  }
}

/* Minimap */
.easymap-minimap {
  border: 1px solid rgba(0, 0, 0, 0.1);
  position: absolute;
  margin: 12px;
  bottom: 0;
  left: 0;
  opacity: 0.5;
  overflow: hidden;
  transition: opacity 0.4s;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.easymap-minimap-layer {
  line-height: 0;
}

.easymap-minimap img {
  width: 100%;
}

.easymap-minimap-overlay {
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.easymap-minimap .easymap-minimap-active {
  position: absolute;
  opacity: 1;
  top: 0;
  left: 0;
}

.easymap-minimap-background {
  width: 140px !important;
  -webkit-filter: blur(2px);
  filter: blur(2px);
}

/* UI Buttons */
.easymap-button {
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  border: none !important;
  border-radius: 12px;
  cursor: pointer;
  width: 36px;
  height: 36px;
  padding: 0;
  position: relative;
  transition: background-color 0.2s;
}

.easymap-element .easymap-button:focus,
.easymap-button:hover,
.easymap-button:focus {
  background-color: #fff;
}

.easymap-container>.easymap-button {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.06);
  position: absolute;
  margin: 12px;
}

.easymap-icon {
  box-sizing: content-box;
  fill: #222;
  width: 18px;
  height: 18px;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.easymap-search .easymap-icon {
  margin-left: 6px;
}

/* Clear Button */
.easymap-clear-button {
  background-size: 16px 16px;
  display: none;
  font-size: 0;
  bottom: 82px;
  right: 0;
}

/* Zoom Buttons */
.easymap-zoom-buttons {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.06);
  margin: 12px;
  position: absolute;
  right: 0;
  bottom: 0;
}

.easymap-zoom-buttons button {
  display: block;
}

.easymap-zoom-buttons button:disabled {
  background-color: #eee;
  cursor: default;
}

button.easymap-zoomin-button {
  background-size: 10px 10px;
  border-radius: 12px 12px 0 0;
}

button.easymap-zoomout-button {
  background-size: 10px 10px;
  border-radius: 0 0 12px 12px;
}

/* Fullscreen */
.easymap-fullscreen {
  background-color: #fafafa;
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  margin: 0 !important;
  max-width: 100% !important;
  max-height: 100% !important;
  z-index: 99980;
}

.easymap-fullscreen-button {
  background-size: 14px 14px;
  top: 0;
  left: 0;
}

.easymap-fullscreen-button .easymap-icon-fullscreen-exit,
.easymap-fullscreen .easymap-fullscreen-button .easymap-icon-fullscreen {
  display: none;
}

.easymap-fullscreen .easymap-fullscreen-button .easymap-icon-fullscreen-exit {
  display: block;
}

.easymap-fullscreen .easymap-container {
  width: 80%;
}

.easymap-fullscreen .easymap-sidebar {
  width: 20%;
}

/* Levels (old) */
.easymap-levels {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.04);
  position: absolute;
  top: 0;
  right: 0;
  margin: 12px;
}

.easymap-levels>* {
  display: block;
  box-sizing: border-box;
}

.easymap-levels-select {
  background-color: #fff;
  border: none;
  border-radius: 0;
  color: #2f3435;
  margin: 0;
  padding: 8px;
  margin-right: 20px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.easymap-levels button {
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 8px 4px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  padding: 0;
  height: 50%;
  width: 20px;
  position: absolute;
  right: 0;
}

.easymap-levels .easymap-levels-down {
  bottom: 0;
}

.easymap-levels .easymap-icon {
  width: 8px;
  height: 4px;
  margin: 0;
  margin-left: -4px;
  margin-top: -2px;
  left: 50%;
  top: 50%;
}

.easymap-levels button:disabled {
  background-color: #eee;
  cursor: default;
}

.easymap-levels {
  display: none;
}

/* new switcher */
.easymap-level-switcher {
  position: absolute;
  right: 12px;
  top: 0;
  bottom: 0;
  margin: auto;
  height: fit-content;
  padding: 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.easymap-level-switcher button {
  background-color: #f8f8f8;
  border-radius: 0;
  color: #888;
  cursor: pointer;
  display: block;
  font-size: 11px;
  font-weight: 600;
  line-height: 20px;
  padding: 4px 10px;
  text-align: center;
  -webkit-user-select: none;
  user-select: none;
  width: 100%;
  border: none;
  transition: transform 0.2s;
  position: relative;
}

.easymap-level-switcher button:hover {
  background-color: #f8f8f8;
}

.easymap-level-switcher button:focus {
  outline: none;
}

.easymap-level-switcher button.easymap-selected {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.06);
  background-color: #fff;
  color: #222;
  transform: scale(1);
  z-index: 100;
}

/* SIDEBAR */
.easymap-sidebar {
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: var(--sidebar);
  padding: 0 8px 0 0;
  overflow: hidden;
  z-index: 110;
  transition: left 0.2s;
}

.easymap-sidebar-right .easymap-sidebar {
  float: right;
}

.easymap-sidebar-right .easymap-container {
  float: none;
}

.easymap-sidebar>* {
  pointer-events: auto;
}

/* .easymap-container {
	float: right;
} */

/* toggle */
.easymap-sidebar-toggle {
  border-radius: 0 12px 12px 0;
  top: 60%;
  /* top: 70%; */
  left: 0;
  margin: 0 !important;
  transition: opacity 0.2s;
  position: relative;
  width: 40px;
  height: 80px;
  clip-path: path('M20 20.552c-11.046 0-20-8.904-20-19.889C0 .441.004.22.01 0H0v80c0-10.985 8.954-19.89 20-19.89h8.889C35.025 60.11 40 55.163 40 49.06V31.382c0-6.102-4.975-11.05-11.111-11.05-2.971 0-5.93.221-8.889.221Z'
    );
}

/*.easymap-sidebar-toggle:before, .easymap-sidebar-toggle:after {
    content: "";
    position: absolute;
    width: 25px;
    height: 24px;
    left: 0px;
    background: url(images/curve-btn.svg) no-repeat 0 0/100%;
}
.easymap-sidebar-toggle:before {
	background-position: 0 0;
    top: -23px;
}
.easymap-sidebar-toggle:after {
	background-position: 0 -24px;
    bottom: -23px;
}*/
.easymap-dynamic-sidebar:not(.easymap-portrait) .easymap-container {
  transition: margin 0.4s;
  /*	margin: 0;*/
}

.easymap-portrait .easymap-sidebar-toggle {
  display: none;
}

.easymap-sidebar-right .easymap-sidebar-toggle {
  left: auto;
  right: 0;
  transform: rotate(180deg);
}

.easymap-sidebar-toggle,
.easymap-sidebar-toggle:hover,
.easymap-element .easymap-sidebar-toggle:focus,
.easymap-element .easymap-sidebar-toggle:active {
  background-color: rgb(255 255 255);
}

.easymap-hidden-sidebar .easymap-sidebar-toggle {
  margin: 0 !important;
}

.easymap-sidebar-toggle .easymap-icon-sidebar {
  /*	fill: #fff;*/
  transition: transform 0.4s;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 40px;
}

.easymap-hidden-sidebar .easymap-sidebar-toggle .easymap-icon-sidebar {
  transform: rotate(180deg);
}

.easymap-sidebar {
  /* transition: margin 0.4s, opacity 0.4s; */
}

.easymap-hidden-sidebar .easymap-container {
  margin-left: 0;
}

.easymap-element.easymap-hidden-sidebar:not(.easymap-portrait) .easymap-sidebar {
  margin-left: 0;
  opacity: 1;
}

.easymap-sidebar-right.easymap-hidden-sidebar:not(.easymap-portrait) .easymap-sidebar {
  margin-left: 0;
  margin-right: 0;
}

/* tags row */
.easymap-sidebar.easymap-sidebar-tagsrow .easymap-filter-tags {
  display: block;
}

.easymap-sidebar.easymap-sidebar-tagsrow .easymap-sidebar-header {
  max-height: 110px;
}

.easymap-sidebar.easymap-sidebar-tagsrow .easymap-list-container {
  top: 122px;
}

/* dim */
.easymap-sidebar-dim {
  background-color: #000;
  opacity: 0;
  position: absolute;
  top: 12px;
  right: 12px;
  left: 12px;
  bottom: 12px;
  transition: opacity 0.2s;
  z-index: 1;
  pointer-events: none;
}

.sidebar-filterable-opened.easymap-sidebar-filterable .easymap-sidebar-dim {
  opacity: 0.1;
  pointer-events: auto;
}

/* search */
.easymap-sidebar-header {
  display: flex;
  gap: 8px;
  padding: 9px;
}

.easymap-sidebar-header>.easymap-icon {
  margin-left: 20px;
  margin-top: 32px;
}

.easymap-search {
  background-color: #f2f2f299;
  border-radius: 8px;
  position: relative;
}

.easymap-search>input {
  background: none;
  border: none;
  border-radius: 8px;
  box-sizing: border-box;
  color: var(--neutral-900);
  font-size: 16px !important;
  line-height: 20px !important;
  padding: 10px 10px 10px 36px;
  width: 100%;
}

.easymap-search-input::placeholder {
  opacity: 0.5;
  font-weight: 400;
}

input.easymap-search-input:focus {
  outline: none !important;
}

.easymap-search-input::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

.easymap-search-clear {
  background: none;
  box-shadow: none;
  border: none;
  cursor: pointer;
  display: none;
  position: absolute;
  margin: 0;
  padding: 0;
  top: 12px;
  right: 15px;
  width: 14px;
  height: 14px;
}

.easymap-search-active .easymap-search-clear {
  display: block;
}

.easymap-search-active .easymap-icon.easymap-icon-magnifier {
  display: block;
}

.easymap-search-clear:hover,
.easymap-search-clear:active,
.easymap-search-clear:focus {
  background: none;
  outline: none;
}

.easymap-search-clear .easymap-icon.easymap-icon-cross {
  width: 12px;
  height: 12px;
  padding: 0;
  transition: transform 0.4s;
}

.sidebar-filterable {
  border-radius: 12px;
  border: 3px solid transparent;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  max-height: 100%;
  width: 100%;
  max-width: 400px;
  overflow: hidden;
  flex-shrink: 0;
  transition: border-color 0.2s;
  padding-right: 15px;
}

.sidebar-filterable-opened.sidebar-filterable {
  background-color: var(--neutral-000);
  border-color: var(--neutral-100);
}

/* .easymap-search-clear:hover .easymap-icon-cross { transform: rotate(180deg); } */
.easymap-count {
  background-color: var(--neutral-800);
  box-sizing: border-box;
  border-radius: 8px;
  color: var(--neutral-000);
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  line-height: 8px;
  min-width: 16px;
  padding: 4px;
  position: absolute;
  top: -6px;
  right: -6px;
  vertical-align: middle;
}

.easymap-switch {
  background-color: #f2f2f299;
  box-sizing: content-box;
  border-radius: 8px;
  display: flex;
  min-width: 32px;
  height: 32px;
  padding: 4px;
  position: relative;
}

.easymap-search-toggle {
  background: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  gap: 6px;
  font-size: 15px;
  color: var(--neutral-900);
  flex-grow: 1;
  padding: 8px;
  min-width: 32px;
  height: 100%;
  position: relative;
  transition: color 0.2s;
}

.easymap-search-toggle:hover,
.easymap-search-toggle:focus {
  background-color: transparent;
}

.easymap-sidebar-filterable .easymap-search-toggle {
  display: block;
}

/* .easymap-search-toggle .easymap-icon { margin: 9px; } */
.sidebar-filterable-opened.sidebar-filterable .easymap-search-toggle {
  background-color: #ffffff;
}

.easymap-icon.easymap-icon-cross {
  width: 8px;
  height: 8px;
  padding: 8px;
}

/* Search Disabled */
.easymap-sidebar-nosearch .easymap-list-container {
  top: 12px;
}

/* Tags */
.easymap-filter-tags {
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  display: none;
  padding: 10px;
}

.easymap-tag {
  background-color: #aaa;
  border-radius: 12px;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  cursor: pointer;
  font-size: 12px;
  line-height: 22px;
  font-weight: 600;
  margin-right: 6px;
  padding: 0 8px;
  display: inline-block;
}

.easymap-tag>span {
  background-image: url(images/cross.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 6px 6px;
  display: inline-block;
  margin-left: 6px;
  width: 10px;
  height: 10px;
  opacity: 1;
  background-color: #fff;
  border-radius: 15px;
}

.easymap-dir {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 24px;
  padding: 0 4px;
  margin: 8px 0;
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}

/* Sidebar list */
.easymap-list-container {
  max-width: 100%;
  gap: 4px;
  margin: 0;
  padding: 0 0;
  list-style: none;
  display: none;
}

.easymap-list-container li {
  margin: 0 !important;
}

.easymap-list-container h4 {
  font-size: 16px !important;
  font-weight: 400 !important;
}

.easymap-list-container .easymap-dir-item a {
  padding: 12px 20px 12px 18px;
}

/* Filters */
.easymap-filter {
  display: none;
  flex-direction: column;
  overflow-y: auto;
  opacity: 0;
}

.sidebar-filterable-opened.sidebar-filterable .easymap-filter {
  opacity: 1;
  display: flex;
}

.easymap-filter>ul {
  padding: 0 !important;
  margin: 0 !important;
}

.easymap-filter h5 {
  color: #aaa;
  font-size: 10px;
  margin: 5px 20px;
  font-weight: 400;
}

.easymap-list-category {
  margin: 0 !important;
}

.easymap-list-category>a {
  border-radius: 4px;
  box-sizing: border-box;
  color: #2f3434 !important;
  display: block;
  margin: 0;
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 10px;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background-color 0.2s;
}

.easymap-list-category>a:hover,
.easymap-list-category>a:focus {
  background-color: #f8f8f8;
}

.easymap-list-category h4 {
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  line-height: 22px;
  margin: 0;
}

.easymap-about {
  color: #aaa;
  display: block;
  font-weight: normal;
  font-size: 13px;
  line-height: 16px;
}

/* Thumbnail */
.easymap-list-category .easymap-thumbnail {
  background-color: #aaa;
  border: 2px solid transparent;
  border-radius: 50%;
  box-sizing: border-box;
  width: 40px;
  height: 40px;
}

.easymap-list-category .easymap-thumbnail-placeholder {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  font-weight: bold;
  line-height: 22px;
}

.easymap-thumbnail {
  background-color: var(--neutral-200);
  box-sizing: border-box;
  border-radius: 4px;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  overflow: hidden;
  opacity: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition:
    opacity 0.2s,
    background-color 0.2s;
}

.easymap-thumbnail-placeholder {
  background-color: #8f8f8f;
  box-sizing: border-box;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 34px;
  padding: 8px 4px;
  width: 50px;
  height: 50px;
  text-align: center;
}

.easymap-list-category>a .easymap-list-count {
  color: #aaa;
  font-size: 12px;
  font-weight: normal;
  margin-left: 4px;
  opacity: 0.5;
}

.easymap-dir-item[data-location='init'] {
  display: none !important;
}

.easymap-dir-item>a {
  border-left: 2px solid transparent;
  padding: 10px 20px 10px 18px;
  text-decoration: none;
  transition:
    border,
    background-color 0.1s;
}

.easymap-sidebar .easymap-dir-item:hover>a,
.easymap-sidebar .easymap-dir-item>a:focus,
.easymap-sidebar .easymap-dir-item.easymap-active>a {
  background-color: #f4f4f4;
  padding: 12px 20px;
}

/* Directory */
.easymap-dir>h3 {
  border-bottom: 2px solid #fafafa;
  font-size: 32px;
  line-height: 60px;
  font-weight: 300;
  margin: 20px 0;
  padding-bottom: 0;
}

.easymap-dir>h3>span {
  border-bottom: 2px solid #888;
  display: inline-block;
  font-weight: 600;
  margin-bottom: -2px;
}

.easymap-dir ul {
  padding-left: 0;
  list-style: none;
}

.easymap-dir.easymap-dir-results {
  margin-top: 40px;
  display: none;
}

.easymap-dir-results-clear {
  background-color: #fafafa;
  border: none;
  border-radius: 4px;
  color: #333;
  cursor: pointer;
  font-weight: bold;
  font-size: 12px;
  margin-left: 20px;
  padding: 10px 12px;
  outline: none;
  vertical-align: middle;
  transition: background-color 0.2s;
}

.easymap-dir-results-clear .easymap-icon-cross {
  padding: 0;
  margin: 0 0 0 6px;
  position: static;
  transition: transform 0.4s;
}

.easymap-dir-results-clear:hover .easymap-icon-cross {
  transform: rotate(180deg);
}

.easymap-dir-results-clear:hover,
.easymap-dir-results-clear:active {
  background-color: #eee;
}

.easymap-dir.easymap-dir-horizontal ul {
  max-width: 100%;
  white-space: nowrap;
  overflow-x: auto;
  margin-bottom: 40px;
}

.easymap-dir.easymap-dir-horizontal .easymap-dir-item {
  white-space: normal;
  display: inline-block;
}

.easymap-dir-item {
  box-shadow: none;
  all: unset;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--neutral-900);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  padding: 6px;
  transition:
    border-color 0.2s,
    background-color 0.2s,
    box-shadow 0.2s;
}

.easymap-dir-item:hover,
.easymap-dir-item:focus {
  background-color: var(--neutral-000);
  border-color: var(--neutral-200);
  box-shadow: 0 6px 12px #00000005;
  outline: none;
}

.easymap-dir-item.easymap-active {
  border-color: var(--neutral-100);
}

.easymap-item-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow: hidden;
  max-width: 100%;
}

.easymap-dir-item h4 {
  color: #222;
  font-size: 14px;
  margin: 4px 0 !important;
  font-weight: 600;
  line-height: 20px !important;
  display: inline-block;
}

.easymap-dir-item h5 {
  font-size: 10px;
  font-weight: 400;
  display: inline-block;
}

.easymap-dir-grid ul {
  margin: 0 -20px;
}

.easymap-dir-grid .easymap-dir-item {
  margin-bottom: 20px;
  text-align: center;
}

.easymap-dir-grid.easymap-dir-columns .easymap-dir-item {
  display: inline-block;
  width: 25%;
  vertical-align: top;
}

.easymap-dir-grid .easymap-dir-item h4 {
  font-size: 16px;
  margin-bottom: 10px;
}

.easymap-dir-grid .easymap-dir-item a {
  padding: 20px;
}

.easymap-dir-grid .easymap-thumbnail {
  margin-bottom: 12px;
  float: none;
  width: 100%;
  min-height: 180px;
}

.easymap-dir-grid .easymap-thumbnail-placeholder {
  line-height: 160px;
  font-weight: bold;
  font-size: 42px;
}

@media screen and (max-width: 992px) {
  .easymap-dir-grid.easymap-dir-columns .easymap-dir-item {
    width: 33%;
  }

  .easymap-logo {
    /* width: 60px; */
    width: 100px;
    padding: 5px;
    margin: 0px 8px;
  }
}

@media screen and (max-width: 600px) {
  .easymap-dir-grid.easymap-dir-columns .easymap-dir-item {
    width: 50%;
  }
}

@media screen and (max-width: 400px) {
  .sidebar-filterable {
    padding-right: 50px !important;
  }
}

/* dir view */
.easymap-dir-view {
  position: relative;
}

.easymap-dir-view button {
  position: absolute;
  right: 30px;
  top: 0;
}

/* dir search */
.easymap-dir-search {
  border: none;
  box-sizing: border-box;
  width: 100%;
  font-size: 36px;
  outline: none;
  padding: 12px 0;
  transition: padding 0.2s;
}

.easymap-dir-search::placeholder {
  color: #ccc;
  font-weight: normal !important;
}

.easymap-dir-search:focus {
  background-color: #fafafa;
  padding: 12px 20px;
}

.easymap-dir-filter {
  border: none;
  box-sizing: border-box;
  width: 100%;
  font-size: 16px;
  font-weight: bold;
  outline: none;
  padding: 22px 0;
  transition: padding 0.2s;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.easymap-dir-filter:focus {
  background-color: #fafafa;
  padding: 22px 20px;
}

/* Tooltip */
.easymap-tooltip {
  display: none;
  position: absolute;
  transform-origin: 0 0;
  padding-bottom: 30px;
  pointer-events: none;
}

.easymap-tooltip:after {
  content: '';
  border-color: #fff transparent transparent transparent !important;
  border-style: solid;
  border-width: 8px 7px 0 7px;
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  margin-left: -7px;
  margin-top: -33px;
  /* SHIFT */
}

.easymap-tooltip-wrap {
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  max-width: 300px;
  min-width: 120px;
  pointer-events: auto;
  transform: translate(-50%, -100%);
  margin-top: -32px;
  /* SHIFT */
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.easymap-tooltip-bottom .easymap-tooltip-wrap {
  transform: translate(-50%, 0);
  margin-top: 8px;
  /* SHIFT */
  /* margin-top: 17px; */
}

.easymap-tooltip-bottom.easymap-tooltip:after {
  border-color: transparent transparent #fff transparent !important;
  border-width: 0 7px 8px 7px;
  margin-top: 10px;
}

.easymap-tooltip-body {
  padding: 12px;
}

.easymap-tooltip-body:focus {
  outline: none;
}

.easymap-tooltip-body::after {
  content: '';
  clear: both;
  display: table;
}

.easymap-tooltip img {
  max-width: 100%;
  /* max-height: 140px;
  object-fit: cover; */
}

.easymap-tooltip-title {
  color: #333;
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  line-height: 20px;
  margin: 0 12px 0 0 !important;
}

.easymap-hovertip,
.easymap-hovertip>.easymap-tooltip-wrap {
  pointer-events: none;
}

.easymap-hovertip>.easymap-tooltip-wrap {
  min-width: 20px;
  padding: 6px 14px;
}

.easymap-hovertip .easymap-tooltip-title {
  margin: 0 !important;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}

.easymap-tooltip-content {
  margin-top: 10px;
  margin-bottom: 6px;
  margin-right: 0px;
  max-height: 130px;
  overflow-y: auto;
}

.easymap-tooltip .easymap-thumbnail {
  border-radius: 50% !important;
  width: 48px;
  height: 48px;
  margin-right: 12px;
}

.easymap-tooltip-description,
.easymap-tooltip p {
  font-size: 13px;
  line-height: 18px;
  margin: 0;
}

.easymap-tooltip p {
  margin-top: 0;
  margin-bottom: 6px !important;
}

.easymap-tooltip-description p:last-child {
  margin: 0;
}

.easymap-popup-link,
.easymap-web-link,
.easymap-book-link,
.easymap-xtra-link {
  background-color: #888;
  border-radius: 4px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1) !important;
  color: #fff !important;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  float: right;
  margin-top: 4px;
  padding: 4px 8px;
  text-decoration: none;
  transition:
    background-color 0.2s,
    box-shadow 0.2s;
}

.easymap-popup-link:hover,
.easymap-web-link,
.easymap-book-link {
  background-color: #666;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2) !important;
}

.easymap-tooltip-close {
  all: unset;
  cursor: pointer;
  color: var(--neutral-900);
  padding: 4px;
  opacity: 0.5;
  height: 20px;
  width: 20px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 0px;
  top: 0px;
  transition: opacity 0.2s;
}

.easymap-tooltip-close:hover {
  opacity: 1;
}

.easymap-tooltip-close .easymap-icon {
  background-color: #fff;
  border-radius: 50%;
}

/* Lightbox */
.easymap-lightbox-title {
  color: #333;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 20px;
}

.easymap-lightbox {
  background-color: #fff;
  position: relative;
  padding: 20px;
  width: auto;
  max-width: 500px;
  margin: 20px auto;
}

.easymap-lightbox:after {
  content: '';
  display: block;
  clear: both;
}

.easymap-lightbox-description,
.easymap-lightbox p {
  font-size: 18px;
  line-height: 28px;
}

.easymap-popup-image {
  outline: none;
}

.mfp-bg {
  z-index: 99981 !important;
}

.mfp-wrap {
  z-index: 99982 !important;
}

.mfp-content {
  z-index: 99983 !important;
}

/* Lightbox animation */
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}

.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

/* Toggle */
.easymap-toggle {
  display: block;
  cursor: pointer;
  font-size: 14px;
  position: relative;
  margin: 6px 0;
  min-width: 20px;
  min-height: 20px;
}

.easymap-toggle>.easymap-toggle-circle {
  background-color: #aaa;
  border-radius: 50%;
  position: absolute;
  left: 1px;
  top: 1px;
  width: 18px;
  height: 18px;
  transform-origin: center;
  transform: scale(0);
  transition: 0.2s;
}

.easymap-toggle:before {
  background-color: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 50%;
  box-sizing: content-box;
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
}

.easymap-toggle>input {
  display: none;
}

.easymap-toggle>input:checked+span {
  transform: scale(0.7);
}

.easymap-list-category {
  position: relative;
}

.easymap-list-category .easymap-toggle {
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -10px;
  box-sizing: border-box;
}

/* Legend */
.easymap-legend {
  background-color: rgba(255, 255, 255, 0.9);
  margin: 12px;
  padding: 0 8px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.easymap-legend-label {
  display: block;
  font-size: 14px;
  font-weight: normal;
  margin: 6px 0;
  padding-left: 28px;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -ms-user-select: none;
}

.easymap-legend-key {
  background-color: #aaa;
  border: 2px solid #fff;
  border-radius: 50%;
  box-sizing: content-box;
  display: inline-block;
  height: 16px;
  width: 16px;
  position: absolute;
  left: 8px;
}

/* Reveal */
.easymap-revealed {
  visibility: visible !important;
}

/* Portrait mode */
.easymap-portrait.easymap-element {
  height: auto !important;
}

.easymap-portrait .easymap-container,
.easymap-portrait .easymap-sidebar {
  float: none;
  width: 100% !important;
}

.easymap-portrait .easymap-sidebar {
  min-height: 600px;
  max-height: 1000px;
  position: relative;
}

.easymap-portrait .easymap-tooltip {
  max-width: 240px;
}

.easymap-portrait .easymap-minimap-background {
  width: 100px !important;
}

/* Map */
.easymap-map svg {
  width: 100%;
  height: 100%;
}

.easymap-element svg a {
  cursor: pointer;
}

.easymap-clickable:not(g),
g.easymap-clickable>* {
  cursor: pointer;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.easymap-map-image *[id^='MNOINT'],
.easymap-map-image *[id^='nopointer'] {
  pointer-events: none;
}

[id^='MLOC'] .easymap-clickable,
[id^='landmark'] .easymap-clickable {
  cursor: pointer;
}

/* Developer tools */
.easymap-coordinates {
  background-color: rgba(255, 255, 255, 0.9);
  color: #333;
  position: absolute;
  margin: 10px;
  margin-left: -80px;
  padding: 4px 6px;
  font-size: 14px;
  top: 0;
  left: 50%;
  pointer-events: none;
}

/* IE workaround */
@media all and (-ms-high-contrast: none) {
  .easymap-zoomout-button {
    background: #fff url(images/ie/minus.svg) no-repeat center !important;
  }

  .easymap-zoomin-button {
    background: #fff url(images/ie/plus.svg) no-repeat center !important;
  }

  .easymap-clear-button {
    background: #fff url(images/ie/reset.svg) no-repeat center !important;
  }

  .easymap-fullscreen-button {
    background: #fff url(images/ie/fullscreen.svg) no-repeat center !important;
  }

  .easymap-fullscreen .easymap-fullscreen-button {
    background: #fff url(images/ie/fullscreen-exit.svg) no-repeat center !important;
  }

  .easymap-levels .easymap-levels-up {
    background: #fff url(images/ie/arrow-up.svg) no-repeat center !important;
  }

  .easymap-levels .easymap-levels-down {
    background: #fff url(images/ie/arrow-down.svg) no-repeat center !important;
  }

  .easymap-search-clear {
    background: #fff url(images/ie/cross.svg) no-repeat center !important;
  }
}

/* Accessibility */
.easymap-accessible.easymap-element input:focus,
.easymap-accessible.easymap-element button:focus,
.easymap-accessible.easymap-element a:focus,
.easymap-accessible.easymap-element select:focus,
.easymap-accessible.easymap-element *[aria-modal='true'] {
  z-index: 1000;
  outline: solid rgba(0, 115, 170, 0.15);
  outline-offset: 2px;
}

.easymap-accessible.easymap-element input.easymap-search-input:focus {
  outline: solid rgba(0, 115, 170, 0.15);
  outline-offset: 6px;
}

.easymap-accessible.easymap-element input:focus {
  outline-offset: 6px;
}

.easymap-accessible.easymap-element select:focus {
  position: relative;
}

/* SKINS */
/* easymap-booking */
.easymap-booking .easymap-active,
.easymap-booking .easymap-active>* {
  fill: #a8d865;
}

.easymap-booking .unavailable,
.easymap-booking .unavailable>* {
  fill: #f7b332;
  opacity: 1;
  cursor: default;
}

/* INTERACTIVE ELEMENTS */
/* clickable elements */
.easymap-clickable:not(g),
g.easymap-clickable>* {
  transition: fill 0.2s;
}

/* hovered elements */
.easymap-highlight:not(g),
g.easymap-highlight>*,
.easymap-clickable:not(g):hover,
g.easymap-clickable:hover>* {}

/* active elements */
.easymap-active:not(g),
g.easymap-active>* {}

/* Default Style */
.defaultstyle.easymap-clickable:not(g),
g.defaultstyle.easymap-clickable>* {
  fill: #70899c;
}

.defaultstyle.easymap-highlight:not(g),
g.defaultstyle.easymap-highlight>*,
.defaultstyle.easymap-clickable:not(g):hover,
g.defaultstyle.easymap-clickable:hover>* {
  fill: #596d7e;
}

.defaultstyle.easymap-active:not(g),
g.defaultstyle.easymap-active>* {
  fill: #4d5e6d !important;
}

/* Init shape */
[id^='MLOC']>#init,
[id^='landmark']>#init,
svg>#items>#init {
  visibility: hidden;
}

/* Highlight */
.easymap-filtered .easymap-pin {
  opacity: 0.4 !important;
}

.easymap-filtered .easymap-pin.easymap-highlight {
  display: block !important;
  opacity: 1 !important;
}

.easymap-filtered svg [id^='MLOC']>*,
.easymap-filtered svg [id^='landmark']>* {
  opacity: 0.4 !important;
}

.easymap-filtered .easymap-clickable.easymap-highlight {
  opacity: 1 !important;
}

/* CUSTOM STYLES */
.easymap-image,
.easymap-tooltip-wrap {
  max-width: 300px !important;
  border-radius: 12px;
}

/* tooltip width */
.easymap-tooltip-content {
  max-height: 130px;
}

/* tooltip height */

.easymap-image {
  /* height: 160px !important; */
  height: 140px !important;
  object-fit: cover;
}

.soceasymap-btns {
  display: flex;
  gap: 12px;
  align-items: center;
}

.easymap-btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.easymap-soc-link {
  font-size: 20px;
  position: relative;
  margin: 0;
}

.easymap-soc-link .small {
  font-size: 14px;
  position: relative;
  margin: 8px;
}

/* example custom pin */
.easymap-pin.my-new-pin {
  /* replace 'my-new-pin' with the name of your pin */
  background-image: url(images/my-new-pin.png);
  /* define the path to image file */
  background-size: 20px 30px;
  width: 20px;
  height: 30px;
  margin-left: -10px;
  /* negative margins are used for */
  margin-top: -15px;
  /* defining the pin's origin */
}

@media (max-width: 768px) {
  .easymap-rights {
    display: none;
  }

  .easymap-tooltip-title {
    font-size: 14px !important;
  }

  /* .map-info {
    right: 58px !important;
  } */
}