/* 3d User Notes */
textarea.notes {
  float: left;
  padding: 10px;
  margin-bottom: 12px;
}

#create {
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  padding: 5px;
  border-radius: 20px;
  text-align: center;
  border: 6px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  color: rgba(0, 0, 0, 0.1);
  font: 50px "Helvetica", sans-serif;
  line-height: 110px;
  width: 70px;
  height: 70px !important;
  resize: both !important;
}
.dark-version #create{
  border: 6px solid rgba(256, 256, 256, 0.1);
  color: white;
}

#create:hover {
  border-color: rgba(0, 0, 0, 0.2);
  color: rgba(0, 0, 0, 0.2);
}
.dark-version #create:hover {
  border-color: rgba(256, 256, 256, 0.2);
  color: rgba(256, 256, 256, 0.2);
}

textarea.notes {
  border: 0;
  /* background: linear-gradient(#fbf4c7, #f9f0af); */
  background: #fffddc;
  overflow: hidden;
  width: 100%;
  min-height: 120px !important;
  /* resize: both !important; */
}
.dark-version textarea.notes {
  background: #FDDDE610;
  color: #fff
}
