.modal {
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
}
.modal-content {
  background-color: var(--color-background-secondary);
  margin: 10% auto;
  padding: 20px;
  border-radius: 5px;
  width: 70%;
  max-width: 600px;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 24px;
  cursor: pointer;
}

.modal-sub-container {
  max-width: 600px;
  background: var(--color-background-tertiary);
  padding: 2.5rem 2rem;
  padding-top: 0.5rem;
  margin-bottom: 0.8rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  box-shadow: 5px 15px 40px rgba(0, 0, 0, 0.16);
}

.modal-table {
  width: 100%;
}
.modal-table td {
  width:50%;
  padding: 0.7rem;
}
.modal-table img {
  max-height: 180px;
  max-width: 95%;
  background-color:  #fdfeff;
}

.modal-small-heading {
  color: var(--color-text-muted);
}
