/* VelChat: owner-only controls for individual images in multi-photo posts. */
.velchat-multi-photo-item,
.velchat-single-multi-wrap {
  position: relative;
}
.velchat-multi-photo-item .velchat-multi-photo-delete {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 8;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(15,18,24,.78);
  box-shadow: 0 2px 10px rgba(0,0,0,.28);
  cursor: pointer;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.velchat-multi-photo-item .velchat-multi-photo-delete:hover,
.velchat-multi-photo-item .velchat-multi-photo-delete:focus {
  background: rgba(220,45,60,.94);
  outline: none;
}
@media (max-width: 767px) {
  .velchat-multi-photo-item .velchat-multi-photo-delete {
    top: 6px;
    right: 6px;
    width: 30px;
    height: 30px;
  }
}
