.mymodal-content {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.mymodal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1090;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.mymodal-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

.mymodal-dialog {
  width: 80%;
  margin: auto;
}

.mymodal-title {
  margin: 0;
  line-height: 1.5;
  color: white;
  font-size: 1.5rem;
  font-weight: 400;
}

.mymodal-body {
  padding: 1rem;
}

.mymodal-body h1 {
  margin-top: 0;
}

.mymodal-body ul {
  list-style-type: none;
}

.mymodal-body > div > img {
  height: 50px;
  object-fit: contain;
}

/* .mymodal-body > div > div {
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 50%);
        font-size: large;
        font-weight: bold;
} */

span#total-value {
  font-size: -webkit-xxx-large;
  font-weight: bold;
  position: absolute;
  left: 50%;
  transform: translatex();
  transform: translate(-50%, -20%);
}

div.mymodal-properties {
  margin: 1rem;
  font-weight: bold;
}

.mymodal-header button {
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
}

.mymodal-header button > svg:hover {
  text-decoration: none;
  background-color: rgba(0, 60, 136, 0.3);
}

.show-modal.mymodal {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.3);
}

.mymodal-dialog {
  opacity: 0;
  transform: translateY(-100px);
  transition: 300ms opacity ease-out, 300ms transform ease-out;
}

.mymodal.animate-modal .mymodal-dialog {
  opacity: 1;
  transform: translateY(0);
}
.mymodal-body-propertyList {
  padding: unset;
}

.propertyList-item {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  font-size: larger;
  margin-bottom: 7px;
  height: 2rem;
}

.propertyList-item > span {
  display: inline-flex;
  align-items: center;
}

.mymodal-propertyList-container {
  overflow-y: scroll;
  max-height: 200px;
}

.propertyList-item-label {
  width: 80%;
  /* text-align: right; */
}
.propertyList-item-value {
  display: inline-flex;
  width: 50%;
  background-color: #e1e1e1;
  text-align: end;
  flex-direction: row-reverse;
  color: #000;
  padding-right: 0.5rem;
}

.propertyList-item-value span {
  align-self: flex-end;
}
