.leaflet-control {
  position: relative;
  pointer-events: auto; }

.leaflet-top .leaflet-control {
  margin-top: 15px; }

.leaflet-bottom .leaflet-control {
  margin-bottom: 15px; }

.leaflet-left .leaflet-control {
  margin-left: 15px; }

.leaflet-right .leaflet-control {
  margin-right: 15px; }

.leaflet-bar {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  background-color: #ffffff;
}
  .leaflet-bar > a {
    width: 48px;
    height: 48px;
    background: #ffffff;
    color: #475569;
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 0;
    position: relative;
    transition: all 0.2s ease;
    text-indent: 0;
    overflow: hidden;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-decoration: none;
    text-shadow: none;
    filter: none;
  }
    .leaflet-bar > a:before, .leaflet-bar > a:after {
      display: none !important;
    }
    .leaflet-bar > a.leaflet-control-zoom-in:after {
      display: none !important;
    }
    .leaflet-bar > a.leaflet-control-zoom-out:after {
      display: none !important;
    }
    .leaflet-bar > a.leaflet-disabled {
      filter: grayscale(1);
      opacity: .6;
    }
    .leaflet-bar > a:not(.leaflet-disabled):hover {
      background: #f1f5f9;
      color: var(--sb-primary, #45b150);
    }
    .leaflet-bar > a.leaflet-control-zoom-in,
    .leaflet-bar > a:first-child {
      border-bottom: 1px solid #edf2f7;
      border-top-left-radius: 12px;
      border-top-right-radius: 12px;
    }
    .leaflet-bar > a.leaflet-control-zoom-out,
    .leaflet-bar > a:last-child {
      border-bottom: none;
      border-bottom-left-radius: 12px;
      border-bottom-right-radius: 12px;
    }
  .leaflet-bar.leaflet-control-location {
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.02) !important;
    overflow: hidden !important;
    background-color: #ffffff !important;
    flex: none !important;
    align-self: flex-end !important;
    width: 48px !important;
    height: 48px !important;
    margin-top: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .leaflet-bar.leaflet-control-location a {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: #ffffff !important;
    border: none !important;
    border-radius: 12px !important;
    margin: 0 !important;
    padding: 0 !important;
    text-indent: 0 !important;
    position: relative !important;
  }
  .leaflet-bar.leaflet-control-location a:hover {
    background-color: #f1f5f9 !important;
  }
  .leaflet-bar.leaflet-control-location a:after,
  .leaflet-bar.leaflet-control-location a:before {
    display: none !important;
  }
  .leaflet-bar.leaflet-control-location a > svg {
    display: block !important;
    position: static !important;
    margin: 0 !important;
    width: 24px !important;
    height: 24px !important;
    fill: #475569 !important;
    transition: fill 0.2s ease !important;
  }
  .leaflet-bar.leaflet-control-location a:hover > svg {
    fill: var(--sb-primary, #45b150) !important;
  }
  .leaflet-top.leaflet-right {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    justify-content: flex-start !important;
  }
  body[dir=rtl] .leaflet-top.leaflet-right {
    align-items: flex-start !important;
  }
