.popup-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: grid;
  place-items: center;
}

.popup {
  position: relative;
  z-index: 1001;
  background: var(--white);
  border: none;
  outline: none;
  max-width: 100%;
  max-height: 100%;
  min-width: 300px;
  border-radius: 8px;
  padding: 0 25px 25px 25px;
}

.popup-title {
  margin: 0 20px 0 0;
  white-space: nowrap;
  margin-top: 10px;
  margin-bottom: 10px;
}

.popup-close {
  position: absolute;
  top: 5px;
  right: 5px;
  transition: all 0.2s ease-in-out;
}

.popup-close:hover,
.popup-close:focus {
  color: var(--text-light);
}

.popup-close:active {
  transform: scale(90%);
  color: var(--text-light);
}

.popup-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}
