.thieffry-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.thieffry-modal {
  display: flex;
  flex-direction: column;
  background-color: #f5f5f5;
  width: 80%;
  height: 80%;
  border: 1px solid transparent;
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.thieffry-modal.notrailer {
  height: unset;
}

.thieffry-modal.auto {
  width: unset;
  height: unset;
}

.thieffry-modal.fullscreen {
  width: 100%;
  height: 100%;
  margin: unset;
  padding-top: 2em;
}