.djauto {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  min-width: 15rem;
}
.djauto.alt {
  flex-direction: column;
}
.djauto.alt .djauto_inner {
  margin: 0;
}
.djauto.haspic .djauto_inner {
  padding: 1rem;
}
.djauto.haspic.sm .djauto_inner {
  padding: 0.3rem;
}
.djauto.haspic.sm .djauto_inner .input {
  padding: 0;
  margin-left: 0.5rem;
}
.djauto.haspic.sm .djauto_inner img.djacpic {
  width: 25px;
  height: 25px;
}
.djauto .djauto_inner {
  position: relative;
  flex: 1 1 100%;
  display: flex;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #ffffff;
  border-radius: 3px;
  padding-right: 2rem;
}
.djauto .djauto_inner .input {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  padding-right: 2rem;
  margin: 0;
  border: none;
  outline: none;
}
.djauto .djauto_inner .input.dropdown {
  cursor: pointer;
}
.djauto .djauto_inner .input[contenteditable]:empty:before {
  content: attr(placeholder);
  pointer-events: none;
  display: block;
  color: rgba(0, 0, 0, 0.4);
  font-weight: 500;
}
.djauto .djauto_inner .input:focus, .djauto .djauto_inner .input:active {
  outline: none;
  border: none;
}
.djauto .djauto_inner:hover {
  border: 1px solid rgba(0, 0, 0, 0.3);
}
.djauto .djauto_inner .addinfo {
  display: none;
}
.djauto .djauto_inner .addinfo.vis {
  display: block;
}
.djauto .djauto_inner .addinfo .layout_pill {
  font-size: 0.75rem;
}
.djauto .djauto_inner .afterinput {
  display: none;
}
.djauto .djauto_inner .afterinput.vis {
  display: block;
}

.djautohint {
  padding: 0;
  overflow-x: hidden;
  background: #fff;
  box-shadow: 0 0.5rem 0.5rem 0.1rem rgba(0, 0, 0, 0.3);
  position: absolute;
  opacity: 0;
  z-index: -1;
  font-size: 0.875rem;
  border-radius: 0 0 3px 3px;
  transition: opacity 0.15s ease-out 0.1s;
  user-select: none;
}
.djautohint table {
  margin: 0;
  text-align: left;
  width: 100%;
  overflow-x: hidden;
  padding: 0.5rem;
  font-size: unset;
}
.djautohint table tr > td {
  cursor: pointer;
  overflow-x: hidden;
  white-space: nowrap;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.djautohint table tr .icon {
  width: 1px; /*forces small*/
  padding: 0.5rem;
  vertical-align: middle;
  opacity: 0.7;
}
.djautohint table tr .icon img.user {
  height: 40px;
  border-radius: 50%;
}
.djautohint table tr .content {
  padding: 0.5rem;
  vertical-align: middle;
  margin-right: 1rem;
}
.djautohint table tr .content span.info {
  color: #2980b9;
  font-size: 0.7rem;
}
.djautohint table tr .content span.value {
  font-weight: 600;
}
.djautohint table tr .content span.value:after {
  content: "";
  clear: both;
  display: block;
}
.djautohint table tr .content img.flag {
  vertical-align: middle;
}
.djautohint table tr .nuinfo {
  padding: 0.5rem;
  text-align: right;
  font-size: 0.8rem;
  white-space: normal;
  max-width: 20rem;
}
.djautohint table tr .nuinfo .layout_pill {
  padding: 0.15rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 600;
}
.djautohint table tr .nuinfo .layout_pill[data-val="0"] {
  background: rgba(128, 0, 0, 0.5);
  color: #ffffff;
}
.djautohint table tr.header td {
  cursor: default;
  padding: 0.5rem;
  padding-top: 1.5rem;
  padding-bottom: 0;
  text-align: center;
  font-weight: bold;
  border: 0;
}
.djautohint table tr.header td > div {
  width: 100%;
  height: 1px;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.djautohint table tr.header:first-child td {
  padding-top: 0.5rem;
}
.djautohint table tr.sel {
  background: #b6ecfa;
}
.djautohint table tr.sel .icon {
  opacity: 1;
}
.djautohint table tr.sel .content span.value {
  color: #000;
}
.djautohint table tr:not(.header):not([sel=true]):hover {
  background: #b6ecfa;
}
.djautohint table tr:not(.header):not([sel=true]):hover .icon {
  opacity: 1;
}
.djautohint table tr:not(.header):not([sel=true]):hover .content span.value {
  color: #000;
}
.djautohint table tr[sel=true] {
  background: #2196F3;
}
.djautohint table tr[sel=true] td {
  color: #ffffff;
}
.djautohint table tr[sel=true] td span.info {
  color: #eeeeee;
}
.djautohint table tr[sel=true] td .layout_pill {
  color: #eeeeee;
}
.djautohint table tr:last-child > td {
  border-color: transparent;
}
.djautohint.fastclose {
  display: none;
}
.djautohint.vis {
  opacity: 1;
  z-index: 99999999999999;
  max-height: 50vh;
  overflow-y: auto;
}

.djac {
  padding: 0.5rem;
  margin-top: 0.6rem;
  margin-bottom: 0.6rem;
  display: inline-block;
  position: relative;
}
.djac.fleft {
  float: left;
  width: 70%;
}

.djac_pic_left {
  margin-right: 1rem;
}

.djac_pic_right {
  margin-left: 1rem;
}

.djacpic {
  height: 40px;
  width: 40px;
  display: inline-block;
  vertical-align: middle;
  border-radius: 50%;
}
.djacpic .user {
  height: 40px;
  width: 40px;
}

.djac_spin {
  position: absolute;
  padding: 0;
  margin: 0;
  font-size: 1.2rem;
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  line-height: 1.2rem;
  text-align: center;
  /*margin-left: -1.5rem;*/
  opacity: 0;
  right: 0.3rem;
  top: 50%;
  margin-top: -0.6rem;
  z-index: -1;
  color: #1a1a1a;
}
.djac_spin.vis {
  opacity: 1;
  z-index: 10;
}
.djac_spin.inverse {
  color: #ffffff;
}

.djac_indicator {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(-0.3rem, -50%);
  font-size: 1.2rem;
  display: block;
  padding: 0;
  margin: 0;
  width: 1.2rem;
  height: 1.2rem;
  line-height: 1.2rem;
  z-index: 5;
  text-align: center;
  /*margin-left: -1.5rem;*/
  opacity: 1;
  color: #1a1a1a;
  cursor: pointer;
}

/*# sourceMappingURL=modules-layout-scss-djac.css.map */
