.c-modal {
  background-color: rgba(0, 0, 0, 0.285);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}

.c-modal__content {
  background-color: white;
  border-radius: 8px;
  padding: 16px;
  max-width: 80%;
  max-height: 80%;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.c-modal__close {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 1.5rem;
  line-height: 1.5rem;
  cursor: pointer;
}