.leaflet-container .leaflet-control-ControlLayer {
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 5px #bbb;
  padding: 0 5px;
  margin: 10px 10px 0px 0px;
  color: #333;
  font: inherit;
  text-align: left;

}
.leaflet-list-box-layer{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.leaflet-list-box-layer-select-layer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.leaflet-check-box-layer {
  margin-top: 2px;
  position: relative;
  top: 2px;
}
.leaflet-check-box-layer-title {
  width: 100%;
  margin-bottom: 4px;
}
.leaflet-box-dowload-file {
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 5px #bbb;
  color: #333;
  margin: auto;
  font: inherit;
  text-align: center;
}
.leaflet-box-detail-marker {
  background-color: rgba(255, 255, 255, 0.7);
  /* box-shadow: 0 0 5px #bbb; */
  color: #333;
  margin: auto;
  font: inherit;
  text-align: center;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(0,0,0,0.2);
}

.leaflet-box-detail-box {
  display: flex;
  flex-direction: row;
}

.leaflet-box-detail-label {
  margin: 5px;
}

.leaflet-container-flex-row-box {
  display: flex;
  flex-direction: column;
}

.leaflet-tile-btn {
  background-color: rgba(255, 255, 255, 0.7); 
  color: #333;
  padding: 4px 12px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 12px;
  border-radius: 2px;
  border-top: 2px solid rgba(0,0,0,0.2);
  border-left: 2px solid rgba(0,0,0,0.2);
  border-right: 2px solid rgba(0,0,0,0.2);
  border-bottom: 2px solid rgba(0,0,0,0.2);
  width: 152px;
  height: 36px;
}

.leaflet-menu {
  height: 100%;
  width: 140px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
.leaflet-menu-select {
  height: 100%;
  /* width: 140px; */
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
@keyframes fadeIn {
  from { opacity: 0; }
    to { opacity: 1; }
}
.leaflet-active {
  display: block;
  animation: fadeIn 0.5s;
  background-color: rgba(255, 255, 255, 0.5); 
  padding: 10px 6px;
}

.leaflet-inactive {
  display: none; 
  background-color: rgba(255, 255, 255, 0.5); 
  padding: 10px 6px;
}

.leaflet-btn-street-view {
  background: url(images/ic_traffic.png);
  background-size: 48px 48px;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  padding: 2px;
}

.leaflet-btn-world-view {
  background:url(images/ic_world.png);
  background-size: 48px 48px;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  padding: 2px;
}

.leaflet-btn-active {
  border: 2px solid #1a73e8;
  background-clip: content-box;
}
.leaflet-btn-inactive {
  border: 2px solid #c7c7c7;
  background-clip: content-box;
}

.icon-eye-open {
  content:url(images/icon-eye-open.svg);
}
.icon-eye-close {
  content:url(images/icon-eye-close.svg);
}