.ds-modal--container {
  align-items: center;
  background: hsla(var(--ds-color-hsl-london-5), 0.3);
  display: flex;
  height: 100%;
  justify-content: center;
  left: 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 94; /* below the paywall (96) */
}

.ds-modal {
  background-color: var(--ds-color-london-100);
  border: 1px solid var(--ds-color-london-85);
  border-radius: 0.5rem;
  box-shadow: 0 0.25rem 1rem 0 rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
  flex-shrink: 1;
  margin: 0 0.75rem;
  padding: 1.5rem;
  position: relative;
  width: 100%;
}

.ds-modal--small {
  max-width: 16.25rem;
}

.ds-modal--medium {
  max-width: 23.75rem;
}

.ds-modal--large {
  max-width: 37.5rem;
}

.ds-modal--dark-mode {
  background-color: var(--ds-color-london-10);
  border: var(--ds-color-london-10);
  color: var(--ds-color-london-100);
}
