@charset "UTF-8";
/* FORM */
.form.disabled {
  position: relative;
}
.form.disabled::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/* BUTTONS */
[type=submit][disabled=disabled] {
  background-color: #aaa !important;
  border-color: #aaa !important;
  color: #fff !important;
  cursor: default !important;
  transition: none !important;
}
[type=submit][disabled=disabled]::before, [type=submit][disabled=disabled]::after {
  color: #fff !important;
}

/* NOTIFICATIONS */
.notif {
  display: inline-block;
  font-size: 15px;
  margin-top: 4px;
  padding-left: 25px;
  position: relative;
}
.notif::before, .notif::after {
  content: "";
  border-radius: 100px;
  position: absolute;
  left: 8px;
  top: 11px;
  height: 6px;
  width: 6px;
  transform: translate(-50%, -50%);
}
.notif::after {
  -webkit-animation: growTransp 1s infinite backwards;
  animation: growTransp 1s infinite backwards;
}

.notif--success {
  color: #05b75e;
}
.notif--success::before, .notif--success::after {
  background-color: #05b75e;
}

.notif--danger {
  color: #ef475b;
}
.notif--danger::before, .notif--danger::after {
  background-color: #ef475b;
}

.notif--main {
  margin-bottom: 15px;
  margin-left: 1rem;
}

.checkbox-wrap input[type=checkbox] {
  display: none;
}

.checkbox-wrap input[type=checkbox] + label {
  color: #34495e;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
}

.checkbox-wrap input[type=checkbox] + label::before {
  content: "✓";
  border: 0.1em solid #34495e;
  border-radius: 0.2em;
  color: transparent;
  display: inline-block;
  flex-shrink: 0;
  line-height: 0;
  margin-right: 0.5em;
  padding: 9px 4px;
  vertical-align: bottom;
  transition: 0.2s;
}

.checkbox-wrap input[type=checkbox] + label:active::before {
  transform: scale(0);
}

.checkbox-wrap input[type=checkbox]:checked + label {
  color: #05b75e;
}

.checkbox-wrap input[type=checkbox]:checked + label::before {
  background-color: #05b75e;
  border-color: #05b75e;
  color: #fff;
}

@-webkit-keyframes growTransp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    height: 20px;
    width: 20px;
  }
}
@keyframes growTransp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    height: 20px;
    width: 20px;
  }
}
