.Overlay {
  background-color: rgba(35, 26, 38, 0.75);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  overflow-y: auto;
}

.Content {
  background-color: white;
  width: 600px;
  margin: auto;
  margin-top: 30px;
  margin-bottom: 15px;
  position: relative;
  border-radius: 10px;
  outline: none;
  padding: 0;
}

.ExtraLargeContent {
  width: 95%;
}

.LargeContent {
  width: 1000px;
}

.MediumContent {
  width: 600px;
}

.SmallContent {
  width: 400px;
}

.Header,
.Footer {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  box-sizing: border-box;
  margin: 0;
  padding: 10px;
  padding-left: 20px;
  width: 100%;
  color: #261c29;
  align-items: center;
}

.Header {
  border-bottom: 1px solid #c6c9cf;
}

.Title {
  font-size: 16px;
  font-weight: bold;
}

.CloseIcon {
  height: 15px;
  width: 15px;
  fill: #261c29;
  cursor: pointer;
}

.CloseIconButton {
  box-sizing: content-box;
  padding: 5px;
  height: 15px;
  width: 15px;
  border: none;
  border-radius: 2px;
  margin: 0;
}

.CloseIconButton:focus {
  border-color: var(--input-focus-border-color);
  box-shadow: var(--input-focus-shadow);
  outline: none;
}

.Body {
  position: relative;
  min-height: 100px;
  /*max-height: 500px;*/
}

.Footer {
  border-top: 1px solid #c6c9cf;
}

.Footer .Left,
.Footer .Right {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}

.Footer .Left {
  justify-content: flex-start;
}

.Footer .Right {
  justify-content: flex-end;
}

.Footer .Button {
  margin-right: 20px;
}

.TestContentClass {
  text-align: center;
}
