.am-offcanvas {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1090;
  background: rgba(0, 0, 0, 0.15);
}
.am-offcanvas.am-active {
  display: block;
}
/**
 * .@{ns}offcanvas-page
 *
 * Prepares the whole HTML page to slide-out
 * 1. Fix the main page and disallow scrolling
 * 2. Side-out transition
 */
.am-offcanvas-page {
  position: fixed;
  /* 1 */
  -webkit-transition: margin-left 0.3s ease-in-out;
  transition: margin-left 0.3s ease-in-out;
  /* 2 */
}
/* Sub-object .@{ns}offcanvas-bar */
.am-offcanvas-bar {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 1091;
  width: 270px;
  max-width: 100%;
  background: #333;
  overflow-y: auto;
  /* scrollable */
  -webkit-overflow-scrolling: touch;
  /* scrollable */
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
}
.am-offcanvas-bar:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 1px;
  background: #262626;
}
.am-offcanvas.am-active .am-offcanvas-bar.am-offcanvas-bar-active {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
/* .@{ns}offcanvas-bar-flip */
.am-offcanvas-bar-flip {
  left: auto;
  right: 0;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}
.am-offcanvas-bar-flip:after {
  right: auto;
  left: 0;
}
.am-offcanvas-content {
  padding: 15px;
  color: #999;
}
.am-offcanvas-content a {
  color: #ccc;
}
.lte8 .am-offcanvas.am-active {
  background: #000;
}
.am-btn {
  display: inline-block;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal;
  text-align: center;
  white-space: nowrap;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: background-color 300ms ease-out, border-color 300ms ease-out;
  transition: background-color 300ms ease-out, border-color 300ms ease-out;
}
.am-btn:focus,
.am-btn:active:focus {
  outline: thin dotted;
  outline: 1px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.am-btn:hover,
.am-btn:focus {
  color: #444;
  text-decoration: none;
}
.am-btn:active,
.am-btn.am-active {
  background-image: none;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.15);
          box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.15);
}
.am-btn.am-disabled,
.am-btn[disabled],
fieldset[disabled] .am-btn {
  pointer-events: none;
  border-color: transparent;
  cursor: not-allowed;
  opacity: 0.45;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.am-btn.am-round {
  border-radius: 1000px;
}
.am-btn.am-radius {
  border-radius: 2px;
}
.am-btn-default {
  color: #444;
  background-color: #e6e6e6;
  border-color: #e6e6e6;
}
a.am-btn-default:visited {
  color: #444;
}
.am-btn-default:hover,
.am-btn-default:focus,
.am-btn-default:active,
.am-btn-default.am-active,
.am-dropdown.am-active .am-btn-default.am-dropdown-toggle {
  color: #444;
  border-color: #c7c7c7;
}
.am-btn-default:hover,
.am-btn-default:focus {
  background-color: #d4d4d4;
}
.am-btn-default:active,
.am-btn-default.am-active,
.am-dropdown.am-active .am-btn-default.am-dropdown-toggle {
  background-image: none;
  background-color: #c2c2c2;
}
.am-btn-default.am-disabled,
.am-btn-default[disabled],
fieldset[disabled] .am-btn-default,
.am-btn-default.am-disabled:hover,
.am-btn-default[disabled]:hover,
fieldset[disabled] .am-btn-default:hover,
.am-btn-default.am-disabled:focus,
.am-btn-default[disabled]:focus,
fieldset[disabled] .am-btn-default:focus,
.am-btn-default.am-disabled:active,
.am-btn-default[disabled]:active,
fieldset[disabled] .am-btn-default:active,
.am-btn-default.am-disabled.am-active,
.am-btn-default[disabled].am-active,
fieldset[disabled] .am-btn-default.am-active {
  background-color: #e6e6e6;
  border-color: #e6e6e6;
}
.am-btn-group .am-btn-default,
.am-btn-group-stacked .am-btn-default {
  border-color: #d9d9d9;
}
.am-btn-primary {
  color: #fff;
  background-color: #0e90d2;
  border-color: #0e90d2;
}
a.am-btn-primary:visited {
  color: #fff;
}
.am-btn-primary:hover,
.am-btn-primary:focus,
.am-btn-primary:active,
.am-btn-primary.am-active,
.am-dropdown.am-active .am-btn-primary.am-dropdown-toggle {
  color: #fff;
  border-color: #0a6999;
}
.am-btn-primary:hover,
.am-btn-primary:focus {
  background-color: #0c79b1;
}
.am-btn-primary:active,
.am-btn-primary.am-active,
.am-dropdown.am-active .am-btn-primary.am-dropdown-toggle {
  background-image: none;
  background-color: #0a628f;
}
.am-btn-primary.am-disabled,
.am-btn-primary[disabled],
fieldset[disabled] .am-btn-primary,
.am-btn-primary.am-disabled:hover,
.am-btn-primary[disabled]:hover,
fieldset[disabled] .am-btn-primary:hover,
.am-btn-primary.am-disabled:focus,
.am-btn-primary[disabled]:focus,
fieldset[disabled] .am-btn-primary:focus,
.am-btn-primary.am-disabled:active,
.am-btn-primary[disabled]:active,
fieldset[disabled] .am-btn-primary:active,
.am-btn-primary.am-disabled.am-active,
.am-btn-primary[disabled].am-active,
fieldset[disabled] .am-btn-primary.am-active {
  background-color: #0e90d2;
  border-color: #0e90d2;
}
.am-btn-group .am-btn-primary,
.am-btn-group-stacked .am-btn-primary {
  border-color: #0c80ba;
}
.am-btn-secondary {
  color: #fff;
  background-color: #3bb4f2;
  border-color: #3bb4f2;
}
a.am-btn-secondary:visited {
  color: #fff;
}
.am-btn-secondary:hover,
.am-btn-secondary:focus,
.am-btn-secondary:active,
.am-btn-secondary.am-active,
.am-dropdown.am-active .am-btn-secondary.am-dropdown-toggle {
  color: #fff;
  border-color: #0f9ae0;
}
.am-btn-secondary:hover,
.am-btn-secondary:focus {
  background-color: #19a7f0;
}
.am-btn-secondary:active,
.am-btn-secondary.am-active,
.am-dropdown.am-active .am-btn-secondary.am-dropdown-toggle {
  background-image: none;
  background-color: #0e93d7;
}
.am-btn-secondary.am-disabled,
.am-btn-secondary[disabled],
fieldset[disabled] .am-btn-secondary,
.am-btn-secondary.am-disabled:hover,
.am-btn-secondary[disabled]:hover,
fieldset[disabled] .am-btn-secondary:hover,
.am-btn-secondary.am-disabled:focus,
.am-btn-secondary[disabled]:focus,
fieldset[disabled] .am-btn-secondary:focus,
.am-btn-secondary.am-disabled:active,
.am-btn-secondary[disabled]:active,
fieldset[disabled] .am-btn-secondary:active,
.am-btn-secondary.am-disabled.am-active,
.am-btn-secondary[disabled].am-active,
fieldset[disabled] .am-btn-secondary.am-active {
  background-color: #3bb4f2;
  border-color: #3bb4f2;
}
.am-btn-group .am-btn-secondary,
.am-btn-group-stacked .am-btn-secondary {
  border-color: #23abf0;
}
.am-btn-warning {
  color: #fff;
  background-color: #F37B1D;
  border-color: #F37B1D;
}
a.am-btn-warning:visited {
  color: #fff;
}
.am-btn-warning:hover,
.am-btn-warning:focus,
.am-btn-warning:active,
.am-btn-warning.am-active,
.am-dropdown.am-active .am-btn-warning.am-dropdown-toggle {
  color: #fff;
  border-color: #c85e0b;
}
.am-btn-warning:hover,
.am-btn-warning:focus {
  background-color: #e0690c;
}
.am-btn-warning:active,
.am-btn-warning.am-active,
.am-dropdown.am-active .am-btn-warning.am-dropdown-toggle {
  background-image: none;
  background-color: #be590a;
}
.am-btn-warning.am-disabled,
.am-btn-warning[disabled],
fieldset[disabled] .am-btn-warning,
.am-btn-warning.am-disabled:hover,
.am-btn-warning[disabled]:hover,
fieldset[disabled] .am-btn-warning:hover,
.am-btn-warning.am-disabled:focus,
.am-btn-warning[disabled]:focus,
fieldset[disabled] .am-btn-warning:focus,
.am-btn-warning.am-disabled:active,
.am-btn-warning[disabled]:active,
fieldset[disabled] .am-btn-warning:active,
.am-btn-warning.am-disabled.am-active,
.am-btn-warning[disabled].am-active,
fieldset[disabled] .am-btn-warning.am-active {
  background-color: #F37B1D;
  border-color: #F37B1D;
}
.am-btn-group .am-btn-warning,
.am-btn-group-stacked .am-btn-warning {
  border-color: #ea6e0c;
}
.am-btn-danger {
  color: #fff;
  background-color: #dd514c;
  border-color: #dd514c;
}
a.am-btn-danger:visited {
  color: #fff;
}
.am-btn-danger:hover,
.am-btn-danger:focus,
.am-btn-danger:active,
.am-btn-danger.am-active,
.am-dropdown.am-active .am-btn-danger.am-dropdown-toggle {
  color: #fff;
  border-color: #c62b26;
}
.am-btn-danger:hover,
.am-btn-danger:focus {
  background-color: #d7342e;
}
.am-btn-danger:active,
.am-btn-danger.am-active,
.am-dropdown.am-active .am-btn-danger.am-dropdown-toggle {
  background-image: none;
  background-color: #be2924;
}
.am-btn-danger.am-disabled,
.am-btn-danger[disabled],
fieldset[disabled] .am-btn-danger,
.am-btn-danger.am-disabled:hover,
.am-btn-danger[disabled]:hover,
fieldset[disabled] .am-btn-danger:hover,
.am-btn-danger.am-disabled:focus,
.am-btn-danger[disabled]:focus,
fieldset[disabled] .am-btn-danger:focus,
.am-btn-danger.am-disabled:active,
.am-btn-danger[disabled]:active,
fieldset[disabled] .am-btn-danger:active,
.am-btn-danger.am-disabled.am-active,
.am-btn-danger[disabled].am-active,
fieldset[disabled] .am-btn-danger.am-active {
  background-color: #dd514c;
  border-color: #dd514c;
}
.am-btn-group .am-btn-danger,
.am-btn-group-stacked .am-btn-danger {
  border-color: #d93c37;
}
.am-btn-success {
  color: #fff;
  background-color: #5eb95e;
  border-color: #5eb95e;
}
a.am-btn-success:visited {
  color: #fff;
}
.am-btn-success:hover,
.am-btn-success:focus,
.am-btn-success:active,
.am-btn-success.am-active,
.am-dropdown.am-active .am-btn-success.am-dropdown-toggle {
  color: #fff;
  border-color: #429842;
}
.am-btn-success:hover,
.am-btn-success:focus {
  background-color: #4aaa4a;
}
.am-btn-success:active,
.am-btn-success.am-active,
.am-dropdown.am-active .am-btn-success.am-dropdown-toggle {
  background-image: none;
  background-color: #3f913f;
}
.am-btn-success.am-disabled,
.am-btn-success[disabled],
fieldset[disabled] .am-btn-success,
.am-btn-success.am-disabled:hover,
.am-btn-success[disabled]:hover,
fieldset[disabled] .am-btn-success:hover,
.am-btn-success.am-disabled:focus,
.am-btn-success[disabled]:focus,
fieldset[disabled] .am-btn-success:focus,
.am-btn-success.am-disabled:active,
.am-btn-success[disabled]:active,
fieldset[disabled] .am-btn-success:active,
.am-btn-success.am-disabled.am-active,
.am-btn-success[disabled].am-active,
fieldset[disabled] .am-btn-success.am-active {
  background-color: #5eb95e;
  border-color: #5eb95e;
}
.am-btn-group .am-btn-success,
.am-btn-group-stacked .am-btn-success {
  border-color: #4db14d;
}
/* Style links like a button */
.am-btn-link {
  color: #0e90d2;
  font-weight: normal;
  cursor: pointer;
  border-radius: 0;
}
.am-btn-link,
.am-btn-link:active,
.am-btn-link[disabled],
fieldset[disabled] .am-btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.am-btn-link,
.am-btn-link:hover,
.am-btn-link:focus,
.am-btn-link:active {
  border-color: transparent;
}
.am-btn-link:hover,
.am-btn-link:focus {
  color: #095f8a;
  text-decoration: underline;
  background-color: transparent;
}
.am-btn-link[disabled]:hover,
fieldset[disabled] .am-btn-link:hover,
.am-btn-link[disabled]:focus,
fieldset[disabled] .am-btn-link:focus {
  color: #999999;
  text-decoration: none;
}
/* button size */
.am-btn-xs {
  font-size: 1.2rem;
}
.am-btn-sm {
  font-size: 1.4rem;
}
.am-btn-lg {
  font-size: 1.8rem;
}
.am-btn-xl {
  font-size: 2rem;
}
/* Block button  */
.am-btn-block {
  display: block;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
/* Multiple block buttons vertically space */
.am-btn-block + .am-btn-block {
  margin-top: 5px;
}
/* Specificity overrides */
input[type="submit"].am-btn-block,
input[type="reset"].am-btn-block,
input[type="button"].am-btn-block {
  width: 100%;
}
/* Button with loading spinner */
.am-btn.am-btn-loading .am-icon-spin {
  margin-right: 5px;
}
@media only screen and (min-width:641px) {
  .am-topbar-form {
    padding: 0 10px;
    margin-top: 8px;
  }
  .am-topbar-form .am-form-group + .am-btn {
    margin-left: 5px;
  }
}
.am-topbar-btn {
  margin-top: 8px;
}
@media only screen and (max-width: 640px) {
  .am-topbar-collapse .am-topbar-btn,
  .am-topbar-collapse .am-btn {
    display: block;
    width: 100%;
  }
}
.am-btn-group,
.am-btn-group-stacked {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.am-btn-group > .am-btn,
.am-btn-group-stacked > .am-btn {
  position: relative;
  float: left;
}
.am-btn-group > .am-btn:hover,
.am-btn-group-stacked > .am-btn:hover,
.am-btn-group > .am-btn:focus,
.am-btn-group-stacked > .am-btn:focus,
.am-btn-group > .am-btn:active,
.am-btn-group-stacked > .am-btn:active,
.am-btn-group > .am-btn.active,
.am-btn-group-stacked > .am-btn.active {
  z-index: 2;
}
.am-btn-group > .am-btn:focus,
.am-btn-group-stacked > .am-btn:focus {
  outline: 0;
}
.am-btn-group .am-btn + .am-btn,
.am-btn-group .am-btn + .am-btn-group,
.am-btn-group .am-btn-group + .am-btn,
.am-btn-group .am-btn-group + .am-btn-group {
  margin-left: -1px;
}
.am-btn-toolbar {
  margin-left: -5px;
}
.am-btn-toolbar:before,
.am-btn-toolbar:after {
  content: " ";
  display: table;
}
.am-btn-toolbar:after {
  clear: both;
}
.am-btn-toolbar .am-btn-group,
.am-btn-toolbar .am-input-group {
  float: left;
}
.am-btn-toolbar > .am-btn,
.am-btn-toolbar > .am-btn-group,
.am-btn-toolbar > .am-input-group {
  margin-left: 5px;
}
.am-btn-group > .am-btn:not(:first-child):not(:last-child):not(.am-dropdown-toggle) {
  border-radius: 0;
}
.am-btn-group > .am-btn:first-child {
  margin-left: 0;
}
.am-btn-group > .am-btn:first-child:not(:last-child):not(.am-dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.am-btn-group > .am-btn:last-child:not(:first-child),
.am-btn-group > .am-dropdown-toggle:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.am-btn-group > .am-btn-group {
  float: left;
}
.am-btn-group > .am-btn-group:not(:first-child):not(:last-child) > .am-btn {
  border-radius: 0;
}
.am-btn-group > .am-btn-group:first-child > .am-btn:last-child,
.am-btn-group > .am-btn-group:first-child > .am-dropdown-toggle {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.am-btn-group > .am-btn-group:last-child > .am-btn:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.am-btn-group-xs > .am-btn {
  font-size: 1.2rem;
}
.am-btn-group-sm > .am-btn {
  font-size: 1.4rem;
}
.am-btn-group-lg > .am-btn {
  font-size: 1.8rem;
}
.am-btn-group-stacked > .am-btn,
.am-btn-group-stacked > .am-btn-group,
.am-btn-group-stacked > .am-btn-group > .am-btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}
.am-btn-group-stacked > .am-btn-group:before,
.am-btn-group-stacked > .am-btn-group:after {
  content: " ";
  display: table;
}
.am-btn-group-stacked > .am-btn-group:after {
  clear: both;
}
.am-btn-group-stacked > .am-btn-group > .am-btn {
  float: none;
}
.am-btn-group-stacked > .am-btn + .am-btn,
.am-btn-group-stacked > .am-btn + .am-btn-group,
.am-btn-group-stacked > .am-btn-group + .am-btn,
.am-btn-group-stacked > .am-btn-group + .am-btn-group {
  margin-top: -1px;
  margin-left: 0;
}
.am-btn-group-stacked > .am-btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.am-btn-group-stacked > .am-btn:first-child:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.am-btn-group-stacked > .am-btn:last-child:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.am-btn-group-stacked > .am-btn-group:not(:first-child):not(:last-child) > .am-btn {
  border-radius: 0;
}
.am-btn-group-stacked > .am-btn-group:first-child:not(:last-child) > .am-btn:last-child,
.am-btn-group-stacked > .am-btn-group:first-child:not(:last-child) > .am-dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.am-btn-group-stacked > .am-btn-group:last-child:not(:first-child) > .am-btn:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.am-btn-group-justify {
  display: table;
  table-layout: fixed;
  border-collapse: separate;
  width: 100%;
}
.am-btn-group-justify > .am-btn,
.am-btn-group-justify > .am-btn-group {
  float: none;
  display: table-cell;
  width: 1%;
}
.am-btn-group-justify > .am-btn-group .am-btn {
  width: 100%;
}
.lte9 .am-btn-group-justify {
  display: table;
  table-layout: fixed;
  border-collapse: separate;
}
.lte9 .am-btn-group-justify > .am-btn,
.lte9 .am-btn-group-justify > .am-btn-group {
  float: none;
  display: table-cell;
  width: 1%;
}
.am-btn-group .am-dropdown {
  float: left;
  margin-left: -1px;
}
.am-btn-group .am-dropdown > .am-btn {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.am-btn-group .am-active .am-dropdown-toggle {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
          box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.am-btn-group .am-active .am-dropdown-toggle.am-btn-link {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.am-btn-group .am-dropdown-toggle:active,
.am-btn-group .am-active .am-dropdown-toggle {
  outline: 0;
}
[data-am-button] > .am-btn > input[type="radio"],
[data-am-button] > .am-btn > input[type="checkbox"],
.am-btn-group-check > .am-btn > input[type="radio"],
.am-btn-group-check > .am-btn > input[type="checkbox"] {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.am-input-group .am-form-field:first-child,
.am-input-group-label:first-child,
.am-input-group-btn:first-child > .am-btn,
.am-input-group-btn:first-child > .am-btn-group > .am-btn,
.am-input-group-btn:first-child > .am-dropdown-toggle,
.am-input-group-btn:last-child > .am-btn:not(:last-child):not(.dropdown-toggle),
.am-input-group-btn:last-child > .am-btn-group:not(:last-child) > .am-btn {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.am-input-group-label:first-child {
  border-right: 0;
}
.am-input-group .am-form-field:last-child,
.am-input-group-label:last-child,
.am-input-group-btn:last-child > .am-btn,
.am-input-group-btn:last-child > .am-btn-group > .am-btn,
.am-input-group-btn:last-child > .am-dropdown-toggle,
.am-input-group-btn:first-child > .am-btn:not(:first-child),
.am-input-group-btn:first-child > .am-btn-group:not(:first-child) > .am-btn {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.am-input-group-label:last-child {
  border-left: 0;
}
.am-input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}
.am-input-group-btn > .am-btn {
  position: relative;
  border-color: #ccc;
}
.am-input-group-btn > .am-btn + .am-btn {
  margin-left: -1px;
}
.am-input-group-btn > .am-btn:hover,
.am-input-group-btn > .am-btn:focus,
.am-input-group-btn > .am-btn:active {
  z-index: 2;
}
.am-input-group-btn:first-child > .am-btn,
.am-input-group-btn:first-child > .am-btn-group {
  margin-right: -2px;
}
.am-input-group-btn:last-child > .am-btn,
.am-input-group-btn:last-child > .am-btn-group {
  margin-left: -1px;
}
.am-input-group .am-form-field,
.am-input-group-btn > .am-btn {
  height: 38px;
  padding-bottom: auto;
}
.am-input-group-lg > .am-form-field,
.am-input-group-lg > .am-input-group-label,
.am-input-group-lg > .am-input-group-btn > .am-btn {
  height: 42px;
  font-size: 1.8rem !important;
}
.am-input-group-lg > .am-input-group-label {
  line-height: 40px;
}
.am-input-group-sm > .am-form-field,
.am-input-group-sm > .am-input-group-label,
.am-input-group-sm > .am-input-group-btn > .am-btn {
  height: 33px;
  font-size: 1.4rem !important;
}
.am-input-group-sm > .am-input-group-label {
  line-height: 31px;
}
.am-input-group-primary .am-input-group-label {
  background: #0e90d2;
  color: #fff;
}
.am-input-group-primary .am-input-group-label,
.am-input-group-primary .am-input-group-btn > .am-btn,
.am-input-group-primary.am-input-group .am-form-field {
  border-color: #0e90d2;
}
.am-input-group-secondary .am-input-group-label {
  background: #3bb4f2;
  color: #fff;
}
.am-input-group-secondary .am-input-group-label,
.am-input-group-secondary .am-input-group-btn > .am-btn,
.am-input-group-secondary.am-input-group .am-form-field {
  border-color: #3bb4f2;
}
.am-input-group-success .am-input-group-label {
  background: #5eb95e;
  color: #fff;
}
.am-input-group-success .am-input-group-label,
.am-input-group-success .am-input-group-btn > .am-btn,
.am-input-group-success.am-input-group .am-form-field {
  border-color: #5eb95e;
}
.am-input-group-warning .am-input-group-label {
  background: #F37B1D;
  color: #fff;
}
.am-input-group-warning .am-input-group-label,
.am-input-group-warning .am-input-group-btn > .am-btn,
.am-input-group-warning.am-input-group .am-form-field {
  border-color: #F37B1D;
}
.am-input-group-danger .am-input-group-label {
  background: #dd514c;
  color: #fff;
}
.am-input-group-danger .am-input-group-label,
.am-input-group-danger .am-input-group-btn > .am-btn,
.am-input-group-danger.am-input-group .am-form-field {
  border-color: #dd514c;
}
.am-share-footer .am-btn {
  color: #555555;
}
.am-selected-btn.am-btn-default {
  background: none;
}
.am-intro-more-bottom .am-btn {
  font-size: 14px;
}
.am-header-default .am-header-nav .am-btn {
  margin-top: 9px;
  height: 31px;
  padding: 0 0.5em;
  line-height: 30px;
  font-size: 14px;
  vertical-align: top;
}
.am-header-default .am-header-nav .am-btn .am-header-icon {
  font-size: inherit;
}
.am-header-default .am-header-nav .am-btn-default {
  color: #999999;
}