#edit {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  padding: 4px;
  margin: 4px;
  background: #fcfdfe;
          box-shadow: 0.1rem 0.3rem 0.5rem rgba(64, 64, 64, 0.4);
  -webkit-box-shadow: 0.1rem 0.3rem 0.5rem rgba(64, 64, 64, 0.4);
     -moz-box-shadow: 0.1rem 0.3rem 0.5rem rgba(64, 64, 64, 0.4);
      -ms-box-shadow: 0.1rem 0.3rem 0.5rem rgba(64, 64, 64, 0.4);
  overflow-y: auto;
  z-index: 20;
}
#edit>header {
  position: fixed;
  top: 0;
  right: 4px;
  width: 280px;
  /* background: #f2f3f4; */
  color: #808080;
  background-image: linear-gradient(to bottom right,#efefef , #fcfdfe);
  z-index: 1;
}
#edit-generic {
  padding: 8px;
}
#editDismiss {
  position: absolute;
  top: 16px;
  right: 12px;
}
#edit header h2:hover #editIcon {
  display: none;
}
#edit header h2 #editSave {
  display: none;
}
#edit header h2:hover #editSave {
  display: inline-block;
}
#infoOpen {
  position: absolute;
  top: 16px;
  right: 32px;
}

#edit .fa,
#edit .fas,
#edit .fab,
#edit .far {
  color: #808080;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
#edit .fa:hover,
#edit .fas:hover,
#edit .fab:hover,
#edit .far:hover  {
  color: rgb(77, 179, 205);
  text-shadow: 0em 0.1em 0.1em rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

#edit .content {
  margin-top: 50px;
}

#edit input,
#edit textarea,
#edit select {
  background: #fcfdfe;
  border-top: none;
  border-right: none;
  border-bottom: 1px solid #cdcdcd;
  border-left: none;
  margin-top: 4px;
  padding: 4px;
}

#edit textarea {
  position: relative
}

#edit textarea::placeholder {
  white-space: pre-wrap;
}

/* dropdown fallback */
#edit .dropdown {
  position: relative;
}

#edit .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: auto;
  z-index: 10000;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .15);
}

#edit .dropdown-menu.show {
  display: block;
}
