.leaflet-left{
    	width: 100%;
        padding-left: 45px;
         padding-right: 50px;

	}

.leaflet-control.leaflet-bar.geoapify-leaflet-control{
    border: none;
}

.leaflet-popup-content-wrapper {

    background: rgba(255, 255, 255, 0.85); /* Белый цвет с 50% прозрачности */
}

/*.leaflet-popup-content {
    width: auto !important;
} */


.popup-content{
   font-size: 16px;
}

.leaflet-popup-tip {
    background: rgba(255, 255, 255, 0.85);
}

.legend {
  padding: 6px 8px;
  font: 14px Arial, Helvetica, sans-serif;
  background: white;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  line-height: 24px;
  color: #555;
}



.legend.leaflet-control{
 margin-top: 55px;

}

.legend h4 {
  text-align: center;
  font-size: 16px;
  margin: 2px 12px 8px;
  color: #777;
}

.legend span {
  position: relative;
  bottom: 3px;
}

.legend i {
  width: 18px;
  height: 18px;
  float: left;
  margin: 0 8px 0 0;
 ;
}

.legend i.icon {
  background-size: 18px;
  background-color: rgba(255, 255, 255, 1);
}

.leaflet-marker-icon  {
  color: black;

}







.geoapify-form:hover,
.geoapify-address-input:focus { /* или при фокусе на поле ввода */
    opacity: 1;
}

.geoapify-form {
    opacity: 0.75; /* или другое значение прозрачности, которое вам нужно */
    transition: opacity 0.3s; /* плавный переход прозрачности */
}

.geoapify-leaflet-control {
  width:100%;

  overflow: hidden;
}

.geoapify-address-input {
  padding: 0 33px 0 7px;
  /* width: calc(100% - 40px); */
  width: 100%;
  line-height: 30px;
  height: 30px;
  font-size: 14px;

  outline: none;

  border: none;
}

.geoapify-clear-button {
  display: flex;
  position: absolute;
  right: 5px;
  top: 0;

  height: 30px;
  align-items: center;

  color: rgba(0, 0, 0, 0.4);
}

.geoapify-clear-button.visible:hover {
  color: rgba(0, 0, 0, 0.6);
}

.geoapify-clear-button.visible {
  cursor: pointer;
}

.geoapify-autocomplete-items {

  border-top: 1px solid rgba(0,0,0,0.1);
  background-color: #fff;

  z-index: 99;
  top: 100%;
  left: 0;
  right: 0;
}

.geoapify-autocomplete-items div {
  padding: 8px 10px;
  cursor: pointer;
}

.geoapify-autocomplete-items div.empty {
  cursor: default;
}

.geoapify-autocomplete-items .result:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.geoapify-autocomplete-items .result.active {
  background-color: rgba(0, 0, 0, 0.1);
}

.geoapify-autocomplete-item {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.geoapify-autocomplete-items .secondary-part {
  margin-left: 10px;
  font-size: small;
  color: rgba(0, 0, 0, 0.6);
}

.geoapify-autocomplete-item .no-results {
  color: rgba(0, 0, 0, 0.6);
}


.geoapify-icon-rotate {
  -webkit-animation: rotation 1s infinite linear;
  animation: rotating 1s infinite linear;
}

@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}


