#map {
	height: 100%;
}

.leaflet-popup-content-wrapper {
	width: 100%;
}

.position-absolute {
	position: absolute;
}

.legends-container {
	background-color: rgba(44, 44, 44, 0.9);
	padding: 8px;
	border-radius: 4px;
}
.legend-head {
	margin-left: 1ch;
}
.z-999 {
	z-index: 999;
}

.f-11 {
	font-size: 11px;
}

.f-white {
	color: white;
}

.chart-legend {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
}
.chart-legend__row {
	text-transform: capitalize;
	align-items: center;
}

.chart-legend__heading {
	font-size: 14px;
	color: #61717d;
	letter-spacing: 0.36px;
	padding: 4 0;
}

.chart-legend__color {
	width: 25px;
	height: 10px;
	margin-right: 3px;
	border-radius: 6px;
	display: inline-block;
	vertical-align: middle;
}

.chart-legend__desc {
	margin-left: 10px;
	font-size: 10px;
	color: #ffffff;
	display: inline-block;
	vertical-align: middle;
}

.d-flex {
	display: flex;
}

.cursor-pointer{
	cursor: pointer;
}

	.bld-600 {
		font-weight: 600 !important;
	}

  .btn-toggle-grp {
	background-color: #fff;
  }
  .btn-toggle {
	border: none;
	min-width: 36px;
	font-size: 16px;
	line-height: 28px;
	padding: 0px 12px;
	background: none padding-box rgb(255, 255, 255);
    margin: 0px;
    text-transform: none;
    appearance: none;
    position: relative;
    cursor: pointer;
    user-select: none;
    direction: ltr;
    overflow: hidden;
    text-align: center;
    height: 32px;
    vertical-align: middle;
    color: #264554;
    font-family: Roboto, Arial, sans-serif;
    border-bottom-right-radius: 2px;
    border-top-right-radius: 2px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px;
    font-weight: 500;
  }

  .leaflet-bottom {
	width: 100%;
  }

  .map_type_align{
	/* width: 93%;
    display: flex;
    justify-content: end;
    margin-bottom: 30px !important; */
	position: absolute !important;
    right: 55px;
    bottom: 20px
  }
  .popup-top{
	bottom: auto !important;
      top: -8px !important;
  }

  .sampling_snackbar_parent{
	width: 100%;
    position: absolute;
    z-index: 500;
    top: 5%;
    display: flex;
    justify-content: center;
  }

  #sampling_snackbar {
	  visibility: hidden;
    background-color: #264554;
    color: #fff;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    padding: 3.9px 12px 4.3px 12px;
    border-radius: 4px;
    box-shadow: 0px 1px 5px 0px black;
  }

  #sampling_snackbar img{
	margin-left: 6px;
    vertical-align: text-bottom;
	cursor: pointer;
  }
  #sampling_snackbar.show{
	visibility: visible;
	-webkit-animation: fadein 0.3s;
	animation: fadein 0.3s;
  }
  /* .current_location_icon{
	background: url('./assets/current_location.svg');
    height: 50px;
    width: 50px;
  }
  .add_point_icon{
	background: url('./assets/add_point.png');
    height: 30px;
    width: 30px;
  }
  .toggle_overlay_icon{
	background: url('./assets/toggle_overlay.svg');
    height: 30px;
    width: 30px;
  } */
  @keyframes fadein {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  .copy-button-black {
    margin-top: -3px;
    cursor: pointer;
  }

  .img-disabled{
    opacity: 0.5;
    cursor: not-allowed !important;
    pointer-events: none !important;
  }