textArea {
  width: 50%;
}
#content {
  display: flex;
  justify-content: center;
  background-color: #eee;
  padding: 0px 20px;
}
.dsu_wrapper {
  background-color: #fff;
  padding: 0px 15px 15px;
  width: 100%;
  height:  fit-content;
  height: -moz-fit-content;
  max-width: 920px;
}
/*this only works for detail records so far, will need to look into forms as well*/
.pb-detail-record, form.pb-form{
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  max-width: 920px;
  width: 100%;
}
.pb-detail-item-container, .pb-form-item-container, .pb-block-item-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;

}
.pb-label, .pb-text,.pb-email,.pb-select,.pb-display {
  flex: 50%;
}
div.pb-radio.pb-item{
  flex: 50%;
}
div.pb-boolean
{
  align-self: flex-end;
  width: 50%;
}
@media only screen and (max-width: 320px) {
  .pb-detail-item-container, .pb-form-item-container {
    flex-wrap: wrap;
  }
  .dsu_wrapper {
    padding: 5px;
  }
  div.pb-radio.pb-item{
    flex: 100%;
  }
}
@media only screen and (max-width: 400px) {
  div.pb-boolean
  {
    align-self: unset;
    width: unset;
  }
}
@media only screen and (max-width: 600px) {
  #content {
    padding: 0px 0px 0px 0px;
  }
}