/** EDITOR */

.user__control {
  position: fixed;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  z-index: 1000;
}

.editmode-btn,
.report {
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-bottom: 5px;
  text-align: center;
  background-color: gray;
  color: blue;
  border: 1px solid #ddd;
  border-radius: 50%;
  transition: all 0.2s;
}

.editmode-btn:hover,
.editmode-btn.active {
  background-color: blue;
  color: #fff;
}
.report:hover,
.report.active {
  background-color: blue;
  color: #fff;
}

.edit.--on {
  border: 1px dashed lightblue;
  border-radius: 5px;
  cursor: pointer;
}

.edit.--on:hover {
  border: 1px dashed blue;
}

.edit-content {
  padding: 15px 0;
  margin: 15px 0;
  text-align: center;
}

.edit-content button {
  border: 1px solid #ddd;
  color: gray;
  padding: 5px;
  font-size: 14px;
}

@media only screen and (min-width: 768px) {
  form.signup {
    width: 50%;
    margin: 0 auto;
  }

  form.signup > div:not(:last-child):nth-child(odd) {
    margin-right: 4%;
  }

  form.signup > div:not(:last-child) {
    width: 48%;
    display: inline-block;
  }

  form.signup > div:not(:last-child) > div {
    width: 100%;
  }
}

@supports (-webkit-touch-callout: none) {
  /* CSS specific to iOS devices */
  .MuiButtonBase-root {
    position: relative !important;    
  }
}
