

/* BUTTONS */

.win-btn {
  width: 18px;
  height: 16px;
  padding: 0;
  border: 1px solid #fff;
  border-right-color: #404040;
  border-bottom-color: #404040;
  background: #c0c0c0;
  font-size: 11px;
  cursor: pointer;
  font-family: inherit;
}

.heart-btn {
  font-size: 12px;
}

/* ===== OVERLAY ===== */

#overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);

  display: none;

  justify-content: center;
  align-items: center;

  z-index: 9999;
}

#overlay-window {
  width: 70vw;
  max-width: 900px;

  background: #c0c0c0;

  border: 2px solid #fff;
  border-right-color: #404040;
  border-bottom-color: #404040;

  box-shadow:
    inset -1px -1px #808080,
    inset 1px 1px #dfdfdf;
}

.overlay-bar {
  justify-content: flex-end;
  padding: 2px;
}

#overlay-image {
  width: 100%;
  display: block;
  max-height: 70vh;
  object-fit: contain;
  background: black;
}

#overlay-text {
  min-height: 80px;
  padding: 14px;
  font-size: 14px;
  line-height: 1.5;
  background: #d4d0c8;
}

/* ===== TINY POPUP ===== */

.photo-window {
  position: relative;
}

.tiny-popup {
  position: absolute;

  width: 50%;
  height: 50%;

  top: 30px;
  left: 20px;

  background: #c0c0c0;

  border: 2px solid #fff;
  border-right-color: #404040;
  border-bottom-color: #404040;

  box-shadow:
    inset -1px -1px #808080,
    inset 1px 1px #dfdfdf;

  display: none;

  z-index: 30;
}

.popup-bar {
  justify-content: flex-end;
  padding: 2px;
}

.popup-content {
  height: calc(100% - 24px);

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;

  padding: 10px;

  font-size: 12px;
}