.ModalBg {
  display: flex;
  position: fixed;
  left: 0px;
  top: 0px;
  height: 100%;
  width: 100%;
  background-color: white;
}

#CloseBtn {
  cursor: pointer;
}

.ModalContentContainer {
  display: block;
  height: calc(100% - 50px - 40px);
  width: 100%;
  margin: 0 auto;
  background-color: white;
  overflow-y: scroll;
  overflow-x: hidden;
}

.ModalTitle {
  margin: 10px 10px;
  max-width: 80%;
}

.ModalClose {
  display: flex;
  margin: 0px;
  right: 5px;
  width: fit-content;
  margin-right: 10px;
  margin-left: auto;
  font-size: 45px;
  transform: rotate(45deg);
  color: black;
}

.ModalHeaderBar {
  margin-top: 100px;
  margin-left: 20px;
  margin-right: 40px;
}

.ModalContent {
  margin: 10px;
}

.ModalButtonRow {
  display: inline-flex;
  position: fixed;
  width: 100%;
  height: 40px;
  bottom: 50px;
  left: 0px;
  background-color: antiquewhite;
  text-align: right;
}

.ModalButtonRow button {
  margin: 5px;
}

.ModalButtonRowContainer {
  margin: auto;
  margin-right: 5px;
  display: flex;
}

.FlexDiv {
  margin-bottom: 10px;
  width: 100%;
  text-align: left;
}

.FlexDiv h2 {
  margin-bottom: 10px;
  width: 100%;
}
