@keyframes habfur-button__busy-animation {
  0% {
    background-position: 200px 0;
  }
}
.habfur-button.is-busy,
.habfur-button.is-busy:hover,
.habfur-button.is-busy:active,
.habfur-button.is-busy:focus {
  animation: habfur-button__busy-animation 2.5s linear infinite;
  background-image: linear-gradient(
    -45deg,
    #007cba 33%,
    #005a87 0,
    #005a87 70%,
    #007cba 0
  );
}
.habfur-wrap {
  position: relative;
  margin: 15px 40px 0 10px;
  font-size: 15px;
}
.habfur-wrap .about-text {
  margin-top: 12px;
  margin-bottom: 12px;
}
.habfur-wrap .nav-tab {
  padding-right: 15px;
  padding-left: 15px;
  font-size: 18px;
  line-height: 1.33333333;
}
.habfur-wrap h1 {
  margin: 0.2em 200px 0 0;
  padding: 0;
  color: #32373c;
  line-height: 1.2;
  font-size: 2.8em;
  font-weight: 400;
  margin-bottom: 10px;
}
.habfur-wrap h2 {
  font-size: 2.7em;
  font-weight: 300;
  text-align: center;
}
.habfur-row {
  clear: both;
  display: block;
}
.habfur-col-12 {
  float: left;
  position: relative;
  width: 98%;
  padding: 15px 10px 15px 0;
  border-bottom: 1px solid #ddd;
}
.habfur-col-7 {
  width: 60%;
  max-width: 60%;
  display: inline-block;
  position: relative;
}
.habfur-col-5 {
  width: 41%;
  max-width: 41%;
  display: inline-block;
  position: relative;
  vertical-align: top;
}
.habfur-no-border {
  border: none;
}
.habfur-m-l-7 {
  margin-left: 7px;
}
.habfur-setting-label {
  font-weight: 600;
  width: 40%;
  display: inline-block;
  color: #111;
  vertical-align: top;
  margin-top: 7px;
}
.habfur-setting-item {
  display: inline-block;
  position: relative;
  width: 55%;
}
.habfur-setting-item select {
  vertical-align: top;
}
.habfur-tabs input[type="text"],
.habfur-tabs input[type="password"] {
  width: 300px;
  height: 30px;
}
.habfur-tabs input.small-text {
  width: 100px;
}
.habfur-tabs small {
  display: block;
  font-size: 10px;
}
.habfur-save-settings-container {
  clear: both;
  padding-top: 20px;
}
.habfur-save-settings-container .button-large {
  height: 40px !important;
  font-size: 16px;
}
.habfur-role-name small {
  display: inline-block;
  vertical-align: text-bottom;
}
#habfur-error-message {
  position: relative;
  display: inline-block;
  margin-left: 10px;
}
#habfur-error-message .updated,
#habfur-error-message .error {
  display: block !important;
  margin-top: 0px !important;
}
#habfur-error-message p {
  margin: 4px;
}
#habfur-help {
  display: none;
}

/* Switch Checkbox */
.habfur-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.habfur-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.habfur-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.habfur-slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
input:checked + .habfur-slider {
  background-color: #2196f3;
}
input:focus + .habfur-slider {
  box-shadow: 0 0 1px #2196f3;
}
input:checked + .habfur-slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
.habfur-slider.habfur-round {
  border-radius: 34px;
}
.habfur-slider.habfur-round:before {
  border-radius: 50%;
}
