.highlighted-properties {
  height: calc(100vh - 50px);
  overflow: hidden;
}

.highlighted-properties .selected-properties-container {
  background: white;
  margin: 15px 0px 15px 15px;
  border-radius: 10px;
  padding: 15px;
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}

.highlighted-properties .selected-properties {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.highlighted-properties .add-prop-button {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 50px);
}

.highlighted-properties .add-prop-button button {
  font-size: 20px;
  line-height: 25px;
  width: 100%;
}

.highlighted-properties .selected-properties .selected-properties-list {
  width: 100%;
}

.highlighted-properties > .row,
.highlighted-properties > .row > .col-md-7 {
  height: 100%;
}

.highlighted-properties .properties-list {
  padding: 15px;
  height: calc(100% - 30px);
  background: white;
  margin: 15px 15px 15px 0px;
  border-radius: 10px;
}

.selected-properties ul[dnd-list],
.selected-properties ul[dnd-list] > li {
  position: relative;
}

.selected-properties ul[dnd-list] {
  min-height: 42px;
  padding-left: 0px;
}

.selected-properties ul[dnd-list] .dndDraggingSource {
  display: none;
}

.selected-properties ul[dnd-list] .dndPlaceholder {
  display: block;
  background-color: #ddd;
  min-height: 52px;
  margin: 0px 0px 22px 0px;
  border-radius: 4px;
}

.selected-properties ul[dnd-list] li {
  margin-bottom: 5px;
  list-style: none;
}

.selected-properties ul[dnd-list] li > .alert-default {
  background-color: white;
  border-color: #b4b4b4;
}

.selected-properties ul[dnd-list] li.selected > .alert-default {
  background-color: #dff0d8;
}
