@keyframes modal-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modal-transform {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0%);
  }
}
.modal-background {
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  z-index: 500;
  animation: modal-fade 0.2s;
}

.modal-container {
  position: absolute;
  padding: 1.5rem;
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: var(--bg);
  border-left: 1px solid var(--border);
  right: 0;
  top: 0;
  min-width: 50vw;
  max-width: 70vw;
  height: 100vh;
  overflow-y: scroll;
  overflow-x: hidden;
  z-index: 501;
  animation: modal-transform 0.3s;
}

.modal-container button {
  border: none;
  background-color: transparent;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .modal-container {
    max-width: 100vw;
    min-width: 100vw;
  }
}

/*# sourceMappingURL=modal.css.map */