.leaflet-bar button,
.leaflet-bar button:hover {
  border: none;
  border-bottom: 1px solid #ccc;
  background-color: var(--control-bg);;
}

.leaflet-bar button {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  width: 50px !important;
  height: 50px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  border-radius: 15px;
  color: var(--control-color);
  background-color: var(--control-bg);
  transition: ease 0.5s;
}

.leaflet-bar button:hover {
  background-color: var(--control-bg-hover);
  color: var(--control-color-hover);
}

.leaflet-bar button:first-of-type {

}

.leaflet-bar button:last-of-type {
  border-bottom: none;
}

.leaflet-bar.disabled,
.leaflet-bar button.disabled {
  cursor: default;
  pointer-events: none;
  opacity: .4;
}

.easy-button-button .button-state{
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}


.leaflet-touch .leaflet-bar button {
  width: 30px;
  height: 30px;
  line-height: 30px;
  -webkit-box-shadow: 10px 10px 28px -10px rgba(0,0,0,0.75);
	-moz-box-shadow: 10px 10px 28px -10px rgba(0,0,0,0.75);
	box-shadow: 10px 10px 28px -10px rgba(0,0,0,0.75);
}

.easy-button-button .button-state {
  /* width: 50px;
  height: 50px; */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border-radius: 15px;
  /* color: var(--control-color);
  background-color: var(--control-bg);
  transition: ease 0.5s; */
}

.easy-button-button .button-state:hover {
  background-color: var(--control-bg-hover);
  color: var(--control-bg);
}
