/* ! Marker Popup */
.marker-info {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 18px;
  color: #f0f5fb;
}

.marker-info .marker-image-container {
  display: flex;
  padding-bottom: 56.2%;
  position: relative;
}

.marker-info .marker-image-container img {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.marker-info .marker-details {
  padding: 5px 10px;
}

.marker-info .popup-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0e0e0e;
  transition: 500ms all;
}
.marker-info .popup-buttons.hidden {
  display: none;
}

.marker-info .popup-buttons .ui-button:last-child {
  margin-left: 10px;
}

.marker-info .popup-buttons .edit-marker.ui-button {
  background-color: #1f5c7a;
}
.marker-info .popup-buttons .edit-marker.ui-button:hover {
  background-color: #28749a;
}

.marker-info .popup-buttons .move-marker.ui-button {
  background-color: #3d525c;
}
.marker-info .popup-buttons .move-marker.ui-button:hover {
  background-color: #5b7887;
}

/* ! Marker Window*/
.marker-info-window {
  position: absolute;
  top: 140px;
  right: 20px;
  z-index: 2000;
  padding: 15px 15px;
  background-color: #0a0a0a;
  color: #fff;
  box-shadow: inset 0px 0px 50px #000;
  border: 1px solid #393b42;
  max-width: 340px;
  max-height: 830px;
  min-width: 320px;
  box-sizing: border-box;
}

.marker-info-window .marker-image-container {
  display: flex;
  padding-bottom: 56.2%;
  position: relative;
}

.marker-info-window .marker-image-container img {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.marker-info-window-close {
  position: absolute;
  right: 5px;
  top: 5px;
  font-size: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  background-color: #333;
  cursor: pointer;
}

.marker-info-window .copymarkerurl {
  display: block;
  margin: 0 auto;
}

.marker-info-window .close {
  position: absolute;
  color: #fff;
  width: 18px;
  height: 20px;
  font: 20px/16px Tahoma, Verdana, sans-serif;
  font-weight: bold;
  top: 3px;
  right: 2px;
}
.marker-info-window .debug-marker-info {
  display: flex;
  width: calc(100% + 2px);
  color: #adff2f;
  position: absolute;
  bottom: -28px;
  font-size: 12px;
  background-color: rgb(0 0 0 / 75%);
  padding: 5px 10px;
  left: -1px;
  line-height: 16px;
  align-items: center;
  justify-content: center;
  border: 1px solid #393b42;
}

.marker-info-window .debug-marker-info .info:last-child {
  margin-left: 10px;
}