@charset "UTF-8";
@font-face {
  font-family: "Satoshi Light";
  src: url("./fonts/Satoshi-Light.woff2") format("woff2"), url("./fonts/Satoshi-Light.woff") format("woff"), url("./fonts/Satoshi-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi Regular";
  src: url("./fonts/Satoshi-Regular.woff2") format("woff2"), url("./fonts/Satoshi-Regular.woff") format("woff"), url("./fonts/Satoshi-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi Medium";
  src: url("./fonts/Satoshi-Medium.woff2") format("woff2"), url("./fonts/Satoshi-Medium.woff") format("woff"), url("./fonts/Satoshi-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi Bold";
  src: url("./fonts/Satoshi-Bold.woff2") format("woff2"), url("./fonts/Satoshi-Bold.woff") format("woff"), url("./fonts/Satoshi-Bold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi Black";
  src: url("./fonts/Satoshi-Black.woff2") format("woff2"), url("./fonts/Satoshi-Black.woff") format("woff"), url("./fonts/Satoshi-Black.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi-Regular.woff2") format("woff2"), url("./fonts/Satoshi-Regular.woff") format("woff"), url("./fonts/Satoshi-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@keyframes nudgeLeft {
  0%, 100% {
    transform: translateX(0) scale(1);
  }
  15% {
    transform: translateX(-0.5rem) scale(1.15);
  }
  30% {
    transform: translateX(0.15rem) scale(1);
  }
  45% {
    transform: translateX(-0.3rem) scale(1.08);
  }
  60% {
    transform: translateX(0);
  }
}
@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(39, 195, 101, 0);
  }
  30% {
    box-shadow: 0 0 8px 3px rgba(39, 195, 101, 0.45);
  }
  60% {
    box-shadow: 0 0 0 0 rgba(39, 195, 101, 0);
  }
}
@keyframes helpPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(252, 227, 0, 0.5);
  }
  50% {
    box-shadow: 0 0 10px 6px rgba(252, 227, 0, 0.25);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(252, 227, 0, 0);
  }
}
@keyframes helpBounce {
  0%, 100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.15);
  }
  50% {
    transform: scale(0.95);
  }
  75% {
    transform: scale(1.08);
  }
}
.loaderContainer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #1a1a2e;
  z-index: 1000000000 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.loader {
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(255, 255, 255, 0.15);
  border-top-color: #6BC68F;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.loaderContainer.fade-out {
  opacity: 0;
}

body.no-scroll {
  overflow: hidden;
}

@media (min-width: 1024px) {
  .left-side-navigation {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    position: absolute;
    left: 1rem;
    top: 1rem;
  }
  .left-side-navigation .uk-dropdown {
    min-width: unset !important;
  }
  .left-side-navigation .measure-dropdown {
    height: 2.5rem;
  }
  .left-side-navigation .measure-dropdown .measurementsWrapper {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    border-radius: unset !important;
    width: 8rem !important;
    max-width: 8rem !important;
    min-width: unset !important;
  }
  .left-side-navigation .measure-dropdown .measurementsWrapper > div {
    background: var(--bg-secondary);
    height: 100%;
    width: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
  }
  .left-side-navigation .measure-dropdown .measurementsWrapper > div:hover {
    background-color: rgba(39, 195, 101, 0.3568627451);
  }
  .left-side-navigation .draw-dropdown {
    height: 2.5rem;
  }
  .left-side-navigation .draw-dropdown .drawToolsWrapper {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    border-radius: unset !important;
    width: 8rem !important;
    max-width: 8rem !important;
    min-width: unset !important;
  }
  .left-side-navigation .draw-dropdown .drawToolsWrapper > div {
    background: var(--bg-secondary);
    height: 100%;
    width: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }
  .left-side-navigation .draw-dropdown .drawToolsWrapper > div:hover {
    background-color: rgba(39, 195, 101, 0.3568627451);
  }
  .left-side-navigation .draw-dropdown .drawToolsWrapper > div svg {
    height: 1.2rem;
    width: 1.2rem;
  }
  .left-side-navigation button {
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 4px;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    font-family: "Satoshi Medium";
    font-size: 0.85rem;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    box-shadow: 4px 0px 3px 0px rgba(77, 77, 77, 0.37);
  }
  .left-side-navigation button span {
    display: flex;
    height: 1.5rem;
    width: 1.5rem;
    border-radius: 10rem;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
  }
  .left-side-navigation button:hover {
    background: #002c00;
    border-radius: 10px;
  }
  .left-side-navigation button:hover .measureArrow {
    background-color: #002c00;
    border-top-right-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
  }
  .left-side-navigation button:hover .measureArrow .arrowIcon path {
    fill: #fff;
  }
  .left-side-navigation button:hover .drawArrow {
    border-top-right-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
  }
  .left-side-navigation button:hover .drawArrow .arrowIcon path {
    fill: #fff;
  }
  .left-side-navigation button:hover .toolIcons path {
    fill: #fff;
  }
  .left-side-navigation button:hover .toolIcons circle {
    fill: #fff;
  }
  .left-side-navigation button.active {
    background: #008000;
  }
  .left-side-navigation button.active .toolIcons path {
    fill: #fff;
  }
  .left-side-navigation button.active .toolIcons circle {
    fill: #fff;
  }
  .left-side-navigation button img {
    height: 1.3rem;
    width: 1.3rem;
    object-fit: cover;
  }
  .left-side-navigation button#resetMap {
    background: #008000;
  }
  .left-side-navigation button#resetMap svg path {
    fill: #fff;
  }
  .left-side-navigation button#resetMap:hover {
    background-color: #006600;
  }
  .form-control {
    width: 100% !important;
  }
  .bottomControlCenter, .topHeaderWrapper, .topCartWrapper, .topMapSidebar, .bottomFixedContainer, .resultsDrawer {
    display: none;
  }
  #printModal {
    display: none;
  }
  .select2-dropdown {
    min-width: 24rem !important;
  }
  .backBtnWrapper {
    position: absolute;
    top: 1rem;
    right: 28rem;
    height: 2.8rem;
  }
  .backBtnWrapper .backBtn {
    height: 100%;
    width: fit-content;
    padding: 0 1rem;
    border-radius: 4px;
    font-family: "Satoshi-Bold";
    background-color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    gap: 0.5rem;
    transition: 0.3s ease-in-out;
  }
  .backBtnWrapper .backBtn .iconWrapper {
    transition: 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .backBtnWrapper .backBtn:hover {
    background-color: #002b00;
    color: #fff !important;
    border: 1.2px solid #fff;
    border-radius: 10rem;
  }
  .backBtnWrapper .backBtn:hover span {
    transform: translateX(-0.2rem);
  }
  .backBtnWrapper .backBtn:hover .backIcon path {
    fill: #fff !important;
  }
  .uk-offcanvas-flip .uk-open > .uk-offcanvas-bar {
    left: auto;
    width: 24rem;
    padding: 0;
    margin: 0;
    right: 0;
    background: var(--bg-primary);
    box-shadow: -4px 4px 11px 0px rgba(77, 77, 77, 0.4);
  }
  .sidenav-container .top-container {
    display: flex;
    align-items: center;
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    gap: 1rem;
    height: 5rem;
    position: relative;
  }
  .sidenav-container .top-container a:not(.closePopUp) {
    height: 3rem;
    width: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .sidenav-container .top-container a:not(.closePopUp) img {
    height: 100%;
    width: 100%;
  }
  .sidenav-container p {
    padding: 0;
    margin: 0;
    font-size: 1.2rem;
    font-family: "Satoshi-Bold";
    color: #008000;
  }
  .closePopUp {
    position: absolute;
    right: 1rem;
    top: 0.8rem;
    background-color: rgba(235, 64, 64, 0.8549019608);
    padding: 0.4rem;
    height: 1.8rem;
    width: 1.8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .closePopUp .closeIcon path {
    fill: #fff;
  }
  .search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 2.5rem !important;
    font-size: 0.8rem !important;
    padding: 0 1.2rem !important;
    transition: 0.3s ease-in-out;
  }
  .search-btn:hover {
    background-color: #002b00;
    color: #fff;
    scale: 1.05;
    border-radius: 10rem;
  }
  .propertySearchSwitchers {
    background-color: var(--bg-primary);
    border: 1.2px solid var(--border-light);
    margin-top: 1.5rem;
    width: 95%;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 3rem;
    padding: 0 0.2rem;
    border-radius: 10rem;
  }
  .propertySearchSwitchers .searchIcons path {
    fill: rgba(70, 70, 70, 0.295);
  }
  .propertySearchSwitchers .uk-active a {
    background-color: #6BC68F !important;
    border: none;
    color: #fff !important;
  }
  .propertySearchSwitchers .uk-active a span .searchIcon path {
    fill: #fff !important;
  }
  .propertySearchSwitchers .uk-active a span .downloadIcon path {
    fill: #fff !important;
  }
  .propertySearchSwitchers .uk-active a span .layersIcon path {
    fill: #fff !important;
  }
  .propertySearchSwitchers li {
    width: fit-content !important;
  }
  .propertySearchSwitchers li a {
    display: flex;
    height: 2.6rem;
    width: fit-content;
    color: rgba(10, 10, 10, 0.6235294118) !important;
    background-color: rgba(51, 51, 51, 0.062745098) !important;
    padding: 0 1.2rem;
    font-family: "Satoshi-Bold";
    align-items: center;
    gap: 0.5rem;
    border: none;
    border-radius: 10rem;
    transition: 0.3s ease-in-out;
  }
  .propertySearchSwitchers li a span {
    display: flex;
  }
  .propertySearchSwitchers li a:hover {
    background-color: #002b00 !important;
    color: #fff !important;
  }
  .propertySearchSwitchers li a:hover span .searchIcon path {
    fill: #fff;
  }
  .propertySearchSwitchers li a:hover span .downloadIcon path {
    fill: #fff;
  }
  .propertySearchSwitchers li a:hover span .layersIcon path {
    fill: #fff;
  }
  .search-input-container {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding: 1rem;
    display: flex;
    border: 1.2px solid var(--border-light);
    flex-direction: column;
    width: 95%;
    border-radius: 10px;
    margin-top: 1rem;
    box-shadow: unset !important;
    gap: 0.6rem;
    background: var(--bg-secondary);
    font-size: 0.8rem;
  }
  .topWrapperOptions {
    background: #ffffff;
    color: #333 !important;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    width: 100%;
    margin: 0 !important;
    height: 2.5rem;
    display: flex;
    font-family: "Satoshi-Bold" !important;
    padding-left: 1rem;
    align-items: center;
  }
  .searchOptionsWrapper #map_search_options {
    max-width: 95% !important;
    margin-top: 1rem;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 1rem !important;
  }
  .select2-selection__arrow {
    display: none !important;
  }
  #my-div {
    opacity: 1 !important;
    min-width: 15rem;
  }
  .div-map-layers-wrapper {
    width: 95%;
    margin: auto;
    overflow-x: hidden;
    margin-top: 1rem !important;
    /* margin-top: -1.5rem !important; */
  }
  .top-docked-container .logo img {
    min-height: 3.5rem;
    min-width: 3.5rem;
  }
  .driver-popover.propertySearchGuide {
    background: radial-gradient(circle at 20% 80%, #005700 0%, transparent 50%), radial-gradient(circle at 80% 20%, #087a08 0%, transparent 50%), radial-gradient(circle at 40% 40%, #006000 0%, transparent 50%), linear-gradient(-45deg, #005700, #087a08, #006000, #005700);
    background-size: 200% 200%, 200% 200%, 200% 200%, 400% 400%;
    animation: meshGradient 8s ease-in-out infinite;
    color: #fff;
    border: 1.2px solid rgba(254, 254, 254, 0.368627451);
  }
  @keyframes meshGradient {
    0% {
      background-position: 0% 0%, 100% 100%, 50% 50%, 0% 50%;
    }
    25% {
      background-position: 100% 0%, 0% 100%, 100% 50%, 100% 50%;
    }
    50% {
      background-position: 100% 100%, 0% 0%, 50% 100%, 50% 100%;
    }
    75% {
      background-position: 0% 100%, 100% 0%, 0% 50%, 0% 100%;
    }
    100% {
      background-position: 0% 0%, 100% 100%, 50% 50%, 0% 50%;
    }
  }
  .driver-popover.propertySearchGuide .driver-popover-title {
    font-size: 1rem;
  }
  .driver-popover.propertySearchGuide .driver-popover-title,
  .driver-popover.propertySearchGuide .driver-popover-description,
  .driver-popover.propertySearchGuide .driver-popover-progress-text {
    color: #fff;
    font-family: "Satoshi-Variable";
  }
  .driver-popover.propertySearchGuide .driver-popover-title {
    font-size: 1.2rem;
    max-width: 95%;
  }
  .driver-popover.propertySearchGuide .driver-popover-description {
    opacity: 0.8;
    font-size: 0.85rem;
  }
  .driver-popover.propertySearchGuide button {
    text-align: center;
    background-color: #000;
    color: #ffffff;
    border: 1px solid var(--border-light);
    text-shadow: none;
    font-family: "Satoshi-Medium";
    font-size: 0.75rem;
    height: 2rem;
    padding: 0 1rem;
    gap: 1rem;
    display: flex;
    align-items: center;
    border-radius: 4px;
  }
  .driver-popover.propertySearchGuide .driver-popover-navigation-btns {
    justify-content: unset !important;
    flex-grow: unset;
  }
  .driver-popover-next-btn {
    background-color: #008000 !important;
    transition: 0.3s all ease-in-out !important;
  }
  .driver-popover-next-btn:hover {
    background-color: #6BC68F !important;
    border-radius: 10rem !important;
    scale: 1.02 !important;
    color: #fff !important;
  }
  .layer-sub-heading {
    font-family: "Satoshi-Bold" !important;
    font-size: 0.95rem !important;
    color: #008000 !important;
    margin-top: 1rem !important;
    margin-bottom: 0.5rem !important;
  }
  .driver-popover.propertySearchGuide button:hover {
    background-color: #000;
    color: #ffffff;
  }
  .driver-popover.propertySearchGuide .driver-popover-navigation-btns {
    justify-content: space-between;
    gap: 3px;
    margin-top: 0.5rem;
  }
  .driver-popover.propertySearchGuide .driver-popover-close-btn {
    color: #9b9b9b;
  }
  .driver-popover.propertySearchGuide .driver-popover-close-btn:hover {
    color: #000;
  }
  .driver-popover.propertySearchGuide .driver-popover-arrow-side-left.driver-popover-arrow {
    border-left-color: #008000;
  }
  .driver-popover.propertySearchGuide .driver-popover-arrow-side-right.driver-popover-arrow {
    border-right-color: #008000;
  }
  .driver-popover.propertySearchGuide .driver-popover-arrow-side-top.driver-popover-arrow {
    border-top-color: #008000;
  }
  .driver-popover.propertySearchGuide .driver-popover-arrow-side-bottom.driver-popover-arrow {
    border-bottom-color: #008000;
  }
  .driver-popover-close-btn {
    background-color: rgba(255, 255, 255, 0.1098039216) !important;
    padding: 0.2rem !important;
    border: unset !important;
    max-height: 1.2rem !important;
    max-width: 1.2rem !important;
    border-radius: 50% !important;
    top: 0.5rem;
    right: 0.5rem;
    transition: 0.3s ease-in-out;
  }
  .driver-popover-close-btn:hover {
    background-color: #ffffff !important;
  }
  #startGuideBtn .iconWrapper {
    display: flex;
    height: 1.5rem;
    width: 1.5rem;
  }
  .left-side-navigation .active {
    background-color: var(--bg-primary);
  }
  .left-side-navigation .ruler {
    position: relative !important;
    z-index: 2 !important;
  }
  .left-side-navigation .measureArrow {
    display: flex;
    height: 100%;
    width: 1rem;
    background-color: var(--bg-secondary);
    border-radius: unset !important;
    border-top-right-radius: 4px !important;
    border-bottom-right-radius: 4px !important;
    position: absolute;
    right: 0;
    z-index: 1;
    top: 0;
    align-items: center;
    justify-content: center;
  }
  .toolIcons path {
    fill: #008000;
  }
  .toolIcons stroke {
    fill: #008000;
  }
  .toolIcons circle {
    fill: #008000;
  }
  #property_search_results_3 {
    position: absolute;
    z-index: 20;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bg-primary);
  }
  .switchers-container {
    display: flex !important;
    flex-direction: column !important;
  }
  .map-container {
    width: 100%;
    height: 100vh;
    margin: auto;
  }
  .select2-container .select2-container--default .collapse-layers:after {
    z-index: 1000;
  }
  .the-property-data {
    /* max-height: 20vh; */
    border: 1px solid var(--primary-bg-color) !important;
    width: auto;
    /* background-color: var(--primary-bg-color); */
  }
  .the-map-products {
    /* background-color: var(--primary-bg-color) !important; */
    background-color: rgba(143, 189, 86, 0.3294117647) !important;
    border: 1px solid var(--primary-bg-color);
  }
  .the-map-product-preview {
    max-height: 20vh;
    border: 1px solid var(--primary-bg-color) !important;
    width: auto;
    /* background-color: var(--primary-bg-color); */
  }
  .grid-map-search {
    z-index: 2;
    position: absolute;
    margin: 18px 0px 0px 18px;
    min-width: 25vw;
  }
  .grid-map-controls {
    z-index: 2;
    position: absolute;
    display: inline-grid;
    margin: 60px 0px 0px 18px;
  }
  .grid-map-switch {
    z-index: 2;
    position: absolute;
    right: 10px;
    width: 20%;
    margin: 18px 18px 0px 0px;
    background-color: #dae9c7 !important;
    border: 1px solid var(--primary-bg-color) !important;
  }
  .btn-primary {
    color: #fff !important;
    background-color: var(--techsys-bg-color) !important;
    border-color: var(--techsys-bg-color) !important;
  }
  .ol-layerswitcher .layerswitcher-opacity:before {
    content: "";
    width: 100%;
    height: 3px;
    background: var(--techsys-bg-color);
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border: 1px solid var(--techsys-bg-color);
    box-sizing: border-box;
  }
  .ol-layerswitcher .layerswitcher-opacity .layerswitcher-opacity-cursor {
    width: auto;
    transform: translateY(-50%);
    height: 3px;
    right: 0;
    background: #666;
    border-radius: 0;
  }
  .ol-touch .ol-layerswitcher .layerswitcher-opacity .layerswitcher-opacity-cursor,
  .ol-layerswitcher .layerswitcher-opacity .layerswitcher-opacity-cursor:before {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 16px;
    left: -1px;
    border-radius: 0;
    background: var(--techsys-bg-color);
  }
  .ol-layerswitcher .layerswitcher-opacity-label {
    display: block;
    right: 20%;
    bottom: 70%;
    font-size: 0.6em;
    user-select: none;
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
  }
  .ol-layerswitcher .layerup {
    width: 2em;
    background: none;
    position: absolute;
    right: 0;
  }
  .ol-layerswitcher .layerup:after {
    content: none;
  }
  .ol-layerswitcher .layerup:before {
    color: var(--techsys-bg-color);
    content: "\f0c9";
    font-family: FontAwesome;
    border: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 1em;
    left: 0.5em;
  }
  .ol-layerswitcher [type=checkbox] + label:before,
  .ol-layerswitcher [type=radio] + label:before {
    content: "";
    border: 2px solid #ccc;
    background-color: transparent;
  }
  .ol-layerswitcher [type=checkbox]:checked + label:before,
  .ol-layerswitcher [type=radio]:checked + label:before {
    background: var(--techsys-bg-color);
    border-color: var(--techsys-bg-color);
  }
  .ol-layerswitcher [type=checkbox]:checked + label:after {
    content: "✓";
    color: #fff !important;
    position: absolute;
    top: -0.15em;
    left: 0.25em;
    cursor: pointer;
    font-weight: 900;
    text-shadow: 1px 1px #fff;
    font-size: 1.2em;
    transform: none;
    border: 0;
    box-shadow: unset;
  }
  .ol-layerswitcher [type=radio]:checked + label:after {
    content: none;
  }
  .ol-control.ol-layerswitcher {
    right: 0.5rem;
    top: 0.5rem;
    z-index: 1;
  }
  .ol-layerswitcher button,
  .ol-layerswitcher button:focus,
  .ol-layerswitcher button:hover {
    background: var(--techsys-bg-color);
    border: 0;
    user-select: none;
    outline: none;
    display: none !important;
  }
  .ol-layerswitcher button:before {
    background: var(--techsys-bg-color);
    -webkit-box-shadow: 0.1em 0.1em #fff;
    box-shadow: 0.1em 0.1em #fff;
  }
  .ol-layerswitcher button:after {
    background: var(--bg-primary);
    background-image: none;
  }
  .ol-layerswitcher .ol-layer-group {
    margin-top: 1em;
  }
  .ol-layerswitcher .ol-layer-group > .ol-layerswitcher-buttons .layerInfo {
    display: none;
  }
  .ol-layerswitcher .expend-layers:before,
  .ol-layerswitcher .collapse-layers:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -2px;
    height: 4px;
    width: 100%;
    background: #5dd18d;
  }
  .ol-layerswitcher .expend-layers,
  .ol-layerswitcher .collapse-layers {
    top: -1em;
  }
  .ol-layerswitcher .expend-layers:before,
  .ol-layerswitcher .expend-layers:after,
  .ol-layerswitcher .collapse-layers:before,
  .ol-layerswitcher .collapse-layers:after {
    background: var(--techsys-bg-color);
  }
  .ol-layerswitcher .panel ul {
    overflow: visible;
  }
  .ol-layerswitcher .layerInfo {
    right: -0.5em;
    background: var(--techsys-bg-color);
  }
  .ol-control.ol-layerswitcher .ol-switchertopdiv,
  .ol-control.ol-layerswitcher .ol-switcherbottomdiv {
    display: none !important;
  }
  .the-grid-list {
    max-height: calc(65.5vh - 60px);
    border: 1px solid var(--primary-bg-color) !important;
    width: auto;
    overflow-y: auto;
  }
  .select2-container {
    width: unset !important;
    width: 100% !important;
  }
  .ol-popupfeature > h1 {
    display: inline-block !important;
    font-size: 18px !important;
    padding-right: 4rem !important;
  }
  .ol-popup > div {
    /* border-radius: 0px !important; */
    padding: 0.35rem !important;
    border: 0px !important;
  }
  #popup-panel {
    max-width: fit-content;
  }
  .the-popup-content {
    width: fit-content;
  }
  #popup-content {
    max-height: 45vh;
    overflow-y: auto;
    width: fit-content;
    background-color: var(--bg-primary);
    font-size: 12px;
    /* font-weight: bold !important; */
    /* font-family: cursive; */
  }
  #popup-title {
    font-size: 20px;
    color: black;
  }
  .displayNone {
    display: none !important;
  }
  .ol-layerswitcher .panel li label {
    color: black;
  }
  .select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
  .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    width: 100%;
  }
  .selection {
    height: 100% !important;
    display: inline-flex;
    width: 100% !important;
  }
  .select2-container {
    width: 100% !important;
    height: 100% !important;
  }
  .select2-container--default .select2-selection--single {
    width: 100% !important;
    align-items: center;
    display: flex;
  }
  .tooltip-measure,
  .tooltip-static {
    position: sticky;
    background: rgba(0, 128, 0, 0.5);
    border-radius: 4px;
    color: white;
    padding: 0px;
    opacity: 0.7;
    white-space: nowrap;
    z-index: 2;
    opacity: 1;
    font-weight: bold;
  }
  .meaure-pointer-container {
    display: flex;
    flex-direction: column;
    border: 1px solid #ffffff;
    border-radius: 5px;
    min-width: 18rem;
    box-shadow: 5px 5px 5px rgba(245, 245, 245, 0.5411764706);
    overflow: hidden;
  }
  .meaure-pointer-container:before {
    /* border-bottom: 14px solid #ff000003; */
    border-top: 19px solid white;
    top: 100%;
    border-left: 15px solid rgba(255, 0, 0, 0);
    border-right: 15px solid rgba(255, 0, 0, 0);
    content: " ";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .meaure-pointer-header {
    background: green;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .meaure-pointer-header span {
    padding: 0 0.75rem;
    font-size: 18px;
    font-weight: bold;
  }
  .meaure-pointer-header h5 {
    font-size: 18px;
    font-weight: bold;
    border-bottom: 1px solid white;
    padding: 0.75rem;
    margin: 0;
  }
  .meaure-pointer-body {
    padding: 0.75rem;
    background: white;
    color: black;
  }
  .meaure-pointer-body p {
    font-weight: normal;
    font-size: 16px;
    margin: 0;
  }
  .meaure-pointer-body span.label {
    min-width: 7rem;
    font-weight: bold;
  }
  .meaure-container {
    border: 1px solid #ffffff;
    border-radius: 5px;
    box-shadow: 5px 5px 5px rgba(245, 245, 245, 0.5411764706);
    overflow: hidden;
    padding: 0.4rem 0.8rem;
    background: green;
    font-size: 16px;
  }
  .download-layers-available label {
    color: black;
  }
  .meaure-circle-body {
    border: 1px solid #ffffff;
    border-radius: 5px;
    box-shadow: 5px 5px 5px rgba(245, 245, 245, 0.5411764706);
    overflow: hidden;
    padding: 0.4rem 0.8rem;
    background: green;
    font-size: 16px;
  }
  .meaure-circle-body p {
    font-weight: normal;
    font-size: 16px;
    margin: 0;
  }
  .meaure-circle-body span.label {
    min-width: 5rem;
    font-weight: bold;
    margin: 0;
  }
  h3.layer-sub-heading {
    color: #565454;
    font-size: 18px;
  }
  .enm-item {
    width: 33.33% !important;
  }
  div.search-options-container {
    /* background-color: red; */
    border-radius: 10px;
    box-shadow: unset !important;
    bottom: 0px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    border: 1.2px solid var(--border-light);
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
    left: 176px;
    /* margin: 0px !important; */
    padding: 0 !important;
    position: relative;
    right: -176px;
    top: 0px;
    -webkit-transform: matrix(1, 0, 0, 1, -167.2, 0);
    transform: matrix(1, 0, 0, 1, -167.2, 0);
  }
  div.search-options-container label {
    margin-top: 1rem;
  }
  select#map_search_options.form-select.form-control {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-clip: padding-box;
    /* background-color: blue; */
    width: 100% !important;
    /* background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"); */
    background-position: right 12px 50%;
    background-repeat: no-repeat;
    background-size: 8px 10px;
    border: 0.8px solid var(--border-color);
    border-radius: 4px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: default;
    display: inline-block;
    padding: 6px 12px 6px 8px;
    -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    vertical-align: middle;
  }
  div.left-side-searches {
    box-sizing: border-box;
    display: flex;
    gap: 0px !important;
    /* background-color: red; */
  }
  a.help {
    align-items: center;
    background: var(--bg-secondary);
    border: none;
    border-radius: 50% !important;
    box-shadow: -4px 2px 4px 0px rgba(77, 77, 77, 0.134);
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    height: 2.5rem;
    width: 2.5rem;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    animation: helpPulse 2.5s ease-in-out infinite;
  }
  a.help .iconWrapper {
    animation: helpBounce 2.5s ease-in-out infinite;
  }
  a.help:hover {
    background-color: #002b00;
    border-radius: 10rem !important;
    animation: none;
    box-shadow: -4px 2px 4px 0px rgba(77, 77, 77, 0.134);
  }
  a.help:hover .iconWrapper {
    animation: none;
  }
  span#select2-map_search_value-container.select2-selection__rendered {
    box-sizing: border-box;
  }
  select#map_search_type.form-select.form-control {
    align-items: center;
  }
  span.select2-selection__arrow {
    bottom: 8.6px;
    box-sizing: border-box;
    cursor: pointer;
    left: 217.6px;
    position: absolute;
    right: 4px;
    top: 50% !important;
    transform: translateY(-50%) !important;
    user-select: none;
  }
}
@media (min-width: 1024px) and (min-width: 996px) {
  .top-search-filters .select2-results__option {
    font-family: "Satoshi-Medium" !important;
    color: var(--text-secondary);
    font-size: 0.8rem;
  }
  .top-search-filters .selection {
    min-width: 12rem;
  }
  .top-search-filters .city-search-container #map_search_type {
    margin-right: 1rem;
    height: 100% !important;
    width: 100% !important;
    border-radius: 4px;
  }
}
@media (min-width: 1024px) {
  #popup {
    background-color: unset !important;
  }
  .ol-popup {
    padding: 0.5rem 1rem !important;
    border-radius: 4px;
    min-width: 15rem;
  }
  .ol-popup .popup-content {
    color: var(--text-secondary);
    font-family: "Satoshi-Medium";
    font-size: 0.85rem;
  }
  .ol-popup::before {
    content: "";
    position: absolute;
    top: 0.1rem;
    left: 1rem;
    height: 0.5rem;
    width: 0.5rem;
    background: var(--bg-primary);
    /* clip-path: polygon(50% 100%, 0 0, 100% 0); */
    clip-path: polygon(50% 0, 0 100%, 100% 100%);
  }
  .measureArrow svg {
    transition: transform 0.3s ease;
  }
  .measureArrow.rotated svg {
    transform: rotate(180deg);
  }
  .drawArrow svg {
    transition: transform 0.3s ease;
  }
  .drawArrow.rotated svg {
    transform: rotate(180deg);
  }
}
@media (min-width: 1024px) {
  /* Dropdown arrow will be animated by GSAP */
  /* Nav icon styles for active/inactive states */
  .nav-items-container .expand-sidenav .nav-icon-path {
    fill: #333 !important;
    fill-opacity: 1;
    transition: fill 0.3s ease, fill-opacity 0.3s ease;
  }
  .nav-items-container .expand-sidenav.active .nav-icon-path {
    fill: white !important;
    fill-opacity: 1;
  }
  /* User dropdown height adjustment */
  .user-left-side .uk-dropdown {
    min-height: auto !important;
    height: auto !important;
    max-height: none !important;
  }
  .user-left-side .optionsWrapperDropdown {
    padding: 0 !important;
    margin: 0 !important;
  }
  .user-left-side .dropContainer {
    padding: 0.5rem 0 !important;
  }
  /* Old modal styles removed — now using unified .ecad-modal-backdrop system in emaps-module.scss */
  * {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }
  body {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    font-family: "Satoshi Regular";
  }
  .uk-offcanvas {
    z-index: 2;
  }
  .export-options {
    display: flex;
    position: absolute;
    right: 1rem;
    gap: 0.5rem;
    margin-top: -1.9rem;
  }
  .export-options a {
    background: var(--bg-primary);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    cursor: pointer;
    height: 1.5rem;
    width: 1.5rem;
    transition: all 0.3s ease-in-out;
  }
  .export-options a img {
    height: 80%;
    width: 80%;
  }
  .export-options a:hover {
    background: #a6ffca;
    border: 1.2px solid #a6ffca;
  }
  .right-side-navigation {
    width: 4rem;
    right: 0;
    align-items: center;
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    top: 1rem;
    bottom: 1rem;
  }
  .right-side-navigation .top-docked-container {
    position: relative;
    right: 0;
    height: 20rem;
    width: 4rem;
    border-radius: 0.625rem 0rem 0rem 0.625rem;
    box-shadow: -4px 2px 4px 0px rgba(77, 77, 77, 0.134);
    background: var(--bg-secondary);
    display: flex;
    padding: 1rem 0 0 0;
    align-items: center;
    gap: 1rem;
    flex-direction: column;
    justify-content: space-between;
  }
  .right-side-navigation .top-docked-container .active {
    background-color: #6BC68F;
  }
  .right-side-navigation .top-docked-container .mainLogoContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none !important;
  }
  .right-side-navigation .top-docked-container .mainLogoContainer .logo {
    height: 3.5rem;
    width: 3.5rem;
  }
  .right-side-navigation .top-docked-container .mainLogoContainer .logo img {
    height: 100%;
    width: 100%;
  }
  .right-side-navigation .top-docked-container .mainLogoContainer .logo-home-text {
    font-size: 0.85rem;
    color: var(--text-primary, #333);
    font-family: "Satoshi Regular";
    margin-top: 0.15rem;
    margin-left: 0.2rem;
    transition: color 0.2s ease, font-weight 0.2s ease;
  }
  .right-side-navigation .top-docked-container .mainLogoContainer:hover .logo-home-text {
    color: #008000;
    font-family: "Satoshi-Bold";
  }
  .right-side-navigation .top-docked-container .nav-items-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .right-side-navigation .top-docked-container .nav-items-container a {
    height: 2rem;
    display: flex;
    align-items: center;
    width: 100% !important;
    justify-content: center;
    border-radius: 4px;
    padding: 0 0.5rem;
    border: 1.5px solid rgba(51, 51, 51, 0.2);
    border-radius: 4px;
    transition: background-color 0.3s ease-in-out;
  }
  .right-side-navigation .top-docked-container .nav-items-container a:hover {
    background: #2ecc71;
  }
  .right-side-navigation .top-docked-container .expand-collapsed {
    width: 100%;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0rem 0rem 0rem 0.625rem;
    transition: background-color 0.2s ease-in-out;
    margin-top: auto;
  }
  .right-side-navigation .top-docked-container .expand-collapsed a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0rem 0rem 0rem 0.625rem;
    background: linear-gradient(213deg, #008000 22.04%, #27C365 65.12%, #6BC68F 97.34%);
    transition: background-color 0.3s ease-in-out;
    height: 100%;
    width: 100%;
    animation: glowPulse 3s ease-in-out infinite;
  }
  .right-side-navigation .top-docked-container .expand-collapsed a .iconExpand {
    animation: nudgeLeft 3s ease-in-out infinite;
  }
  .right-side-navigation .top-docked-container .expand-collapsed a:hover {
    background: linear-gradient(135deg, #6BC68F 15%, #27C365 50%, #008000 85%);
    animation: none;
    box-shadow: none;
  }
  .right-side-navigation .top-docked-container .expand-collapsed a:hover .iconExpand {
    animation: none;
    transform: translateX(-0.5rem) !important;
  }
  .right-side-navigation .user-profiles {
    display: flex;
    width: 4rem;
    background: var(--bg-secondary);
    box-shadow: -4px 2px 4px 0px rgba(77, 77, 77, 0.134);
    border-radius: 0.625rem 0rem 0rem 0.625rem;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
  }
  .right-side-navigation .user-profiles .user-account {
    background: #008000;
    border-radius: 50%;
  }
  .right-side-navigation .user-profiles .user-account img {
    height: 100%;
    width: 100%;
  }
  .right-side-navigation .user-profiles a {
    border: none;
    display: flex;
    height: 2.5rem;
    border-radius: 50%;
    justify-content: center;
    width: 2.5rem;
    padding: 0 0.5rem;
    border-radius: 50%;
  }
  .uk-offcanvas-flip .uk-open > .uk-offcanvas-bar {
    left: auto;
    width: 25rem;
    padding: 0;
    margin: 0;
    right: 0;
    background: var(--bg-primary);
    box-shadow: -4px 4px 11px 0px rgba(77, 77, 77, 0.4);
  }
  .top-container {
    display: flex;
    height: 3.5rem;
    gap: 1rem;
    padding: 1rem;
    align-items: center;
    background: var(--bg-secondary);
  }
  .top-container .logo {
    height: 3rem;
    width: 3rem;
  }
  .top-container .logo img {
    height: 100%;
    object-fit: cover;
    width: 100%;
  }
  .top-container .logo-text {
    text-decoration: none;
    font-size: 1rem;
    color: #008000;
    font-family: "Satoshi Bold";
  }
  .top-container .logo-text:hover {
    text-decoration: none;
    color: #008000;
  }
  uk-subnav-pill > * > :first-child {
    background: 0 0;
    color: #fff;
  }
  .switchers-container {
    display: flex;
    width: 95%;
    position: relative;
    left: 50%;
    justify-content: space-between;
    transform: translateX(-50%);
    border-bottom: 1.2px solid var(--border-color);
    margin-top: 0.5rem !important;
  }
  .switchers-container a {
    font-size: 0.7rem;
    margin-bottom: -0.5rem;
    text-transform: none;
  }
  .uk-subnav-pill > * > :first-child {
    text-decoration: unset;
    text-decoration: none !important;
    text-transform: none !important;
    font-size: 0.7rem;
    font-family: "Satoshi Bold";
    color: var(--text-primary);
    display: flex;
    height: 2.5rem;
    align-items: center;
    width: fit-content;
    padding: 0 0.3rem;
    border: none;
    border-bottom: none;
    gap: 0.2rem;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    background: var(--bg-secondary);
  }
  .uk-subnav > * {
    position: relative;
    padding: 0;
    font-size: 0.7rem !important;
    text-transform: none;
  }
  .uk-subnav-pill {
    height: 3rem;
    margin: unset;
  }
  .uk-subnav-pill .uk-active a {
    background-color: unset;
    background-color: #6BC68F !important;
    text-transform: none;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    padding: 0 0.3rem;
    color: #fff !important;
  }
  .search-options-container {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 95%;
    border-radius: 10px;
    margin-top: 1rem;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0px 2px 4px 0px rgba(77, 77, 77, 0.25);
    background: var(--bg-secondary);
  }
  .search-options-container .heading,
  .search-options-container label {
    font-size: 0.9rem;
    color: #008000;
    font-family: "Satoshi Bold";
  }
  .search-options-container #map_search_options {
    border: none;
    padding-left: 0.5rem;
    font-family: "Satoshi Medium";
    border-radius: 4px;
    outline: none;
    width: 100%;
  }
  .select-with-icon,
  .input-with-icon {
    position: relative;
  }
  .select-with-icon > .dropIconWrapper,
  .input-with-icon > .dropIconWrapper {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    display: flex;
    align-items: center;
    background: unset !important;
  }
  .select-with-icon select,
  .input-with-icon select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 2rem;
  }
  .select-with-icon input,
  .input-with-icon input {
    padding-right: 2rem !important;
  }
  .searchOptionsWrapper .select-with-icon > .dropIconWrapper {
    right: 1rem;
  }
  .form-group .dropIconWrapper {
    background: unset !important;
  }
  .search-input-container ::placeholder {
    font-size: 0.7rem;
    color: rgba(77, 77, 77, 0.6235294118);
    font-family: "Satoshi MediumItalic";
  }
  .search-input-container {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    width: 95%;
    border-radius: 10px;
    margin-top: 1rem;
    box-shadow: 0px 2px 4px 0px rgba(77, 77, 77, 0.25);
    gap: 0.6rem;
    background: var(--bg-secondary);
    font-size: 0.8rem;
  }
  .search-input-container label {
    font-size: 0.7rem;
    font-family: "Satoshi Medium";
    color: var(--text-primary);
  }
  .search-input-container .input-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .search-input-container .input-item .legend {
    font-size: 0.7rem;
    font-family: "Satoshi Medium";
    color: var(--text-primary);
  }
  .search-input-container .input-item input {
    border: none;
    padding-left: 0.5rem;
    height: 1.8rem;
    font-family: "Satoshi Medium";
    border-radius: 4px;
    outline: none;
  }
  .search-input-container .search-btn {
    height: 2rem;
    width: fit-content;
    padding: 0 0.8rem;
    display: flex;
    background: #008000;
    color: #fff;
    gap: 0.5rem;
    margin-top: 0.5rem;
    align-items: center;
    font-size: 0.7rem;
    font-family: "Satoshi Bold";
    text-decoration: none;
    border-radius: 4px;
  }
  .search-input-container .search-btn span {
    display: flex;
    align-items: center;
  }
  .bottom-container {
    position: absolute;
    bottom: 0;
    display: flex;
    flex-direction: column;
  }
  .bottom-container .support-email {
    background-color: #6BC68F;
    display: flex;
    gap: 1rem;
    padding: 0.8rem 0.5rem;
    color: #fff;
    align-items: center;
  }
  .bottom-container .support-email p {
    margin: 0;
    display: flex;
    align-items: center;
  }
  .bottom-container .support-email .support-heading {
    font-family: "Satoshi Bold";
    font-size: 0.9rem;
  }
  .bottom-container .support-email .email-info {
    font-size: 0.8rem;
    display: flex;
    gap: 0.5rem;
  }
  .bottom-container .support-email .email-info span {
    display: flex;
    height: 1.1rem;
    width: 1.1rem;
    align-items: center;
  }
  .bottom-container .support-email .email-info span img {
    height: 100%;
    width: 100%;
  }
  .bottom-container .phone-contact {
    width: 95%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .bottom-container .phone-contact p {
    margin: 0;
    padding: 0;
    font-size: 0.6rem;
    color: var(--text-primary);
    opacity: 0.6;
    font-family: "Satoshi Medium";
  }
  .bottom-container .phone-contact img {
    height: 3rem;
    width: 3rem;
    object-fit: contain;
  }
  .sidenav-container {
    width: 100%;
  }
  * {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }
  body {
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    font-family: "Satoshi Medium";
    overflow: hidden;
  }
  .shaun-wrapper {
    --bg-primary: #fff;
    --bg-secondary: #f7f7f7;
    --bg-elevated: #f0f0f0;
    --bg-accent: #cce6cc;
    --text-primary: #1a1a1a;
    --text-secondary: #333;
    --text-muted: #555;
    --border-color: #dedede;
    --border-light: #eee;
    --input-border: #dedede;
    --bg-input: #f7f7f7;
    --shadow-color: rgba(77, 77, 77, 0.134);
    height: 100%;
    width: 100%;
    position: relative;
  }
  .shaun-wrapper .main-container {
    position: relative;
    height: 100dvh;
    width: 100%;
  }
  .base-maps-container {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    display: flex;
    align-items: center !important;
    gap: 1rem;
  }
  .base-maps-container .base-maps-wrapper {
    display: flex;
    justify-content: space-between;
    width: fit-content;
    background-color: var(--bg-secondary);
    border: none;
    gap: 0.5rem;
    padding: 0.3rem;
    scale: 0.9;
    transform: translateX(-2.5rem);
    margin-bottom: -1rem;
    border-radius: 10px;
  }
  .base-maps-container .base-maps-wrapper a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: fit-content;
    min-height: 3rem;
    padding: 0.5rem 0;
    background-color: var(--bg-primary);
    border-radius: 4px;
    min-width: 6rem;
    transition: all 0.3s ease-in-out;
  }
  .base-maps-container .base-maps-wrapper a img {
    display: flex;
    height: 3rem;
    width: 5.5rem;
    border-radius: 4px;
    object-fit: cover;
  }
  .base-maps-container .base-maps-wrapper a p {
    margin: 0;
    text-align: center;
    font-size: 0.65rem;
    font-family: "Satoshi Bold";
    color: var(--text-secondary);
  }
  .base-maps-container .base-maps-wrapper a:hover {
    background-color: #008000;
    scale: 1.05;
  }
  .base-maps-container .base-maps-wrapper a:hover img {
    border: 1.5px solid #fff;
  }
  .base-maps-container .base-maps-wrapper a:hover p {
    color: #fff;
  }
  .base-maps-container .base-maps-wrapper a.active {
    background-color: #008000;
    scale: 1.05;
    box-shadow: 0 4px 8px rgba(0, 128, 0, 0.3);
  }
  .base-maps-container .base-maps-wrapper a.active img {
    border: 1.5px solid #fff;
  }
  .base-maps-container .base-maps-wrapper a.active p {
    color: #fff;
    font-family: "Satoshi Bold";
  }
  .base-maps-container .base-map-trigger {
    background: linear-gradient(213deg, #008000 22.04%, #27C365 65.12%, #6BC68F 97.34%);
    width: fit-content;
    box-shadow: 0px 1.43939px 2.87879px 0px rgba(77, 77, 77, 0.25);
    padding: 0.5rem;
    height: fit-content;
    gap: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.8rem;
    color: #fff;
    font-family: "Satoshi Bold";
  }
  .base-maps-container .base-map-trigger img {
    height: 2rem;
    width: 2rem;
  }
  .hide-menu {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 22rem;
    z-index: 3;
    opacity: 0;
    background: var(--bg-primary);
    height: 3.5rem;
    display: flex;
    width: 3rem;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    box-shadow: -4px 4px 11px 0px rgba(77, 77, 77, 0.3);
  }
  .collapsable {
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 22rem;
    background: var(--bg-secondary);
    height: 3.5rem;
    width: fit-content;
    padding: 0 0.5rem;
    display: flex;
    align-items: center;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    box-shadow: -4px 4px 11px 0px rgba(77, 77, 77, 0.3);
    margin-right: -5px;
  }
  .collapsable img {
    height: 1.5rem;
    width: 1.5rem;
  }
  .select2-results__message {
    font-size: 0.8rem;
    font-family: "Satoshi Medium";
    color: var(--text-primary);
  }
  .top-search-filters {
    position: absolute;
    top: 1rem;
    left: 6rem;
    height: fit-content;
  }
  .top-search-filters .dropMapSearch {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    width: 2.5rem;
    background-color: #fff;
    border: none;
    border-right: none;
    cursor: pointer;
  }
  .top-search-filters .dropMapSearch .iconWrapper {
    display: flex;
    align-items: center;
  }
  .top-search-filters .select2-container--default .select2-selection--single {
    background-color: var(--bg-primary);
    border: none;
    border-radius: unset;
  }
  .top-search-filters .searchBtn {
    background: #008000;
    color: #fff;
    padding: 0.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: "Satoshi Bold";
    font-size: 0.8rem;
    box-shadow: -4px 2px 4px 0px rgba(77, 77, 77, 0.134);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }
  .top-search-filters .searchBtn:hover {
    background: #002c00;
    color: #fff;
    border-top-right-radius: 10rem;
    border-bottom-right-radius: 10rem;
  }
  .top-search-filters .searchBtn:hover span svg {
    fill: #002c00 !important;
  }
  .top-search-filters .searchBtn span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
  }
  .top-search-filters .searchBtn span svg {
    fill: #008000 !important;
  }
  .top-search-filters s input {
    padding-left: 0.5rem;
    height: 1.8rem;
    font-family: "Satoshi Medium";
    border-radius: 0 !important;
    box-shadow: 0px 4px 8px 0px rgba(77, 77, 77, 0.1);
    outline: none;
  }
  .top-search-filters .left-side-searches {
    display: flex;
    gap: 1.5rem;
    /* CSS Inspector (http://192.168.10.188) */
  }
  .top-search-filters .left-side-searches span.selection {
    box-sizing: border-box;
    display: inline-flex;
    min-width: 24rem !important;
  }
  .top-search-filters .left-side-searches span.select2-dropdown.select2-dropdown--below {
    bottom: 624.7px;
    box-sizing: border-box;
    left: 0px;
    position: absolute;
    right: 248.312px;
    top: 0px;
    height: fit-content;
    z-index: 9;
    width: unset !important;
    width: 24rem !important;
    min-width: 24rem !important;
  }
  .top-search-filters .left-side-searches input {
    height: unset;
    height: 2.2rem !important;
  }
  .top-search-filters .left-side-searches #city {
    width: 10rem;
  }
  .top-search-filters .left-side-searches #drop {
    width: 15rem;
    font-family: "Satoshi MediumItalic" !important;
  }
  .top-search-filters .left-side-searches #drop ::placeholder {
    font-family: "Satoshi MediumItalic" !important;
  }
  .user-left-side {
    position: absolute;
    right: 6rem;
    top: 1rem;
    min-width: 15rem;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 1rem;
    padding: 0 0.3rem;
    flex-direction: row-reverse;
  }
  .user-left-side .loginIcon path {
    fill: #008000 !important;
  }
  .user-left-side .cart {
    display: flex;
    height: 2.5rem;
    width: 2.5rem;
    background-color: var(--bg-accent);
    border-radius: 50%;
    box-shadow: 0px 4px 5px 0px rgba(77, 77, 77, 0.148);
  }
  .user-left-side .cart .iconWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
  }
  .user-left-side .cart .cartIcon path {
    fill: #008000;
  }
  .user-left-side .cart .cart-counter {
    margin-left: -0.8rem;
    background: #27C365;
    border-radius: 50%;
    height: 1.2rem;
    width: 1.2rem;
    display: flex;
    padding: 0.3rem;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
  }
  .user-left-side .cart .cart-counter .value {
    color: #fff;
    font-size: 0.8rem;
    font-family: "Satoshi Bold";
  }
  .user-left-side #catalogue-menu.cart {
    box-sizing: border-box;
    cursor: pointer;
    background: #D1E3CB !important;
    display: flex;
    height: 2.5rem;
    width: 2.5rem;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 50%;
  }
  .user-left-side #catalogue-menu.cart .cartIcon {
    height: 75%;
    width: 75%;
  }
  .user-left-side #catalogue-menu.cart .cartIcon path {
    fill: #008000;
  }
  .user-left-side #catalogue-menu.cart span {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    background: #008000;
    border: 1.2px solid #fff;
    color: #fff;
    font-size: 0.8rem;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: "Satoshi Bold";
  }
  .user-left-side .user-container {
    display: flex;
    box-shadow: 0px 4px 5px 0px rgba(77, 77, 77, 0.148);
    background: var(--bg-accent);
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding-left: 0.5rem;
    padding-right: 1rem;
    height: 2.5rem;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
  }
  .user-left-side .user-container:hover {
    border-radius: 10rem;
    background: #008000;
  }
  .user-left-side .user-container:hover .username {
    color: #fff;
  }
  .user-left-side .user-container .username {
    color: var(--text-secondary);
    font-family: "Satoshi Bold";
    margin-top: unset;
    font-size: 0.8rem;
  }
  .user-left-side .user-container .user-profile {
    background: var(--bg-primary);
    border-radius: 50%;
    padding: 0.2rem;
    display: flex;
    height: 1.8rem;
    width: 1.8rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
  }
  .hidden-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .search-container {
    min-width: 24rem !important;
    width: 24rem !important;
  }
  .top-search-container {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }
  .top-search-container:focus {
    border-color: #008000 !important;
    box-shadow: 0 0 0 3px rgba(0, 128, 0, 0.25);
    outline: none;
  }
  .top-search-container::placeholder {
    color: #555 !important;
  }
  .top-search-container input {
    border-radius: 0px !important;
  }
  .top-search-container span {
    margin-left: -2.5rem;
    display: flex;
    align-items: center;
    margin-top: 0rem;
    height: 1rem;
    width: 1rem;
  }
  .top-search-container span img {
    opacity: 0.6;
    height: 100%;
    width: 100%;
  }
  .uk-drop.uk-open {
    display: block;
    width: 12rem;
    padding: 0.5rem;
    font-size: 0.8rem;
    border-radius: 10px;
    margin-top: -4rem !important;
  }
  #my-div,
  #my-div-collapse {
    opacity: 0;
    transition-delay: 0.3s;
    transition-duration: 0.1s;
    transition-timing-function: linear;
    transition-property: opacity;
  }
  .closeOffCanvas {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 100000000;
  }
  .div-map-layers-wrapper {
    width: 95%;
    margin: auto;
    overflow-x: hidden;
    margin-top: -1.5rem !important;
  }
  .div-map-layers-wrapper .uk-drop.uk-open {
    display: block;
    width: 100%;
    font-size: 0.8rem;
  }
  .div-map-layers-wrapper .item-container-expanded {
    align-items: center;
    justify-content: space-between;
    position: relative;
    height: fit-content;
    padding-top: 1rem !important;
    padding-bottom: 0.5rem;
    border-bottom: 1.2px solid var(--border-color);
  }
  .div-map-layers-wrapper .item-container-expanded .shaun-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .div-map-layers-wrapper .item-container-expanded .shaun-wrapper .range-container {
    position: relative;
    z-index: 2;
    margin-top: 0rem !important;
  }
  .div-map-layers-wrapper .item-container-expanded .sub-options-container {
    margin-top: -2.5rem;
    transform: translateX(1rem);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .div-map-layers-wrapper .item-container-expanded .sub-options-container label {
    font-size: 0.75rem;
  }
  .div-map-layers-wrapper .item-container-expanded .sub-options-container input[type=checkbox] {
    height: 1rem;
    width: 1rem;
  }
  .div-map-layers-wrapper .item-container-expanded input[type=checkbox]:checked {
    accent-color: #008000;
  }
  .div-map-layers-wrapper .item-container-expanded input[type=checkbox] {
    height: 1.2rem;
    width: 1.2rem;
  }
  .div-map-layers-wrapper .item-container-expanded input[type=range]::-webkit-slider-thumb {
    background: #008000;
  }
  .div-map-layers-wrapper .item-container-expanded label {
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-family: "Satoshi Medium";
    width: fit-content;
  }
  .div-map-layers-wrapper .item-container-expanded label input {
    border: 1.2px solid #1a1a1a;
  }
  .div-map-layers-wrapper .item-container-expanded .uk-margin {
    width: 12rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-radius: 10px;
    padding: 0.3rem 0.8rem;
    padding-bottom: 0.5rem;
    box-shadow: 0px 2px 4px 0px rgba(77, 77, 77, 0.25);
    border: none;
  }
  .div-map-layers-wrapper .item-container-expanded .uk-margin .range-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .div-map-layers-wrapper .item-container-expanded .uk-margin .range-indicator p {
    margin: 0;
    font-size: 0.7rem;
    font-family: "Satoshi Medium";
    color: var(--text-primary);
    opacity: 0.8;
  }
  .div-map-layers-wrapper .item-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    height: fit-content;
    border-bottom: 1.2px solid var(--border-color);
  }
  .div-map-layers-wrapper .item-container .shaun-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .div-map-layers-wrapper .item-container .shaun-wrapper .range-container {
    position: relative;
    z-index: 2;
    margin-top: 0rem !important;
  }
  .div-map-layers-wrapper .item-container .sub-options-container {
    margin-top: -2.5rem;
    transform: translateX(1rem);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .div-map-layers-wrapper .item-container .sub-options-container label {
    font-size: 0.75rem;
  }
  .div-map-layers-wrapper .item-container .sub-options-container input[type=checkbox] {
    height: 1rem;
    width: 1rem;
  }
  .div-map-layers-wrapper .item-container input[type=checkbox]:checked {
    accent-color: #008000;
  }
  .div-map-layers-wrapper .item-container input[type=checkbox] {
    height: 1.2rem;
    width: 1.2rem;
  }
  .div-map-layers-wrapper .item-container input[type=range]::-webkit-slider-thumb {
    background: #008000;
  }
  .div-map-layers-wrapper .item-container label {
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-family: "Satoshi Medium";
    width: fit-content;
  }
  .div-map-layers-wrapper .item-container label input {
    border: 1.2px solid #1a1a1a;
  }
  .div-map-layers-wrapper .item-container .uk-margin {
    width: 12rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-radius: 10px;
    padding: 0.3rem 0.8rem;
    padding-bottom: 0.5rem;
    box-shadow: 0px 2px 4px 0px rgba(77, 77, 77, 0.25);
    border: none;
  }
  .div-map-layers-wrapper .item-container .uk-margin .range-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .div-map-layers-wrapper .item-container .uk-margin .range-indicator p {
    margin: 0;
    font-size: 0.7rem;
    font-family: "Satoshi Medium";
    color: var(--text-primary);
    opacity: 0.8;
  }
  .map-legend-container {
    width: 95%;
    margin: auto;
    margin-top: 0.5rem;
    font-family: "Satoshi Medium";
  }
  .map-legend-container h2 {
    font-family: "Satoshi Bold";
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
  }
  .map-legend-container .legend-section {
    margin-bottom: 2rem;
  }
  .map-legend-container .legend-section h3.legend-heading {
    font-family: "Satoshi Bold" !important;
    font-size: 1rem !important;
    font-weight: 500;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    margin-bottom: 1rem;
    background: #ffffff;
    color: #333 !important;
    padding: 0.5rem 1rem;
  }
  .map-legend-container .polygon-key {
    color: var(--text-primary);
    opacity: 0.8;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1.2px solid var(--border-color);
  }
  .map-legend-container .polygon-key p {
    margin: 0;
    padding: 0;
    color: var(--text-primary);
    opacity: 0.9;
    font-size: 0.8rem;
    font-family: "Satoshi Bold";
  }
  .map-legend-container .polygon-key img {
    height: 1.4rem;
    width: 1.4rem;
    background: #6BC68F;
    border-radius: 50%;
  }
  .map-legend-container .legend-symbol {
    width: 1.4rem;
    height: 1.4rem;
  }
  .map-legend-container .legend-symbol.cadastral {
    border-radius: 4px;
  }
  .map-legend-container .legend-symbol.cadastral.land-parcels {
    background: #3498db;
  }
  .map-legend-container .legend-symbol.cadastral.roads {
    background: #95a5a6;
  }
  .map-legend-container .legend-symbol.cadastral.buildings {
    background: #e74c3c;
  }
  .map-legend-container .legend-symbol.control-network {
    border-radius: 50%;
  }
  .map-legend-container .legend-symbol.control-network.cors {
    background: #f39c12;
  }
  .map-legend-container .legend-symbol.control-network.tsm {
    background: #9b59b6;
  }
  .map-legend-container .legend-symbol.control-network.trig-beacons {
    background: #e67e22;
  }
  .map-legend-container .legend-symbol.admin-boundary {
    height: 0.3rem;
    border-radius: 2px;
  }
  .map-legend-container .legend-symbol.admin-boundary.suburbs {
    background: #2ecc71;
  }
  .map-legend-container .legend-symbol.admin-boundary.towns {
    background: #27ae60;
  }
  .map-legend-container .legend-symbol.admin-boundary.districts {
    background: #16a085;
  }
  .map-legend-container .legend-symbol.admin-boundary.provinces {
    background: #1abc9c;
  }
  .map-legend-container .legend-symbol.admin-boundary.country {
    background: #34495e;
  }
  .map-legend-container .legend-symbol.map-symbol {
    border-radius: 4px;
  }
  .map-legend-container .legend-symbol.map-symbol.selected-property {
    background: #ff4757;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px #ff4757;
  }
  .map-legend-container .legend-symbol.map-symbol.search-results {
    background: #ffa502;
    border: 2px solid #fff;
  }
  .map-legend-container .legend-symbol.map-symbol.measurement-tools {
    height: 0.3rem;
    background: #ff6b6b;
    border-radius: 2px;
    position: relative;
  }
  .map-legend-container .legend-symbol.map-symbol.measurement-tools::before, .map-legend-container .legend-symbol.map-symbol.measurement-tools::after {
    content: "";
    position: absolute;
    width: 0.4rem;
    height: 0.4rem;
    background: #ff6b6b;
    border-radius: 50%;
    top: -0.05rem;
  }
  .map-legend-container .legend-symbol.map-symbol.measurement-tools::before {
    left: 0;
  }
  .map-legend-container .legend-symbol.map-symbol.measurement-tools::after {
    right: 0;
  }
  .property-info {
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 2rem;
    background-color: black;
    color: #fff;
    padding: 0 0.2rem;
  }
  .uk-accordion {
    display: flex;
    flex-direction: column;
    gap: 0 !important;
  }
  .uk-modal-body .content-wrapper {
    width: 100%;
    padding-top: 1.2rem;
    padding-bottom: 0 !important;
    margin: auto;
    height: fit-content !important;
  }
  .disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 80%;
    padding: 1rem 0;
    margin: auto;
  }
  .disclaimer .description {
    width: 90%;
    text-align: center;
    color: var(--text-primary);
    font-size: 0.8rem;
    font-family: "Satoshi Medium";
  }
  .input-container {
    width: 90%;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }
  .input-container input {
    height: 2rem;
    padding-left: 0.5rem;
    font-family: "Satoshi Medium";
    border: none;
    border-radius: 4px;
    outline: none;
  }
  .print-bookmark {
    position: absolute;
    top: 1rem;
    left: 33rem;
    display: flex;
    gap: 0.5rem;
  }
  .print-bookmark div {
    height: 2.2rem;
    width: 3rem;
    background: var(--bg-secondary);
    border: none;
    box-shadow: 0px 4px 8px 0px rgba(77, 77, 77, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
  }
  .expanded-instruments {
    position: relative;
  }
  .expanded-instruments a {
    height: 100%;
    width: 100%;
    display: flex;
    gap: 0.2rem;
    position: relative;
    align-items: center;
    justify-content: center;
  }
  .expanded-instruments a .arrow {
    position: absolute;
    background: rgba(255, 255, 255, 0.768627451);
    right: -1.2rem;
    height: 1.2rem;
    border-radius: 4px;
    width: 1rem;
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }
  .expanded-instruments a .arrow img {
    position: relative;
    height: 100%;
    width: 100%;
    opacity: 0.5;
  }
  .expanded-instruments .uk-drop.uk-open {
    display: flex;
    width: fit-content;
    padding: 0.5rem;
    font-size: 0.8rem;
    gap: 0.5rem;
    border-radius: 10px;
    margin-top: -3rem !important;
    margin-left: -2rem !important;
  }
  .measure-location {
    height: unset;
    width: unset;
    padding: 0 !important;
  }
  .measure-location img {
    height: 1.4rem !important;
    width: 1.4rem !important;
    object-fit: contain !important;
  }
  div.uk-drop.uk-dropdown.uk-open .logout-container {
    background-color: var(--bg-primary);
    margin-top: 0.5rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3rem;
    border-top: 1.2px solid var(--border-color);
  }
}
@media (min-width: 1024px) and (min-width: 1400px) {
  .shaun-wrapper {
    width: 100%;
    height: 100%;
  }
}
@media (min-width: 1024px) {
  .line {
    height: 100%;
    width: 1px;
    position: absolute;
    left: 43%;
  }
  .property-info-drop {
    position: relative;
    z-index: 2;
    background: var(--bg-primary);
    padding-top: 0.2rem !important;
    padding-bottom: 0 !important;
  }
  .uk-accordion-content {
    margin-top: 1rem;
    height: 10rem;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .uk-open .uk-accordion-title {
    background: #6BC68F;
    color: #fff;
    padding: 0.5rem;
    margin-top: -1rem;
    font-family: "Satoshi Bold", sans-serif;
  }
  .uk-accordion-title {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--text-primary);
    background: var(--bg-secondary);
    font-family: "Satoshi Bold";
    overflow: hidden;
    align-items: center;
    margin-top: -0.5rem;
    padding: 0.5rem;
  }
  .coordinates-container {
    width: 100%;
    height: 100%;
    background-color: var(--bg-secondary);
    padding: 0.5rem;
    padding-left: 1rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .coordinates-container .heading {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-family: "Satoshi Bold";
    text-transform: capitalize;
    padding-bottom: 0.3rem;
    margin: 0;
  }
  .coordinates-container .y-coordinates,
  .coordinates-container .x-coordinates {
    font-size: 0.7rem;
    color: var(--text-primary);
    margin: 0;
  }
  .export-container {
    height: 3rem;
    width: 100%;
    background: #008000;
    display: flex;
    align-items: center;
    padding: 0 0.5rem;
  }
  .export-container p {
    width: 15rem;
    font-size: 0.9rem;
    margin: 0;
    color: #fff;
    font-family: "Satoshi Medium";
  }
  .download {
    position: absolute;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
    justify-content: end;
    background: yellow;
  }
  .download a {
    height: 1.5rem;
    width: 1.5rem;
    background: white;
    border: none;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .download a span {
    background-color: red;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    height: fit-content;
  }
  .download a img {
    height: 80%;
    width: 80%;
  }
  ::-webkit-scrollbar {
    width: 7px;
  }
  ::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 10px;
  }
  .uk-accordion-title::before {
    content: "";
    width: 0 !important;
    height: 0 !important;
    background-image: none !important;
    background-repeat: no-repeat;
    background-position: 50% 50%;
  }
  .uk-drop-parent-icon {
    margin-left: -1rem;
  }
  .draggable-div {
    height: 20rem;
    width: 20rem;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #property_search_results_1 {
    width: 25rem;
    height: -moz-fit-content;
    height: fit-content;
    position: fixed;
    right: 23vw;
    top: 8.5vh;
    background: var(--bg-primary);
    z-index: 2;
    touch-action: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  }
  #property_search_results_1 .content-wrapper {
    max-height: 14rem;
    overflow-y: auto;
    overflow-x: hidden;
    background: var(--bg-primary);
  }
  #property_search_results_1 .property-detail {
    border-bottom: 1px solid var(--border-color);
    padding: 0.35rem 0.75rem;
    display: flex;
    justify-content: space-between;
    width: 25rem;
    align-items: baseline;
  }
  #property_search_results_1 .property-detail .detail {
    font-family: "Satoshi Medium";
    color: var(--text-muted, #555);
    font-size: 0.75rem;
    white-space: nowrap;
    padding-right: 0.5rem;
  }
  #property_search_results_1 .property-detail .value {
    font-family: "Satoshi-Bold";
    font-size: 0.78rem;
    width: 70%;
    color: var(--text-primary);
    padding-left: 0.5rem;
    border-left: 1.2px solid var(--border-color);
    word-break: break-word;
  }
  #property_search_results_1 .top-wrapper {
    width: 100%;
    height: 3rem;
    background-color: #008000;
    position: relative;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding: 0 1rem;
  }
  #property_search_results_1 .top-wrapper .navigate-btns {
    display: flex;
    gap: 0.5rem;
    align-items: center;
  }
  #property_search_results_1 .top-wrapper .navigate-btns div {
    height: 1.3rem;
    width: 1.3rem;
    border-radius: 4px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
  }
  #property_search_results_1 .top-wrapper .navigate-btns div:hover {
    background-color: #27C365;
  }
  #property_search_results_1 .top-wrapper .heading {
    font-family: "Satoshi Bold";
    color: #fff;
    width: fit-content;
    display: flex;
    position: relative;
    align-items: center;
    font-size: 1rem;
    margin: 0;
    gap: 0.2rem;
  }
  #property_search_results_1 .top-wrapper .heading span {
    height: 1rem;
    width: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #property_search_results_1 .top-wrapper .heading span img {
    height: 100%;
    width: 100%;
  }
  #property_search_results_1 .prop-preview__actions {
    background-color: #f7f7f7;
    border-radius: 0 0 8px 8px;
  }
  .close-btn {
    position: absolute;
    right: 0.5rem;
    justify-content: end;
    display: flex;
    align-items: center;
  }
  .close-btn button {
    color: #fff;
    background-color: #dc2626;
    border-radius: 50%;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
  }
  .close-btn button:hover {
    background-color: #b91c1c;
    color: #fff;
  }
  .expandable-bottom-container {
    max-height: 50vh;
    width: 80vw;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
    bottom: 0;
    overflow: hidden !important;
  }
  .expandable-bottom-container .table-counter {
    display: flex;
    gap: 1rem;
    align-items: center;
  }
  .expandable-bottom-container .table-counter .heading {
    margin-left: 2rem !important;
    font-size: 0.8rem;
    color: #fff;
    display: flex;
    padding: 0;
    margin: 0;
    gap: 0.3rem;
    font-family: "Satoshi Bold";
  }
  .expandable-bottom-container .show-hidden-container {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    display: flex;
    z-index: 3;
  }
  .expandable-bottom-container .container {
    visibility: hidden;
    pointer-events: none;
  }
  .expandable-bottom-container .bottom-wrapper {
    height: 11rem;
    width: 80%;
    z-index: 3;
    position: relative;
    transition: height 0.3s ease-in-out;
    overflow: hidden !important;
    transform: translateY(3.5rem);
    margin-inline: auto !important;
    background-color: var(--bg-secondary);
    border: none;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
  }
  .expandable-bottom-container .bottom-wrapper .table-container .uk-table-small td,
  .expandable-bottom-container .bottom-wrapper .table-container .uk-table-small th {
    padding: 5px;
    padding-left: 0.8rem;
    font-size: 0.8rem;
    color: var(--text-primary);
  }
  .expandable-bottom-container .bottom-wrapper .table-container .uk-table-small th {
    padding: 5px;
    padding-left: 0.8rem;
    font-size: 0.8rem;
    text-transform: none;
    color: var(--text-primary);
    font-family: "Satoshi Medium";
  }
  .expandable-bottom-container .bottom-wrapper .top-container {
    background-color: #6BC68F;
    width: 100%;
    height: 5vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top-right-radius: 4px;
    padding: 0 1rem;
    border-top-left-radius: 4px;
    position: relative;
  }
  .expandable-bottom-container .bottom-wrapper .top-container .dock-bottom-wrapper {
    position: absolute;
    font-size: 0.8rem;
    text-decoration: none;
    color: #fff;
    font-family: "Satoshi Bold";
  }
  .expandable-bottom-container .bottom-wrapper .top-container .search-container div {
    height: 1.3rem;
    width: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .expandable-bottom-container .bottom-wrapper .top-container .actions-container {
    height: 100%;
    display: flex;
    gap: 0.5rem;
    padding: 0 0.3rem;
    border-right: 1.2px solid var(--border-color);
    border-left: 1.2px solid var(--border-color);
  }
  .expandable-bottom-container .bottom-wrapper .top-container .actions-container div {
    height: 1.3rem;
    width: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .expandable-bottom-container .bottom-wrapper .top-container p {
    font-size: 0.8rem;
    color: #fff;
    display: flex;
    gap: 0.3rem;
    font-family: "Satoshi Bold";
  }
  .expandable-bottom-container .bottom-wrapper .top-container .right-side-container {
    display: flex;
    gap: 0.5rem;
    justify-content: space-between;
    align-items: center;
  }
  .expandable-bottom-container .bottom-wrapper .top-container .right-side-container .expand-view {
    font-size: 0.8rem;
    color: #fff;
    font-family: "Satoshi Medium";
    text-decoration: none;
    display: flex;
    align-items: center;
  }
  .uk-checkbox,
  .uk-radio {
    display: inline-block;
    height: 14px;
    width: 14px;
    overflow: hidden;
    margin-top: -4px;
    vertical-align: middle;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    border: 1px solid #ccc;
    transition: 0.2s ease-in-out;
    transition-property: background-color, border;
  }
  tbody input[type=checkbox]:checked {
    accent-color: #008000 !important;
  }
  .expand-bottom-container {
    height: 2rem;
    width: 3rem;
    background: var(--bg-secondary);
    box-shadow: 0px -1.26471px 3.16176px 0px rgba(77, 77, 77, 0.25);
    position: absolute;
    z-index: 3;
    left: 50%;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    transform: translateX(-50%);
    bottom: 7rem;
    display: flex;
    justify-content: center;
  }
  .expand-bottom-container span {
    width: 100%;
  }
  .expand-bottom-container span a {
    display: flex;
    width: 100%;
    height: 1.5rem;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
  }
  .expand-bottom-container span a img {
    height: 1.2rem;
    width: 1.2rem;
  }
  .expand-bottom-container span a:hover {
    transform: translateY(-0.2rem);
  }
  .hide-bottom-container {
    height: 2rem;
    width: 3rem;
    background: var(--bg-secondary);
    box-shadow: 0px -1.26471px 3.16176px 0px rgba(77, 77, 77, 0.25);
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 21.5rem;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
  }
  .hide-bottom-container span {
    width: 100%;
  }
  .hide-bottom-container span a {
    display: flex;
    width: 100%;
    height: 90%;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
  }
  .hide-bottom-container span a img {
    height: 1.2rem;
    width: 1.2rem;
  }
  .hide-bottom-container span a:hover {
    transform: translateY(0.2rem);
  }
  #hide-bottom {
    opacity: 0;
    transition: opacity 1s ease-in-out;
    transition-delay: show 0.1s;
  }
  .show-bottom-container {
    height: 3rem;
    width: 4rem;
    box-shadow: 0px -1.26471px 3.16176px 0px rgba(77, 77, 77, 0.25);
    position: absolute;
    z-index: 1;
    left: 50%;
    bottom: 0rem;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    position: absolute;
    background: var(--bg-secondary);
  }
  .show-bottom-container span {
    display: flex;
    align-items: center;
    width: 100%;
  }
  .show-bottom-container span a {
    display: flex;
    width: 100%;
    height: 1.5rem;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
  }
  .show-bottom-container span a img {
    height: 1.2rem;
    width: 1.2rem;
  }
  .show-bottom-container span a:hover {
    transform: translateY(-0.2rem);
  }
  .topBarBtns {
    display: flex;
    gap: 0.5rem;
    margin-left: 2rem;
    align-items: center;
    justify-content: center;
  }
  .topBarBtns button, .topBarBtns .metaDataBtn {
    display: flex;
    height: 2.5rem;
    width: 2.5rem;
    background: var(--bg-secondary);
    border: none;
    border-radius: 4px;
    align-items: center;
    box-shadow: -4px 2px 4px 0px rgba(77, 77, 77, 0.134);
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  .topBarBtns button::before, .topBarBtns .metaDataBtn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(0, 128, 0, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
  }
  .topBarBtns button:hover, .topBarBtns .metaDataBtn:hover {
    background: #008000;
    border-color: #008000;
    transform: translateY(-2px);
    box-shadow: -6px 4px 12px rgba(77, 77, 77, 0.2);
  }
  .topBarBtns button:hover::before, .topBarBtns .metaDataBtn:hover::before {
    width: 60px;
    height: 60px;
  }
  .topBarBtns button:hover span > svg path, .topBarBtns .metaDataBtn:hover span > svg path {
    fill: #fff !important;
  }
  .topBarBtns button:hover span > svg rect, .topBarBtns .metaDataBtn:hover span > svg rect {
    fill: #fff !important;
  }
  .topBarBtns button:active, .topBarBtns .metaDataBtn:active {
    transform: translateY(0);
    box-shadow: -4px 2px 4px rgba(77, 77, 77, 0.134);
  }
  .topBarBtns button.helpBtn:hover, .topBarBtns .metaDataBtn.helpBtn:hover {
    background: linear-gradient(135deg, #008000 0%, #27C365 50%, #6BC68F 100%);
    box-shadow: -6px 4px 16px rgba(0, 128, 0, 0.3);
  }
  .topBarBtns button span, .topBarBtns .metaDataBtn span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1.8rem;
    width: 1.8rem;
    z-index: 1;
    transition: transform 0.3s ease;
  }
  .topBarBtns button span > svg, .topBarBtns .metaDataBtn span > svg {
    transition: all 0.3s ease;
  }
  .topBarBtns button span > svg path, .topBarBtns .metaDataBtn span > svg path {
    fill: #008000;
    transition: fill 0.3s ease;
  }
  .topBarBtns button span > svg rect, .topBarBtns .metaDataBtn span > svg rect {
    fill: #008000;
    transition: fill 0.3s ease;
  }
  .topBarBtns button:hover span, .topBarBtns .metaDataBtn:hover span {
    transform: scale(1.1);
  }
  .topBarBtns #startGuideBtn {
    background: #008000;
    border-radius: 4px;
    box-shadow: -4px 2px 4px 0px rgba(77, 77, 77, 0.134);
  }
  .topBarBtns #startGuideBtn:hover {
    background-color: #006600;
  }
}
@media (min-width: 1024px) {
  /* Switch Toggle Styles */
  .switch-toggle-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
  }
  .switch-toggle-input {
    display: none;
  }
  .switch-toggle-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    user-select: none;
    font-family: "Satoshi Medium";
    font-size: 0.9rem;
    justify-content: space-between;
    flex-direction: row-reverse;
    color: var(--text-primary);
  }
  .switch-toggle-slider {
    position: relative;
    width: 48px;
    height: 24px;
    background-color: var(--border-color);
    border-radius: 24px;
    transition: background-color 0.3s ease;
    border: 1px solid #ccc;
  }
  .switch-toggle-slider::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    background-color: var(--bg-primary);
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }
  .switch-toggle-input:checked + .switch-toggle-label .switch-toggle-slider {
    background-color: #008000;
    border-color: #008000;
  }
  .switch-toggle-input:checked + .switch-toggle-label .switch-toggle-slider::before {
    transform: translateX(24px);
  }
  .switch-toggle-text {
    font-weight: 500;
    line-height: 1.4;
  }
  /* Hover effects */
  .switch-toggle-label:hover .switch-toggle-slider {
    box-shadow: 0 0 0 3px rgba(0, 128, 0, 0.1);
  }
  .switch-toggle-input:checked + .switch-toggle-label:hover .switch-toggle-slider {
    background-color: #006600;
  }
  /* Section headings styling */
  .download-layers-available .accordion-section {
    margin-bottom: 0.5rem;
    border-radius: 6px;
    overflow: hidden;
  }
  .download-layers-available .layer-sub-heading {
    font-family: "Satoshi Bold";
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
    padding: 0.75rem 1rem;
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .download-layers-available .layer-sub-heading:hover {
    background-color: #e9ecef;
  }
  .download-layers-available .layer-sub-heading.active {
    background-color: #008000;
    color: #ffffff !important;
  }
  .download-layers-available .layer-sub-heading.active .accordion-arrow path {
    fill: #ffffff !important;
  }
  .download-layers-available .accordion-arrow {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 0.5rem;
  }
  .download-layers-available .accordion-header.active .accordion-arrow {
    transform: rotate(180deg);
  }
  .download-layers-available .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    background-color: var(--bg-primary);
  }
  .download-layers-available .accordion-content.active {
    padding: 0 0.5rem;
    max-height: 500px; /* Adjust based on your content */
  }
  .download-layers-available .switch-toggle-item:last-child {
    margin-bottom: 0;
  }
  .draw-tool .iconWrapper {
    transform: translateX(10px);
  }
  .draw-tool .drawArrow {
    transform: translateX(4px);
  }
  .layersMainWrapper {
    width: 90%;
    margin-top: 1.5rem;
    margin-inline: auto;
  }
  .accordion-item {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: default;
    width: 100%;
    margin-top: 1rem;
    box-sizing: border-box;
    outline: 2px solid transparent;
  }
  .accordion-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  }
  .accordion-item.sortable-chosen {
    opacity: 0.8;
    box-shadow: 0 4px 8px rgba(76, 175, 80, 0.3);
    outline: 2px solid #4CAF50;
  }
  .accordion-item.sortable-drag {
    opacity: 0.6;
    transform: rotate(2deg);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    outline: 2px solid #4CAF50;
    outline-offset: 2px;
  }
  .accordion-item.sortable-ghost {
    opacity: 1;
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f9f0 100%);
    outline: 2px solid #4CAF50;
    border-radius: 8px;
    animation: dropZonePulse 1s ease-in-out infinite alternate;
  }
  .accordion-item.sortable-ghost .accordion-header {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 80px;
  }
  .accordion-item.sortable-ghost .accordion-header > * {
    opacity: 0;
  }
  .accordion-item.sortable-ghost .accordion-header::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid #4CAF50;
    border-radius: 50%;
    border-top: 2px solid transparent;
    transform: translate(-50%, -50%);
    animation: dropZoneSpin 1s linear infinite;
    opacity: 1;
  }
  .accordion-item.drop-line-above {
    border-top: 4px solid #4CAF50;
    border-radius: 0;
    position: relative;
  }
  .accordion-item.drop-line-above::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 1rem;
    width: 12px;
    height: 12px;
    background: #4CAF50;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(76, 175, 80, 0.3);
  }
  .accordion-item .accordion-header {
    padding: 1rem;
    background: var(--bg-secondary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    user-select: none;
    min-height: 80px;
    position: relative;
  }
  .accordion-item .accordion-header:hover {
    background: var(--bg-elevated);
  }
  .accordion-item .accordion-header.active {
    background: #008000;
    color: white;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
  }
  .accordion-item .accordion-header.active .accordion-title {
    color: white;
  }
  .accordion-item .accordion-header.active .globe-icon path {
    fill: white;
  }
  .accordion-item .accordion-header.active .accordion-icon {
    transform: rotate(180deg);
  }
  .accordion-item .accordion-header.active .accordion-icon path {
    fill: white;
  }
  .accordion-item .accordion-header.active .header-range-container .range-value {
    color: white;
    font-family: "Satoshi Medium";
  }
  .accordion-item .accordion-header.active .drag-handle path {
    fill: white;
  }
  .accordion-item .accordion-header .drag-handle {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 16px;
    height: 17px;
    cursor: grab;
    z-index: 10;
    opacity: 0.6;
    transition: opacity 0.2s ease;
  }
  .accordion-item .accordion-header .drag-handle:hover {
    opacity: 1;
  }
  .accordion-item .accordion-header .drag-handle:active {
    cursor: grabbing;
  }
  .accordion-item .accordion-header .drag-handle path {
    fill: #0F172A;
    transition: fill 0.3s ease;
  }
  .accordion-item .accordion-header .header-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .accordion-item .accordion-header .title-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .accordion-item .accordion-header .globe-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }
  .accordion-item .accordion-header .globe-icon path {
    fill: #333;
  }
  .accordion-item .accordion-header .accordion-title {
    font-family: "Satoshi Bold";
    font-size: 1rem;
    color: var(--text-secondary);
  }
  .accordion-item .accordion-header .header-range-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    max-width: 220px;
  }
  .accordion-item .accordion-header .header-range-container .range-slider {
    flex: 1;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: #ddd;
    outline: none;
    border-radius: 2px;
    cursor: pointer;
  }
  .accordion-item .accordion-header .header-range-container .range-slider:disabled {
    background: #f5f5f5;
    cursor: not-allowed;
  }
  .accordion-item .accordion-header .header-range-container .range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    background: #4CAF50;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
  }
  .accordion-item .accordion-header .header-range-container .range-slider::-webkit-slider-thumb:active {
    transform: scale(1.2);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  }
  .accordion-item .accordion-header .header-range-container .range-slider:disabled::-webkit-slider-thumb {
    background: #e0e0e0;
    cursor: not-allowed;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
  .accordion-item .accordion-header .header-range-container .range-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: #4CAF50;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    border: none;
    transition: all 0.2s ease;
  }
  .accordion-item .accordion-header .header-range-container .range-slider::-moz-range-thumb:active {
    transform: scale(1.2);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  }
  .accordion-item .accordion-header .header-range-container .range-slider:disabled::-moz-range-thumb {
    background: #e0e0e0;
    cursor: not-allowed;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
  .accordion-item .accordion-header .header-range-container .range-value {
    min-width: 40px;
    text-align: right;
    color: #666;
    font-size: 0.85rem;
    font-weight: 500;
  }
  .accordion-item .accordion-header .header-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .accordion-item .accordion-header .header-controls .toggle-switch {
    margin: 0;
    margin-right: -0.5rem;
  }
  .accordion-item .accordion-header .accordion-icon {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    z-index: 10;
  }
  .accordion-item .accordion-header .accordion-icon path {
    fill: #0F172A;
  }
  .accordion-item .accordion-content {
    height: 0;
    overflow: hidden;
    background: white;
  }
  .accordion-item .accordion-content .layer-controls {
    padding: 0;
  }
  .control-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
  }
  .control-row .control-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
  }
  .toggle-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
  }
  .toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  .toggle-switch input:checked + .toggle-slider {
    background-color: #4CAF50;
  }
  .toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(24px);
  }
  .toggle-switch input:focus + .toggle-slider {
    box-shadow: 0 0 1px #4CAF50;
  }
  .toggle-switch .toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 24px;
  }
  .toggle-switch .toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }
  .range-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    max-width: 200px;
  }
  .range-container .range-slider {
    flex: 1;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: #ddd;
    outline: none;
    border-radius: 3px;
    transition: background 0.3s;
  }
  .range-container .range-slider:hover {
    background: #ccc;
  }
  .range-container .range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: #4CAF50;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
  }
  .range-container .range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  }
  .range-container .range-slider::-webkit-slider-thumb:active {
    transform: scale(1.2);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
  }
  .range-container .range-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #4CAF50;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border: none;
    transition: all 0.3s ease;
  }
  .range-container .range-slider::-moz-range-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  }
  .range-container .range-slider::-moz-range-thumb:active {
    transform: scale(1.2);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
  }
  .range-container .range-value {
    min-width: 45px;
    text-align: right;
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
  }
  .layer-options {
    border-top: 1px solid var(--border-light);
    padding-top: 1rem;
    margin-top: 0.5rem;
  }
  .layer-options .checkbox-option {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-radius: 4px;
    padding-left: 0.5rem;
    margin-bottom: 0.25rem;
  }
  .layer-options .checkbox-option:hover {
    background-color: #f5f5f5;
  }
  .layer-options .checkbox-option input[type=checkbox] {
    margin-right: 0.75rem;
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #4CAF50;
  }
  .layer-options .checkbox-option span {
    color: var(--text-muted);
    font-size: 0.9rem;
    user-select: none;
  }
  .sub-layers {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 0;
  }
  .sub-layers .sub-layer-item {
    background: var(--bg-primary);
    border-radius: 0;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-bottom: none;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
  }
  .sub-layers .sub-layer-item:last-child {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    border-bottom: 1px solid var(--border-color);
  }
  .sub-layers .sub-layer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
  }
  .sub-layers .sub-layer-header .sub-layer-name {
    font-size: 0.9rem;
    color: #444;
    font-family: "Satoshi Medium", sans-serif;
  }
  .sub-layers .sub-layer-range {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .sub-layers .sub-layer-range .sub-range {
    flex: 1;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: #ddd;
    outline: none;
    border-radius: 2px;
    transition: background 0.3s;
  }
  .sub-layers .sub-layer-range .sub-range:hover {
    background: #ccc;
  }
  .sub-layers .sub-layer-range .sub-range:disabled {
    background: #f5f5f5;
    cursor: not-allowed;
  }
  .sub-layers .sub-layer-range .sub-range:disabled:hover {
    background: #f5f5f5;
  }
  .sub-layers .sub-layer-range .sub-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    background: #6BC68F;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
  }
  .sub-layers .sub-layer-range .sub-range::-webkit-slider-thumb:active {
    transform: scale(1.2);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  }
  .sub-layers .sub-layer-range .sub-range:disabled::-webkit-slider-thumb {
    background: #e0e0e0;
    cursor: not-allowed;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
  .sub-layers .sub-layer-range .sub-range::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: #6BC68F;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    border: none;
    transition: all 0.2s ease;
  }
  .sub-layers .sub-layer-range .sub-range::-moz-range-thumb:active {
    transform: scale(1.2);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  }
  .sub-layers .sub-layer-range .sub-range:disabled::-moz-range-thumb {
    background: #e0e0e0;
    cursor: not-allowed;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
  .sub-layers .sub-layer-range .range-value {
    min-width: 40px;
    text-align: right;
    font-family: "Satoshi Medium";
    color: #666;
    font-size: 0.85rem;
  }
  .toggle-switch.small {
    width: 36px;
    height: 20px;
    position: absolute;
    left: 90%;
  }
  .toggle-switch.small input:checked + .toggle-slider {
    background-color: #6BC68F;
  }
  .toggle-switch.small .toggle-slider:before {
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
  }
  .toggle-switch.small input:checked + .toggle-slider:before {
    transform: translateX(16px);
  }
  @keyframes dropZonePulse {
    0% {
      box-shadow: 0 2px 4px rgba(76, 175, 80, 0.3);
    }
    100% {
      box-shadow: 0 4px 8px rgba(76, 175, 80, 0.5);
    }
  }
  @keyframes dropZoneSpin {
    0% {
      transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }
  .city-search-container {
    display: flex;
  }
  .dropContainerWrapper {
    background-color: var(--bg-primary);
    z-index: 10000;
    position: absolute;
    top: 4rem;
    left: 6rem;
    min-width: 14.5rem;
    border: none;
    display: none;
    font-size: 0.9rem;
  }
  .dropContainerWrapper .radio-options {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    overflow: hidden;
  }
  .dropContainerWrapper .radio-options label {
    display: flex;
    align-items: center;
    height: 2.2rem;
    width: 100%;
    gap: unset;
    cursor: pointer;
    margin: 0;
    padding: 0 1rem;
    transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, scale 0.2s ease-in-out;
    border-top: 1.2px solid transparent;
    border-bottom: 1.2px solid transparent;
  }
  .dropContainerWrapper .radio-options label:hover {
    background-color: var(--bg-secondary);
    border-top: 1.2px solid var(--border-color);
    border-bottom: 1.2px solid var(--border-color);
    scale: 1.01;
  }
  .dropContainerWrapper .radio-options label:hover .radio-label {
    color: #008000;
    font-family: "Satoshi Bold";
  }
  .dropContainerWrapper .radio-options label input[type=radio]:checked {
    accent-color: #008000;
    border-top: 1.2px solid var(--border-color);
    border-bottom: 1.2px solid var(--border-color);
  }
  .dropContainerWrapper .radio-options label input[type=radio]:checked .radio-label {
    color: #008000;
    font-family: "Satoshi Bold" !important;
  }
  .dropContainerWrapper .radio-options label .radio-option {
    display: flex;
  }
  .select-download-tool-wrapper {
    background-color: var(--bg-secondary);
    border: 1.2px solid var(--border-light);
    border-radius: 4px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
    position: relative;
  }
  .select-download-tool-wrapper .iconDrop {
    position: absolute;
    right: 1.5rem;
    top: 3.2rem;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }
  .select-download-tool-wrapper .searchBtnDownloadTool {
    background-color: #008000;
    color: #fff;
    border: none;
    width: fit-content;
    padding: 0rem 1rem;
    height: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
    font-family: "Satoshi Bold";
    transition: all 0.3s ease-in-out;
  }
  .select-download-tool-wrapper .searchBtnDownloadTool:hover {
    background-color: #002c00;
    border-radius: 10rem;
  }
  .select-download-tool-wrapper .headingSmall {
    font-family: "Satoshi Bold";
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0;
    cursor: default;
  }
  .select-download-tool-wrapper .form-select {
    background-color: var(--bg-primary);
    border: none;
    border-radius: 4px;
    padding: 0.5rem;
    width: 100% !important;
    font-size: 0.8rem;
  }
  /* Help Modal Styles */
  .helpModalBackdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    background: rgba(255, 255, 255, 0.15);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }
  .helpModalBackdrop.show {
    display: flex;
    opacity: 1;
  }
  .helpModalBackdrop::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 10px;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }
  .helpCenterModal {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: modalSlideIn 0.3s ease-out;
    z-index: 10001;
    height: fit-content;
    width: 30rem;
    display: flex;
    align-items: center;
    border-radius: 10px;
    justify-content: center;
    overflow: hidden !important;
    gap: 1rem;
    padding: 1rem 0.5rem;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .helpCenterModal:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    border: 1px solid rgba(255, 255, 255, 0.5);
  }
  .helpCenterModal .bottomBar {
    display: flex;
    gap: 0.5rem;
    width: 100%;
    justify-content: flex-end;
    margin-top: 1rem;
    align-items: center;
    padding-top: 0.5rem;
    position: relative;
    /* border-top: 1px solid rgba(0, 0, 0, 0.1); */
  }
  .helpCenterModal .bottomBar a {
    display: flex;
    height: 2rem;
    width: fit-content;
    padding: 0 1rem;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: "Satoshi Bold";
    font-size: 0.75rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  .helpCenterModal .bottomBar a:hover {
    border-radius: 10rem;
    background-color: #006600;
  }
  .helpCenterModal .bottomBar .help-btn {
    display: flex;
    height: 2rem;
    width: fit-content;
    padding: 0 1rem;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: "Satoshi Bold";
    font-size: 0.75rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  .helpCenterModal .bottomBar .help-btn--primary {
    background-color: #008000;
    color: #fff;
  }
  .helpCenterModal .bottomBar .help-btn--primary:hover {
    border-radius: 10rem;
    background-color: #006600;
  }
  .helpCenterModal .bottomBar .help-btn--secondary {
    color: #008000;
    background-color: var(--bg-secondary);
    border: 2px solid #008000;
  }
  .helpCenterModal .bottomBar .help-btn--secondary:hover {
    border-radius: 10rem;
    background-color: #008000;
    color: #fff;
  }
  .helpCenterModal .closeIconWrapper {
    display: flex;
    position: absolute;
    height: 1.5rem;
    width: 1.5rem;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.8);
    top: 0.5rem;
    right: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.3);
    align-items: center;
    justify-content: center;
  }
  .helpCenterModal .closeIconWrapper:hover {
    background: rgb(255, 0, 0);
    transform: scale(1.15) rotate(90deg);
    box-shadow: 0 6px 16px rgba(255, 0, 0, 0.5), 0 0 0 3px rgba(255, 0, 0, 0.2);
  }
  .helpCenterModal .closeIconWrapper:active {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 3px 8px rgba(255, 0, 0, 0.4);
    transition: all 0.1s ease-out;
  }
  .helpCenterModal .headerCenterModal {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    font-family: "Satoshi Bold";
    color: var(--text-secondary);
    margin: 0;
    font-size: 1.6rem;
    padding: 0;
    transition: color 0.3s ease;
  }
  .helpCenterModal .headerCenterModal:hover {
    color: #008000;
  }
  .helpCenterModal .headerCenterModal .headerIconWrapper {
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
  }
  .helpCenterModal .headerCenterModal .headerIconWrapper:hover {
    transform: scale(1.2) rotate(15deg);
    filter: drop-shadow(0 4px 8px rgba(0, 128, 0, 0.3));
  }
  .helpCenterModal .headerCenterModal .headerIconWrapper:active {
    transform: scale(1.15) rotate(10deg);
    transition: all 0.1s ease-out;
  }
  .helpCenterModal .helpDesc {
    font-family: "Satoshi Medium";
    color: var(--text-secondary);
    font-size: 0.9rem;
    width: 80%;
    text-align: center;
    margin-bottom: 3rem;
    padding: 0;
  }
  .helpCenterModal .helpDesc a {
    font-family: "Satoshi Bold";
    color: #008000;
    text-decoration: underline !important;
    transition: all 0.3s ease;
  }
  .helpCenterModal .helpDesc a:hover {
    color: #006600;
    text-decoration-color: #006600 !important;
    transform: scale(1.05);
    display: inline-block;
  }
  @keyframes modalSlideIn {
    from {
      transform: translateY(-20px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
}
@media (min-width: 1024px) and (prefers-reduced-motion: reduce) {
  .helpCenterModal {
    animation: none;
    transition: opacity 0.2s ease;
  }
  .helpCenterModal:hover {
    transform: none;
  }
  .helpCenterModal .closeIconWrapper {
    transition: background-color 0.2s ease;
  }
  .helpCenterModal .closeIconWrapper:hover, .helpCenterModal .closeIconWrapper:active {
    transform: none;
  }
  .helpCenterModal .headerCenterModal .headerIconWrapper {
    transition: filter 0.2s ease;
  }
  .helpCenterModal .headerCenterModal .headerIconWrapper:hover, .helpCenterModal .headerCenterModal .headerIconWrapper:active {
    transform: none;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .left-side-navigation {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    position: absolute;
    left: 1rem;
    top: 1rem;
  }
  .left-side-navigation .uk-dropdown {
    min-width: unset !important;
  }
  .left-side-navigation .measure-dropdown {
    height: 2.5rem;
  }
  .left-side-navigation .measure-dropdown .measurementsWrapper {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    border-radius: unset !important;
    width: 8rem !important;
    max-width: 8rem !important;
    min-width: unset !important;
  }
  .left-side-navigation .measure-dropdown .measurementsWrapper > div {
    background: var(--bg-secondary);
    height: 100%;
    width: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
  }
  .left-side-navigation .measure-dropdown .measurementsWrapper > div:hover {
    background-color: rgba(39, 195, 101, 0.3568627451);
  }
  .left-side-navigation .draw-dropdown {
    height: 2.5rem;
  }
  .left-side-navigation .draw-dropdown .drawToolsWrapper {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    border-radius: unset !important;
    width: 8rem !important;
    max-width: 8rem !important;
    min-width: unset !important;
  }
  .left-side-navigation .draw-dropdown .drawToolsWrapper > div {
    background: var(--bg-secondary);
    height: 100%;
    width: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }
  .left-side-navigation .draw-dropdown .drawToolsWrapper > div:hover {
    background-color: rgba(39, 195, 101, 0.3568627451);
  }
  .left-side-navigation .draw-dropdown .drawToolsWrapper > div svg {
    height: 1.2rem;
    width: 1.2rem;
  }
  .left-side-navigation button {
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 4px;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    font-family: "Satoshi Medium";
    font-size: 0.85rem;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    box-shadow: 4px 0px 3px 0px rgba(77, 77, 77, 0.37);
  }
  .left-side-navigation button span {
    display: flex;
    height: 1.5rem;
    width: 1.5rem;
    border-radius: 10rem;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
  }
  .left-side-navigation button:hover {
    background: #002c00;
    border-radius: 10px;
  }
  .left-side-navigation button:hover .measureArrow {
    background-color: #002c00;
    border-top-right-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
  }
  .left-side-navigation button:hover .measureArrow .arrowIcon path {
    fill: #fff;
  }
  .left-side-navigation button:hover .drawArrow {
    border-top-right-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
  }
  .left-side-navigation button:hover .drawArrow .arrowIcon path {
    fill: #fff;
  }
  .left-side-navigation button:hover .toolIcons path {
    fill: #fff;
  }
  .left-side-navigation button:hover .toolIcons circle {
    fill: #fff;
  }
  .left-side-navigation button.active {
    background: #008000;
  }
  .left-side-navigation button.active .toolIcons path {
    fill: #fff;
  }
  .left-side-navigation button.active .toolIcons circle {
    fill: #fff;
  }
  .left-side-navigation button img {
    height: 1.3rem;
    width: 1.3rem;
    object-fit: cover;
  }
  .left-side-navigation button#resetMap {
    background: #008000;
  }
  .left-side-navigation button#resetMap svg path {
    fill: #fff;
  }
  .left-side-navigation button#resetMap:hover {
    background-color: #006600;
  }
  .form-control {
    width: 100% !important;
  }
  .bottomControlCenter, .topHeaderWrapper, .topCartWrapper, .topMapSidebar, .bottomFixedContainer, .resultsDrawer {
    display: none;
  }
  #printModal {
    display: none;
  }
  .select2-dropdown {
    min-width: 24rem !important;
  }
  .backBtnWrapper {
    position: absolute;
    top: 1rem;
    right: 28rem;
    height: 2.8rem;
  }
  .backBtnWrapper .backBtn {
    height: 100%;
    width: fit-content;
    padding: 0 1rem;
    border-radius: 4px;
    font-family: "Satoshi-Bold";
    background-color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    gap: 0.5rem;
    transition: 0.3s ease-in-out;
  }
  .backBtnWrapper .backBtn .iconWrapper {
    transition: 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .backBtnWrapper .backBtn:hover {
    background-color: #002b00;
    color: #fff !important;
    border: 1.2px solid #fff;
    border-radius: 10rem;
  }
  .backBtnWrapper .backBtn:hover span {
    transform: translateX(-0.2rem);
  }
  .backBtnWrapper .backBtn:hover .backIcon path {
    fill: #fff !important;
  }
  .uk-offcanvas-flip .uk-open > .uk-offcanvas-bar {
    left: auto;
    width: 24rem;
    padding: 0;
    margin: 0;
    right: 0;
    background: var(--bg-primary);
    box-shadow: -4px 4px 11px 0px rgba(77, 77, 77, 0.4);
  }
  .sidenav-container .top-container {
    display: flex;
    align-items: center;
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    gap: 1rem;
    height: 5rem;
    position: relative;
  }
  .sidenav-container .top-container a:not(.closePopUp) {
    height: 3rem;
    width: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .sidenav-container .top-container a:not(.closePopUp) img {
    height: 100%;
    width: 100%;
  }
  .sidenav-container p {
    padding: 0;
    margin: 0;
    font-size: 1.2rem;
    font-family: "Satoshi-Bold";
    color: #008000;
  }
  .closePopUp {
    position: absolute;
    right: 1rem;
    top: 0.8rem;
    background-color: rgba(235, 64, 64, 0.8549019608);
    padding: 0.4rem;
    height: 1.8rem;
    width: 1.8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .closePopUp .closeIcon path {
    fill: #fff;
  }
  .search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 2.5rem !important;
    font-size: 0.8rem !important;
    padding: 0 1.2rem !important;
    transition: 0.3s ease-in-out;
  }
  .search-btn:hover {
    background-color: #002b00;
    color: #fff;
    scale: 1.05;
    border-radius: 10rem;
  }
  .propertySearchSwitchers {
    background-color: var(--bg-primary);
    border: 1.2px solid var(--border-light);
    margin-top: 1.5rem;
    width: 95%;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 3rem;
    padding: 0 0.2rem;
    border-radius: 10rem;
  }
  .propertySearchSwitchers .searchIcons path {
    fill: rgba(70, 70, 70, 0.295);
  }
  .propertySearchSwitchers .uk-active a {
    background-color: #6BC68F !important;
    border: none;
    color: #fff !important;
  }
  .propertySearchSwitchers .uk-active a span .searchIcon path {
    fill: #fff !important;
  }
  .propertySearchSwitchers .uk-active a span .downloadIcon path {
    fill: #fff !important;
  }
  .propertySearchSwitchers .uk-active a span .layersIcon path {
    fill: #fff !important;
  }
  .propertySearchSwitchers li {
    width: fit-content !important;
  }
  .propertySearchSwitchers li a {
    display: flex;
    height: 2.6rem;
    width: fit-content;
    color: rgba(10, 10, 10, 0.6235294118) !important;
    background-color: rgba(51, 51, 51, 0.062745098) !important;
    padding: 0 1.2rem;
    font-family: "Satoshi-Bold";
    align-items: center;
    gap: 0.5rem;
    border: none;
    border-radius: 10rem;
    transition: 0.3s ease-in-out;
  }
  .propertySearchSwitchers li a span {
    display: flex;
  }
  .propertySearchSwitchers li a:hover {
    background-color: #002b00 !important;
    color: #fff !important;
  }
  .propertySearchSwitchers li a:hover span .searchIcon path {
    fill: #fff;
  }
  .propertySearchSwitchers li a:hover span .downloadIcon path {
    fill: #fff;
  }
  .propertySearchSwitchers li a:hover span .layersIcon path {
    fill: #fff;
  }
  .search-input-container {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding: 1rem;
    display: flex;
    border: 1.2px solid var(--border-light);
    flex-direction: column;
    width: 95%;
    border-radius: 10px;
    margin-top: 1rem;
    box-shadow: unset !important;
    gap: 0.6rem;
    background: var(--bg-secondary);
    font-size: 0.8rem;
  }
  .topWrapperOptions {
    background: #ffffff;
    color: #333 !important;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    width: 100%;
    margin: 0 !important;
    height: 2.5rem;
    display: flex;
    font-family: "Satoshi-Bold" !important;
    padding-left: 1rem;
    align-items: center;
  }
  .searchOptionsWrapper #map_search_options {
    max-width: 95% !important;
    margin-top: 1rem;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 1rem !important;
  }
  .select2-selection__arrow {
    display: none !important;
  }
  #my-div {
    opacity: 1 !important;
    min-width: 15rem;
  }
  .div-map-layers-wrapper {
    width: 95%;
    margin: auto;
    overflow-x: hidden;
    margin-top: 1rem !important;
    /* margin-top: -1.5rem !important; */
  }
  .top-docked-container .logo img {
    min-height: 3.5rem;
    min-width: 3.5rem;
  }
  .driver-popover.propertySearchGuide {
    background: radial-gradient(circle at 20% 80%, #005700 0%, transparent 50%), radial-gradient(circle at 80% 20%, #087a08 0%, transparent 50%), radial-gradient(circle at 40% 40%, #006000 0%, transparent 50%), linear-gradient(-45deg, #005700, #087a08, #006000, #005700);
    background-size: 200% 200%, 200% 200%, 200% 200%, 400% 400%;
    animation: meshGradient 8s ease-in-out infinite;
    color: #fff;
    border: 1.2px solid rgba(254, 254, 254, 0.368627451);
  }
  @keyframes meshGradient {
    0% {
      background-position: 0% 0%, 100% 100%, 50% 50%, 0% 50%;
    }
    25% {
      background-position: 100% 0%, 0% 100%, 100% 50%, 100% 50%;
    }
    50% {
      background-position: 100% 100%, 0% 0%, 50% 100%, 50% 100%;
    }
    75% {
      background-position: 0% 100%, 100% 0%, 0% 50%, 0% 100%;
    }
    100% {
      background-position: 0% 0%, 100% 100%, 50% 50%, 0% 50%;
    }
  }
  .driver-popover.propertySearchGuide .driver-popover-title {
    font-size: 1rem;
  }
  .driver-popover.propertySearchGuide .driver-popover-title,
  .driver-popover.propertySearchGuide .driver-popover-description,
  .driver-popover.propertySearchGuide .driver-popover-progress-text {
    color: #fff;
    font-family: "Satoshi-Variable";
  }
  .driver-popover.propertySearchGuide .driver-popover-title {
    font-size: 1.2rem;
    max-width: 95%;
  }
  .driver-popover.propertySearchGuide .driver-popover-description {
    opacity: 0.8;
    font-size: 0.85rem;
  }
  .driver-popover.propertySearchGuide button {
    text-align: center;
    background-color: #000;
    color: #ffffff;
    border: 1px solid var(--border-light);
    text-shadow: none;
    font-family: "Satoshi-Medium";
    font-size: 0.75rem;
    height: 2rem;
    padding: 0 1rem;
    gap: 1rem;
    display: flex;
    align-items: center;
    border-radius: 4px;
  }
  .driver-popover.propertySearchGuide .driver-popover-navigation-btns {
    justify-content: unset !important;
    flex-grow: unset;
  }
  .driver-popover-next-btn {
    background-color: #008000 !important;
    transition: 0.3s all ease-in-out !important;
  }
  .driver-popover-next-btn:hover {
    background-color: #6BC68F !important;
    border-radius: 10rem !important;
    scale: 1.02 !important;
    color: #fff !important;
  }
  .layer-sub-heading {
    font-family: "Satoshi-Bold" !important;
    font-size: 0.95rem !important;
    color: #008000 !important;
    margin-top: 1rem !important;
    margin-bottom: 0.5rem !important;
  }
  .driver-popover.propertySearchGuide button:hover {
    background-color: #000;
    color: #ffffff;
  }
  .driver-popover.propertySearchGuide .driver-popover-navigation-btns {
    justify-content: space-between;
    gap: 3px;
    margin-top: 0.5rem;
  }
  .driver-popover.propertySearchGuide .driver-popover-close-btn {
    color: #9b9b9b;
  }
  .driver-popover.propertySearchGuide .driver-popover-close-btn:hover {
    color: #000;
  }
  .driver-popover.propertySearchGuide .driver-popover-arrow-side-left.driver-popover-arrow {
    border-left-color: #008000;
  }
  .driver-popover.propertySearchGuide .driver-popover-arrow-side-right.driver-popover-arrow {
    border-right-color: #008000;
  }
  .driver-popover.propertySearchGuide .driver-popover-arrow-side-top.driver-popover-arrow {
    border-top-color: #008000;
  }
  .driver-popover.propertySearchGuide .driver-popover-arrow-side-bottom.driver-popover-arrow {
    border-bottom-color: #008000;
  }
  .driver-popover-close-btn {
    background-color: rgba(255, 255, 255, 0.1098039216) !important;
    padding: 0.2rem !important;
    border: unset !important;
    max-height: 1.2rem !important;
    max-width: 1.2rem !important;
    border-radius: 50% !important;
    top: 0.5rem;
    right: 0.5rem;
    transition: 0.3s ease-in-out;
  }
  .driver-popover-close-btn:hover {
    background-color: #ffffff !important;
  }
  #startGuideBtn .iconWrapper {
    display: flex;
    height: 1.5rem;
    width: 1.5rem;
  }
  .left-side-navigation .active {
    background-color: var(--bg-primary);
  }
  .left-side-navigation .ruler {
    position: relative !important;
    z-index: 2 !important;
  }
  .left-side-navigation .measureArrow {
    display: flex;
    height: 100%;
    width: 1rem;
    background-color: var(--bg-secondary);
    border-radius: unset !important;
    border-top-right-radius: 4px !important;
    border-bottom-right-radius: 4px !important;
    position: absolute;
    right: 0;
    z-index: 1;
    top: 0;
    align-items: center;
    justify-content: center;
  }
  .toolIcons path {
    fill: #008000;
  }
  .toolIcons stroke {
    fill: #008000;
  }
  .toolIcons circle {
    fill: #008000;
  }
  #property_search_results_3 {
    position: absolute;
    z-index: 20;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bg-primary);
  }
  .switchers-container {
    display: flex !important;
    flex-direction: column !important;
  }
  .map-container {
    width: 100%;
    height: 100vh;
    margin: auto;
  }
  .select2-container .select2-container--default .collapse-layers:after {
    z-index: 1000;
  }
  .the-property-data {
    /* max-height: 20vh; */
    border: 1px solid var(--primary-bg-color) !important;
    width: auto;
    /* background-color: var(--primary-bg-color); */
  }
  .the-map-products {
    /* background-color: var(--primary-bg-color) !important; */
    background-color: rgba(143, 189, 86, 0.3294117647) !important;
    border: 1px solid var(--primary-bg-color);
  }
  .the-map-product-preview {
    max-height: 20vh;
    border: 1px solid var(--primary-bg-color) !important;
    width: auto;
    /* background-color: var(--primary-bg-color); */
  }
  .grid-map-search {
    z-index: 2;
    position: absolute;
    margin: 18px 0px 0px 18px;
    min-width: 25vw;
  }
  .grid-map-controls {
    z-index: 2;
    position: absolute;
    display: inline-grid;
    margin: 60px 0px 0px 18px;
  }
  .grid-map-switch {
    z-index: 2;
    position: absolute;
    right: 10px;
    width: 20%;
    margin: 18px 18px 0px 0px;
    background-color: #dae9c7 !important;
    border: 1px solid var(--primary-bg-color) !important;
  }
  .btn-primary {
    color: #fff !important;
    background-color: var(--techsys-bg-color) !important;
    border-color: var(--techsys-bg-color) !important;
  }
  .ol-layerswitcher .layerswitcher-opacity:before {
    content: "";
    width: 100%;
    height: 3px;
    background: var(--techsys-bg-color);
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border: 1px solid var(--techsys-bg-color);
    box-sizing: border-box;
  }
  .ol-layerswitcher .layerswitcher-opacity .layerswitcher-opacity-cursor {
    width: auto;
    transform: translateY(-50%);
    height: 3px;
    right: 0;
    background: #666;
    border-radius: 0;
  }
  .ol-touch .ol-layerswitcher .layerswitcher-opacity .layerswitcher-opacity-cursor,
  .ol-layerswitcher .layerswitcher-opacity .layerswitcher-opacity-cursor:before {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 16px;
    left: -1px;
    border-radius: 0;
    background: var(--techsys-bg-color);
  }
  .ol-layerswitcher .layerswitcher-opacity-label {
    display: block;
    right: 20%;
    bottom: 70%;
    font-size: 0.6em;
    user-select: none;
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
  }
  .ol-layerswitcher .layerup {
    width: 2em;
    background: none;
    position: absolute;
    right: 0;
  }
  .ol-layerswitcher .layerup:after {
    content: none;
  }
  .ol-layerswitcher .layerup:before {
    color: var(--techsys-bg-color);
    content: "\f0c9";
    font-family: FontAwesome;
    border: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 1em;
    left: 0.5em;
  }
  .ol-layerswitcher [type=checkbox] + label:before,
  .ol-layerswitcher [type=radio] + label:before {
    content: "";
    border: 2px solid #ccc;
    background-color: transparent;
  }
  .ol-layerswitcher [type=checkbox]:checked + label:before,
  .ol-layerswitcher [type=radio]:checked + label:before {
    background: var(--techsys-bg-color);
    border-color: var(--techsys-bg-color);
  }
  .ol-layerswitcher [type=checkbox]:checked + label:after {
    content: "✓";
    color: #fff !important;
    position: absolute;
    top: -0.15em;
    left: 0.25em;
    cursor: pointer;
    font-weight: 900;
    text-shadow: 1px 1px #fff;
    font-size: 1.2em;
    transform: none;
    border: 0;
    box-shadow: unset;
  }
  .ol-layerswitcher [type=radio]:checked + label:after {
    content: none;
  }
  .ol-control.ol-layerswitcher {
    right: 0.5rem;
    top: 0.5rem;
    z-index: 1;
  }
  .ol-layerswitcher button,
  .ol-layerswitcher button:focus,
  .ol-layerswitcher button:hover {
    background: var(--techsys-bg-color);
    border: 0;
    user-select: none;
    outline: none;
    display: none !important;
  }
  .ol-layerswitcher button:before {
    background: var(--techsys-bg-color);
    -webkit-box-shadow: 0.1em 0.1em #fff;
    box-shadow: 0.1em 0.1em #fff;
  }
  .ol-layerswitcher button:after {
    background: var(--bg-primary);
    background-image: none;
  }
  .ol-layerswitcher .ol-layer-group {
    margin-top: 1em;
  }
  .ol-layerswitcher .ol-layer-group > .ol-layerswitcher-buttons .layerInfo {
    display: none;
  }
  .ol-layerswitcher .expend-layers:before,
  .ol-layerswitcher .collapse-layers:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -2px;
    height: 4px;
    width: 100%;
    background: #5dd18d;
  }
  .ol-layerswitcher .expend-layers,
  .ol-layerswitcher .collapse-layers {
    top: -1em;
  }
  .ol-layerswitcher .expend-layers:before,
  .ol-layerswitcher .expend-layers:after,
  .ol-layerswitcher .collapse-layers:before,
  .ol-layerswitcher .collapse-layers:after {
    background: var(--techsys-bg-color);
  }
  .ol-layerswitcher .panel ul {
    overflow: visible;
  }
  .ol-layerswitcher .layerInfo {
    right: -0.5em;
    background: var(--techsys-bg-color);
  }
  .ol-control.ol-layerswitcher .ol-switchertopdiv,
  .ol-control.ol-layerswitcher .ol-switcherbottomdiv {
    display: none !important;
  }
  .the-grid-list {
    max-height: calc(65.5vh - 60px);
    border: 1px solid var(--primary-bg-color) !important;
    width: auto;
    overflow-y: auto;
  }
  .select2-container {
    width: unset !important;
    width: 100% !important;
  }
  .ol-popupfeature > h1 {
    display: inline-block !important;
    font-size: 18px !important;
    padding-right: 4rem !important;
  }
  .ol-popup > div {
    /* border-radius: 0px !important; */
    padding: 0.35rem !important;
    border: 0px !important;
  }
  #popup-panel {
    max-width: fit-content;
  }
  .the-popup-content {
    width: fit-content;
  }
  #popup-content {
    max-height: 45vh;
    overflow-y: auto;
    width: fit-content;
    background-color: var(--bg-primary);
    font-size: 12px;
    /* font-weight: bold !important; */
    /* font-family: cursive; */
  }
  #popup-title {
    font-size: 20px;
    color: black;
  }
  .displayNone {
    display: none !important;
  }
  .ol-layerswitcher .panel li label {
    color: black;
  }
  .select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
  .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    width: 100%;
  }
  .selection {
    height: 100% !important;
    display: inline-flex;
    width: 100% !important;
  }
  .select2-container {
    width: 100% !important;
    height: 100% !important;
  }
  .select2-container--default .select2-selection--single {
    width: 100% !important;
    align-items: center;
    display: flex;
  }
  .tooltip-measure,
  .tooltip-static {
    position: sticky;
    background: rgba(0, 128, 0, 0.5);
    border-radius: 4px;
    color: white;
    padding: 0px;
    opacity: 0.7;
    white-space: nowrap;
    z-index: 2;
    opacity: 1;
    font-weight: bold;
  }
  .meaure-pointer-container {
    display: flex;
    flex-direction: column;
    border: 1px solid #ffffff;
    border-radius: 5px;
    min-width: 18rem;
    box-shadow: 5px 5px 5px rgba(245, 245, 245, 0.5411764706);
    overflow: hidden;
  }
  .meaure-pointer-container:before {
    /* border-bottom: 14px solid #ff000003; */
    border-top: 19px solid white;
    top: 100%;
    border-left: 15px solid rgba(255, 0, 0, 0);
    border-right: 15px solid rgba(255, 0, 0, 0);
    content: " ";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .meaure-pointer-header {
    background: green;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .meaure-pointer-header span {
    padding: 0 0.75rem;
    font-size: 18px;
    font-weight: bold;
  }
  .meaure-pointer-header h5 {
    font-size: 18px;
    font-weight: bold;
    border-bottom: 1px solid white;
    padding: 0.75rem;
    margin: 0;
  }
  .meaure-pointer-body {
    padding: 0.75rem;
    background: white;
    color: black;
  }
  .meaure-pointer-body p {
    font-weight: normal;
    font-size: 16px;
    margin: 0;
  }
  .meaure-pointer-body span.label {
    min-width: 7rem;
    font-weight: bold;
  }
  .meaure-container {
    border: 1px solid #ffffff;
    border-radius: 5px;
    box-shadow: 5px 5px 5px rgba(245, 245, 245, 0.5411764706);
    overflow: hidden;
    padding: 0.4rem 0.8rem;
    background: green;
    font-size: 16px;
  }
  .download-layers-available label {
    color: black;
  }
  .meaure-circle-body {
    border: 1px solid #ffffff;
    border-radius: 5px;
    box-shadow: 5px 5px 5px rgba(245, 245, 245, 0.5411764706);
    overflow: hidden;
    padding: 0.4rem 0.8rem;
    background: green;
    font-size: 16px;
  }
  .meaure-circle-body p {
    font-weight: normal;
    font-size: 16px;
    margin: 0;
  }
  .meaure-circle-body span.label {
    min-width: 5rem;
    font-weight: bold;
    margin: 0;
  }
  h3.layer-sub-heading {
    color: #565454;
    font-size: 18px;
  }
  .enm-item {
    width: 33.33% !important;
  }
  div.search-options-container {
    /* background-color: red; */
    border-radius: 10px;
    box-shadow: unset !important;
    bottom: 0px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    border: 1.2px solid var(--border-light);
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
    left: 176px;
    /* margin: 0px !important; */
    padding: 0 !important;
    position: relative;
    right: -176px;
    top: 0px;
    -webkit-transform: matrix(1, 0, 0, 1, -167.2, 0);
    transform: matrix(1, 0, 0, 1, -167.2, 0);
  }
  div.search-options-container label {
    margin-top: 1rem;
  }
  select#map_search_options.form-select.form-control {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-clip: padding-box;
    /* background-color: blue; */
    width: 100% !important;
    /* background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"); */
    background-position: right 12px 50%;
    background-repeat: no-repeat;
    background-size: 8px 10px;
    border: 0.8px solid var(--border-color);
    border-radius: 4px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: default;
    display: inline-block;
    padding: 6px 12px 6px 8px;
    -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    vertical-align: middle;
  }
  div.left-side-searches {
    box-sizing: border-box;
    display: flex;
    gap: 0px !important;
    /* background-color: red; */
  }
  a.help {
    align-items: center;
    background: var(--bg-secondary);
    border: none;
    border-radius: 50% !important;
    box-shadow: -4px 2px 4px 0px rgba(77, 77, 77, 0.134);
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    height: 2.5rem;
    width: 2.5rem;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    animation: helpPulse 2.5s ease-in-out infinite;
  }
  a.help .iconWrapper {
    animation: helpBounce 2.5s ease-in-out infinite;
  }
  a.help:hover {
    background-color: #002b00;
    border-radius: 10rem !important;
    animation: none;
    box-shadow: -4px 2px 4px 0px rgba(77, 77, 77, 0.134);
  }
  a.help:hover .iconWrapper {
    animation: none;
  }
  span#select2-map_search_value-container.select2-selection__rendered {
    box-sizing: border-box;
  }
  select#map_search_type.form-select.form-control {
    align-items: center;
  }
  span.select2-selection__arrow {
    bottom: 8.6px;
    box-sizing: border-box;
    cursor: pointer;
    left: 217.6px;
    position: absolute;
    right: 4px;
    top: 50% !important;
    transform: translateY(-50%) !important;
    user-select: none;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (min-width: 996px) {
  .top-search-filters .select2-results__option {
    font-family: "Satoshi-Medium" !important;
    color: var(--text-secondary);
    font-size: 0.8rem;
  }
  .top-search-filters .selection {
    min-width: 12rem;
  }
  .top-search-filters .city-search-container #map_search_type {
    margin-right: 1rem;
    height: 100% !important;
    width: 100% !important;
    border-radius: 4px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  #popup {
    background-color: unset !important;
  }
  .ol-popup {
    padding: 0.5rem 1rem !important;
    border-radius: 4px;
    min-width: 15rem;
  }
  .ol-popup .popup-content {
    color: var(--text-secondary);
    font-family: "Satoshi-Medium";
    font-size: 0.85rem;
  }
  .ol-popup::before {
    content: "";
    position: absolute;
    top: 0.1rem;
    left: 1rem;
    height: 0.5rem;
    width: 0.5rem;
    background: var(--bg-primary);
    /* clip-path: polygon(50% 100%, 0 0, 100% 0); */
    clip-path: polygon(50% 0, 0 100%, 100% 100%);
  }
  .measureArrow svg {
    transition: transform 0.3s ease;
  }
  .measureArrow.rotated svg {
    transform: rotate(180deg);
  }
  .drawArrow svg {
    transition: transform 0.3s ease;
  }
  .drawArrow.rotated svg {
    transform: rotate(180deg);
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  /* Dropdown arrow will be animated by GSAP */
  /* Nav icon styles for active/inactive states */
  .nav-items-container .expand-sidenav .nav-icon-path {
    fill: #333 !important;
    fill-opacity: 1;
    transition: fill 0.3s ease, fill-opacity 0.3s ease;
  }
  .nav-items-container .expand-sidenav.active .nav-icon-path {
    fill: white !important;
    fill-opacity: 1;
  }
  .user-left-side {
    display: none !important;
  }
  .helpModalBackdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(1px);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
  }
  .helpCenterModal {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2px);
    width: 90%;
    max-width: 450px;
    max-height: 95vh;
    padding: 1rem;
    position: relative;
    /* Transform and opacity controlled by GSAP */
    font-family: "Satoshi-Variable", -apple-system, BlinkMacSystemFont, sans-serif;
    overflow-y: auto;
  }
  /* .helpModalBackdrop.show .helpCenterModal styles controlled by GSAP */
  /* Print Modal Styles */
  .printModalBackdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(1px);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    /* Opacity controlled by GSAP */
  }
  /* .printModalBackdrop.show styles controlled by GSAP */
  .printCenterModal {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2px);
    width: 90%;
    max-width: 500px;
    min-height: 300px;
    max-height: 95vh;
    padding: 2rem;
    position: relative;
    /* Transform and opacity controlled by GSAP */
    font-family: "Satoshi-Variable", -apple-system, BlinkMacSystemFont, sans-serif;
    overflow-y: auto;
  }
  /* .printModalBackdrop.show .printCenterModal styles controlled by GSAP */
  /* Help Modal Specific Elements */
  .helpModalBackdrop .closeIconWrapper {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    background: #dc3545;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    /* Transition controlled by GSAP */
    z-index: 10;
  }
  .helpModalBackdrop .closeIconWrapper:hover {
    background: #c82333;
    transform: scale(1.1);
  }
  .helpModalBackdrop .closeIconWrapper:hover .closeIcon svg {
    transform: rotate(90deg);
  }
  .helpModalBackdrop .headerCenterModal {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .helpModalBackdrop .helpSubheading {
    font-family: "Satoshi-Medium";
    font-size: 1rem;
    color: #6c757d;
    margin: 0 0 0.5rem 0;
    text-align: center;
    font-style: italic;
  }
  .helpModalBackdrop .headerIconWrapper {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(0, 128, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .helpModalBackdrop .headerIcon {
    width: 1.5rem;
    height: 1.5rem;
  }
  .helpModalBackdrop .helpDesc, .helpModalBackdrop .helpLink {
    color: #5a6c7d;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0 0 0.5rem 0;
  }
  .helpModalBackdrop .helpLink {
    color: #008000;
    text-decoration: none;
    font-weight: 500;
  }
  .helpModalBackdrop .helpLink:hover {
    text-decoration: underline;
  }
  /* Help Modal Contact Section Styles */
  .helpContactSection {
    margin: 0 0 0.5rem 0;
    width: 100%;
  }
  .helpContactItem {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    background: rgba(0, 128, 0, 0.02);
    border: 1px solid rgba(0, 128, 0, 0.1);
    border-radius: 8px;
    /* Transition controlled by GSAP */
    width: 100%;
    box-sizing: border-box;
  }
  .helpContactItem:hover {
    background: rgba(0, 128, 0, 0.05);
    border-color: rgba(0, 128, 0, 0.2);
  }
  .helpContactItem:last-child {
    margin-bottom: 0;
  }
  /* Phone cards side-by-side layout */
  .phoneCardsContainer {
    display: flex;
    gap: 0.5rem;
    width: 100%;
  }
  .phoneCardsContainer .helpContactItem {
    flex: 1;
    margin-bottom: 0;
  }
  .contactIcon {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.125rem;
  }
  .contactDetails {
    flex: 1;
    min-width: 0;
  }
  .contactDetails strong {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
  }
  .contactDetails address {
    font-style: normal;
    color: #5a6c7d;
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
  }
  .phoneNumber {
    color: #5a6c7d;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: rgba(0, 128, 0, 0.1);
    border-radius: 4px;
    /* Transition controlled by GSAP */
  }
  .phoneNumber:hover {
    background: rgba(0, 128, 0, 0.15);
    color: #008000;
  }
  /* Print Modal Specific Elements */
  .printModalBackdrop .closeIconWrapper {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    background: #dc3545;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    /* Transition controlled by GSAP */
    z-index: 10;
  }
  .printModalBackdrop .closeIconWrapper:hover {
    background: #c82333;
    transform: scale(1.1);
  }
  .printModalBackdrop .closeIcon svg {
    /* Transform animation controlled by GSAP */
  }
  .printModalBackdrop .closeIconWrapper:hover .closeIcon svg {
    transform: rotate(90deg);
  }
  .printModalBackdrop .headerCenterModal {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .printModalBackdrop .headerIconWrapper {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(0, 128, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .printModalBackdrop .headerIcon {
    width: 1.5rem;
    height: 1.5rem;
  }
  /* Print Form Styles */
  .printFormContent {
    margin: 0 0 0.5rem 0;
    width: 100%;
  }
  .printField {
    margin-bottom: 0.75rem;
    width: 100%;
    box-sizing: border-box;
  }
  .printLabel {
    display: block;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
  }
  .propertyNameDisplay {
    background: rgba(0, 128, 0, 0.05);
    border: 1px solid rgba(0, 128, 0, 0.2);
    border-radius: 8px;
    padding: 0.75rem;
    color: #2c3e50;
    font-weight: 500;
    width: 100%;
    box-sizing: border-box;
  }
  .printOptionsGroup {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem;
    width: 100%;
  }
  .printOption {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    width: fit-content;
    color: #5a6c7d;
    transition: color 0.2s ease-in-out;
    left: unset !important;
    transform: none !important;
    margin-bottom: 0;
  }
  .printOption:hover {
    color: #2c3e50;
  }
  .printOption input[type=radio] {
    display: none;
  }
  .radioCustom {
    width: 1rem;
    height: 1rem;
    border: 2px solid #d1d9e6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Transition controlled by GSAP */
    position: relative;
  }
  .printOption input[type=radio]:checked + .radioCustom {
    border-color: #008000;
    background: #008000;
  }
  .printOption input[type=radio]:checked + .radioCustom::after {
    content: "";
    width: 0.3rem;
    height: 0.3rem;
    background: white;
    border-radius: 50%;
    position: absolute;
  }
  .printSelect {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d9e6;
    border-radius: 8px;
    background: white;
    font-size: 0.9rem;
    color: #2c3e50;
    transition: border-color 0.2s ease-in-out;
  }
  .printSelect:focus {
    outline: none;
    border-color: #008000;
    box-shadow: 0 0 0 3px rgba(0, 128, 0, 0.1);
  }
  .orientationIcon {
    width: 1rem;
    height: 1rem;
    margin-left: 0.25rem;
    color: currentColor;
  }
  .copiesControl {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
  }
  .copiesBtn {
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid #d1d9e6;
    border-radius: 6px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    /* Transition controlled by GSAP */
    color: #5a6c7d;
  }
  .copiesBtn:hover {
    background: var(--bg-secondary);
    border-color: #008000;
    color: #008000;
  }
  .copiesBtn:active {
    transform: scale(0.95);
  }
  .copiesInput {
    width: 4rem;
    padding: 0.75rem;
    border: 1px solid #d1d9e6;
    border-radius: 6px;
    text-align: center;
    font-size: 0.9rem;
    color: #2c3e50;
    background: white;
  }
  .copiesInput:focus {
    outline: none;
    border-color: #008000;
    box-shadow: 0 0 0 3px rgba(0, 128, 0, 0.1);
  }
  /* Help Modal Bottom Bar Styles */
  .helpModalBackdrop .bottomBar {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
    align-items: center;
    padding-top: 0.5rem;
    position: relative;
    /* border-top: 1px solid rgba(0, 0, 0, 0.1); */
  }
  /* Print Modal Bottom Bar Styles */
  .printModalBackdrop .bottomBar {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
    align-items: center;
    padding-top: 0.5rem;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
  .printActionBtn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    /* Transition controlled by GSAP */
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid transparent;
  }
  .printActionBtn.cancel {
    background: transparent;
    color: #5a6c7d;
    border-color: #d1d9e6;
  }
  .printActionBtn.cancel:hover {
    background: var(--bg-secondary);
    color: #2c3e50;
  }
  .printActionBtn.print {
    background: #008000;
    color: white;
  }
  .printActionBtn.print:hover {
    background: #006600;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 128, 0, 0.3);
  }
  /* Help Modal Responsive Design */
}
@media (min-width: 768px) and (max-width: 1024px) and (max-width: 640px) {
  .helpCenterModal {
    width: 95%;
    margin: 1rem;
    padding: 1.5rem;
  }
  .helpModalBackdrop .headerCenterModal {
    font-size: 1.25rem;
  }
  .phoneCardsContainer {
    flex-direction: column;
    gap: 1rem;
  }
  .helpContactItem {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.25rem;
    padding: 0.25rem;
  }
  .contactIcon {
    margin-top: 0;
  }
  .contactDetails address {
    font-size: 0.8rem;
  }
  .phoneNumber {
    font-size: 0.85rem;
    padding: 0.375rem 0.75rem;
  }
  .helpModalBackdrop .bottomBar {
    flex-direction: column;
    gap: 0.5rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  /* Print Modal Responsive Design */
}
@media (min-width: 768px) and (max-width: 1024px) and (max-width: 640px) {
  .printCenterModal {
    width: 95%;
    margin: 1rem;
    padding: 1.5rem;
  }
  .printModalBackdrop .headerCenterModal {
    font-size: 1.25rem;
  }
  .printOptionsGroup {
    flex-direction: column;
    gap: 0.5rem;
  }
  .printModalBackdrop .bottomBar {
    flex-direction: column;
    gap: 0.5rem;
  }
  .printActionBtn {
    width: 100%;
    justify-content: center;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  * {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }
  body {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    font-family: "Satoshi Regular";
  }
  .uk-offcanvas {
    z-index: 2;
  }
  .export-options {
    display: flex;
    position: absolute;
    right: 1rem;
    gap: 0.5rem;
    margin-top: -1.9rem;
  }
  .export-options a {
    background: var(--bg-primary);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    cursor: pointer;
    height: 1.5rem;
    width: 1.5rem;
    transition: all 0.3s ease-in-out;
  }
  .export-options a img {
    height: 80%;
    width: 80%;
  }
  .export-options a:hover {
    background: #a6ffca;
    border: 1.2px solid #a6ffca;
  }
  .right-side-navigation {
    width: 4rem;
    right: 0;
    align-items: center;
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    top: 1rem;
    bottom: 1rem;
  }
  .right-side-navigation .top-docked-container {
    position: relative;
    right: 0;
    height: 20rem;
    width: 4rem;
    border-radius: 0.625rem 0rem 0rem 0.625rem;
    box-shadow: -4px 2px 4px 0px rgba(77, 77, 77, 0.134);
    background: var(--bg-secondary);
    display: flex;
    padding: 1rem 0 0 0;
    align-items: center;
    gap: 1rem;
    flex-direction: column;
    justify-content: space-between;
  }
  .right-side-navigation .top-docked-container .active {
    background-color: #6BC68F;
  }
  .right-side-navigation .top-docked-container .mainLogoContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
  }
  .right-side-navigation .top-docked-container .mainLogoContainer .logo {
    height: 3.5rem;
    width: 3.5rem;
  }
  .right-side-navigation .top-docked-container .mainLogoContainer .logo img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .right-side-navigation .top-docked-container .mainLogoContainer .logo-home-text {
    font-size: 0.85rem;
    color: var(--text-primary, #333);
    font-family: "Satoshi Bold";
    margin-top: 0.15rem;
    margin-left: 0.6rem;
  }
  .right-side-navigation .top-docked-container .nav-items-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .right-side-navigation .top-docked-container .nav-items-container a {
    height: 2rem;
    display: flex;
    align-items: center;
    width: 100% !important;
    justify-content: center;
    border-radius: 4px;
    padding: 0 0.5rem;
    border: 1.5px solid rgba(51, 51, 51, 0.2);
    border-radius: 4px;
    transition: background-color 0.3s ease-in-out;
  }
  .right-side-navigation .top-docked-container .nav-items-container a:hover {
    background: #2ecc71;
  }
  .right-side-navigation .top-docked-container .expand-collapsed {
    width: 100%;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0rem 0rem 0rem 0.625rem;
    transition: background-color 0.2s ease-in-out;
    margin-top: auto;
  }
  .right-side-navigation .top-docked-container .expand-collapsed a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0rem 0rem 0rem 0.625rem;
    background: linear-gradient(213deg, #008000 22.04%, #27C365 65.12%, #6BC68F 97.34%);
    transition: background-color 0.3s ease-in-out;
    height: 100%;
    width: 100%;
    animation: glowPulse 3s ease-in-out infinite;
  }
  .right-side-navigation .top-docked-container .expand-collapsed a .iconExpand {
    animation: nudgeLeft 3s ease-in-out infinite;
  }
  .right-side-navigation .top-docked-container .expand-collapsed a:hover {
    background: linear-gradient(135deg, #6BC68F 15%, #27C365 50%, #008000 85%);
    animation: none;
    box-shadow: none;
  }
  .right-side-navigation .top-docked-container .expand-collapsed a:hover .iconExpand {
    animation: none;
    transform: translateX(-0.5rem) !important;
  }
  .right-side-navigation .user-profiles {
    display: flex;
    width: 4rem;
    background: var(--bg-secondary);
    box-shadow: -4px 2px 4px 0px rgba(77, 77, 77, 0.134);
    border-radius: 0.625rem 0rem 0rem 0.625rem;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
  }
  .right-side-navigation .user-profiles .user-account {
    background: #008000;
    border-radius: 50%;
  }
  .right-side-navigation .user-profiles .user-account img {
    height: 100%;
    width: 100%;
  }
  .right-side-navigation .user-profiles a {
    border: none;
    display: flex;
    height: 2.5rem;
    border-radius: 50%;
    justify-content: center;
    width: 2.5rem;
    padding: 0 0.5rem;
    border-radius: 50%;
  }
  .uk-offcanvas-flip .uk-open > .uk-offcanvas-bar {
    left: auto;
    width: 25rem;
    padding: 0;
    margin: 0;
    right: 0;
    background: var(--bg-primary);
    box-shadow: -4px 4px 11px 0px rgba(77, 77, 77, 0.4);
  }
  .top-container {
    display: flex;
    height: 3.5rem;
    gap: 1rem;
    padding: 1rem;
    align-items: center;
    background: var(--bg-secondary);
  }
  .top-container .logo {
    height: 3rem;
    width: 3rem;
  }
  .top-container .logo img {
    height: 100%;
    object-fit: cover;
    width: 100%;
  }
  .top-container .logo-text {
    text-decoration: none;
    font-size: 1rem;
    color: #008000;
    font-family: "Satoshi Bold";
  }
  .top-container .logo-text:hover {
    text-decoration: none;
    color: #008000;
  }
  uk-subnav-pill > * > :first-child {
    background: 0 0;
    color: #fff;
  }
  .switchers-container {
    display: flex;
    width: 95%;
    position: relative;
    left: 50%;
    justify-content: space-between;
    transform: translateX(-50%);
    border-bottom: 1.2px solid var(--border-color);
    margin-top: 0.5rem !important;
  }
  .switchers-container a {
    font-size: 0.7rem;
    margin-bottom: -0.5rem;
    text-transform: none;
  }
  .uk-subnav-pill > * > :first-child {
    text-decoration: unset;
    text-decoration: none !important;
    text-transform: none !important;
    font-size: 0.7rem;
    font-family: "Satoshi Bold";
    color: var(--text-primary);
    display: flex;
    height: 2.5rem;
    align-items: center;
    width: fit-content;
    padding: 0 0.3rem;
    border: none;
    border-bottom: none;
    gap: 0.2rem;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    background: var(--bg-secondary);
  }
  .uk-subnav > * {
    position: relative;
    padding: 0;
    font-size: 0.7rem !important;
    text-transform: none;
  }
  .uk-subnav-pill {
    height: 3rem;
    margin: unset;
  }
  .uk-subnav-pill .uk-active a {
    background-color: unset;
    background-color: #6BC68F !important;
    text-transform: none;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    padding: 0 0.3rem;
    color: #fff !important;
  }
  .search-options-container {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 95%;
    border-radius: 10px;
    margin-top: 1rem;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0px 2px 4px 0px rgba(77, 77, 77, 0.25);
    background: var(--bg-secondary);
  }
  .search-options-container .heading,
  .search-options-container label {
    font-size: 0.9rem;
    color: #008000;
    font-family: "Satoshi Bold";
  }
  .search-options-container #map_search_options {
    border: none;
    padding-left: 0.5rem;
    font-family: "Satoshi Medium";
    border-radius: 4px;
    outline: none;
    width: 100%;
  }
  .select-with-icon,
  .input-with-icon {
    position: relative;
  }
  .select-with-icon > .dropIconWrapper,
  .input-with-icon > .dropIconWrapper {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    display: flex;
    align-items: center;
    background: unset !important;
  }
  .select-with-icon select,
  .input-with-icon select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 2rem;
  }
  .select-with-icon input,
  .input-with-icon input {
    padding-right: 2rem !important;
  }
  .searchOptionsWrapper .select-with-icon > .dropIconWrapper {
    right: 1rem;
  }
  .form-group .dropIconWrapper {
    background: unset !important;
  }
  .search-input-container ::placeholder {
    font-size: 0.7rem;
    color: rgba(77, 77, 77, 0.6235294118);
    font-family: "Satoshi MediumItalic";
  }
  .search-input-container {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    width: 95%;
    border-radius: 10px;
    margin-top: 1rem;
    box-shadow: 0px 2px 4px 0px rgba(77, 77, 77, 0.25);
    gap: 0.6rem;
    background: var(--bg-secondary);
    font-size: 0.8rem;
  }
  .search-input-container label {
    font-size: 0.7rem;
    font-family: "Satoshi Medium";
    color: var(--text-primary);
  }
  .search-input-container .input-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .search-input-container .input-item .legend {
    font-size: 0.7rem;
    font-family: "Satoshi Medium";
    color: var(--text-primary);
  }
  .search-input-container .input-item input {
    border: none;
    padding-left: 0.5rem;
    height: 1.8rem;
    font-family: "Satoshi Medium";
    border-radius: 4px;
    outline: none;
  }
  .search-input-container .search-btn {
    height: 2rem;
    width: fit-content;
    padding: 0 0.8rem;
    display: flex;
    background: #008000;
    color: #fff;
    gap: 0.5rem;
    margin-top: 0.5rem;
    align-items: center;
    font-size: 0.7rem;
    font-family: "Satoshi Bold";
    text-decoration: none;
    border-radius: 4px;
  }
  .search-input-container .search-btn span {
    display: flex;
    align-items: center;
  }
  .bottom-container {
    position: absolute;
    bottom: 0;
    display: flex;
    flex-direction: column;
  }
  .bottom-container .support-email {
    background-color: #6BC68F;
    display: flex;
    gap: 1rem;
    padding: 0.8rem 0.5rem;
    color: #fff;
    align-items: center;
  }
  .bottom-container .support-email p {
    margin: 0;
    display: flex;
    align-items: center;
  }
  .bottom-container .support-email .support-heading {
    font-family: "Satoshi Bold";
    font-size: 0.9rem;
  }
  .bottom-container .support-email .email-info {
    font-size: 0.8rem;
    display: flex;
    gap: 0.5rem;
  }
  .bottom-container .support-email .email-info span {
    display: flex;
    height: 1.1rem;
    width: 1.1rem;
    align-items: center;
  }
  .bottom-container .support-email .email-info span img {
    height: 100%;
    width: 100%;
  }
  .bottom-container .phone-contact {
    width: 95%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .bottom-container .phone-contact p {
    margin: 0;
    padding: 0;
    font-size: 0.6rem;
    color: var(--text-primary);
    opacity: 0.6;
    font-family: "Satoshi Medium";
  }
  .bottom-container .phone-contact img {
    height: 3rem;
    width: 3rem;
    object-fit: contain;
  }
  .sidenav-container {
    width: 100%;
  }
  * {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }
  body {
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    font-family: "Satoshi Medium";
    overflow: hidden;
  }
  .shaun-wrapper {
    --bg-primary: #fff;
    --bg-secondary: #f7f7f7;
    --bg-elevated: #f0f0f0;
    --bg-accent: #cce6cc;
    --text-primary: #1a1a1a;
    --text-secondary: #333;
    --text-muted: #555;
    --border-color: #dedede;
    --border-light: #eee;
    --input-border: #dedede;
    --bg-input: #f7f7f7;
    --shadow-color: rgba(77, 77, 77, 0.134);
    height: 100%;
    width: 100%;
    position: relative;
  }
  .shaun-wrapper .main-container {
    position: relative;
    height: 100dvh;
    width: 100%;
  }
  .base-maps-container {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    display: flex;
    align-items: center !important;
    gap: 1rem;
  }
  .base-maps-container .base-maps-wrapper {
    display: flex;
    justify-content: space-between;
    width: fit-content;
    background-color: var(--bg-secondary);
    border: none;
    gap: 0.5rem;
    padding: 0.3rem;
    scale: 0.9;
    transform: translateX(-2.5rem);
    margin-bottom: -1rem;
    border-radius: 10px;
  }
  .base-maps-container .base-maps-wrapper a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: fit-content;
    min-height: 3rem;
    padding: 0.5rem 0;
    background-color: var(--bg-primary);
    border-radius: 4px;
    min-width: 6rem;
    transition: all 0.3s ease-in-out;
  }
  .base-maps-container .base-maps-wrapper a img {
    display: flex;
    height: 3rem;
    width: 5.5rem;
    border-radius: 4px;
    object-fit: cover;
  }
  .base-maps-container .base-maps-wrapper a p {
    margin: 0;
    text-align: center;
    font-size: 0.65rem;
    font-family: "Satoshi Bold";
    color: var(--text-secondary);
  }
  .base-maps-container .base-maps-wrapper a:hover {
    background-color: #008000;
    scale: 1.05;
  }
  .base-maps-container .base-maps-wrapper a:hover img {
    border: 1.5px solid #fff;
  }
  .base-maps-container .base-maps-wrapper a:hover p {
    color: #fff;
  }
  .base-maps-container .base-maps-wrapper a.active {
    background-color: #008000;
    scale: 1.05;
    box-shadow: 0 4px 8px rgba(0, 128, 0, 0.3);
  }
  .base-maps-container .base-maps-wrapper a.active img {
    border: 1.5px solid #fff;
  }
  .base-maps-container .base-maps-wrapper a.active p {
    color: #fff;
    font-family: "Satoshi Bold";
  }
  .base-maps-container .base-map-trigger {
    background: linear-gradient(213deg, #008000 22.04%, #27C365 65.12%, #6BC68F 97.34%);
    width: fit-content;
    box-shadow: 0px 1.43939px 2.87879px 0px rgba(77, 77, 77, 0.25);
    padding: 0.5rem;
    height: fit-content;
    gap: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.8rem;
    color: #fff;
    font-family: "Satoshi Bold";
  }
  .base-maps-container .base-map-trigger img {
    height: 2rem;
    width: 2rem;
  }
  .hide-menu {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 22rem;
    z-index: 3;
    opacity: 0;
    background: var(--bg-primary);
    height: 3.5rem;
    display: flex;
    width: 3rem;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    box-shadow: -4px 4px 11px 0px rgba(77, 77, 77, 0.3);
  }
  .collapsable {
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 22rem;
    background: var(--bg-secondary);
    height: 3.5rem;
    width: fit-content;
    padding: 0 0.5rem;
    display: flex;
    align-items: center;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    box-shadow: -4px 4px 11px 0px rgba(77, 77, 77, 0.3);
    margin-right: -5px;
  }
  .collapsable img {
    height: 1.5rem;
    width: 1.5rem;
  }
  .select2-results__message {
    font-size: 0.8rem;
    font-family: "Satoshi Medium";
    color: var(--text-primary);
  }
  .top-search-filters {
    position: absolute;
    top: 1rem;
    left: 6rem;
    height: fit-content;
  }
  .top-search-filters .dropMapSearch {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    width: 2.5rem;
    background-color: #fff;
    border: none;
    border-right: none;
    cursor: pointer;
  }
  .top-search-filters .dropMapSearch .iconWrapper {
    display: flex;
    align-items: center;
  }
  .top-search-filters .select2-container--default .select2-selection--single {
    background-color: var(--bg-primary);
    border: none;
    border-radius: unset;
  }
  .top-search-filters .searchBtn {
    background: #008000;
    color: #fff;
    padding: 0.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: "Satoshi Bold";
    font-size: 0.8rem;
    box-shadow: -4px 2px 4px 0px rgba(77, 77, 77, 0.134);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }
  .top-search-filters .searchBtn:hover {
    background: #002c00;
    color: #fff;
    border-top-right-radius: 10rem;
    border-bottom-right-radius: 10rem;
  }
  .top-search-filters .searchBtn:hover span svg {
    fill: #002c00 !important;
  }
  .top-search-filters .searchBtn span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
  }
  .top-search-filters .searchBtn span svg {
    fill: #008000 !important;
  }
  .top-search-filters input {
    padding-left: 0.5rem;
    height: 1.8rem;
    font-family: "Satoshi Medium";
    border-radius: 0 !important;
    box-shadow: 0px 4px 8px 0px rgba(77, 77, 77, 0.1);
    outline: none;
  }
  .top-search-filters .left-side-searches {
    display: flex;
    gap: 1.5rem;
    /* CSS Inspector (http://192.168.10.188) */
  }
  .top-search-filters .left-side-searches span.selection {
    box-sizing: border-box;
    display: inline-flex;
    min-width: 24rem !important;
  }
  .top-search-filters .left-side-searches span.select2-dropdown.select2-dropdown--below {
    bottom: 624.7px;
    box-sizing: border-box;
    left: 0px;
    position: absolute;
    right: 248.312px;
    top: 0px;
    height: fit-content;
    z-index: 9;
    width: unset !important;
    width: 24rem !important;
    min-width: 24rem !important;
  }
  .top-search-filters .left-side-searches input {
    height: unset;
    height: 2.2rem !important;
  }
  .top-search-filters .left-side-searches #city {
    width: 10rem;
  }
  .top-search-filters .left-side-searches #drop {
    width: 15rem;
    font-family: "Satoshi MediumItalic" !important;
  }
  .top-search-filters .left-side-searches #drop ::placeholder {
    font-family: "Satoshi MediumItalic" !important;
  }
  .user-left-side {
    position: absolute;
    right: 6rem;
    top: 1rem;
    min-width: 15rem;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 1rem;
    padding: 0 0.3rem;
    flex-direction: row-reverse;
  }
  .user-left-side .loginIcon path {
    fill: #008000 !important;
  }
  .user-left-side .cart {
    display: flex;
    height: 2.5rem;
    width: 2.5rem;
    background-color: var(--bg-accent);
    border-radius: 50%;
    box-shadow: 0px 4px 5px 0px rgba(77, 77, 77, 0.148);
  }
  .user-left-side .cart .iconWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
  }
  .user-left-side .cart .cartIcon path {
    fill: #008000;
  }
  .user-left-side .cart .cart-counter {
    margin-left: -0.8rem;
    background: #27C365;
    border-radius: 50%;
    height: 1.2rem;
    width: 1.2rem;
    display: flex;
    padding: 0.3rem;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
  }
  .user-left-side .cart .cart-counter .value {
    color: #fff;
    font-size: 0.8rem;
    font-family: "Satoshi Bold";
  }
  .user-left-side #catalogue-menu.cart {
    box-sizing: border-box;
    cursor: pointer;
    background: #D1E3CB !important;
    display: flex;
    height: 2.5rem;
    width: 2.5rem;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 50%;
  }
  .user-left-side #catalogue-menu.cart .cartIcon {
    height: 75%;
    width: 75%;
  }
  .user-left-side #catalogue-menu.cart .cartIcon path {
    fill: #008000;
  }
  .user-left-side #catalogue-menu.cart span {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    background: #008000;
    border: 1.2px solid #fff;
    color: #fff;
    font-size: 0.8rem;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: "Satoshi Bold";
  }
  .user-left-side .user-container {
    display: flex;
    box-shadow: 0px 4px 5px 0px rgba(77, 77, 77, 0.148);
    background: var(--bg-accent);
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding-left: 0.5rem;
    padding-right: 1rem;
    height: 2.5rem;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
  }
  .user-left-side .user-container:hover {
    border-radius: 10rem;
    background: #008000;
  }
  .user-left-side .user-container:hover .username {
    color: #fff;
  }
  .user-left-side .user-container .username {
    color: var(--text-secondary);
    font-family: "Satoshi Bold";
    margin-top: unset;
    font-size: 0.8rem;
  }
  .user-left-side .user-container .user-profile {
    background: var(--bg-primary);
    border-radius: 50%;
    padding: 0.2rem;
    display: flex;
    height: 1.8rem;
    width: 1.8rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
  }
  .hidden-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .search-container {
    min-width: 24rem !important;
    width: 24rem !important;
  }
  .top-search-container {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }
  .top-search-container:focus {
    border-color: #008000 !important;
    box-shadow: 0 0 0 3px rgba(0, 128, 0, 0.25);
    outline: none;
  }
  .top-search-container::placeholder {
    color: #555 !important;
  }
  .top-search-container input {
    border-radius: 0px !important;
  }
  .top-search-container span {
    margin-left: -2.5rem;
    display: flex;
    align-items: center;
    margin-top: 0rem;
    height: 1rem;
    width: 1rem;
  }
  .top-search-container span img {
    opacity: 0.6;
    height: 100%;
    width: 100%;
  }
  .uk-drop.uk-open {
    display: block;
    width: 12rem;
    padding: 0.5rem;
    font-size: 0.8rem;
    border-radius: 10px;
    margin-top: -4rem !important;
  }
  #my-div,
  #my-div-collapse {
    opacity: 0;
    transition-delay: 0.3s;
    transition-duration: 0.1s;
    transition-timing-function: linear;
    transition-property: opacity;
  }
  .closeOffCanvas {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 100000000;
  }
  .div-map-layers-wrapper {
    width: 95%;
    margin: auto;
    overflow-x: hidden;
    margin-top: -1.5rem !important;
  }
  .div-map-layers-wrapper .uk-drop.uk-open {
    display: block;
    width: 100%;
    font-size: 0.8rem;
  }
  .div-map-layers-wrapper .item-container-expanded {
    align-items: center;
    justify-content: space-between;
    position: relative;
    height: fit-content;
    padding-top: 1rem !important;
    padding-bottom: 0.5rem;
    border-bottom: 1.2px solid var(--border-color);
  }
  .div-map-layers-wrapper .item-container-expanded .shaun-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .div-map-layers-wrapper .item-container-expanded .shaun-wrapper .range-container {
    position: relative;
    z-index: 2;
    margin-top: 0rem !important;
  }
  .div-map-layers-wrapper .item-container-expanded .sub-options-container {
    margin-top: -2.5rem;
    transform: translateX(1rem);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .div-map-layers-wrapper .item-container-expanded .sub-options-container label {
    font-size: 0.75rem;
  }
  .div-map-layers-wrapper .item-container-expanded .sub-options-container input[type=checkbox] {
    height: 1rem;
    width: 1rem;
  }
  .div-map-layers-wrapper .item-container-expanded input[type=checkbox]:checked {
    accent-color: #008000;
  }
  .div-map-layers-wrapper .item-container-expanded input[type=checkbox] {
    height: 1.2rem;
    width: 1.2rem;
  }
  .div-map-layers-wrapper .item-container-expanded input[type=range]::-webkit-slider-thumb {
    background: #008000;
  }
  .div-map-layers-wrapper .item-container-expanded label {
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-family: "Satoshi Medium";
    width: fit-content;
  }
  .div-map-layers-wrapper .item-container-expanded label input {
    border: 1.2px solid #1a1a1a;
  }
  .div-map-layers-wrapper .item-container-expanded .uk-margin {
    width: 12rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-radius: 10px;
    padding: 0.3rem 0.8rem;
    padding-bottom: 0.5rem;
    box-shadow: 0px 2px 4px 0px rgba(77, 77, 77, 0.25);
    border: none;
  }
  .div-map-layers-wrapper .item-container-expanded .uk-margin .range-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .div-map-layers-wrapper .item-container-expanded .uk-margin .range-indicator p {
    margin: 0;
    font-size: 0.7rem;
    font-family: "Satoshi Medium";
    color: var(--text-primary);
    opacity: 0.8;
  }
  .div-map-layers-wrapper .item-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    height: fit-content;
    border-bottom: 1.2px solid var(--border-color);
  }
  .div-map-layers-wrapper .item-container .shaun-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .div-map-layers-wrapper .item-container .shaun-wrapper .range-container {
    position: relative;
    z-index: 2;
    margin-top: 0rem !important;
  }
  .div-map-layers-wrapper .item-container .sub-options-container {
    margin-top: -2.5rem;
    transform: translateX(1rem);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .div-map-layers-wrapper .item-container .sub-options-container label {
    font-size: 0.75rem;
  }
  .div-map-layers-wrapper .item-container .sub-options-container input[type=checkbox] {
    height: 1rem;
    width: 1rem;
  }
  .div-map-layers-wrapper .item-container input[type=checkbox]:checked {
    accent-color: #008000;
  }
  .div-map-layers-wrapper .item-container input[type=checkbox] {
    height: 1.2rem;
    width: 1.2rem;
  }
  .div-map-layers-wrapper .item-container input[type=range]::-webkit-slider-thumb {
    background: #008000;
  }
  .div-map-layers-wrapper .item-container label {
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-family: "Satoshi Medium";
    width: fit-content;
  }
  .div-map-layers-wrapper .item-container label input {
    border: 1.2px solid #1a1a1a;
  }
  .div-map-layers-wrapper .item-container .uk-margin {
    width: 12rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-radius: 10px;
    padding: 0.3rem 0.8rem;
    padding-bottom: 0.5rem;
    box-shadow: 0px 2px 4px 0px rgba(77, 77, 77, 0.25);
    border: none;
  }
  .div-map-layers-wrapper .item-container .uk-margin .range-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .div-map-layers-wrapper .item-container .uk-margin .range-indicator p {
    margin: 0;
    font-size: 0.7rem;
    font-family: "Satoshi Medium";
    color: var(--text-primary);
    opacity: 0.8;
  }
  .map-legend-container {
    width: 95%;
    margin: auto;
    margin-top: 0.5rem;
    font-family: "Satoshi Medium";
  }
  .map-legend-container h2 {
    font-family: "Satoshi Bold";
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
  }
  .map-legend-container .legend-section {
    margin-bottom: 2rem;
  }
  .map-legend-container .legend-section h3.legend-heading {
    font-family: "Satoshi Bold" !important;
    font-size: 1rem !important;
    font-weight: 500;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    margin-bottom: 1rem;
    background: #ffffff;
    color: #333 !important;
    padding: 0.5rem 1rem;
  }
  .map-legend-container .polygon-key {
    color: var(--text-primary);
    opacity: 0.8;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1.2px solid var(--border-color);
  }
  .map-legend-container .polygon-key p {
    margin: 0;
    padding: 0;
    color: var(--text-primary);
    opacity: 0.9;
    font-size: 0.8rem;
    font-family: "Satoshi Bold";
  }
  .map-legend-container .polygon-key img {
    height: 1.4rem;
    width: 1.4rem;
    background: #6BC68F;
    border-radius: 50%;
  }
  .map-legend-container .legend-symbol {
    width: 1.4rem;
    height: 1.4rem;
  }
  .map-legend-container .legend-symbol.cadastral {
    border-radius: 4px;
  }
  .map-legend-container .legend-symbol.cadastral.land-parcels {
    background: #3498db;
  }
  .map-legend-container .legend-symbol.cadastral.roads {
    background: #95a5a6;
  }
  .map-legend-container .legend-symbol.cadastral.buildings {
    background: #e74c3c;
  }
  .map-legend-container .legend-symbol.control-network {
    border-radius: 50%;
  }
  .map-legend-container .legend-symbol.control-network.cors {
    background: #f39c12;
  }
  .map-legend-container .legend-symbol.control-network.tsm {
    background: #9b59b6;
  }
  .map-legend-container .legend-symbol.control-network.trig-beacons {
    background: #e67e22;
  }
  .map-legend-container .legend-symbol.admin-boundary {
    height: 0.3rem;
    border-radius: 2px;
  }
  .map-legend-container .legend-symbol.admin-boundary.suburbs {
    background: #2ecc71;
  }
  .map-legend-container .legend-symbol.admin-boundary.towns {
    background: #27ae60;
  }
  .map-legend-container .legend-symbol.admin-boundary.districts {
    background: #16a085;
  }
  .map-legend-container .legend-symbol.admin-boundary.provinces {
    background: #1abc9c;
  }
  .map-legend-container .legend-symbol.admin-boundary.country {
    background: #34495e;
  }
  .map-legend-container .legend-symbol.map-symbol {
    border-radius: 4px;
  }
  .map-legend-container .legend-symbol.map-symbol.selected-property {
    background: #ff4757;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px #ff4757;
  }
  .map-legend-container .legend-symbol.map-symbol.search-results {
    background: #ffa502;
    border: 2px solid #fff;
  }
  .map-legend-container .legend-symbol.map-symbol.measurement-tools {
    height: 0.3rem;
    background: #ff6b6b;
    border-radius: 2px;
    position: relative;
  }
  .map-legend-container .legend-symbol.map-symbol.measurement-tools::before, .map-legend-container .legend-symbol.map-symbol.measurement-tools::after {
    content: "";
    position: absolute;
    width: 0.4rem;
    height: 0.4rem;
    background: #ff6b6b;
    border-radius: 50%;
    top: -0.05rem;
  }
  .map-legend-container .legend-symbol.map-symbol.measurement-tools::before {
    left: 0;
  }
  .map-legend-container .legend-symbol.map-symbol.measurement-tools::after {
    right: 0;
  }
  .property-info {
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 2rem;
    background-color: black;
    color: #fff;
    padding: 0 0.2rem;
  }
  .uk-accordion {
    display: flex;
    flex-direction: column;
    gap: 0 !important;
  }
  .uk-modal-body .content-wrapper {
    width: 100%;
    padding-top: 1.2rem;
    padding-bottom: 0 !important;
    margin: auto;
    height: fit-content !important;
  }
  .disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 80%;
    padding: 1rem 0;
    margin: auto;
  }
  .disclaimer .description {
    width: 90%;
    text-align: center;
    color: var(--text-primary);
    font-size: 0.8rem;
    font-family: "Satoshi Medium";
  }
  .input-container {
    width: 90%;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }
  .input-container input {
    height: 2rem;
    padding-left: 0.5rem;
    font-family: "Satoshi Medium";
    border: none;
    border-radius: 4px;
    outline: none;
  }
  .print-bookmark {
    position: absolute;
    top: 1rem;
    left: 33rem;
    display: flex;
    gap: 0.5rem;
  }
  .print-bookmark div {
    height: 2.2rem;
    width: 3rem;
    background: var(--bg-secondary);
    border: none;
    box-shadow: 0px 4px 8px 0px rgba(77, 77, 77, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
  }
  .expanded-instruments {
    position: relative;
  }
  .expanded-instruments a {
    height: 100%;
    width: 100%;
    display: flex;
    gap: 0.2rem;
    position: relative;
    align-items: center;
    justify-content: center;
  }
  .expanded-instruments a .arrow {
    position: absolute;
    background: rgba(255, 255, 255, 0.768627451);
    right: -1.2rem;
    height: 1.2rem;
    border-radius: 4px;
    width: 1rem;
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }
  .expanded-instruments a .arrow img {
    position: relative;
    height: 100%;
    width: 100%;
    opacity: 0.5;
  }
  .expanded-instruments .uk-drop.uk-open {
    display: flex;
    width: fit-content;
    padding: 0.5rem;
    font-size: 0.8rem;
    gap: 0.5rem;
    border-radius: 10px;
    margin-top: -3rem !important;
    margin-left: -2rem !important;
  }
  .measure-location {
    height: unset;
    width: unset;
    padding: 0 !important;
  }
  .measure-location img {
    height: 1.4rem !important;
    width: 1.4rem !important;
    object-fit: contain !important;
  }
  div.uk-drop.uk-dropdown.uk-open .logout-container {
    background-color: var(--bg-primary);
    margin-top: 0.5rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3rem;
    border-top: 1.2px solid var(--border-color);
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (min-width: 1400px) {
  .shaun-wrapper {
    width: 100%;
    height: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .line {
    height: 100%;
    width: 1px;
    position: absolute;
    left: 43%;
  }
  .property-info-drop {
    position: relative;
    z-index: 2;
    background: var(--bg-primary);
    padding-top: 0.2rem !important;
    padding-bottom: 0 !important;
  }
  .uk-accordion-content {
    margin-top: 1rem;
    height: 10rem;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .uk-open .uk-accordion-title {
    background: #6BC68F;
    color: #fff;
    padding: 0.5rem;
    margin-top: -1rem;
    font-family: "Satoshi Bold", sans-serif;
  }
  .uk-accordion-title {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--text-primary);
    background: var(--bg-secondary);
    font-family: "Satoshi Bold";
    overflow: hidden;
    align-items: center;
    margin-top: -0.5rem;
    padding: 0.5rem;
  }
  .coordinates-container {
    width: 100%;
    height: 100%;
    background-color: var(--bg-secondary);
    padding: 0.5rem;
    padding-left: 1rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .coordinates-container .heading {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-family: "Satoshi Bold";
    text-transform: capitalize;
    padding-bottom: 0.3rem;
    margin: 0;
  }
  .coordinates-container .y-coordinates,
  .coordinates-container .x-coordinates {
    font-size: 0.7rem;
    color: var(--text-primary);
    margin: 0;
  }
  .export-container {
    height: 3rem;
    width: 100%;
    background: #008000;
    display: flex;
    align-items: center;
    padding: 0 0.5rem;
  }
  .export-container p {
    width: 15rem;
    font-size: 0.9rem;
    margin: 0;
    color: #fff;
    font-family: "Satoshi Medium";
  }
  .download {
    position: absolute;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
    justify-content: end;
    background: yellow;
  }
  .download a {
    height: 1.5rem;
    width: 1.5rem;
    background: white;
    border: none;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .download a span {
    background-color: red;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    height: fit-content;
  }
  .download a img {
    height: 80%;
    width: 80%;
  }
  ::-webkit-scrollbar {
    width: 7px;
  }
  ::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 10px;
  }
  .uk-accordion-title::before {
    content: "";
    width: 0 !important;
    height: 0 !important;
    background-image: none !important;
    background-repeat: no-repeat;
    background-position: 50% 50%;
  }
  .uk-drop-parent-icon {
    margin-left: -1rem;
  }
  .draggable-div {
    height: 20rem;
    width: 20rem;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #property_search_results_1 {
    width: 25rem;
    height: -moz-fit-content;
    height: fit-content;
    position: fixed;
    right: 23vw;
    top: 8.5vh;
    background: var(--bg-primary);
    z-index: 2;
    touch-action: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  }
  #property_search_results_1 .content-wrapper {
    max-height: 14rem;
    overflow-y: auto;
    overflow-x: hidden;
    background: var(--bg-primary);
  }
  #property_search_results_1 .property-detail {
    border-bottom: 1px solid var(--border-color);
    padding: 0.35rem 0.75rem;
    display: flex;
    justify-content: space-between;
    width: 25rem;
    align-items: baseline;
  }
  #property_search_results_1 .property-detail .detail {
    font-family: "Satoshi Medium";
    color: var(--text-muted, #555);
    font-size: 0.75rem;
    white-space: nowrap;
    padding-right: 0.5rem;
  }
  #property_search_results_1 .property-detail .value {
    font-family: "Satoshi-Bold";
    font-size: 0.78rem;
    width: 70%;
    color: var(--text-primary);
    padding-left: 0.5rem;
    border-left: 1.2px solid var(--border-color);
    word-break: break-word;
  }
  #property_search_results_1 .top-wrapper {
    width: 100%;
    height: 3rem;
    background-color: #008000;
    position: relative;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding: 0 1rem;
  }
  #property_search_results_1 .top-wrapper .navigate-btns {
    display: flex;
    gap: 0.5rem;
    align-items: center;
  }
  #property_search_results_1 .top-wrapper .navigate-btns div {
    height: 1.3rem;
    width: 1.3rem;
    border-radius: 4px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
  }
  #property_search_results_1 .top-wrapper .navigate-btns div:hover {
    background-color: #27C365;
  }
  #property_search_results_1 .top-wrapper .heading {
    font-family: "Satoshi Bold";
    color: #fff;
    width: fit-content;
    display: flex;
    position: relative;
    align-items: center;
    font-size: 1rem;
    margin: 0;
    gap: 0.2rem;
  }
  #property_search_results_1 .top-wrapper .heading span {
    height: 1rem;
    width: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #property_search_results_1 .top-wrapper .heading span img {
    height: 100%;
    width: 100%;
  }
  #property_search_results_1 .prop-preview__actions {
    background-color: #f7f7f7;
    border-radius: 0 0 8px 8px;
  }
  .close-btn {
    position: absolute;
    right: 0.5rem;
    justify-content: end;
    display: flex;
    align-items: center;
  }
  .close-btn button {
    color: #fff;
    background-color: #dc2626;
    border-radius: 50%;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
  }
  .close-btn button:hover {
    background-color: #b91c1c;
    color: #fff;
  }
  .expandable-bottom-container {
    max-height: 50vh;
    width: 80vw;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
    bottom: 0;
    overflow: hidden !important;
  }
  .expandable-bottom-container .table-counter {
    display: flex;
    gap: 1rem;
    align-items: center;
  }
  .expandable-bottom-container .table-counter .heading {
    margin-left: 2rem !important;
    font-size: 0.8rem;
    color: #fff;
    display: flex;
    padding: 0;
    margin: 0;
    gap: 0.3rem;
    font-family: "Satoshi Bold";
  }
  .expandable-bottom-container .show-hidden-container {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    display: flex;
    z-index: 3;
  }
  .expandable-bottom-container .container {
    visibility: hidden;
    pointer-events: none;
  }
  .expandable-bottom-container .bottom-wrapper {
    height: 11rem;
    width: 80%;
    z-index: 3;
    position: relative;
    transition: height 0.3s ease-in-out;
    overflow: hidden !important;
    transform: translateY(3.5rem);
    margin-inline: auto !important;
    background-color: var(--bg-secondary);
    border: none;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
  }
  .expandable-bottom-container .bottom-wrapper .table-container .uk-table-small td,
  .expandable-bottom-container .bottom-wrapper .table-container .uk-table-small th {
    padding: 5px;
    padding-left: 0.8rem;
    font-size: 0.8rem;
    color: var(--text-primary);
  }
  .expandable-bottom-container .bottom-wrapper .table-container .uk-table-small th {
    padding: 5px;
    padding-left: 0.8rem;
    font-size: 0.8rem;
    text-transform: none;
    color: var(--text-primary);
    font-family: "Satoshi Medium";
  }
  .expandable-bottom-container .bottom-wrapper .top-container {
    background-color: #6BC68F;
    width: 100%;
    height: 5vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top-right-radius: 4px;
    padding: 0 1rem;
    border-top-left-radius: 4px;
    position: relative;
  }
  .expandable-bottom-container .bottom-wrapper .top-container .dock-bottom-wrapper {
    position: absolute;
    font-size: 0.8rem;
    text-decoration: none;
    color: #fff;
    font-family: "Satoshi Bold";
  }
  .expandable-bottom-container .bottom-wrapper .top-container .search-container div {
    height: 1.3rem;
    width: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .expandable-bottom-container .bottom-wrapper .top-container .actions-container {
    height: 100%;
    display: flex;
    gap: 0.5rem;
    padding: 0 0.3rem;
    border-right: 1.2px solid var(--border-color);
    border-left: 1.2px solid var(--border-color);
  }
  .expandable-bottom-container .bottom-wrapper .top-container .actions-container div {
    height: 1.3rem;
    width: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .expandable-bottom-container .bottom-wrapper .top-container p {
    font-size: 0.8rem;
    color: #fff;
    display: flex;
    gap: 0.3rem;
    font-family: "Satoshi Bold";
  }
  .expandable-bottom-container .bottom-wrapper .top-container .right-side-container {
    display: flex;
    gap: 0.5rem;
    justify-content: space-between;
    align-items: center;
  }
  .expandable-bottom-container .bottom-wrapper .top-container .right-side-container .expand-view {
    font-size: 0.8rem;
    color: #fff;
    font-family: "Satoshi Medium";
    text-decoration: none;
    display: flex;
    align-items: center;
  }
  .uk-checkbox,
  .uk-radio {
    display: inline-block;
    height: 14px;
    width: 14px;
    overflow: hidden;
    margin-top: -4px;
    vertical-align: middle;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    border: 1px solid #ccc;
    transition: 0.2s ease-in-out;
    transition-property: background-color, border;
  }
  tbody input[type=checkbox]:checked {
    accent-color: #008000 !important;
  }
  .expand-bottom-container {
    height: 2rem;
    width: 3rem;
    background: var(--bg-secondary);
    box-shadow: 0px -1.26471px 3.16176px 0px rgba(77, 77, 77, 0.25);
    position: absolute;
    z-index: 3;
    left: 50%;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    transform: translateX(-50%);
    bottom: 7rem;
    display: flex;
    justify-content: center;
  }
  .expand-bottom-container span {
    width: 100%;
  }
  .expand-bottom-container span a {
    display: flex;
    width: 100%;
    height: 1.5rem;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
  }
  .expand-bottom-container span a img {
    height: 1.2rem;
    width: 1.2rem;
  }
  .expand-bottom-container span a:hover {
    transform: translateY(-0.2rem);
  }
  .hide-bottom-container {
    height: 2rem;
    width: 3rem;
    background: var(--bg-secondary);
    box-shadow: 0px -1.26471px 3.16176px 0px rgba(77, 77, 77, 0.25);
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 21.5rem;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
  }
  .hide-bottom-container span {
    width: 100%;
  }
  .hide-bottom-container span a {
    display: flex;
    width: 100%;
    height: 90%;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
  }
  .hide-bottom-container span a img {
    height: 1.2rem;
    width: 1.2rem;
  }
  .hide-bottom-container span a:hover {
    transform: translateY(0.2rem);
  }
  #hide-bottom {
    opacity: 0;
    transition: opacity 1s ease-in-out;
    transition-delay: show 0.1s;
  }
  .show-bottom-container {
    height: 3rem;
    width: 4rem;
    box-shadow: 0px -1.26471px 3.16176px 0px rgba(77, 77, 77, 0.25);
    position: absolute;
    z-index: 1;
    left: 50%;
    bottom: 0rem;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    position: absolute;
    background: var(--bg-secondary);
  }
  .show-bottom-container span {
    display: flex;
    align-items: center;
    width: 100%;
  }
  .show-bottom-container span a {
    display: flex;
    width: 100%;
    height: 1.5rem;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
  }
  .show-bottom-container span a img {
    height: 1.2rem;
    width: 1.2rem;
  }
  .show-bottom-container span a:hover {
    transform: translateY(-0.2rem);
  }
  .topBarBtns {
    display: flex;
    gap: 0.5rem;
    margin-left: 2rem;
    align-items: center;
    justify-content: center;
  }
  .topBarBtns button, .topBarBtns .metaDataBtn {
    display: flex;
    height: 2.5rem;
    width: 2.5rem;
    background: var(--bg-secondary);
    border: none;
    border-radius: 4px;
    align-items: center;
    box-shadow: -4px 2px 4px 0px rgba(77, 77, 77, 0.134);
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  .topBarBtns button::before, .topBarBtns .metaDataBtn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(0, 128, 0, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
  }
  .topBarBtns button:hover, .topBarBtns .metaDataBtn:hover {
    background: #008000;
    border-color: #008000;
    transform: translateY(-2px);
    box-shadow: -6px 4px 12px rgba(77, 77, 77, 0.2);
  }
  .topBarBtns button:hover::before, .topBarBtns .metaDataBtn:hover::before {
    width: 60px;
    height: 60px;
  }
  .topBarBtns button:hover span > svg path, .topBarBtns .metaDataBtn:hover span > svg path {
    fill: #fff !important;
  }
  .topBarBtns button:hover span > svg rect, .topBarBtns .metaDataBtn:hover span > svg rect {
    fill: #fff !important;
  }
  .topBarBtns button:active, .topBarBtns .metaDataBtn:active {
    transform: translateY(0);
    box-shadow: -4px 2px 4px rgba(77, 77, 77, 0.134);
  }
  .topBarBtns button.helpBtn:hover, .topBarBtns .metaDataBtn.helpBtn:hover {
    background: linear-gradient(135deg, #008000 0%, #27C365 50%, #6BC68F 100%);
    box-shadow: -6px 4px 16px rgba(0, 128, 0, 0.3);
  }
  .topBarBtns button span, .topBarBtns .metaDataBtn span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1.8rem;
    width: 1.8rem;
    z-index: 1;
    transition: transform 0.3s ease;
  }
  .topBarBtns button span > svg, .topBarBtns .metaDataBtn span > svg {
    transition: all 0.3s ease;
  }
  .topBarBtns button span > svg path, .topBarBtns .metaDataBtn span > svg path {
    fill: #008000;
    transition: fill 0.3s ease;
  }
  .topBarBtns button span > svg rect, .topBarBtns .metaDataBtn span > svg rect {
    fill: #008000;
    transition: fill 0.3s ease;
  }
  .topBarBtns button:hover span, .topBarBtns .metaDataBtn:hover span {
    transform: scale(1.1);
  }
  .topBarBtns #startGuideBtn {
    background: #008000;
    border-radius: 4px;
    box-shadow: -4px 2px 4px 0px rgba(77, 77, 77, 0.134);
  }
  .topBarBtns #startGuideBtn:hover {
    background-color: #006600;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  /* Switch Toggle Styles */
  .switch-toggle-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
  }
  .switch-toggle-input {
    display: none;
  }
  .switch-toggle-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    user-select: none;
    font-family: "Satoshi Medium";
    font-size: 0.9rem;
    justify-content: space-between;
    flex-direction: row-reverse;
    color: var(--text-primary);
  }
  .switch-toggle-slider {
    position: relative;
    width: 48px;
    height: 24px;
    background-color: var(--border-color);
    border-radius: 24px;
    transition: background-color 0.3s ease;
    border: 1px solid #ccc;
  }
  .switch-toggle-slider::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    background-color: var(--bg-primary);
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }
  .switch-toggle-input:checked + .switch-toggle-label .switch-toggle-slider {
    background-color: #008000;
    border-color: #008000;
  }
  .switch-toggle-input:checked + .switch-toggle-label .switch-toggle-slider::before {
    transform: translateX(24px);
  }
  .switch-toggle-text {
    font-weight: 500;
    line-height: 1.4;
  }
  /* Hover effects */
  .switch-toggle-label:hover .switch-toggle-slider {
    box-shadow: 0 0 0 3px rgba(0, 128, 0, 0.1);
  }
  .switch-toggle-input:checked + .switch-toggle-label:hover .switch-toggle-slider {
    background-color: #006600;
  }
  /* Section headings styling */
  .download-layers-available .accordion-section {
    margin-bottom: 0.5rem;
    border-radius: 6px;
    overflow: hidden;
  }
  .download-layers-available .layer-sub-heading {
    font-family: "Satoshi Bold";
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
    padding: 0.75rem 1rem;
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .download-layers-available .layer-sub-heading:hover {
    background-color: #e9ecef;
  }
  .download-layers-available .layer-sub-heading.active {
    background-color: #008000;
    color: #ffffff !important;
  }
  .download-layers-available .layer-sub-heading.active .accordion-arrow path {
    fill: #ffffff !important;
  }
  .download-layers-available .accordion-arrow {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 0.5rem;
  }
  .download-layers-available .accordion-header.active .accordion-arrow {
    transform: rotate(180deg);
  }
  .download-layers-available .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    background-color: var(--bg-primary);
  }
  .download-layers-available .accordion-content.active {
    padding: 0 0.5rem;
    max-height: 500px; /* Adjust based on your content */
  }
  .download-layers-available .switch-toggle-item:last-child {
    margin-bottom: 0;
  }
  .draw-tool .iconWrapper {
    transform: translateX(10px);
  }
  .draw-tool .drawArrow {
    transform: translateX(4px);
  }
  .layersMainWrapper {
    width: 90%;
    margin-top: 1.5rem;
    margin-inline: auto;
  }
  .accordion-item {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: default;
    width: 100%;
    margin-top: 1rem;
    box-sizing: border-box;
    outline: 2px solid transparent;
  }
  .accordion-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  }
  .accordion-item.sortable-chosen {
    opacity: 0.8;
    box-shadow: 0 4px 8px rgba(76, 175, 80, 0.3);
    outline: 2px solid #4CAF50;
  }
  .accordion-item.sortable-drag {
    opacity: 0.6;
    transform: rotate(2deg);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    outline: 2px solid #4CAF50;
    outline-offset: 2px;
  }
  .accordion-item.sortable-ghost {
    opacity: 1;
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f9f0 100%);
    outline: 2px solid #4CAF50;
    border-radius: 8px;
    animation: dropZonePulse 1s ease-in-out infinite alternate;
  }
  .accordion-item.sortable-ghost .accordion-header {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 80px;
  }
  .accordion-item.sortable-ghost .accordion-header > * {
    opacity: 0;
  }
  .accordion-item.sortable-ghost .accordion-header::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid #4CAF50;
    border-radius: 50%;
    border-top: 2px solid transparent;
    transform: translate(-50%, -50%);
    animation: dropZoneSpin 1s linear infinite;
    opacity: 1;
  }
  .accordion-item.drop-line-above {
    border-top: 4px solid #4CAF50;
    border-radius: 0;
    position: relative;
  }
  .accordion-item.drop-line-above::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 1rem;
    width: 12px;
    height: 12px;
    background: #4CAF50;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(76, 175, 80, 0.3);
  }
  .accordion-item .accordion-header {
    padding: 1rem;
    background: var(--bg-secondary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    user-select: none;
    min-height: 80px;
    position: relative;
  }
  .accordion-item .accordion-header:hover {
    background: var(--bg-elevated);
  }
  .accordion-item .accordion-header.active {
    background: #008000;
    color: white;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
  }
  .accordion-item .accordion-header.active .accordion-title {
    color: white;
  }
  .accordion-item .accordion-header.active .globe-icon path {
    fill: white;
  }
  .accordion-item .accordion-header.active .accordion-icon {
    transform: rotate(180deg);
  }
  .accordion-item .accordion-header.active .accordion-icon path {
    fill: white;
  }
  .accordion-item .accordion-header.active .header-range-container .range-value {
    color: white;
    font-family: "Satoshi Medium";
  }
  .accordion-item .accordion-header.active .drag-handle path {
    fill: white;
  }
  .accordion-item .accordion-header .drag-handle {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 16px;
    height: 17px;
    cursor: grab;
    z-index: 10;
    opacity: 0.6;
    transition: opacity 0.2s ease;
  }
  .accordion-item .accordion-header .drag-handle:hover {
    opacity: 1;
  }
  .accordion-item .accordion-header .drag-handle:active {
    cursor: grabbing;
  }
  .accordion-item .accordion-header .drag-handle path {
    fill: #0F172A;
    transition: fill 0.3s ease;
  }
  .accordion-item .accordion-header .header-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .accordion-item .accordion-header .title-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .accordion-item .accordion-header .globe-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }
  .accordion-item .accordion-header .globe-icon path {
    fill: #333;
  }
  .accordion-item .accordion-header .accordion-title {
    font-family: "Satoshi Bold";
    font-size: 1rem;
    color: var(--text-secondary);
  }
  .accordion-item .accordion-header .header-range-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    max-width: 220px;
  }
  .accordion-item .accordion-header .header-range-container .range-slider {
    flex: 1;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: #ddd;
    outline: none;
    border-radius: 2px;
    cursor: pointer;
  }
  .accordion-item .accordion-header .header-range-container .range-slider:disabled {
    background: #f5f5f5;
    cursor: not-allowed;
  }
  .accordion-item .accordion-header .header-range-container .range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    background: #4CAF50;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
  }
  .accordion-item .accordion-header .header-range-container .range-slider::-webkit-slider-thumb:active {
    transform: scale(1.2);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  }
  .accordion-item .accordion-header .header-range-container .range-slider:disabled::-webkit-slider-thumb {
    background: #e0e0e0;
    cursor: not-allowed;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
  .accordion-item .accordion-header .header-range-container .range-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: #4CAF50;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    border: none;
    transition: all 0.2s ease;
  }
  .accordion-item .accordion-header .header-range-container .range-slider::-moz-range-thumb:active {
    transform: scale(1.2);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  }
  .accordion-item .accordion-header .header-range-container .range-slider:disabled::-moz-range-thumb {
    background: #e0e0e0;
    cursor: not-allowed;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
  .accordion-item .accordion-header .header-range-container .range-value {
    min-width: 40px;
    text-align: right;
    color: #666;
    font-size: 0.85rem;
    font-weight: 500;
  }
  .accordion-item .accordion-header .header-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .accordion-item .accordion-header .header-controls .toggle-switch {
    margin: 0;
    margin-right: -0.5rem;
  }
  .accordion-item .accordion-header .accordion-icon {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    z-index: 10;
  }
  .accordion-item .accordion-header .accordion-icon path {
    fill: #0F172A;
  }
  .accordion-item .accordion-content {
    height: 0;
    overflow: hidden;
    background: white;
  }
  .accordion-item .accordion-content .layer-controls {
    padding: 0;
  }
  .control-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
  }
  .control-row .control-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
  }
  .toggle-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
  }
  .toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  .toggle-switch input:checked + .toggle-slider {
    background-color: #4CAF50;
  }
  .toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(24px);
  }
  .toggle-switch input:focus + .toggle-slider {
    box-shadow: 0 0 1px #4CAF50;
  }
  .toggle-switch .toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 24px;
  }
  .toggle-switch .toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }
  .range-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    max-width: 200px;
  }
  .range-container .range-slider {
    flex: 1;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: #ddd;
    outline: none;
    border-radius: 3px;
    transition: background 0.3s;
  }
  .range-container .range-slider:hover {
    background: #ccc;
  }
  .range-container .range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: #4CAF50;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
  }
  .range-container .range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  }
  .range-container .range-slider::-webkit-slider-thumb:active {
    transform: scale(1.2);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
  }
  .range-container .range-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #4CAF50;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border: none;
    transition: all 0.3s ease;
  }
  .range-container .range-slider::-moz-range-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  }
  .range-container .range-slider::-moz-range-thumb:active {
    transform: scale(1.2);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
  }
  .range-container .range-value {
    min-width: 45px;
    text-align: right;
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
  }
  .layer-options {
    border-top: 1px solid var(--border-light);
    padding-top: 1rem;
    margin-top: 0.5rem;
  }
  .layer-options .checkbox-option {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-radius: 4px;
    padding-left: 0.5rem;
    margin-bottom: 0.25rem;
  }
  .layer-options .checkbox-option:hover {
    background-color: #f5f5f5;
  }
  .layer-options .checkbox-option input[type=checkbox] {
    margin-right: 0.75rem;
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #4CAF50;
  }
  .layer-options .checkbox-option span {
    color: var(--text-muted);
    font-size: 0.9rem;
    user-select: none;
  }
  .sub-layers {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 0;
  }
  .sub-layers .sub-layer-item {
    background: var(--bg-primary);
    border-radius: 0;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-bottom: none;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
  }
  .sub-layers .sub-layer-item:last-child {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    border-bottom: 1px solid var(--border-color);
  }
  .sub-layers .sub-layer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
  }
  .sub-layers .sub-layer-header .sub-layer-name {
    font-size: 0.9rem;
    color: #444;
    font-family: "Satoshi Medium", sans-serif;
  }
  .sub-layers .sub-layer-range {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .sub-layers .sub-layer-range .sub-range {
    flex: 1;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: #ddd;
    outline: none;
    border-radius: 2px;
    transition: background 0.3s;
  }
  .sub-layers .sub-layer-range .sub-range:hover {
    background: #ccc;
  }
  .sub-layers .sub-layer-range .sub-range:disabled {
    background: #f5f5f5;
    cursor: not-allowed;
  }
  .sub-layers .sub-layer-range .sub-range:disabled:hover {
    background: #f5f5f5;
  }
  .sub-layers .sub-layer-range .sub-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    background: #6BC68F;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
  }
  .sub-layers .sub-layer-range .sub-range::-webkit-slider-thumb:active {
    transform: scale(1.2);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  }
  .sub-layers .sub-layer-range .sub-range:disabled::-webkit-slider-thumb {
    background: #e0e0e0;
    cursor: not-allowed;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
  .sub-layers .sub-layer-range .sub-range::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: #6BC68F;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    border: none;
    transition: all 0.2s ease;
  }
  .sub-layers .sub-layer-range .sub-range::-moz-range-thumb:active {
    transform: scale(1.2);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  }
  .sub-layers .sub-layer-range .sub-range:disabled::-moz-range-thumb {
    background: #e0e0e0;
    cursor: not-allowed;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
  .sub-layers .sub-layer-range .range-value {
    min-width: 40px;
    text-align: right;
    font-family: "Satoshi Medium";
    color: #666;
    font-size: 0.85rem;
  }
  .toggle-switch.small {
    width: 36px;
    height: 20px;
    position: absolute;
    left: 90%;
  }
  .toggle-switch.small input:checked + .toggle-slider {
    background-color: #6BC68F;
  }
  .toggle-switch.small .toggle-slider:before {
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
  }
  .toggle-switch.small input:checked + .toggle-slider:before {
    transform: translateX(16px);
  }
  @keyframes dropZonePulse {
    0% {
      box-shadow: 0 2px 4px rgba(76, 175, 80, 0.3);
    }
    100% {
      box-shadow: 0 4px 8px rgba(76, 175, 80, 0.5);
    }
  }
  @keyframes dropZoneSpin {
    0% {
      transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }
  .city-search-container {
    display: flex;
  }
  .dropContainerWrapper {
    background-color: var(--bg-primary);
    z-index: 10000;
    position: absolute;
    top: 4rem;
    left: 6rem;
    min-width: 14.5rem;
    border: none;
    display: none;
    font-size: 0.9rem;
  }
  .dropContainerWrapper .radio-options {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    overflow: hidden;
  }
  .dropContainerWrapper .radio-options label {
    display: flex;
    align-items: center;
    height: 2.2rem;
    width: 100%;
    gap: unset;
    cursor: pointer;
    margin: 0;
    padding: 0 1rem;
    transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, scale 0.2s ease-in-out;
    border-top: 1.2px solid transparent;
    border-bottom: 1.2px solid transparent;
  }
  .dropContainerWrapper .radio-options label:hover {
    background-color: var(--bg-secondary);
    border-top: 1.2px solid var(--border-color);
    border-bottom: 1.2px solid var(--border-color);
    scale: 1.01;
  }
  .dropContainerWrapper .radio-options label:hover .radio-label {
    color: #008000;
    font-family: "Satoshi Bold";
  }
  .dropContainerWrapper .radio-options label input[type=radio]:checked {
    accent-color: #008000;
    border-top: 1.2px solid var(--border-color);
    border-bottom: 1.2px solid var(--border-color);
  }
  .dropContainerWrapper .radio-options label input[type=radio]:checked .radio-label {
    color: #008000;
    font-family: "Satoshi Bold" !important;
  }
  .dropContainerWrapper .radio-options label .radio-option {
    display: flex;
  }
  .select-download-tool-wrapper {
    background-color: var(--bg-secondary);
    border: 1.2px solid var(--border-light);
    border-radius: 4px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
    position: relative;
  }
  .select-download-tool-wrapper .iconDrop {
    position: absolute;
    right: 1.5rem;
    top: 3.2rem;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }
  .select-download-tool-wrapper .searchBtnDownloadTool {
    background-color: #008000;
    color: #fff;
    border: none;
    width: fit-content;
    padding: 0rem 1rem;
    height: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
    font-family: "Satoshi Bold";
    transition: all 0.3s ease-in-out;
  }
  .select-download-tool-wrapper .searchBtnDownloadTool:hover {
    background-color: #002c00;
    border-radius: 10rem;
  }
  .select-download-tool-wrapper .headingSmall {
    font-family: "Satoshi Bold";
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0;
    cursor: default;
  }
  .select-download-tool-wrapper .form-select {
    background-color: var(--bg-primary);
    border: none;
    border-radius: 4px;
    padding: 0.5rem;
    width: 100% !important;
    font-size: 0.8rem;
  }
  /* Help Modal Styles */
  .helpModalBackdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    background: rgba(255, 255, 255, 0.15);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }
  .helpModalBackdrop.show {
    display: flex;
    opacity: 1;
  }
  .helpModalBackdrop::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 10px;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }
  .helpCenterModal {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: modalSlideIn 0.3s ease-out;
    z-index: 10001;
    height: fit-content;
    width: 30rem;
    display: flex;
    align-items: center;
    border-radius: 10px;
    justify-content: center;
    overflow: hidden !important;
    gap: 1rem;
    padding: 1rem 0.5rem;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .helpCenterModal:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    border: 1px solid rgba(255, 255, 255, 0.5);
  }
  .helpCenterModal .bottomBar {
    display: flex;
    gap: 0.5rem;
    width: 100%;
    justify-content: flex-end;
    margin-top: 1rem;
    align-items: center;
    padding-top: 0.5rem;
    position: relative;
    /* border-top: 1px solid rgba(0, 0, 0, 0.1); */
  }
  .helpCenterModal .bottomBar a {
    display: flex;
    height: 2rem;
    width: fit-content;
    padding: 0 1rem;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: "Satoshi Bold";
    font-size: 0.75rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  .helpCenterModal .bottomBar a:hover {
    border-radius: 10rem;
    background-color: #006600;
  }
  .helpCenterModal .bottomBar .help-btn {
    display: flex;
    height: 2rem;
    width: fit-content;
    padding: 0 1rem;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: "Satoshi Bold";
    font-size: 0.75rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  .helpCenterModal .bottomBar .help-btn--primary {
    background-color: #008000;
    color: #fff;
  }
  .helpCenterModal .bottomBar .help-btn--primary:hover {
    border-radius: 10rem;
    background-color: #006600;
  }
  .helpCenterModal .bottomBar .help-btn--secondary {
    color: #008000;
    background-color: var(--bg-secondary);
    border: 2px solid #008000;
  }
  .helpCenterModal .bottomBar .help-btn--secondary:hover {
    border-radius: 10rem;
    background-color: #008000;
    color: #fff;
  }
  .helpCenterModal .closeIconWrapper {
    display: flex;
    position: absolute;
    height: 1.5rem;
    width: 1.5rem;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.8);
    top: 0.5rem;
    right: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.3);
    align-items: center;
    justify-content: center;
  }
  .helpCenterModal .closeIconWrapper:hover {
    background: rgb(255, 0, 0);
    transform: scale(1.15) rotate(90deg);
    box-shadow: 0 6px 16px rgba(255, 0, 0, 0.5), 0 0 0 3px rgba(255, 0, 0, 0.2);
  }
  .helpCenterModal .closeIconWrapper:active {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 3px 8px rgba(255, 0, 0, 0.4);
    transition: all 0.1s ease-out;
  }
  .helpCenterModal .headerCenterModal {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    font-family: "Satoshi Bold";
    color: var(--text-secondary);
    margin: 0;
    font-size: 1.6rem;
    padding: 0;
    transition: color 0.3s ease;
  }
  .helpCenterModal .headerCenterModal:hover {
    color: #008000;
  }
  .helpCenterModal .headerCenterModal .headerIconWrapper {
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
  }
  .helpCenterModal .headerCenterModal .headerIconWrapper:hover {
    transform: scale(1.2) rotate(15deg);
    filter: drop-shadow(0 4px 8px rgba(0, 128, 0, 0.3));
  }
  .helpCenterModal .headerCenterModal .headerIconWrapper:active {
    transform: scale(1.15) rotate(10deg);
    transition: all 0.1s ease-out;
  }
  .helpCenterModal .helpDesc {
    font-family: "Satoshi Medium";
    color: var(--text-secondary);
    font-size: 0.9rem;
    width: 80%;
    text-align: center;
    margin-bottom: 3rem;
    padding: 0;
  }
  .helpCenterModal .helpDesc a {
    font-family: "Satoshi Bold";
    color: #008000;
    text-decoration: underline !important;
    transition: all 0.3s ease;
  }
  .helpCenterModal .helpDesc a:hover {
    color: #006600;
    text-decoration-color: #006600 !important;
    transform: scale(1.05);
    display: inline-block;
  }
  @keyframes modalSlideIn {
    from {
      transform: translateY(-20px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (prefers-reduced-motion: reduce) {
  .helpCenterModal {
    animation: none;
    transition: opacity 0.2s ease;
  }
  .helpCenterModal:hover {
    transform: none;
  }
  .helpCenterModal .closeIconWrapper {
    transition: background-color 0.2s ease;
  }
  .helpCenterModal .closeIconWrapper:hover, .helpCenterModal .closeIconWrapper:active {
    transform: none;
  }
  .helpCenterModal .headerCenterModal .headerIconWrapper {
    transition: filter 0.2s ease;
  }
  .helpCenterModal .headerCenterModal .headerIconWrapper:hover, .helpCenterModal .headerCenterModal .headerIconWrapper:active {
    transform: none;
  }
}
.shaun-wrapper.dark-mode {
  --bg-primary: #1a1a2e;
  --bg-secondary: #1e2a45;
  --bg-elevated: #253352;
  --bg-accent: #253352;
  --text-primary: #e0e0e0;
  --text-secondary: #b0b0b0;
  --text-muted: #8a8a9a;
  --border-color: #2a3a5c;
  --border-light: #2a3a5c;
  --input-border: #3a4a6c;
  --bg-input: #16213e;
  --shadow-color: rgba(0, 0, 0, 0.4);
}
.shaun-wrapper.dark-mode .search-input-container,
.shaun-wrapper.dark-mode .form-control,
.shaun-wrapper.dark-mode .sidebarBtn,
.shaun-wrapper.dark-mode .sidebarLabel,
.shaun-wrapper.dark-mode .sidebarDropdown,
.shaun-wrapper.dark-mode .dropdownBtn,
.shaun-wrapper.dark-mode .bottomControlCenter,
.shaun-wrapper.dark-mode .topHeaderWrapper,
.shaun-wrapper.dark-mode .searchTypeDropdown,
.shaun-wrapper.dark-mode .resultsDrawer,
.shaun-wrapper.dark-mode .baseMapCard,
.shaun-wrapper.dark-mode .propertySearchSwitchers,
.shaun-wrapper.dark-mode .loaderContainer,
.shaun-wrapper.dark-mode .modal-container,
.shaun-wrapper.dark-mode .dropIconWrapper {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.shaun-wrapper.dark-mode ::-webkit-scrollbar {
  width: 6px;
}
.shaun-wrapper.dark-mode ::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}
.shaun-wrapper.dark-mode ::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 3px;
}
.shaun-wrapper.dark-mode .left-side-navigation button {
  background: var(--bg-secondary);
  box-shadow: 4px 0px 3px 0px rgba(0, 0, 0, 0.3);
}
.shaun-wrapper.dark-mode .left-side-navigation button svg path, .shaun-wrapper.dark-mode .left-side-navigation button svg circle {
  fill: #fff;
}
.shaun-wrapper.dark-mode .left-side-navigation button:hover {
  background-color: var(--bg-elevated);
}
.shaun-wrapper.dark-mode .left-side-navigation button.active {
  background: #008000;
}
.shaun-wrapper.dark-mode .left-side-navigation button.active svg path, .shaun-wrapper.dark-mode .left-side-navigation button.active svg circle {
  fill: #fff;
}
.shaun-wrapper.dark-mode .left-side-navigation button#resetMap {
  background: #008000;
  color: #fff;
}
.shaun-wrapper.dark-mode .left-side-navigation button#resetMap svg, .shaun-wrapper.dark-mode .left-side-navigation button#resetMap svg path {
  fill: #fff;
}
.shaun-wrapper.dark-mode .left-side-navigation button#resetMap:hover {
  background-color: #002c00;
}
.shaun-wrapper.dark-mode .left-side-navigation button .measureArrow, .shaun-wrapper.dark-mode .left-side-navigation button .drawArrow {
  background-color: var(--bg-secondary);
}
.shaun-wrapper.dark-mode .nav-items-container .expand-sidenav {
  border: 1.5px solid var(--border-color, #2a3a5c);
}
.shaun-wrapper.dark-mode .nav-items-container .expand-sidenav .nav-icon-path {
  fill: rgb(255, 255, 255) !important;
  fill-opacity: 1;
}
.shaun-wrapper.dark-mode .nav-items-container .expand-sidenav.active {
  background-color: #fff;
  border-color: #fff;
}
.shaun-wrapper.dark-mode .nav-items-container .expand-sidenav.active .nav-icon-path {
  fill: #008000 !important;
  fill-opacity: 1;
}
.shaun-wrapper.dark-mode .map-value {
  background-color: #0f172a !important;
  border-color: rgba(255, 255, 255, 0.06) !important;
}
.shaun-wrapper.dark-mode .map-value .map-details p, .shaun-wrapper.dark-mode .map-value .map-details span,
.shaun-wrapper.dark-mode .map-value .map-index p,
.shaun-wrapper.dark-mode .map-value .map-index span,
.shaun-wrapper.dark-mode .map-value .format-scale p,
.shaun-wrapper.dark-mode .map-value .format-scale span {
  color: #fff !important;
}
.shaun-wrapper.dark-mode .expand-collapsed a {
  background: #fff !important;
}
.shaun-wrapper.dark-mode .expand-collapsed a .iconExpand path {
  fill: #008000;
}
.shaun-wrapper.dark-mode .expand-collapsed a:hover {
  background: rgba(255, 255, 255, 0.85) !important;
}
.shaun-wrapper.dark-mode .search-input-container {
  background-color: var(--bg-primary);
}
.shaun-wrapper.dark-mode .form-control,
.shaun-wrapper.dark-mode .form-select {
  background-color: var(--bg-secondary) !important;
  color: var(--text-primary) !important;
  border-color: var(--border-color) !important;
}
.shaun-wrapper.dark-mode .sidenav-container select.form-control,
.shaun-wrapper.dark-mode .sidenav-container select.form-select {
  background-color: #344b7e !important;
}
.shaun-wrapper.dark-mode .sidenav-container .form-group .dropIconWrapper {
  background: #344b7e !important;
}
.shaun-wrapper.dark-mode .sidenav-container .form-group .dropIconWrapper .dropIcon path {
  fill: var(--text-primary);
}
.shaun-wrapper.dark-mode .form-group label {
  color: var(--text-secondary) !important;
}
.shaun-wrapper.dark-mode .searchOptionsWrapper .select-with-icon {
  background-color: var(--bg-primary);
  border-radius: 7px;
}
.shaun-wrapper.dark-mode .searchOptionsWrapper .select-with-icon select {
  background-color: #344b7e !important;
}
.shaun-wrapper.dark-mode .topWrapperOptions {
  background: #fff !important;
  color: #1a1a2e !important;
}
.shaun-wrapper.dark-mode .autocomplete-wrapper[data-tooltip]:hover::after,
.shaun-wrapper.dark-mode form[data-tooltip]:hover::after {
  background: rgba(255, 255, 255, 0.92);
  color: #1a1a2e;
}
.shaun-wrapper.dark-mode .autocomplete-wrapper[data-tooltip]:hover::before,
.shaun-wrapper.dark-mode form[data-tooltip]:hover::before {
  border-top-color: rgba(255, 255, 255, 0.92);
}
.shaun-wrapper.dark-mode .search-input-tooltip .tooltip-arrow {
  border-bottom-color: rgba(255, 255, 255, 0.92);
}
.shaun-wrapper.dark-mode .search-input-tooltip .tooltip-text {
  background: rgba(255, 255, 255, 0.92);
  color: #1a1a2e;
}
.shaun-wrapper.dark-mode .uk-subnav-pill .uk-active a {
  background-color: #fff !important;
  color: #008000 !important;
}
.shaun-wrapper.dark-mode .uk-open .uk-accordion-title {
  background: #fff !important;
  color: #1a1a2e !important;
}
.shaun-wrapper.dark-mode .loaderContainer {
  background-color: #1a1a2e;
}
.shaun-wrapper.dark-mode .bottomControlCenter {
  background-color: rgba(26, 26, 46, 0.95);
}
.shaun-wrapper.dark-mode .topHeaderWrapper {
  background-color: rgba(26, 26, 46, 0.9);
}
.shaun-wrapper.dark-mode .topCartWrapper #catalogue-menu-top.cart {
  background: var(--bg-elevated, #2a2a4a);
}
.shaun-wrapper.dark-mode .topCartWrapper #catalogue-menu-top.cart .cartIcon path {
  fill: #4CAF50;
}
.shaun-wrapper.dark-mode .user-container .user-profile {
  background: #fff;
}
.shaun-wrapper.dark-mode .user-container .loginIcon path {
  fill: #fff;
}
.shaun-wrapper.dark-mode .user-container .username {
  color: #fff;
  opacity: 0.8;
}
.shaun-wrapper.dark-mode .userProfileBtn {
  background-color: var(--bg-elevated);
}
.shaun-wrapper.dark-mode .propertySearchSwitchers {
  background-color: var(--bg-secondary) !important;
}
.shaun-wrapper.dark-mode .propertySearchSwitchers li a {
  color: var(--text-primary) !important;
  background-color: var(--bg-primary) !important;
  border-color: var(--border-color);
}
.shaun-wrapper.dark-mode .propertySearchSwitchers li a .searchIcons path {
  fill: rgba(255, 255, 255, 0.5);
}
.shaun-wrapper.dark-mode .propertySearchSwitchers li.uk-active a {
  background-color: #fff !important;
  color: #008000 !important;
  border-color: #fff !important;
}
.shaun-wrapper.dark-mode .propertySearchSwitchers li.uk-active a span .searchIcons path {
  fill: #008000 !important;
}
.shaun-wrapper.dark-mode .modal-container {
  background: var(--bg-primary);
}
.shaun-wrapper.dark-mode .modal-container .top-wrapper {
  background-color: var(--bg-elevated, #253352);
}
.shaun-wrapper.dark-mode .modal-container .content-wrapper {
  background: var(--bg-primary);
}
.shaun-wrapper.dark-mode .modal-container .content-wrapper::-webkit-scrollbar {
  width: 4px;
}
.shaun-wrapper.dark-mode .modal-container .content-wrapper::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 2px;
}
.shaun-wrapper.dark-mode .modal-container .property-detail {
  border-bottom-color: var(--border-color);
}
.shaun-wrapper.dark-mode .modal-container .property-detail .detail {
  color: var(--text-muted, #8a8a9a);
}
.shaun-wrapper.dark-mode .modal-container .property-detail .value {
  color: var(--text-primary);
  border-left-color: var(--border-color);
}
.shaun-wrapper.dark-mode .modal-container .prop-preview__actions {
  background-color: var(--bg-elevated, #253352) !important;
  border-radius: 0 0 8px 8px;
}
.shaun-wrapper.dark-mode .modal-container .prop-preview__btn--cart {
  border-color: rgba(74, 222, 128, 0.6);
  background: rgba(74, 222, 128, 0.12);
  color: #86efac;
}
.shaun-wrapper.dark-mode .modal-container .prop-preview__btn--cart svg {
  fill: #86efac;
}
.shaun-wrapper.dark-mode .modal-container .prop-preview__btn--cart:hover {
  border-color: #86efac;
  background: rgba(74, 222, 128, 0.2);
  color: #bbf7d0;
}
.shaun-wrapper.dark-mode .popup-content {
  color: var(--text-primary) !important;
}
.shaun-wrapper.dark-mode .accordion-header:not(.active) {
  background-color: var(--bg-primary) !important;
}
.shaun-wrapper.dark-mode .accordion-header:not(.active) .accordion-title {
  color: #fff;
}
.shaun-wrapper.dark-mode .accordion-header:not(.active) .globe-icon path,
.shaun-wrapper.dark-mode .accordion-header:not(.active) .drag-handle path,
.shaun-wrapper.dark-mode .accordion-header:not(.active) .accordion-icon path {
  fill: #fff;
}
.shaun-wrapper.dark-mode .accordion-header:not(.active) .header-range-container .range-value {
  color: #fff;
}
.shaun-wrapper.dark-mode .accordion-header.active {
  background: #fff !important;
  color: #1a1a2e !important;
}
.shaun-wrapper.dark-mode .accordion-header.active .accordion-title {
  color: #1a1a2e !important;
}
.shaun-wrapper.dark-mode .accordion-header.active .globe-icon path,
.shaun-wrapper.dark-mode .accordion-header.active .drag-handle path,
.shaun-wrapper.dark-mode .accordion-header.active .accordion-icon path {
  fill: #1a1a2e !important;
}
.shaun-wrapper.dark-mode .accordion-header.active .header-range-container .range-value {
  color: #1a1a2e;
}
.shaun-wrapper.dark-mode .form-control {
  color: var(--text-primary) !important;
  background-color: var(--bg-secondary) !important;
  border-color: var(--border-color) !important;
}
.shaun-wrapper.dark-mode #map_search_options {
  color: var(--text-primary) !important;
  border-color: var(--border-color) !important;
}
.shaun-wrapper.dark-mode #map_search_options option {
  color: var(--text-primary);
  background-color: #344b7e;
}
.shaun-wrapper.dark-mode #map_search_value,
.shaun-wrapper.dark-mode #map_search_valuemobile {
  color: var(--text-primary) !important;
  background-color: var(--bg-secondary) !important;
  border-color: var(--border-color) !important;
}
.shaun-wrapper.dark-mode #map_search_value::placeholder,
.shaun-wrapper.dark-mode #map_search_valuemobile::placeholder {
  color: white !important;
}
.shaun-wrapper.dark-mode #map_search_value:focus,
.shaun-wrapper.dark-mode #map_search_valuemobile:focus {
  border-color: #00a000 !important;
  box-shadow: 0 0 0 3px rgba(0, 160, 0, 0.3);
}
.shaun-wrapper.dark-mode .form-group label {
  color: var(--text-primary);
}
.shaun-wrapper.dark-mode .dropIconWrapper .dropIcon path {
  fill: var(--text-secondary);
}
.shaun-wrapper.dark-mode .propertyText {
  color: #fff;
}
.shaun-wrapper.dark-mode .layerName {
  color: var(--text-primary);
}
.shaun-wrapper.dark-mode .intensityValue {
  color: var(--text-secondary);
}
.shaun-wrapper.dark-mode .sub-layer-name {
  color: var(--text-primary);
}
.shaun-wrapper.dark-mode .topBarBtns button, .shaun-wrapper.dark-mode .topBarBtns a:not(#startGuideBtn) {
  background: var(--bg-secondary);
}
.shaun-wrapper.dark-mode .topBarBtns button svg path, .shaun-wrapper.dark-mode .topBarBtns button svg rect, .shaun-wrapper.dark-mode .topBarBtns button svg circle, .shaun-wrapper.dark-mode .topBarBtns a:not(#startGuideBtn) svg path, .shaun-wrapper.dark-mode .topBarBtns a:not(#startGuideBtn) svg rect, .shaun-wrapper.dark-mode .topBarBtns a:not(#startGuideBtn) svg circle {
  fill: #fff;
}
.shaun-wrapper.dark-mode .topBarBtns button:hover, .shaun-wrapper.dark-mode .topBarBtns a:not(#startGuideBtn):hover {
  background: var(--bg-elevated);
}
.shaun-wrapper.dark-mode .topBarBtns #startGuideBtn {
  background: #008000;
}
.shaun-wrapper.dark-mode .topBarBtns #startGuideBtn:hover {
  background: #002c00;
}
.shaun-wrapper.dark-mode .helpModalBackdrop {
  background: rgba(0, 0, 0, 0.6);
}
.shaun-wrapper.dark-mode .helpCenterModal,
.shaun-wrapper.dark-mode .printCenterModal {
  background: linear-gradient(145deg, rgba(30, 42, 69, 0.95), rgba(30, 42, 69, 0.9));
  border-color: var(--border-color);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4), 0 8px 16px rgba(0, 0, 0, 0.3);
}
.shaun-wrapper.dark-mode .helpModalBackdrop .headerCenterModal,
.shaun-wrapper.dark-mode .printModalBackdrop .headerCenterModal {
  color: #e0e0e0;
}
.shaun-wrapper.dark-mode .helpModalBackdrop .helpSubheading {
  color: #8a8a9a;
}
.shaun-wrapper.dark-mode .helpContactItem {
  background: rgba(107, 198, 143, 0.05);
  border-color: var(--border-color);
}
.shaun-wrapper.dark-mode .helpContactItem:hover {
  background: rgba(107, 198, 143, 0.1);
  border-color: rgba(107, 198, 143, 0.3);
}
.shaun-wrapper.dark-mode .contactDetails strong {
  color: #e0e0e0;
}
.shaun-wrapper.dark-mode .contactDetails address {
  color: #8a8a9a;
}
.shaun-wrapper.dark-mode .phoneNumber {
  color: #b0b0b0;
  background: rgba(107, 198, 143, 0.1);
}
.shaun-wrapper.dark-mode .phoneNumber:hover {
  background: rgba(107, 198, 143, 0.2);
  color: #6BC68F;
}
.shaun-wrapper.dark-mode .help-btn--secondary {
  background: var(--bg-elevated);
  border-color: var(--border-color);
  color: #e0e0e0;
}
.shaun-wrapper.dark-mode .help-btn--secondary:hover {
  background: var(--bg-accent);
  border-color: var(--input-border);
}
.shaun-wrapper.dark-mode #helpModal .modal-container .help-department {
  color: #e0e0e0;
}
.shaun-wrapper.dark-mode #helpModal .modal-container .help-section-title {
  color: #6BC68F;
}
.shaun-wrapper.dark-mode #helpModal .modal-container .help-address p {
  color: #b0b0b0;
}
.shaun-wrapper.dark-mode #helpModal .modal-container .contact-label {
  color: #e0e0e0;
}
.shaun-wrapper.dark-mode #helpModal .modal-container .contact-value {
  color: #b0b0b0;
}
.shaun-wrapper.dark-mode #helpModal .modal-container .help-secondary-btn {
  background-color: var(--bg-elevated);
  border-color: var(--border-color);
  color: #e0e0e0;
}
.shaun-wrapper.dark-mode #helpModal .modal-container .help-secondary-btn:hover {
  background-color: var(--bg-accent);
  border-color: var(--input-border);
}
.shaun-wrapper.dark-mode .printLabel {
  color: #b0b0b0;
}
.shaun-wrapper.dark-mode .propertyNameDisplay {
  background: rgba(107, 198, 143, 0.05);
  border-color: var(--border-color);
  color: #e0e0e0;
}
.shaun-wrapper.dark-mode .printOption {
  color: #b0b0b0;
}
.shaun-wrapper.dark-mode .printOption:hover {
  color: #e0e0e0;
}
.shaun-wrapper.dark-mode .radioCustom {
  border-color: var(--input-border);
}
.shaun-wrapper.dark-mode .printSelect {
  background: var(--bg-input);
  border-color: var(--border-color);
  color: #e0e0e0;
}
.shaun-wrapper.dark-mode .printSelect:focus {
  border-color: #6BC68F;
  box-shadow: 0 0 0 3px rgba(107, 198, 143, 0.15);
}
.shaun-wrapper.dark-mode .copiesBtn {
  background: var(--bg-input);
  border-color: var(--border-color);
  color: #b0b0b0;
}
.shaun-wrapper.dark-mode .copiesBtn:hover {
  background: var(--bg-elevated);
  border-color: #6BC68F;
  color: #6BC68F;
}
.shaun-wrapper.dark-mode .copiesInput {
  background: var(--bg-input);
  border-color: var(--border-color);
  color: #e0e0e0;
}
.shaun-wrapper.dark-mode .copiesInput:focus {
  border-color: #6BC68F;
  box-shadow: 0 0 0 3px rgba(107, 198, 143, 0.15);
}
.shaun-wrapper.dark-mode .printModalBackdrop .bottomBar {
  border-top-color: var(--border-color);
}
.shaun-wrapper.dark-mode .printActionBtn.cancel {
  color: #b0b0b0;
  border-color: var(--border-color);
}
.shaun-wrapper.dark-mode .printActionBtn.cancel:hover {
  background: var(--bg-elevated);
  color: #e0e0e0;
}
.shaun-wrapper.dark-mode .uk-dropdown {
  background: var(--bg-secondary) !important;
  color: var(--text-primary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.shaun-wrapper.dark-mode .dropContainer a,
.shaun-wrapper.dark-mode .uk-dropdown-nav a {
  color: var(--text-primary) !important;
}
.shaun-wrapper.dark-mode .dropContainer a:hover,
.shaun-wrapper.dark-mode .uk-dropdown-nav a:hover {
  color: #6BC68F !important;
  background-color: var(--bg-elevated);
}
.shaun-wrapper.dark-mode .logout-container {
  background-color: var(--bg-secondary);
  border-top-color: var(--border-color);
}
.shaun-wrapper.dark-mode .logout-btn {
  color: #dc3545 !important;
}
.shaun-wrapper.dark-mode .logout-btn:hover {
  color: #ff4d5e !important;
}
.shaun-wrapper.dark-mode .dropMapSearch {
  background-color: var(--bg-secondary) !important;
}
.shaun-wrapper.dark-mode .base-map-trigger {
  background: linear-gradient(213deg, #008000 22.04%, #27C365 65.12%, #6BC68F 97.34%);
}

body {
  --bg-primary: #fff;
  --bg-secondary: #f7f7f7;
  --bg-elevated: #f0f0f0;
  --bg-accent: #cce6cc;
  --bg-input: #f7f7f7;
  --text-primary: #1a1a1a;
  --text-secondary: #333;
  --text-muted: #555;
  --border-color: #dedede;
  --border-light: #eee;
  --input-border: #dedede;
  --shadow-color: rgba(77, 77, 77, 0.134);
}

body.dark-mode {
  --bg-primary: #1a1a2e;
  --bg-secondary: #1e2a45;
  --bg-elevated: #253352;
  --bg-accent: #253352;
  --bg-input: #16213e;
  --text-primary: #e0e0e0;
  --text-secondary: #b0b0b0;
  --text-muted: #8a8a9a;
  --border-color: #2a3a5c;
  --border-light: #2a3a5c;
  --input-border: #3a4a6c;
  --shadow-color: rgba(0, 0, 0, 0.4);
}
body.dark-mode .select2-dropdown {
  background-color: var(--bg-secondary);
  border-color: var(--border-color);
}
body.dark-mode .select2-results__option {
  color: var(--text-primary);
}
body.dark-mode .select2-results__option--highlighted, body.dark-mode .select2-results__option:hover {
  background-color: var(--bg-elevated);
  color: var(--text-primary);
}
body.dark-mode .select2-results__option[aria-selected=true] {
  background-color: var(--bg-input);
  color: var(--text-primary);
}
body.dark-mode .select2-search__field {
  background-color: var(--bg-input);
  color: var(--text-primary);
  border-color: var(--input-border);
}
body.dark-mode .select2-container--default .select2-selection--single {
  background-color: var(--bg-input);
  border-color: var(--input-border);
}
body.dark-mode .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--text-primary);
}
body.dark-mode .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: var(--text-secondary) transparent transparent transparent;
}
body.dark-mode .select2-container--default .select2-selection--multiple {
  background-color: var(--bg-input);
  border-color: var(--input-border);
}
body.dark-mode .select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: var(--bg-elevated);
  color: var(--text-primary);
  border-color: var(--border-color);
}
body.dark-mode span.select2-selection__placeholder {
  color: var(--text-secondary);
}
body.dark-mode .select2-results__message {
  color: var(--text-primary);
}
body.dark-mode .dropContainerWrapper {
  background-color: var(--bg-secondary);
  border-color: var(--border-color);
}
body.dark-mode .dropContainerWrapper .radio-label {
  color: var(--text-primary);
}
body.dark-mode .dropContainerWrapper .radio-options label:hover {
  background-color: var(--bg-elevated);
  border-top-color: var(--border-color);
  border-bottom-color: var(--border-color);
}
body.dark-mode .uk-offcanvas-flip .uk-open > .uk-offcanvas-bar {
  background-color: var(--bg-secondary) !important;
  box-shadow: -4px 4px 11px 0px var(--shadow-color);
}
body.dark-mode .uk-offcanvas-bar {
  background-color: var(--bg-secondary) !important;
}
body.dark-mode .draw-tool .drawArrow {
  transform: none;
}
body.dark-mode .base-map-trigger {
  background: linear-gradient(213deg, #008000 22.04%, #27C365 65.12%, #6BC68F 97.34%);
}
body.dark-mode .uk-open .uk-accordion-title {
  background: #fff !important;
  color: #1a1a2e !important;
}
body.dark-mode .accordion-header.active {
  background: #fff !important;
  color: #1a1a2e !important;
}
body.dark-mode .accordion-header.active .accordion-title {
  color: #1a1a2e !important;
}
body.dark-mode .accordion-header.active .globe-icon path,
body.dark-mode .accordion-header.active .drag-handle path,
body.dark-mode .accordion-header.active .accordion-icon path {
  fill: #1a1a2e !important;
}
body.dark-mode .accordion-header.active .header-range-container .range-value {
  color: #1a1a2e;
}
body.dark-mode .expandable-bottom-container .bottom-wrapper {
  background-color: var(--bg-secondary);
  border-color: var(--border-color);
}
body.dark-mode .expandable-bottom-container .bottom-wrapper .top-container {
  background-color: var(--bg-elevated);
}
body.dark-mode .expandable-bottom-container .bottom-wrapper .enm-table-container {
  background-color: var(--bg-primary);
}
body.dark-mode .expandable-bottom-container .bottom-wrapper .table-search-wrapper {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}
body.dark-mode .expandable-bottom-container .bottom-wrapper .table-search-wrapper:focus-within {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.2);
}
body.dark-mode .expandable-bottom-container .bottom-wrapper .table-close-btn {
  background: rgba(255, 255, 255, 0.08);
}
body.dark-mode .expandable-bottom-container .bottom-wrapper .table-close-btn:hover {
  background: rgba(255, 255, 255, 0.18);
}
body.dark-mode .expandable-bottom-container .bottom-wrapper .heading, body.dark-mode .expandable-bottom-container .bottom-wrapper .heading .value {
  color: var(--text-primary);
}
body.dark-mode .profile-trigger-capsule {
  background-color: #253352;
  border-color: rgba(255, 255, 255, 0.15);
}
body.dark-mode .profile-trigger-capsule:hover {
  background-color: rgba(0, 128, 0, 0.25);
  border-color: #008000;
}
body.dark-mode .profile-name-label {
  color: #e0e0e0;
}
body.dark-mode .profile-online-dot {
  border-color: #1a1a2e;
}
body.dark-mode .profile-dropdown-panel {
  background-color: #1e2a45 !important;
  border-color: #2a3a5c !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 4px 12px rgba(0, 0, 0, 0.25) !important;
  height: auto !important;
  min-height: fit-content !important;
  max-height: none !important;
  overflow: visible !important;
}
body.dark-mode .profile-card-top {
  border-bottom-color: #2a3a5c;
  background: linear-gradient(135deg, rgba(0, 128, 0, 0.08) 0%, rgba(0, 100, 0, 0.03) 100%);
  border-radius: 14px 14px 0 0;
}
body.dark-mode .profile-card-top .card-details .card-fullname {
  color: #e0e0e0;
}
body.dark-mode .profile-card-top .card-details .card-email {
  color: #8a8a9a;
}
body.dark-mode .profile-card-top .card-avatar .card-dot {
  border-color: #1e2a45;
}
body.dark-mode .profile-menu-list li a {
  color: #b0b0b0;
}
body.dark-mode .profile-menu-list li a:hover {
  background-color: rgba(0, 128, 0, 0.12);
  color: #4ade80;
}
body.dark-mode .profile-menu-list li a:hover .menu-icon-box {
  background-color: rgba(0, 128, 0, 0.2);
}
body.dark-mode .profile-menu-list li a.logout-link {
  color: #f87171;
}
body.dark-mode .profile-menu-list li a.logout-link:hover {
  background-color: rgba(239, 68, 68, 0.1);
  color: #fca5a5;
}
body.dark-mode .profile-menu-list li a.logout-link:hover .menu-icon-box {
  background-color: rgba(239, 68, 68, 0.18);
}
body.dark-mode .profile-menu-list li a.logout-link .menu-icon-box {
  background-color: rgba(239, 68, 68, 0.1);
}
body.dark-mode .profile-menu-list li a.logout-link .menu-icon-box i {
  color: #f87171;
}
body.dark-mode .profile-menu-divider {
  background-color: #2a3a5c;
}

.profile-dropdown-wrapper {
  position: relative;
}

.profile-trigger-capsule {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 0.7rem 0 0.3rem;
  height: 2.5rem;
  border-radius: 100px;
  border: 1.2px solid rgba(0, 128, 0, 0.4);
  background-color: #ffffff;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.profile-trigger-capsule:hover {
  background-color: rgba(0, 128, 0, 0.1);
  border-color: #008000;
}

.profile-avatar-container {
  position: relative;
  flex-shrink: 0;
}
.profile-avatar-container .avatar-img {
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid #008000;
  transition: border-color 0.25s ease;
}
.profile-avatar-container .avatar-fallback {
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #008000 0%, #006400 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #008000;
  transition: border-color 0.25s ease;
}
.profile-avatar-container .avatar-fallback svg {
  width: 11px;
  height: 11px;
}
.profile-avatar-container .avatar-fallback svg path {
  fill: #ffffff;
}

.profile-online-dot {
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 7px;
  height: 7px;
  background-color: #22c55e;
  border: 1.5px solid #ffffff;
  border-radius: 50%;
  z-index: 1;
}

.profile-name-label {
  font-size: 0.78rem;
  color: #1a1a1a;
  font-family: "Satoshi Bold", sans-serif;
  white-space: nowrap;
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.profile-chevron-icon {
  font-size: 10px;
  color: #008000;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.profile-dropdown-wrapper.uk-open .profile-chevron-icon {
  transform: rotate(180deg);
}

.topHeaderWrapper {
  overflow: visible !important;
}

.profile-dropdown-panel {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  width: 240px !important;
  height: auto !important;
  min-height: fit-content !important;
  max-height: none !important;
  padding: 0 0 0.5rem 0 !important;
  border-radius: 14px !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14), 0 4px 12px rgba(0, 0, 0, 0.08) !important;
  overflow: visible !important;
  z-index: 9999 !important;
  background-color: #ffffff !important;
  opacity: 1 !important;
}

.profile-card-top {
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: linear-gradient(135deg, rgba(0, 128, 0, 0.06) 0%, rgba(0, 100, 0, 0.03) 100%);
  border-radius: 14px 14px 0 0;
}
.profile-card-top .card-avatar {
  position: relative;
  flex-shrink: 0;
}
.profile-card-top .card-avatar img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #008000;
}
.profile-card-top .card-avatar .card-avatar-fallback {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #008000 0%, #006400 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #008000;
}
.profile-card-top .card-avatar .card-avatar-fallback svg {
  width: 18px;
  height: 18px;
}
.profile-card-top .card-avatar .card-avatar-fallback svg path {
  fill: #ffffff;
}
.profile-card-top .card-avatar .card-dot {
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 10px;
  height: 10px;
  background-color: #22c55e;
  border: 2px solid #ffffff;
  border-radius: 50%;
}
.profile-card-top .card-details {
  overflow: hidden;
}
.profile-card-top .card-details .card-fullname {
  font-size: 0.85rem;
  font-family: "Satoshi Bold", sans-serif;
  color: #1a1a1a;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.profile-card-top .card-details .card-email {
  font-size: 0.7rem;
  font-family: "Satoshi-Regular", sans-serif;
  color: #6b7280;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.profile-menu-list {
  list-style: none;
  padding: 0.4rem 0;
  margin: 0;
}
.profile-menu-list li a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem 1rem;
  color: #374151;
  text-decoration: none;
  font-size: 0.8rem;
  font-family: "Satoshi-Medium", sans-serif;
  transition: all 0.2s ease;
}
.profile-menu-list li a:hover {
  background-color: rgba(0, 128, 0, 0.08);
  color: #008000;
  text-decoration: none;
}
.profile-menu-list li a:hover .menu-icon-box {
  background-color: rgba(0, 128, 0, 0.12);
  transform: scale(1.05);
}
.profile-menu-list li a .menu-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 8px;
  background-color: rgba(0, 128, 0, 0.1);
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.profile-menu-list li a .menu-icon-box i {
  font-size: 12px;
  color: #008000;
}
.profile-menu-list li a.logout-link {
  color: #dc2626;
}
.profile-menu-list li a.logout-link:hover {
  background-color: rgba(220, 38, 38, 0.06);
  color: #b91c1c;
}
.profile-menu-list li a.logout-link:hover .menu-icon-box {
  background-color: rgba(220, 38, 38, 0.14);
}
.profile-menu-list li a.logout-link .menu-icon-box {
  background-color: rgba(220, 38, 38, 0.08);
}
.profile-menu-list li a.logout-link .menu-icon-box i {
  color: #dc2626;
}

.profile-menu-divider {
  height: 1px;
  background-color: rgba(0, 0, 0, 0.06);
  margin: 0.25rem 0.75rem;
}

.profile-menu-list li:last-child a {
  border-radius: 0 0 10px 10px;
}

.search-input-tooltip {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  display: none;
  z-index: 100;
  pointer-events: none;
}
.search-input-tooltip .tooltip-arrow {
  display: block;
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-bottom-color: rgba(30, 30, 30, 0.88);
  position: absolute;
  top: -10px;
  left: 1.2rem;
}
.search-input-tooltip .tooltip-text {
  display: block;
  background: rgba(30, 30, 30, 0.88);
  color: #fff;
  padding: 0.35rem 0.65rem;
  border-radius: 5px;
  font-size: 0.75rem;
  font-family: "Satoshi-Medium", sans-serif;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.search-container.input-with-icon:hover .search-input-tooltip,
.search-container.input-with-icon:focus-within .search-input-tooltip {
  display: block;
}

#helpModal.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
#helpModal.modal-overlay.show {
  opacity: 1;
  visibility: visible;
}
#helpModal.modal-overlay .modal-container {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  max-width: 500px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
}
#helpModal.modal-overlay .modal-container .modal-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1.5rem 1.5rem 0 1.5rem;
}
#helpModal.modal-overlay .modal-container .modal-header .modal-close-btn {
  background-color: #dc2626;
  border: none;
  padding: 0.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
#helpModal.modal-overlay .modal-container .modal-header .modal-close-btn:hover {
  background-color: #b91c1c;
  transform: scale(1.05);
}
#helpModal.modal-overlay .modal-container .modal-header .modal-close-btn .close-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #fff;
  stroke-width: 2.5;
}
#helpModal.modal-overlay .modal-container .modal-content {
  padding: 0 1.5rem 1.5rem 1.5rem;
}
#helpModal.modal-overlay .modal-container .modal-content .help-icon-container {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}
#helpModal.modal-overlay .modal-container .modal-content .help-icon-container .help-icon {
  width: 3rem;
  height: 3rem;
  color: #008000;
  stroke-width: 1.5;
}
#helpModal.modal-overlay .modal-container .modal-content .help-section {
  margin-bottom: 1.5rem;
}
#helpModal.modal-overlay .modal-container .modal-content .help-section:last-child {
  margin-bottom: 0;
}
#helpModal.modal-overlay .modal-container .modal-content .help-section .help-department {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  font-family: "Satoshi Medium", sans-serif;
  text-align: center;
  margin-bottom: 0.5rem;
}
#helpModal.modal-overlay .modal-container .modal-content .help-section .help-section-title {
  font-size: 1rem;
  font-weight: 600;
  color: #008000;
  font-family: "Satoshi Medium", sans-serif;
  margin-bottom: 0.75rem;
}
#helpModal.modal-overlay .modal-container .modal-content .help-section .help-address p {
  font-size: 0.875rem;
  color: #374151;
  font-family: "Satoshi Medium", sans-serif;
  line-height: 1.4;
  margin-bottom: 0.25rem;
}
#helpModal.modal-overlay .modal-container .modal-content .help-section .help-address p:last-child {
  margin-bottom: 0;
}
#helpModal.modal-overlay .modal-container .modal-content .help-section .help-contact .contact-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 0.75rem;
}
#helpModal.modal-overlay .modal-container .modal-content .help-section .help-contact .contact-item:last-child {
  margin-bottom: 0;
}
#helpModal.modal-overlay .modal-container .modal-content .help-section .help-contact .contact-item .contact-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  font-family: "Satoshi Medium", sans-serif;
  margin-right: 0.5rem;
  min-width: 100px;
}
#helpModal.modal-overlay .modal-container .modal-content .help-section .help-contact .contact-item .contact-value {
  font-size: 0.875rem;
  color: #6b7280;
  font-family: "Satoshi Medium", sans-serif;
  line-height: 1.4;
}
#helpModal.modal-overlay .modal-container .modal-content .help-section .help-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}
#helpModal.modal-overlay .modal-container .modal-content .help-section .help-actions .help-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  background-color: #fff;
  border: 1.5px solid #d1d5db;
  color: #374151;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: "Satoshi Medium", sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
}
#helpModal.modal-overlay .modal-container .modal-content .help-section .help-actions .help-secondary-btn:hover {
  background-color: #f9fafb;
  border-color: #9ca3af;
  transform: translateY(-1px);
}
#helpModal.modal-overlay .modal-container .modal-content .help-section .help-actions .help-primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  background-color: #008000;
  border: none;
  color: white;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: "Satoshi Medium", sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
}
#helpModal.modal-overlay .modal-container .modal-content .help-section .help-actions .help-primary-btn:hover {
  background-color: #006600;
  transform: translateY(-1px);
}

.emapsHelpOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.emapsHelpOverlay.visible {
  opacity: 1;
  visibility: visible;
}

.emapsHelpCard {
  background: var(--bg-primary, #fff);
  border: 1px solid var(--border-color, #dedede);
  border-radius: 16px;
  box-shadow: 0 24px 48px var(--shadow-color, rgba(0, 0, 0, 0.15)), 0 8px 16px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 450px;
  max-height: 95vh;
  padding: 1.25rem;
  position: relative;
  font-family: "Satoshi Regular", -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-y: auto;
}

.emapsHelpCloseBtn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.25rem;
  height: 2.25rem;
  background: #dc3545;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.emapsHelpCloseBtn:hover {
  background: #c82333;
  transform: scale(1.1);
}

.emapsHelpHeading {
  font-size: 1.5rem;
  font-family: "Satoshi Bold", sans-serif;
  color: var(--text-primary, #1a1a1a);
  margin: 0 0 0.75rem 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.75rem;
}

.emapsHelpIconWrap {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(0, 128, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.emapsHelpIconWrap svg {
  width: 1.5rem;
  height: 1.5rem;
}

.emapsHelpSub {
  font-family: "Satoshi Medium", sans-serif;
  font-size: 1rem;
  color: var(--text-muted, #555);
  margin: 0 0 0.75rem 0;
  text-align: center;
  font-style: italic;
}

.emapsHelpContacts {
  margin: 0 0 0.75rem 0;
  width: 100%;
}

.emapsHelpItem {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  padding: 0.5rem;
  background: var(--bg-secondary, #f7f7f7);
  border: 1px solid var(--border-color, #dedede);
  border-radius: 8px;
  width: 100%;
  box-sizing: border-box;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.emapsHelpItem:hover {
  background: var(--bg-elevated, #f0f0f0);
  border-color: rgba(0, 128, 0, 0.3);
}
.emapsHelpItem:last-child {
  margin-bottom: 0;
}

.emapsHelpContactIcon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
}

.emapsHelpDetails {
  flex: 1;
  min-width: 0;
}
.emapsHelpDetails strong {
  display: block;
  font-family: "Satoshi Bold", sans-serif;
  color: var(--text-primary, #1a1a1a);
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}
.emapsHelpDetails address {
  font-style: normal;
  font-family: "Satoshi Regular", sans-serif;
  color: var(--text-secondary, #333);
  font-size: 0.85rem;
  line-height: 1.4;
  margin: 0;
}

.emapsHelpPhone {
  font-family: "Satoshi Medium", sans-serif;
  color: var(--text-secondary, #333);
  font-size: 0.9rem;
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background: rgba(0, 128, 0, 0.08);
  border-radius: 4px;
  transition: background 0.2s ease, color 0.2s ease;
}
.emapsHelpPhone:hover {
  background: rgba(0, 128, 0, 0.15);
  color: #008000;
}

.emapsHelpPhones {
  display: flex;
  gap: 0.5rem;
  width: 100%;
}
.emapsHelpPhones .emapsHelpItem {
  flex: 1;
  margin-bottom: 0;
}

.emapsHelpActions {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
  padding-top: 0.5rem;
}

.emapsHelpBtn {
  height: 2rem;
  width: fit-content;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  font-family: "Satoshi Medium", sans-serif;
  text-decoration: none;
  border-radius: 4px;
  border: 1.2px solid transparent;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.emapsHelpBtn.emapsHelpBtn--outline {
  background: transparent;
  color: #008000;
  border-color: #008000;
}
.emapsHelpBtn.emapsHelpBtn--outline:hover {
  background: #008000;
  color: #fff;
}
.emapsHelpBtn.emapsHelpBtn--fill {
  background: #008000;
  color: #fff;
  border-color: #008000;
}
.emapsHelpBtn.emapsHelpBtn--fill:hover {
  background: #006600;
  border-color: #006600;
}

.shaun-wrapper.dark-mode .emapsHelpCard {
  background: var(--bg-primary);
  border-color: var(--border-color);
  box-shadow: 0 24px 48px var(--shadow-color), 0 8px 16px rgba(0, 0, 0, 0.3);
}
.shaun-wrapper.dark-mode .emapsHelpItem {
  background: var(--bg-secondary);
  border-color: var(--border-color);
}
.shaun-wrapper.dark-mode .emapsHelpItem:hover {
  background: var(--bg-elevated);
  border-color: rgba(107, 198, 143, 0.3);
}
.shaun-wrapper.dark-mode .emapsHelpPhone {
  background: rgba(107, 198, 143, 0.1);
}
.shaun-wrapper.dark-mode .emapsHelpPhone:hover {
  background: rgba(107, 198, 143, 0.2);
  color: #6BC68F;
}
.shaun-wrapper.dark-mode .emapsHelpBtn--outline {
  background: var(--bg-elevated);
  border-color: var(--border-color);
  color: var(--text-primary);
}
.shaun-wrapper.dark-mode .emapsHelpBtn--outline:hover {
  background: var(--bg-accent);
  border-color: var(--input-border);
}

@media (max-width: 640px) {
  .emapsHelpCard {
    width: 95%;
    margin: 1rem;
    padding: 1rem;
  }
  .emapsHelpHeading {
    font-size: 1.25rem;
  }
  .emapsHelpPhones {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/*# sourceMappingURL=property-search-module.css.map */
