form div.error {
  font-size: 12px;
  color: #f00;
  margin-top: 4px;
}
@-webkit-keyframes move {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 50px 50px;
  }
}
@-moz-keyframes move {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 50px 50px;
  }
}
@-ms-keyframes move {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 50px 50px;
  }
}
@keyframes move {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 50px 50px;
  }
}

.button.wait,
.button.wait:hover {
  background-color: transparent !important;
  border-color: #000 !important;
  color: #000 !important;
  background-image: -webkit-linear-gradient(
    -45deg,
    rgba(0, 0, 0, 0.5) 25%,
    transparent 25%,
    transparent 50%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.5) 75%,
    transparent 75%,
    transparent
  );
  background-image: -moz-linear-gradient(
    -45deg,
    rgba(0, 0, 0, 0.5) 25%,
    transparent 25%,
    transparent 50%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.5) 75%,
    transparent 75%,
    transparent
  );
  background-image: -ms-linear-gradient(
    -45deg,
    rgba(0, 0, 0, 0.5) 25%,
    transparent 25%,
    transparent 50%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.5) 75%,
    transparent 75%,
    transparent
  );
  background-image: linear-gradient(
    -45deg,
    rgba(0, 0, 0, 0.5) 25%,
    transparent 25%,
    transparent 50%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.5) 75%,
    transparent 75%,
    transparent
  );
}

form .fieldset-group p {
  font-size: 12px;
}

form .group {
  display: flex;
  flex-wrap: wrap;
  padding: 10px 0;
}

form .fieldset-group label {
  width: 50%;
  margin: 6px 0;
}

.dashboard-form {
  display: none;
}
.dashboard-form-active {
  display: block;
}

.dashboard-form .is-invalid + .mdl-textfield__error {
  visibility: visible;
  top: 20px;
  left: 0;
  margin-top: 0;
}

.dashboard-form input[type="text"].is-invalid,
.dashboard-form input[type="mail"].is-invalid,
.dashboard-form input[type="password"].is-invalid,
.dashboard-form textarea.is-invalid {
  border-color: rgba(200, 0, 0, 0.75);
  transition: border-color 0.25s ease-out;
}

.dashboard-form input[type="text"],
.dashboard-form input[type="mail"],
.dashboard-form input[type="password"],
.dashboard-form select {
  border-radius: 30px;
  height: 45px;
  padding: 0 20px;
  border: 2px solid #e7e7e7;
  max-width: 360px;
}

.dashboard-form select {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  padding-right: 35px;
}
.dashboard-form select::-ms-expand {
  display: none;
}

.dashboard-form .select-block {
  display: block;
  max-width: 360px;
  width: 100%;
  position: relative;
}
.dashboard-form .select-block::after {
  content: "\e806";
  font: 14px "icons";
  color: #333;
  right: 15px;

  top: 16px;

  position: absolute;
  pointer-events: none;
}

.dashboard-form textarea {
  border-radius: 15px;
  padding: 10px 20px;
  border: 2px solid #e7e7e7;
  max-width: 360px;
  min-height: 160px;
}

.dashboard-form input:disabled {
  background: #e7e7e7;
  font-weight: bold;
  pointer-events: none;
  user-select: none;
}

.dashboard-form .fieldset {
  margin-bottom: 20px;
  position: relative;
}

.dashboard-form .fieldset input {
  margin-bottom: 15px;
}
.dashboard-form .fieldset label {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 16px;
  color: #000;
}

.dashboard-form button,
.dashboard-form .button,
.dashboard-form input[type="submit"] {
  font-size: 14px;
  padding: 15px 25px;
  color: #fff;
  background-color: #307dff;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-weight: bold;

  transition: background-color 0.25s ease-out;
}
.dashboard-form button:hover,
.dashboard-form .button:hover,
.dashboard-form input[type="submit"]:hover {
  background-color: #5494ff;
}
.dashboard-form label {
  position: relative;
}
.dashboard-form label span {
  vertical-align: super;
}
.dashboard-form input[type="checkbox"] + span::before {
  content: "";
  position: relative;
  width: 22px;
  height: 22px;
  min-width: 22px;
  min-height: 22px;
  display: inline-block;
  border: 2px solid #cfcfcf;
  box-sizing: border-box;
  border-radius: 11px;
  margin-right: 10px;

  transition: border-color 0.15s ease-out;
}

.dashboard-form input[type="checkbox"] + span::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: #fff;
  border-radius: 7px;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);

  transition: background 0.15s ease-out;
}

.dashboard-form input[type="checkbox"]:checked + span::before {
  border: 2px solid #3593ff;
}
.dashboard-form input[type="checkbox"]:hover + span::after {
  background-color: #cfcfcf;
}
.dashboard-form input[type="checkbox"]:checked + span::after {
  background-color: #3593ff;
}

.dashboard-form .fieldset-group {
  padding-top: 20px;
}

.dashboard-form .fieldset-group label {
  margin-bottom: 10px;
  display: block;
}
.dashboard-form .fieldset-group label span {
  display: flex;
  align-items: center;
  position: relative;
}
.dashboard-form .fieldset-group label input {
  margin-bottom: 0;
  -webkit-appearance: none;
  appearance: none;
  opacity: 0;
}

.dashboard-form .table-checkbox .fieldset-group {
  padding: 0;
}

.dashboard-form .table-checkbox .fieldset-group label {
  margin: 0;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.table-checkbox {
  width: 100%;
  margin-bottom: 30px;
}
.table-checkbox th {
  white-space: nowrap;
  min-width: 140px;
  padding-bottom: 15px;
  color: #767676;
}
.table-checkbox th:first-letter {
  text-transform: uppercase;
}
.table-checkbox .fieldset-group label .title {
  display: none;
}

.table-checkbox tr td {
  padding: 25px 0;
  vertical-align: middle;
  border-bottom: 1px solid #f0f0f0;
}

.table-checkbox .projectName {
  width: 100%;
  text-align: left;
}

.table-checkbox .projectInput {
  flex: 1;
  position: relative;
}

.table-checkbox .projectInput::after {
  content: "";
  position: absolute;
  right: 1px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 22px;
  background: #f0f0f0;
}

.table-checkbox .projectInput:last-child::after {
  display: none;
}

@media (max-width: 1200px) {
  .table-checkbox,
  .table-checkbox tbody {
    display: block;
  }
  .table-checkbox thead {
    display: none;
  }
  .table-checkbox tr,
  .table-checkbox td {
    display: block;
  }
  .table-checkbox .fieldset-group label {
  }
  .dashboard-form .table-checkbox .fieldset-group label {
    display: flex;
    justify-content: flex-start;
  }
  .table-checkbox .fieldset-group label .title {
    display: block;
  }
  .table-checkbox .projectName {
  }
  .table-checkbox .projectInput {
    padding-left: 30px;
  }
  .table-checkbox .projectInput:last-child {
    border: none;
  }
  .table-checkbox .projectInput::after {
    display: none;
  }
}
