.mapp-container {
  width: 100%;
  height: 100vh;
  position: relative;
}
.mapp-container.active {
  position: fixed !important;
  left: 0 !important;
  top: 0 !important;
  height: 100% !important;
  width: 50% !important;
  padding-bottom: 0 !important;
}

#navbot ul > li.selected img.map-navbot, #navbot ul > li.selected svg.map-navbot {
  border-radius: 13px !important;
  width: 45px !important;
  height: 45px !important;
  padding: 5px !important;
}

.mapp-page {
  width: 100%;
  height: 100%;
  display: none;
}
.mapp-page.active {
  display: flex !important;
  flex-direction: column;
}

.map-navbot-item {
  width: 80px !important;
}

.mapp-button {
  outline: none !important;
  width: 36px;
  height: 36px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 402;
  margin: 0 5px;
  background-color: transparent;
  border: none !important;
  color: rgb(var(--rgb-light-dark));
}
@media only screen and (max-width: 768px) {
  .mapp-button {
    width: 34px !important;
    height: 34px !important;
  }
}

.mapp-sidebar-button {
  background-color: rgb(var(--rgb-first));
  color: rgb(var(--rgb-lightest));
  border: 1px solid rgb(var(--rgb-first));
}

.mapp-location-button {
  background-color: rgb(var(--rgb-first));
  color: rgb(var(--rgb-lightest));
  border: 1px solid rgb(var(--rgb-first));
  right: 10px;
  bottom: 10px;
  font-size: 18px;
  box-shadow: 0 0 0 4px rgba(var(--rgb-first), 0.5), 0 0 8px 0 rgba(var(--rgb-darkest), 0.1);
}

.mapp-bottom-start {
  position: absolute;
  bottom: 10px;
  right: 60px;
  display: flex;
  gap: 8px;
}
html[dir=ltr] .mapp-bottom-start {
  left: 60px;
  right: auto;
}

.mapp-layers-button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(var(--rgb-third));
  color: rgb(var(--rgb-lightest));
  z-index: 401;
  border: none;
  outline: none;
  font-size: 18px;
  box-shadow: 0 0 0 4px rgba(var(--rgb-third), 0.5), 0 0 8px 0 rgba(var(--rgb-darkest), 0.1);
  transition: all 200ms;
}
.mapp-layers-button:hover, .mapp-layers-button:active {
  background-color: rgb(var(--rgb-third));
  color: rgb(var(--rgb-lightest));
  box-shadow: 0 0 0 6px rgba(var(--rgb-third), 0.5), 0 0 8px 0 rgba(var(--rgb-darkest), 0.1);
}
.mapp-layers-button-second {
  background-color: rgb(var(--rgb-first));
  box-shadow: 0 0 0 4px rgba(var(--rgb-first), 0.5), 0 0 8px 0 rgba(var(--rgb-darkest), 0.1);
}
.mapp-layers-button-second:hover, .mapp-layers-button-second:active {
  background-color: rgb(var(--rgb-first));
  color: rgb(var(--rgb-lightest));
  box-shadow: 0 0 0 6px rgba(var(--rgb-first), 0.5), 0 0 8px 0 rgba(var(--rgb-darkest), 0.1);
}

.mapp-header {
  position: absolute;
  top: 0;
  right: 0;
  padding: 8px 0;
  z-index: 700;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  max-width: 100%;
}
@media only screen and (max-width: 360px) {
  .mapp-header {
    gap: 1px !important;
  }
}
html[dir=ltr] .mapp-header {
  left: 0;
  right: auto;
}

.mapp-header .mapp-sidebar-btn {
  font-size: 24px;
  padding: 4px 8px;
  color: rgb(var(--rgb-gray-500));
  margin-top: 2px;
  margin-bottom: 2px;
}
.mapp-header .mapp-sidebar-btn i {
  margin-top: 6px;
}

#mapp-search-select {
  max-width: 40%;
}

.mapp-search {
  border-radius: 20px;
  max-width: 425px;
  display: flex;
  flex-direction: column;
  background-color: rgb(var(--rgb-ninth-lighter));
  width: 100%;
  max-height: 70vh;
  overflow: hidden;
  padding: 4px 8px;
  border: 1px solid rgb(var(--rgb-light));
  margin-left: 8px;
  /* .search-page-categories::-webkit-scrollbar {
     display: none;
  } */
  /* .search-page-categories { */
  /* -ms-overflow-style: none;  IE and Edge */
  /* scrollbar-width: none;  Firefox */
  /* } */
}
@media only screen and (max-width: 768px) {
  .mapp-search {
    padding: 1px 8px !important;
  }
}
.mapp-search.active {
  box-shadow: 0 0 12px 0 rgba(var(--rgb-darkest), 0.1);
}
.mapp-search.active .mapp-search-box {
  border-color: rgb(var(--rgb-light)) !important;
}
.mapp-search.active .mapp-search-content {
  grid-template-rows: 1fr;
  max-height: 50vh;
  width: 100%;
}
.mapp-search-box {
  border-bottom: 1px solid transparent;
}
.mapp-search-box button {
  padding: 4px 10px;
  font-size: 14px;
  height: 100%;
  background-color: transparent !important;
  outline: none !important;
  border: none !important;
  color: rgb(var(--rgb-light-dark));
}
.mapp-search-box button i {
  margin-top: 4px;
}
.mapp-search-input {
  border: 0 !important;
  box-shadow: none !important;
  border-color: transparent !important;
  color: rgb(var(--rgb-darkest)) !important;
}
.mapp-search-input::placeholder {
  color: rgb(var(--rgb-slate-700)) !important;
}
.mapp-search-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: all 200ms;
}
.mapp-search .search-page {
  background-color: transparent !important;
  box-shadow: none !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.mapp-search .search-page-categories {
  width: 100%;
}
.mapp-search .search-page-places {
  display: flex;
  flex-direction: column;
  max-height: 40vh;
}
.mapp-search .search-page-category {
  padding: 5px 12px;
  border-radius: 16px;
  background-color: transparent;
  color: rgb(var(--rgb-light-dark));
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid rgb(var(--rgb-light));
  transition: border 150ms;
  user-select: none;
}
.mapp-search .search-page-category:hover {
  border-color: rgb(var(--rgb-light));
}
.mapp-search .search-page-category.active {
  background-color: rgb(var(--rgb-first-light));
  color: rgb(var(--rgb-lightest));
}

.search-page-places-item {
  cursor: pointer;
  transition: all 200ms;
  border-radius: 8px;
}
.search-page-places-item:hover {
  background-color: rgb(var(--rgb-darkest), 0.03);
}

body.dark .mapp-search-input {
  background-color: rgb(var(--rgb-lighter)) !important;
}

/* Mouse move box start */
.mouse-move-box {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  justify-content: space-between;
  align-items: center;
  background-color: rgb(var(--rgb-ninth-lighter));
  font-size: 12px;
  box-shadow: 0 0 8px 0 rgba(var(--rgb-darkest), 0.08);
  z-index: 401;
}
.mouse-move-box.hide {
  display: none;
}

/* Mouse move box end */
.layers-box-overlay {
  height: 45%;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
  visibility: visible;
  opacity: 1;
}

.search-page-my-place {
  width: 100%;
  overflow-x: auto;
}

/* .search-page-my-place::-webkit-scrollbar {
    display: none;
 } */
/* .search-page-my-place {
    -ms-overflow-style: none; IE and Edge
    scrollbar-width: none;  Firefox
 } */
.my-places-button {
  border: none;
  outline: none;
  background-color: rgb(var(--rgb-first-light));
  color: rgb(var(--rgb-lightest));
  border-radius: 16px;
  white-space: nowrap;
  padding: 3px 8px;
}

.my-places-item {
  padding: 3px 8px;
  border-radius: 16px;
  background-color: transparent;
  color: rgb(var(--rgb-light-dark));
  white-space: nowrap;
  border: 1px solid rgb(var(--rgb-light));
}

/* map-setting */
.map-setting-box > div:not(:last-child) {
  border-bottom: 1px solid #ccc;
}

.map-setting-item,
.mapp-setting-item svg path {
  color: rgb(var(--rgb-dark));
  fill: rgb(var(--rgb-dark)) !important;
  cursor: pointer;
  border-radius: 6px;
}

.map-setting-item:hover {
  background-color: rgb(var(--rgb-darkest), 0.03);
}

.map-setting-item.active,
.mapp-setting-item svg path {
  background-color: rgb(var(--rgb-first-dark));
  color: rgb(var(--rgb-lightest));
  fill: rgb(var(--rgb-lightest)) !important;
  border-radius: 6px;
}

.button-sidebar {
  transition: all 0.3s ease;
  width: auto;
  height: 48px;
  background: rgb(var(--rgb-ninth-lighter));
  border-radius: 20px 0 0 20px;
  z-index: 200;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgb(var(--rgb-light));
}
html[dir=ltr] .button-sidebar {
  border-radius: 0 20px 20px 0;
}

@media only screen and (max-width: 768px) {
  .button-sidebar {
    height: 43px !important;
  }
}

.button-profile {
  transition: all 0.3s ease;
  width: auto;
  height: 48px;
  background: rgb(var(--rgb-ninth-lighter));
  border-radius: 50%;
  z-index: 200;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgb(var(--rgb-light));
}
@media only screen and (max-width: 768px) {
  .button-profile {
    height: 43px !important;
  }
}

@media only screen and (max-width: 768px) {
  nav.bottom-navbar {
    height: 76px !important;
  }
}

.routing-box-item-button {
  width: 35px;
  height: 35px;
  border-radius: 100%;
  border: none !important;
  background-color: rgb(var(--rgb-ninth-lighter));
  padding: 10px;
  margin: 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(var(--rgb-light-dark));
  box-shadow: 0 0 8px 0 rgba(var(--rgb-darkest), 0.1);
}

.routing-box-item-button.active {
  background-color: rgb(var(--rgb-first-light));
  color: rgb(var(--rgb-lightest));
}

#routing-page {
  background-color: rgb(var(--rgb-ninth-lighter));
}

#routing-box {
  padding: 10px;
  background-color: rgb(var(--rgb-tenth-lighter));
}

.routing-button, .fixed-bottom-btn {
  max-width: 300px;
  width: 100%;
  padding: 8px;
  border: 1px solid rgb(var(--rgb-first)) !important;
  background-color: rgb(var(--rgb-first)) !important;
  border-radius: 6px;
  color: rgb(var(--rgb-lightest)) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  box-shadow: 0 0 10px 0 rgba(var(--rgb-darkest), 0.2);
  transition: all 0.3s ease;
}
.routing-button:hover, .routing-button:active, .routing-button:focus-within, .fixed-bottom-btn:hover, .fixed-bottom-btn:active, .fixed-bottom-btn:focus-within {
  border-color: rgb(var(--rgb-first)) !important;
  background-color: rgb(var(--rgb-first)) !important;
  color: rgb(var(--rgb-lightest)) !important;
}
.routing-button.active, .fixed-bottom-btn.active {
  visibility: visible;
  opacity: 1;
}

/* .custom-scrollbar::-webkit-scrollbar-track
 {
     -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
     background-color: #F5F5F5;
 }

 .custom-scrollbar::-webkit-scrollbar
 {
     width: 10px;
     background-color: #F5F5F5;
 }

 .custom-scrollbar::-webkit-scrollbar-thumb
 {
     background-color: red;
    height: 2px;
     border: 2px solid #555555;
 } */
.leaflet-control-easyPrint-button-export {
  background-color: rgb(var(--rgb-first)) !important;
}

.leaflet-touch .fullscreen-icon.leaflet-fullscreen-on {
  background-position: 2px -24px !important;
}

.leaflet-control-minimap {
  border-color: rgb(var(--rgb-first-lighter));
  box-shadow: 0 0 8px 1px rgba(var(--rgb-darkest), 0.1);
}
@media only screen and (max-width: 768px) {
  .leaflet-control-minimap {
    display: none !important;
  }
}

.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  border: none;
}

.leaflet-control-scale {
  background-color: rgb(var(--rgb-ninth-lighter));
  border: 1px solid rgb(var(--rgb-light));
  padding: 6px 8px;
  text-align: center;
  border-radius: 6px;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
  min-width: 100px;
}
.leaflet-control-scale * {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent;
  padding: 0;
  margin: 0 auto;
  color: rgb(var(--rgb-darkest)) !important;
  text-align: center !important;
}
@media only screen and (max-width: 768px) {
  .leaflet-control-scale {
    display: none !important;
  }
}

.leaflet-control-locate a .leaflet-control-locate-spinner {
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="white" d="M304 48a48 48 0 1 1-96 0 48 48 0 0 1 96 0zm-48 368a48 48 0 1 0 0 96 48 48 0 0 0 0-96zm208-208a48 48 0 1 0 0 96 48 48 0 0 0 0-96zM96 256a48 48 0 1 0-96 0 48 48 0 0 0 96 0zm13 99a48 48 0 1 0 0 96 48 48 0 0 0 0-96zm294 0a48 48 0 1 0 0 96 48 48 0 0 0 0-96zM109 61a48 48 0 1 0 0 96 48 48 0 0 0 0-96z"/></svg>') !important;
}

.leaflet-contextmenu {
  background-color: rgb(var(--rgb-ninth-lighter));
  direction: rtl !important;
  box-shadow: 0 0 8px 1px rgba(var(--rgb-darkest), 0.2);
}
.leaflet-contextmenu-item {
  display: flex !important;
  align-items: center;
  gap: 8px;
  background-color: rgb(var(--rgb-ninth-lighter));
  padding: 6px 12px !important;
  color: rgb(var(--rgb-light-dark)) !important;
  border: none !important;
  outline: none !important;
}
.leaflet-contextmenu-item img, .leaflet-contextmenu-item svg {
  margin: 0 !important;
  padding: 0 !important;
}
.leaflet-contextmenu-item:hover {
  background-color: rgb(var(--rgb-darkest), 0.05) !important;
}
.leaflet-contextmenu-submenu {
  background-color: blue;
}
.leaflet-contextmenu-separator {
  background-color: green;
}
.leaflet-ruler {
  width: 30px;
  height: 30px;
  background-color: rgb(var(--rgb-tenth-lighter));
  box-shadow: 0 0 8px 0 rgba(var(--rgb-darkest), 0.1) !important;
  background-size: 18px;
}

.search_latlng_button {
  width: 30px;
  height: 30px;
  bottom: 380px;
  right: 10px;
  z-index: 400;
  background-color: rgb(var(--rgb-first));
  border: none;
  outline: none;
  border-radius: 4px;
  box-shadow: 0 0 8px 0 rgba(var(--rgb-darkest), 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}
html[dir=ltr] .search_latlng_button {
  left: 10px;
  right: auto;
}

.leaflet-touch .leaflet-bar a:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.leaflet-touch .leaflet-bar a:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

@media (min-width: 768px) {
  .search-page {
    max-width: 425px;
    width: 100%;
    box-shadow: rgba(var(--rgb-darkest), 0.25) 0px 0.0625em 0.0625em, rgba(var(--rgb-darkest), 0.25) 0px 0.125em 0.5em, rgba(var(--rgb-tenth-lighter), 0.1) 0px 0px 0px 1px inset;
  }
  /* .mapp-search-box{
     right: 0;
  } */
  .layers-box-overlay {
    background: transparent;
    z-index: 1051;
  }
  .layers-box {
    height: auto;
    border-radius: 16px;
  }
  #advanced-checkbox {
    position: relative;
    display: inline-block;
    width: 70px;
    height: 20px;
  }
  .input-checkbox {
    display: none;
  }
  .input-checkbox:checked + .slider {
    background-color: rgb(var(--rgb-first-lighter)) !important;
  }
  .slider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    cursor: pointer;
    border: 2px solid rgba(var(--rgb-light-dark), 0.6);
    border-radius: 25px;
    font-size: 12px;
    font-weight: 500;
    color: rgb(var(--rgb-dark));
    text-align: center;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 10px rgba(var(--rgb-darkest), 0.3);
  }
  .slider::before {
    content: "";
    width: 16px;
    height: 16px;
    position: absolute;
    border: 2px solid transparent;
    top: 0;
    left: 0;
    background-color: rgb(var(--rgb-lightest));
    border-radius: 100%;
    box-shadow: 0 0 5px 0 rgba(var(--rgb-darkest), 0.3);
  }
  .slider::after {
    position: absolute;
    height: 100%;
    width: 50%;
    content: "lat/lng";
    right: 7%;
    font-size: 10px;
    top: 60%;
    transform: translateY(-50%);
  }
  #coordinates {
    display: none;
  }
  .input-checkbox:checked + .slider::before {
    left: auto;
    right: 0;
  }
  .input-checkbox:checked + .slider::after {
    content: "utm";
    right: 30%;
  }
  .mouse-move-box {
    display: flex;
  }
}
@media only screen and (max-width: 480px) {
  .routing-button, .fixed-bottom-btn {
    bottom: 120px;
  }
  .select-location {
    bottom: 120px;
  }
  .mouse-move-box {
    display: none !important;
  }
  .leaflet-bottom {
    bottom: 110px !important;
  }
  .mapp-location-button,
  .mapp-bottom-start {
    bottom: 120px !important;
    height: 100dvh;
    align-items: end;
    top: 0;
    padding-bottom: 92px;
  }
}
@media only screen and (max-width: 768px) {
  .routing-button, .fixed-bottom-btn {
    bottom: 96px;
  }
  .select-location {
    bottom: 96px;
  }
  .mouse-move-box {
    display: none !important;
  }
  .leaflet-bottom {
    bottom: 82px !important;
  }
  .mapp-location-button,
  .mapp-bottom-start {
    bottom: 92px;
  }
  .search_latlng_button {
    bottom: 332px;
  }
  .leaflet-top {
    top: 58px;
  }
}
/* zoomslider */
.leaflet-control-zoomslider-knob {
  width: 14px;
  height: 6px;
}

.leaflet-container .leaflet-control-zoomslider-body {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.leaflet-bar-part-top {
  display: none !important;
}

.leaflet-control-zoomslider {
  border: none !important;
  background-color: rgba(var(--rgb-tenth-lighter), 0.5) !important;
}

.leaflet-control-zoomslider-wrap {
  padding: 2px !important;
  border-radius: 4px;
  background-color: rgba(var(--rgb-tenth-lighter), 0.5) !important;
  width: 30px;
  border-bottom: none !important;
}

.leaflet-control-zoomslider-body {
  width: 100% !important;
  border: none !important;
  background-color: rgba(var(--rgb-tenth-lighter), 0.5) !important;
}

.leaflet-control-zoomslider-knob {
  display: block !important;
  margin: 1px !important;
  padding: 0 !important;
  color: rgb(var(--rgb-lightest)) !important;
  font-size: 1.14em !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  text-align: center !important;
  height: 10px !important;
  width: 25px !important;
  line-height: 0.4em !important;
  background-color: rgba(var(--rgb-first-dark), 0.7) !important;
  border: none !important;
  border-radius: 2px !important;
}

.leaflet-touch .leaflet-control-zoomslider {
  box-shadow: 0 0 8px 0 rgba(var(--rgb-darkest), 0.1);
}

.leaflet-bar-part-bottom {
  display: none !important;
}

.leaflet-draw-section {
  position: relative;
  box-shadow: 0 0 8px 0 rgba(var(--rgb-darkest), 0.1);
}
@media only screen and (max-width: 768px) {
  .leaflet-draw-section {
    display: block !important;
  }
}

.leaflet-bar a:hover,
.leaflet-bar a:focus {
  background-color: rgb(var(--rgb-tenth-lighter));
}

.leaflet-bar a,
.leaflet-bar a.leaflet-disabled {
  background-color: rgb(var(--rgb-tenth-lighter));
}

.leaflet-container a {
  color: rgb(var(--rgb-first));
}

.leaflet-draw-draw-circle::before {
  content: "\f10c";
  font-family: "Font Awesome 6 Pro";
}

/* hoseini Styles */
#print-loading {
  display: none;
  /* position: absolute; */
  /* top: 50%; */
  /* left: 50%; */
  height: 20px;
  width: 20px;
  margin: 0 10px;
  border: 4px rgb(var(--rgb-first)) solid;
  border-top-width: 4px;
  border-top-style: solid;
  border-top-color: rgb(var(--rgb-first));
  border-top: 4px rgb(var(--rgb-first)) solid;
  border-radius: 50%;
  -webkit-animation: spin 1s infinite linear;
  animation: spin 1s infinite linear;
}

#panorama {
  display: none;
  /* position: absolute; */
}

.panorama-active {
  display: block !important;
  position: absolute;
  top: 0;
  z-index: 403;
}

.star-checked {
  color: orange;
}

.place-title {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

/* .owl-carousel .owl-item .item{

 } */
.owl-carousel .owl-item img, .owl-carousel .owl-item svg {
  object-fit: cover;
}

.owl_carousel_gallery .owl-item img, .owl_carousel_gallery .owl-item svg {
  margin: 6px 0;
  box-shadow: 0 0 8px 0 rgba(var(--rgb-darkest), 0.2);
  border-radius: 16px;
}

.map-places-item {
  background-color: rgb(var(--rgb-tenth-lighter));
  text-decoration: none;
  color: inherit;
  width: 170px;
  display: block;
  color: rgb(var(--rgb-light-dark));
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 12px 0 rgba(var(--rgb-darkest), 0.1);
  margin: 12px 0;
}
.map-places-item h5 {
  font-size: 16px;
  margin-bottom: 0;
}
.map-places-item img, .map-places-item svg {
  width: 100%;
  max-width: 100%;
  height: 100px;
}
.map-places-item:hover {
  box-shadow: 0 2px 15px 0 rgba(var(--rgb-darkest), 0.14);
  background-color: rgb(var(--rgb-tenth-lighter));
}

.map-places-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 16px;
  padding: 8px 16px;
  place-items: stretch;
}
.map-places-wrapper .map-places-item {
  width: 100% !important;
  margin: 0 !important;
}

.place-detail-item {
  display: block;
}

.place-detail-item > div > img, .place-detail-item > div > svg {
  height: 160px;
}

.theme-purple {
  color: rgb(var(--rgb-first));
}

.select-location {
  max-width: 300px;
  width: 100%;
  height: 30px;
  border: 1px solid rgb(var(--rgb-first));
  background-color: rgb(var(--rgb-first));
  border-radius: 6px;
  color: rgb(var(--rgb-lightest));
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 10px;
  right: calc(50% - 150px);
  z-index: 402;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.select-location.active {
  visibility: visible;
  opacity: 1;
}

.personal-places-item {
  color: rgb(var(--rgb-darkest));
}

/* .personal-places-item:hover{
    cursor: pointer;
    background-color: #eee
 } */
.cusor-pointer-hover:hover {
  cursor: pointer;
}

.leaflet-container {
  max-height: 100vh;
  height: 100%;
  background-color: rgb(var(--rgb-tenth-lighter));
}

aside.sidebar {
  z-index: 2750;
  position: fixed;
  max-height: 100vh;
  height: 100vh;
  left: 100%;
  width: 400px !important;
  overflow: hidden;
  max-width: 90%;
}
html[dir=ltr] aside.sidebar {
  right: 100%;
  left: auto;
}

aside.sidebar.show {
  transform: translateX(-100%);
  width: 400px !important;
  max-width: 90%;
}
html[dir=ltr] aside.sidebar.show {
  transform: translateX(100%);
}

aside.sidebar .user-profile img, aside.sidebar .user-profile svg {
  width: 100px;
  height: 100px;
}
aside.sidebar .user-profile figcaption {
  flex-basis: 100%;
  font-size: 16px;
}
aside.sidebar .user-profile::before {
  opacity: 1;
  transition: var(--my-sidebar-transition);
}

.field-wrapper {
  grid-template-columns: repeat(auto-fill, minmax(104px, 1fr)) !important;
}

.side-map-navbar ul {
  gap: 8px;
}
.side-map-navbar ul li:hover a {
  background-color: rgba(var(--rgb-first-lighter), 0.7);
}
.side-map-navbar ul li a {
  padding: 12px 16px;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: -1px 1px 12px 0 rgba(var(--rgb-darkest), 0.09);
  border-radius: 8px;
  gap: 8px;
  color: rgb(var(--rgb-first-dark));
  transition: all 150ms;
  background-color: rgba(var(--rgb-first-lighter));
  border: 1.4px solid transparent;
  text-align: center;
}
.side-map-navbar ul li a i, .side-map-navbar ul li a svg {
  font-size: 30px;
  color: rgb(var(--rgb-first-dark));
  fill: rgb(var(--rgb-first-dark));
}

body.dark .side-map-navbar ul li a {
  color: rgb(var(--rgb-dark));
}
body.dark .side-map-navbar ul li a i, body.dark .side-map-navbar ul li a svg {
  color: rgb(var(--rgb-dark));
  fill: rgb(var(--rgb-dark));
}

.overlay {
  z-index: 2705;
}

.leaflet-top,
.leaflet-bottom {
  z-index: 600;
}

.leaflet-control-locate a {
  background-color: rgb(var(--rgb-first));
  color: rgb(var(--rgb-lightest));
  border: 1px solid rgb(var(--rgb-first));
  right: 10px;
  bottom: 10px;
  font-size: 18px;
  box-shadow: 0 0 0 4px rgba(var(--rgb-first), 0.5), 0 0 8px 0 rgba(var(--rgb-darkest), 0.1);
  width: 36px !important;
  height: 36px !important;
  border-radius: 100% !important;
  display: grid;
  place-items: center;
  transition: all 200ms;
}
.leaflet-control-locate a:hover, .leaflet-control-locate a:active, .leaflet-control-locate a:focus {
  background-color: rgb(var(--rgb-first));
  color: rgb(var(--rgb-lightest));
  box-shadow: 0 0 0 6px rgba(var(--rgb-first), 0.5), 0 0 8px 0 rgba(var(--rgb-darkest), 0.1);
}
.leaflet-control-locate a .leaflet-control-locate-location-arrow {
  display: grid;
  place-items: center;
  margin: 0;
  width: auto;
  height: auto;
  background-image: none !important;
}
.leaflet-control-locate a .leaflet-control-locate-location-arrow::before {
  content: "\f601" !important;
  font-family: "Font Awesome 6 Pro";
}

.leaflet-marker-icon {
  position: absolute;
}

.search-leaflet-tooltip {
  bottom: 100%;
  left: 0;
  background-color: rgba(var(--rgb-darkest), 0.5);
  color: rgb(var(--rgb-lightest));
  border: none;
  transition: all 200ms;
}
.search-leaflet-tooltip::before {
  border-top-color: rgba(var(--rgb-darkest), 0.5);
}

.route-page-places {
  max-height: 100%;
  overflow-y: auto;
  padding: 6px 0;
}
.route-page-places-item {
  cursor: pointer;
  transition: all 150ms;
}
.route-page-places-item.active {
  border-right: 5px solid rgb(var(--rgb-first));
  background-color: rgb(var(--rgb-first-lighter)) !important;
}
html[dir=ltr] .route-page-places-item.active {
  border-left: 5px solid rgb(var(--rgb-first));
  border-right: none;
}

.route-page-places-item:hover {
  background-color: rgb(var(--rgb-first-lighter), 0.5);
  border-radius: 8px;
}

.pnlm-container {
  background: rgb(var(--rgb-tenth-lighter)) url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2267%22%20height%3D%22100%22%20viewBox%3D%220%200%2067%20100%22%3E%0A%3Cpath%20stroke%3D%22%23ccc%22%20fill%3D%22none%22%20d%3D%22M33.5%2C50%2C0%2C63%2C33.5%2C75%2C67%2C63%2C33.5%2C50m-33.5-50%2C67%2C25m-0.5%2C0%2C0%2C75m-66.5-75%2C67-25m-33.5%2C75%2C0%2C25m0-100%2C0%2C50%22%2F%3E%0A%3C%2Fsvg%3E%0A") repeat !important;
}

.pnlm-controls {
  background-color: rgb(var(--rgb-first));
  border-color: rgb(var(--rgb-light));
}

.pnlm-control:hover {
  background-color: rgb(var(--rgb-first));
}

.pnlm-sprite {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScyNicgaGVpZ2h0PScyMDgnPjxjaXJjbGUgY3k9JzE2OScgY3g9JzEzJyByPSc3JyBmaWxsPSdub25lJyBzdHJva2U9JyNmZmYnIHN0cm9rZS13aWR0aD0nMicvPjxjaXJjbGUgY3k9JzE5NScgY3g9JzEzJyByPSc3JyBmaWxsPSdub25lJyBzdHJva2U9JyNmZmYnIHN0cm9rZS13aWR0aD0nMicvPjxjaXJjbGUgY3g9JzEzJyBjeT0nMTk1JyByPScyLjUnIGZpbGw9JyNmZmYnLz48cGF0aCBmaWxsPScjZmZmJyBkPSdtNSA4M3Y2aDJ2LTRoNHYtMnptMTAgMHYyaDR2NGgydi02em0tNSA1djZoNnYtNnptLTUgNXY2aDZ2LTJoLTR2LTR6bTE0IDB2NGgtNHYyaDZ2LTZ6Jy8+PHBhdGggZmlsbD0nI2ZmZicgZD0nbTEzIDExMGE3IDcgMCAwIDAgLTcgNyA3IDcgMCAwIDAgNyA3IDcgNyAwIDAgMCA3IC03IDcgNyAwIDAgMCAtNyAtN3ptLTEgM2gydjJoLTJ6bTAgM2gydjVoLTJ6Jy8+PHBhdGggZmlsbD0nI2ZmZicgZD0nbTUgNTd2Nmgydi00aDR2LTJ6bTEwIDB2Mmg0djRoMnYtNnptLTEwIDEwdjZoNnYtMmgtNHYtNHptMTQgMHY0aC00djJoNnYtNnonLz48cGF0aCBmaWxsPScjZmZmJyBkPSdtMTcgMzh2MmgtOHYtMnonLz48cGF0aCBmaWxsPScjZmZmJyBkPSdtMTIgOXYzaC0zdjJoM3YzaDJ2LTNoM3YtMmgtM3YtM3onLz48cGF0aCBmaWxsPScjZmZmJyBkPSdtMTMgMTM2LTYuMTI1IDYuMTI1aDQuMzc1djcuODc1aDMuNXYtNy44NzVoNC4zNzV6Jy8+PHBhdGggZmlsbD0nI2ZmZicgZD0nbTEwLjQyOCAxNzMuMzN2LTUuNzdsNS0yLjg5djUuNzd6bTEtMS43MyAzLTEuNzMtMy4wMDEtMS43NHonLz48L3N2Zz4K");
}

.pnlm-load-button {
  background-color: rgba(var(--rgb-ninth-lighter), 0.7);
  color: rgb(var(--rgb-darkest));
}
.pnlm-load-button:hover {
  background-color: rgb(var(--rgb-ninth-lighter));
}

.btn-close-sidebar,
.btn-back-sidebar {
  background-color: rgb(var(--rgb-red-100));
  color: rgb(var(--rgb-red-700));
  border-radius: 8px !important;
  position: absolute;
  top: 10px;
  left: 10px;
  width: 16px;
  height: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}
html[dir=ltr] .btn-close-sidebar,
html[dir=ltr] .btn-back-sidebar {
  right: 10px;
  left: auto;
}

.btn-close-sidebar:hover, .btn-close-sidebar:active,
.btn-back-sidebar:hover,
.btn-back-sidebar:active {
  background-color: rgb(var(--rgb-red-200));
  box-shadow: inset 0 0 8px 0 rgba(var(--rgb-darkest), 0.1);
}

.btn-back-sidebar {
  right: 10px;
}
html[dir=ltr] .btn-back-sidebar {
  left: 10px;
  right: auto;
}

body.dark .btn-close-sidebar,
body.dark .btn-back-sidebar {
  background-color: rgb(var(--rgb-red-800));
  color: rgb(var(--rgb-red-100));
}
body.dark .btn-close-sidebar:hover, body.dark .btn-close-sidebar:active,
body.dark .btn-back-sidebar:hover,
body.dark .btn-back-sidebar:active {
  background-color: rgb(var(--rgb-red-700));
  box-shadow: inset 0 0 8px 0 rgba(var(--rgb-darkest), 0.1);
}

.nav-tabs ul {
  gap: 8px;
  border-bottom: 0.5px solid rgb(var(--rgb-light));
  padding: 8px;
}
.nav-tabs ul .nav-item .nav-link {
  padding: 8px 6px;
  border-radius: 6px;
  border: none;
}
.nav-tabs ul .nav-item .nav-link:hover {
  background-color: rgb(var(--rgb-darkest), 0.03);
}
.nav-tabs ul .nav-item .nav-link.active {
  background-color: rgb(var(--rgb-first-lighter));
}

.pnlm-controls-container {
  top: auto;
  bottom: 10px;
}

@media only screen and (min-width: 992px) {
  #sidebarRoutingMapBtn {
    display: none !important;
  }
}

/* Panorama 360 deg start */
#map_360_wrapper {
  position: fixed;
  width: 50%;
  height: 100%;
  max-height: 100vh;
  top: 0;
  left: auto;
  right: 0;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  direction: rtl !important;
  z-index: 1080;
}

#map_360_wrapper.active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.btn-360-layer {
  width: 98px !important;
}

#map_close_btn {
  display: none;
  z-index: 1000;
}

@media only screen and (min-width: 1200px) {
  #map_close_btn {
    display: none !important;
  }
}
@media only screen and (max-width: 1200px) {
  #map_360_wrapper {
    width: 100% !important;
  }
  .mapp-container {
    width: 100% !important;
  }
  .mapp-container.hidden-map {
    height: 0 !important;
    display: none !important;
  }
  .mapp-container.active {
    height: 50% !important;
    width: 100% !important;
    top: 50% !important;
  }
  #map_360_wrapper {
    position: fixed;
    width: 100% !important;
    height: 50% !important;
  }
  #map_360_wrapper.full {
    width: 100% !important;
    height: 100% !important;
  }
  .map_360_loader {
    top: 25% !important;
    right: 50% !important;
  }
  .map_360_loader.full {
    top: 50% !important;
    right: 50% !important;
  }
  #map_close_btn {
    display: flex;
    position: fixed;
    bottom: 16px;
    right: 16px;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }
  #map_close_btn.active {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }
}
#map_back_btn,
#map_back_btn:active,
#map_back_btn:hover,
#map_play_btn,
#map_play_btn:active,
#map_play_btn:hover,
#map_pause_btn,
#map_pause_btn:active,
#map_pause_btn:hover {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 1082;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  outline: none;
  border: none;
  display: flex;
}

#map_play_btn,
#map_play_btn:active,
#map_play_btn:hover {
  top: 64px !important;
}

#map_pause_btn,
#map_pause_btn:active,
#map_pause_btn:hover {
  top: 64px !important;
}

#map_back_btn.active,
#map_play_btn.active,
#map_pause_btn.active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

/* Panorama 360 deg end */
/* Panorama loader start */
.map_360_loader {
  font-size: 10px;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: fixed;
  text-indent: -9999em;
  animation: mulShdSpin 1.1s infinite ease;
  transform: translateZ(0);
  top: 50%;
  right: 25%;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  z-index: 99999;
  transition: all 200ms linear;
}

.map_360_loader.active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

/* Panorama loader end */
/* Loader horizontal dots start */
.hr-dots-loader {
  height: 16px;
  aspect-ratio: 3;
  --_g: no-repeat radial-gradient(farthest-side, rgb(var(--rgb-first-light)) 90%, #0000);
  background: var(--_g), var(--_g), var(--_g), var(--_g);
  background-size: 17% 50%;
  animation: l43 1s infinite linear;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.hr-dots-loader.active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

@keyframes l43 {
  0% {
    background-position: 0% 50%, 33.3333333333% 50%, 66.6666666667% 50%, 100% 50%;
  }
  16.67% {
    background-position: 0% 0, 33.3333333333% 50%, 66.6666666667% 50%, 100% 50%;
  }
  33.33% {
    background-position: 0% 100%, 33.3333333333% 0, 66.6666666667% 50%, 100% 50%;
  }
  50% {
    background-position: 0% 50%, 33.3333333333% 100%, 66.6666666667% 0, 100% 50%;
  }
  66.67% {
    background-position: 0% 50%, 33.3333333333% 50%, 66.6666666667% 100%, 100% 0;
  }
  83.33% {
    background-position: 0% 50%, 33.3333333333% 50%, 66.6666666667% 50%, 100% 100%;
  }
  100% {
    background-position: 0% 50%, 33.3333333333% 50%, 66.6666666667% 50%, 100% 50%;
  }
}
/* Loader horizontal dots end */
.search-page-places-items {
  max-height: calc(100% - 6px);
}

/* Timeline override styls start */
.down-section {
  top: auto;
  bottom: -101px;
}
@media only screen and (min-width: 768px) {
  .down-section {
    top: 100%;
    bottom: auto;
  }
}
.down-section-btn {
  left: 50px;
}
html[dir=ltr] .down-section-btn {
  right: 50px;
  left: auto;
}

@media only screen and (min-width: 768px) {
  .down-section-btn {
    left: 140px;
  }
  html[dir=ltr] .down-section-btn {
    right: 140px;
    left: auto;
  }
}

/* Timeline override styls end */

/*# sourceMappingURL=mapp.css.map */
