.parent {
  display: none;
  font-size: 14px !important;
}
.parent:first-child {
  display: block;
}
.db-row {
  display: flex;
  width: 100%;
  font-size: 14px !important;
  // height: 60px;
  i {
    cursor: pointer;
  }
}

#other {
  min-height: 40px;
  display: flex;
  align-items: baseline;
}
.new-obj-container {
  position: relative;
  align-items: flex-start;
}
#other2.db-row2 {
  height: 32px;
    display: flex;
}
#obj.db-row {
  min-height: 40px;
  padding-left: 4px;
  font-size: 14px !important;
}

#obj.db-row:not(:first-of-type) {
  margin-left: -40px;
}

.array-string {
  display: flex;
  margin-top: 6px;
  width: max-content;
}

.array-index {
  display: flex;
}
.div-with-arrow {
  margin-left: 4px;
  margin-top: 8px;
  // margin-bottom: 16px;
}

.colon-key {
  display: flex;
  width: 150px !important;
  word-break: break-all;
  margin-top: 5px;
  margin-right: 20px;
}

#other {
  padding: 4px;
  border-radius: 5px;
}
#other:hover {
  background: var(--hlx-color-primary-lighter);
  .enable-edit {
    margin-left: 1rem;
    margin-bottom: 3px;
    display: flex !important;
  }
}

.array-index-parent:has(.array-index) {
  border-right: 1px solid #d8d8d8;
  padding-right: 4px;
  margin-top: 6px;
  margin-bottom: 16px;
}
.array-index-parent:has(.array-string) {
  // border-right: 1px solid #d8d8d8;
  // width: 150px;
  word-break: break-all;
}

.colon-value {
  word-break: break-all;
  display: flex;
  align-items: flex-end;
  min-width: 250px;

  .cancel-edit {
    color: var(--error);
    font-size: 1.5rem;
    margin-left: 4px;
  }
  .icon-check-square-regular {
    color: #54bd95;
    font-size: 1.5rem;
  }
}

#other.db-row {
  // margin-bottom: 1rem;

  .radio-container {
    align-items: center;
  }

  .radio-checkmark {
    margin-top: 4px;
  }
}

.schema-builder-input {
  height: 36px;
  border-radius: 5px;
  border: 1px solid #d8d8d8;
  padding: 8px;
  font-size: 14px;
  margin-left: 1rem;
  margin-bottom: 1rem;
}

// .schema-builder-key-value {
  // display: flex;
// }

.ov-icon-type {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  .icon-holder {
    display: flex;
  }
  .icon-holder.num{
    font-size: 20px;
    margin-top: -3px;
    font-weight: bold;
    width: 40px;
    display: flex;
    justify-content: center;
  }
  .icon-holder.arr{
    font-size: 14px;
    margin-top: -2px;
    font-weight: bold;
    width: 40px;
    display: flex;
    justify-content: center;
    font-family: monospace !important;
  }
  .icon-holder.obj{
    font-size: 14px;
    margin-top: -3px;
    font-weight: bold;
    width: 40px;
    display: flex;
    justify-content: center;
    font-family: monospace !important;
  }
  .icon-holder.str{
    font-family: monospace !important;
    font-size: 12px;
    font-weight: bold;
    width: 40px;
    display: flex;
    justify-content: center;
    margin-top: 1px;
  }
  .icon-holder.date{
    font-size: 18px;
    font-weight: bold;
    width: 40px;
    display: flex;
    justify-content: center;
    margin-top: 1px;
  }
  .icon-holder.bool{
    font-size: 18px;
    font-weight: bold;
    width: 40px;
    display: flex;
    justify-content: center;
    margin-top: 1px;
  }
  .asterisk {
    margin-left: 5px;
    color: #ff5050;
  }
}