.today-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
}

.today-popup .popup-inner {
  pointer-events: auto;
  position: absolute;
  top: 50px;
  left: 50px;
  width: calc(100% - 16px);
  max-width: 420px;
  overflow: hidden;
  border-radius: 13px;
}
.today-popup .popup-inner > img {
  width: 100%;
  display: block;
}

.popup-actions {
  display: flex;
  justify-content: space-between;
}

.popup-actions button {
  flex: 1;
  background: none;
  border: 0;
  font-size: 14px;
  cursor: pointer;
  font-weight: 400 !important;
  background-color: #343434 !important;
}

@media (max-width: 500px) {
  .today-popup {
    background: rgba(0, 0, 0, 0.4);
    pointer-events: auto;
  }
  .today-popup .popup-inner {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .popup-actions button {
    padding: 4px !important;
  }
}
