
/* ========================================================================
   Component: List
 ========================================================================== */
.uk-list-muted li::marker {
  color: #999 !important;
}
.uk-list-emphasis li::marker {
  color: #333 !important;
}
.uk-list-primary li::marker {
  color: #1e87f0 !important;
}
.uk-list-secondary li::marker {
  color: #222 !important;
}


/* ========================================================================
   Component: Button
 ========================================================================== */
/* Primary */
.uk-button-primary {
  background-color: #1e87f0;
  color: #fff;
  border: 1px solid transparent;
}
/* Hover + Focus */
.uk-button-primary:hover,
.uk-button-primary:focus {
  background-color: #0f7ae5;
  color: #fff;
}
/* OnClick + Active */
.uk-button-primary:active,
.uk-button-primary.uk-active {
  background-color: #0e6dcd;
  color: #fff;
}

/* Secondary */
.uk-button-secondary {
  background-color: #222;
  color: #fff;
  border: 1px solid transparent;
}
/* Hover + Focus */
.uk-button-secondary:hover,
.uk-button-secondary:focus {
  background-color: #151515;
  color: #fff;
}
/* OnClick + Active */
.uk-button-secondary:active,
.uk-button-secondary.uk-active {
  background-color: #080808;
  color: #fff;
}

/* Danger */
.uk-button-danger {
  background-color: #f0506e;
  color: #fff;
  border: 1px solid transparent;
}
/* Hover + Focus */
.uk-button-danger:hover,
.uk-button-danger:focus {
  background-color: #ee395b;
  color: #fff;
}
/* OnClick + Active */
.uk-button-danger:active,
.uk-button-danger.uk-active {
  background-color: #ec2147;
  color: #fff;
}

/* Disabled  * The same for all style modifiers */
.uk-button-default:disabled,
.uk-button-primary:disabled,
.uk-button-secondary:disabled,
.uk-button-danger:disabled {
  background-color: transparent;
  color: #999;
  border-color: #e5e5e5;
}

/* ========================================================================
   Component: Section
 ========================================================================== */
/* Default */
.uk-section-default {
  background: #fff;
}
/* Muted */
.uk-section-muted {
  background: #f8f8f8;
}
/* Primary */
.uk-section-primary {
  background: #1e87f0;
}
/* Secondary */
.uk-section-secondary {
  background: #222;
}

/* ========================================================================
   Component: Title
 ========================================================================== */
/* Default */
.uk-tile-default {
  background: #fff;
}
/* Muted */
.uk-tile-muted {
  background: #f8f8f8;
}
/* Primary */
.uk-tile-primary {
  background: #1e87f0;
}
/* Secondary */
.uk-tile-secondary {
  background: #222;
}

/* ========================================================================
   Component: Card
 ========================================================================== */
/* Primary */
.uk-card-primary {
  background: #1e87f0;
  color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.uk-card-primary .uk-card-title {
  color: #fff;
}
.uk-card-primary.uk-card-hover:hover {
  background-color: #1e87f0;
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
}
/* Secondary */
.uk-card-secondary {
  background: #222;
  color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.uk-card-secondary .uk-card-title {
  color: #fff;
}
.uk-card-secondary.uk-card-hover:hover {
  background-color: #222;
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
}

/* ========================================================================
   Component: Text
 ========================================================================== */
.uk-text-muted {
  color: #999 !important;
}
.uk-text-emphasis {
  color: #333 !important;
}
.uk-text-primary {
  color: #1e87f0 !important;
}
.uk-text-secondary {
  color: #222 !important;
}
.uk-text-success {
  color: #32d296 !important;
}
.uk-text-warning {
  color: #faa05a !important;
}
.uk-text-danger {
  color: #f0506e !important;
}

/* ========================================================================
   Component: Background
 ========================================================================== */

.uk-background-default {
  background-color: #fff;
}
.uk-background-muted {
  background-color: #f8f8f8;
}
.uk-background-primary {
  background-color: #1e87f0;
}
.uk-background-secondary {
  background-color: #222;
}

/* ========================================================================
   Component: Alert
 ========================================================================== */
/* Primary */
.uk-alert-primary {
  background: #d8eafc;
  color: #1e87f0;
}
/* Success */
.uk-alert-success {
  background: #edfbf6;
  color: #32d296;
}
/* Warning */
.uk-alert-warning {
  background: #fff6ee;
  color: #faa05a;
}
/* Danger */
.uk-alert-danger {
  background: #fef4f6;
  color: #f0506e;
}