/**
 * Plugins
 */
/* Overrides */
.input-group-addon {
  background-color: #F5F9FC;
}

.input-group-addon,
.form-control {
//  border: 1px solid #E4EDF2;
}

/* Overline From Center */
.hvr-overline-from-center {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
}

.hvr-overline-from-center:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  right: 50%;
  top: 0;
  background: #2098d1;
  height: 4px;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.hvr-overline-from-center:hover:before, .hvr-overline-from-center:focus:before, .hvr-overline-from-center:active:before {
  left: 0;
  right: 0;
}

/** LiveChat demo */
#livechat-compact-view {
  display: none;
}

/** Button transitions */
a,
.btn {
  transition: all 0.3s ease 0s;
}

/** Labelauty checkboxes */
input.labelauty + label {
  display: inline-block;
  font-size: 6px;
  padding: 5px;
  background-color: #F5F9FC;
  color: #b3b3b3;
  cursor: pointer;
  border: 1px solid #E4EDF2;
  border-radius: 3px 3px 3px 3px;
  -moz-border-radius: 3px 3px 3px 3px;
  -webkit-border-radius: 3px 3px 3px 3px;
  transition: background-color 0.25s;
  -moz-transition: background-color 0.25s;
  -webkit-transition: background-color 0.25s;
  -o-transition: background-color 0.25s;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
}

input.labelauty:checked + label {
  background-color: #F5F9FC;
  color: #ffffff;
}

input.labelauty:checked:not([disabled]) + label:hover {
  background-color: #E4EDF2;
}

input.labelauty:not(:checked):not([disabled]) + label:hover {
  background-color: #E4EDF2;
  color: #a7a7a7;
}

input.labelauty + label > span.labelauty-unchecked-image {
  background-image: none;
}

input.labelauty + label > span.labelauty-checked-image {
  background-image: url("/images/input-checked.png");
}
