@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Raleway:300,300i,400,400i,700,700i|Roboto:300,300i,400,400i,700,700i&subset=latin-ext");
/***********
Contiene un solo archivo _lib.css
En este archivo se declaran todas las librerías que se utilizan en el proyecto.

Ejem.

1. Normalize.css

2. Mappy-breakpoints (for breakpoints)

3. Typi (for typography)

4. Themify (if I’m working with themes)

***************/
/* ==========================================================================
   Normalize.scss settings
   ========================================================================== */
/**
 * Includes legacy browser support IE6/7
 *
 * Set to false if you want to drop support for IE6 and IE7
 */
/* Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 * 3. Corrects text resizing oddly in IE 6/7 when body `font-size` is set using
 *  `em` units.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove default margin.
 */
body {
  margin: 0; }

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block; }

/**
 * 1. Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Prevents modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active, a:hover {
  outline: 0; }

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold; }

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic; }

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
 * Addresses styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* Embedded content
   ========================================================================== */
/**
 * 1. Remove border when inside `a` element in IE 8/9/10.
 * 2. Improves image quality when scaled in IE 7.
 */
img {
  border: 0; }

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden; }

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px; }

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0; }

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto; }

/**
 * Address odd `em`-unit font size rendering in all browsers.
 * Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *  Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 * 4. Improves appearance and consistency in all browsers.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible; }

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none; }

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *  and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *  `input` and others.
 * 4. Removes inner spacing in IE 7 without affecting normal text inputs.
 *  Known issue: inner spacing remains in IE 6.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default; }

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal; }

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 *  Known issue: excess padding remains in IE 6.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  box-sizing: content-box;
  /* 2 */ }

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Corrects text not wrapping in Firefox 3.
 * 4. Corrects alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto; }

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold; }

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

/*****************
Contiene los mixins y funciones que se usan en el proyecto.
Ejemplos pueden ser los mixins de clearfix hack, element-invisible y las formas de CSS (triángulos
************/
/*****************
Font sizes (primary sizing in `rem` units with a fallback of `px`)
Example usage @include font-size(18);
***************/
/**************
Contiene las variables que se usan en el proyecto como:

1. breakpoints

2. colors

3. typography

4. themes
******************/
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  position: relative;
  min-height: 100%; }

body {
  overflow-x: hidden; }

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block; }

body,
form,
fieldset,
legend,
input,
select,
textarea,
button {
  margin: 0; }

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden],
template {
  display: none; }

img {
  border-style: none; }

svg:not(:root) {
  overflow: hidden; }

audio,
canvas,
progress,
video {
  display: inline-block; }

progress {
  vertical-align: baseline; }

embed,
iframe,
img,
object,
video {
  margin: 0;
  max-width: 100%; }

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle; }

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0; }

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical; }

h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
p,
blockquote {
  margin: 0;
  padding: 0; }

ul,
ol {
  list-style-type: none; }

dl {
  margin: 0; }

dt {
  font-weight: 600;
  margin: 0; }

dd {
  margin: 0; }

input,
textarea,
button {
  border: 0;
  border-radius: 0;
  outline: none; }
  input:hover, input:active, input:focus,
  textarea:hover,
  textarea:active,
  textarea:focus,
  button:hover,
  button:active,
  button:focus {
    outline: none; }

::selection {
  background: #ffc107;
  text-shadow: none; }

/*****************
Grids
***************/
.container {
  min-height: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto; }

.grid-container::after {
  clear: both;
  content: "";
  display: block; }
.grid-container.grid-collapse {
  margin-left: -20px;
  margin-right: -20px;
  width: calc(100% + 40px); }

.grid-column {
  margin-bottom: 20px; }
  .grid-column.grid-column--12 {
    width: calc(100% - 40px);
    float: left;
    margin-left: 20px; }
  .grid-column.grid-column--11 {
    width: calc(100% - 40px);
    float: left;
    margin-left: 20px; }
    @media only screen and (min-width: 768px) {
      .grid-column.grid-column--11 {
        width: calc(91.6666666667% - 38.3333333333px);
        float: left;
        margin-left: 20px; } }
  .grid-column.grid-column--10 {
    width: calc(100% - 40px);
    float: left;
    margin-left: 20px; }
    @media only screen and (min-width: 768px) {
      .grid-column.grid-column--10 {
        width: calc(83.3333333333% - 36.6666666667px);
        float: left;
        margin-left: 20px; } }
  .grid-column.grid-column--9 {
    width: calc(100% - 40px);
    float: left;
    margin-left: 20px; }
    @media only screen and (min-width: 768px) {
      .grid-column.grid-column--9 {
        width: calc(75% - 35px);
        float: left;
        margin-left: 20px; } }
  .grid-column.grid-column--8 {
    width: calc(100% - 40px);
    float: left;
    margin-left: 20px; }
    @media only screen and (min-width: 768px) {
      .grid-column.grid-column--8 {
        width: calc(66.6666666667% - 33.3333333333px);
        float: left;
        margin-left: 20px; } }
  .grid-column.grid-column--7 {
    width: calc(100% - 40px);
    float: left;
    margin-left: 20px; }
    @media only screen and (min-width: 768px) {
      .grid-column.grid-column--7 {
        width: calc(58.3333333333% - 31.6666666667px);
        float: left;
        margin-left: 20px; } }
  .grid-column.grid-column--6 {
    width: calc(100% - 40px);
    float: left;
    margin-left: 20px; }
    @media only screen and (min-width: 768px) {
      .grid-column.grid-column--6 {
        width: calc(50% - 30px);
        float: left;
        margin-left: 20px; } }
  .grid-column.grid-column--5 {
    width: calc(100% - 40px);
    float: left;
    margin-left: 20px; }
    @media only screen and (min-width: 768px) {
      .grid-column.grid-column--5 {
        width: calc(41.6666666667% - 28.3333333333px);
        float: left;
        margin-left: 20px; } }
  .grid-column.grid-column--4 {
    width: calc(100% - 40px);
    float: left;
    margin-left: 20px; }
    @media only screen and (min-width: 768px) {
      .grid-column.grid-column--4 {
        width: calc(33.3333333333% - 26.6666666667px);
        float: left;
        margin-left: 20px; } }
  .grid-column.grid-column--3 {
    width: calc(100% - 40px);
    float: left;
    margin-left: 20px; }
    @media only screen and (min-width: 768px) {
      .grid-column.grid-column--3 {
        width: calc(25% - 25px);
        float: left;
        margin-left: 20px; } }
  .grid-column.grid-column--2 {
    width: calc(100% - 40px);
    float: left;
    margin-left: 20px; }
    @media only screen and (min-width: 768px) {
      .grid-column.grid-column--2 {
        width: calc(16.6666666667% - 23.3333333333px);
        float: left;
        margin-left: 20px; } }
  .grid-column.grid-column--1 {
    width: calc(100% - 40px);
    float: left;
    margin-left: 20px; }
    @media only screen and (min-width: 768px) {
      .grid-column.grid-column--1 {
        width: calc(8.3333333333% - 21.6666666667px);
        float: left;
        margin-left: 20px; } }
  .grid-column.grid-column--1-of-2 {
    width: calc(50% - 30px);
    float: left;
    margin-left: 20px; }
  .grid-column.grid-column--1-of-5 {
    width: calc(20% - 24px);
    float: left;
    margin-left: 20px; }
  .grid-column.grid-column--1-of-7 {
    width: calc(14.2857142857% - 22.8571428571px);
    float: left;
    margin-left: 20px; }
  .grid-column.grid-column--2-of-7 {
    width: calc(28.5714285714% - 25.7142857143px);
    float: left;
    margin-left: 20px; }
  .grid-column.grid-column--4-of-7 {
    width: calc(57.1428571429% - 31.4285714286px);
    float: left;
    margin-left: 20px; }
  .grid-column.grid-column--3-of-6 {
    width: calc(50% - 30px);
    float: left;
    margin-left: 20px; }
  .grid-column.grid-column--3-of-5 {
    width: calc(60% - 32px);
    float: left;
    margin-left: 20px; }
  .grid-column.grid-column--2-of-5 {
    width: calc(40% - 28px);
    float: left;
    margin-left: 20px; }

#dashboard .l-container__content .grid-column .grid-column {
  background-color: orange; }

/***********
Contiene un solo archivo _layouts.css
En este archivo se declaran todas los layouts que utilizaremos en el proyecto.
Ejem. global.scss
***************/
.l-app {
  min-height: 100vh;
  height: auto;
  position: relative;
  min-width: 290px;
  overflow: hidden; }
  .l-app:before, .l-app:after {
    content: " ";
    display: table; }
  .l-app:after {
    display: block;
    clear: both;
    height: 1px;
    margin-top: -1px;
    visibility: hidden; }
  .l-app {
    *zoom: 1; }

.l-header {
  position: absolute;
  width: 100%;
  z-index: 10000;
  background-color: #fff;
  left: 0;
  top: 0;
  height: 60px; }
  .l-header:before, .l-header:after {
    content: " ";
    display: table; }
  .l-header:after {
    display: block;
    clear: both;
    height: 1px;
    margin-top: -1px;
    visibility: hidden; }
  .l-header {
    *zoom: 1; }
  @media (min-width: 48em) {
    .l-header .l-header__wrapp img {
      display: none; } }
  @media (min-width: 48em) {
    .l-header .l-header__wrapp {
      padding-left: 220px; } }
  .l-header .l-header__content {
    background: #1976d2;
    height: 60px;
    color: #fff; }
    .l-header .l-header__content .toggle {
      cursor: pointer;
      transition: all .4s;
      padding-top: 20px;
      height: 60px;
      width: 60px;
      float: left; }
      .l-header .l-header__content .toggle:hover {
        color: #009efb; }
    .l-header .l-header__content .top-user {
      text-align: right;
      padding-top: 15px;
      float: right; }

.l-container {
  position: relative;
  padding-top: 60px;
  padding-left: 0;
  transition: all 150ms; }
  .l-container .l-container__header {
    padding-top: 1rem;
    margin-bottom: .5em;
    text-align: center; }
    .l-container .l-container__header::after {
      clear: both;
      content: "";
      display: block; }
    @media (min-width: 48em) {
      .l-container .l-container__header {
        text-align: left; } }
  @media (min-width: 48em) {
    .l-container {
      padding-left: 220px; } }

.l-aside {
  position: absolute;
  width: 220px;
  left: 0;
  padding-top: 60px;
  top: 0;
  bottom: 0;
  z-index: 4000;
  min-height: 100%;
  background: #fff;
  transition: all 150ms;
  color: #fff;
  -webkit-box-shadow: 1px 0px 20px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 1px 0px 20px rgba(0, 0, 0, 0.08);
  box-shadow: 1px 0px 20px rgba(0, 0, 0, 0.08); }
  .l-aside .l-aside-logo {
    width: 60%; }

.collapsed {
  left: -220px; }

.collapsede {
  padding-left: 0 !important; }

.l-aside.collapsed .nav-label {
  display: none; }

.no-padding-left {
  padding-left: 0 !important; }

.l-container__box {
  background: #fff;
  background: white;
  -webkit-border-radius: 0.2em;
  -moz-border-radius: 0.2em;
  border-radius: 0.2em;
  -webkit-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 1rem; }

.grid-column.o-content__header {
  margin-bottom: 0; }
  .grid-column.o-content__header .grid-column {
    margin-bottom: 0; }

.o-content__header {
  background: #f9fafb;
  padding: .92857143em .78571429em;
  border: 1px solid rgba(34, 36, 38, 0.1); }
  .o-content__header p {
    margin-bottom: 0; }

.o-content__cont {
  border: 1px solid rgba(34, 36, 38, 0.1);
  border-top-color: transparent; }

/***********
En este archivo se declaran todos los estilos para el login.
***************/
.c-login {
  overflow: hidden;
  position: relative; }
  @media (min-width: 48em) {
    .c-login {
      position: fixed;
      background-image: url(/images/login-register.jpg);
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center center;
      height: 100%;
      width: 100%; } }

.aside-login {
  background: #fff;
  background: white;
  -webkit-border-radius: 0.2em;
  -moz-border-radius: 0.2em;
  border-radius: 0.2em;
  -webkit-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 1rem;
  padding: 20px;
  height: 100%;
  width: 90%;
  margin: 0 auto;
  position: relative;
  right: 0;
  top: 10px; }
  .aside-login img {
    width: 50%; }
  @media (min-width: 48em) {
    .aside-login {
      position: absolute;
      width: 400px;
      top: 0;
      border-radius: 0; } }

/*---------------------------------
Orders Layout
----------------------------------*/
#orders p {
  margin-bottom: 0; }
#orders .content__header {
  font-size: 14px;
  font-size: 0.875rem; }

.results-capture {
  margin-top: 1rem;
  border-bottom: 1px solid rgba(34, 36, 38, 0.1); }
  .results-capture [type="text"] {
    background-color: #f9fafb;
    border: 1px solid rgba(34, 36, 38, 0.1);
    -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0);
    -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0); }

#view-orders .o-content__header,
#view-orders .o-content__cont {
  font-size: 14px;
  font-size: 0.875rem; }

#print-orders, #order-detail {
  font-size: 14px;
  font-size: 0.875rem; }
  #print-orders p, #order-detail p {
    margin-bottom: 0; }
  #print-orders h3.title-test, #order-detail h3.title-test {
    background: #009efb;
    color: #fff;
    padding: .3em; }

#order-detail h3.title-test {
  background: none;
  color: #3e4855;
  padding: 0; }

/**************
En este archivo se declaran todos los estilos para el dashboard.
******************/
/*---------------------------------
Orders Layout
----------------------------------*/
#orders p {
  margin-bottom: 0; }
#orders .content__header {
  font-size: 14px;
  font-size: 0.875rem; }

.results-capture {
  margin-top: 1rem;
  border-bottom: 1px solid rgba(34, 36, 38, 0.1); }
  .results-capture [type="text"] {
    background-color: #f9fafb;
    border: 1px solid rgba(34, 36, 38, 0.1);
    -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0);
    -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0); }

#view-orders .o-content__header,
#view-orders .o-content__cont {
  font-size: 14px;
  font-size: 0.875rem; }

#print-orders, #order-detail {
  font-size: 14px;
  font-size: 0.875rem; }
  #print-orders p, #order-detail p {
    margin-bottom: 0; }
  #print-orders h3.title-test, #order-detail h3.title-test {
    background: #009efb;
    color: #fff;
    padding: .3em; }

#order-detail h3.title-test {
  background: none;
  color: #3e4855;
  padding: 0; }

/*****************
Base – Buttons
***************/
.o-button,
button {
  cursor: pointer;
  border: 1px solid #d5dce0;
  background: #f9fafb;
  line-height: normal;
  padding: .5rem .75rem;
  text-decoration: none;
  color: #3e4855;
  display: inline-block;
  transition: all 0.3s;
  border-radius: 3px;
  height: 36px; }
  .o-button:hover, .o-button:active,
  button:hover,
  button:active {
    text-decoration: none; }
  .o-button:hover,
  button:hover {
    background: #f9f9f9; }

.o-button--primary {
  background: #00477f;
  border-color: #00477f;
  color: #fff; }
  .o-button--primary:hover {
    background: #003056;
    transition: all 0.3s ease; }
  .o-button--primary:active {
    background: black; }

.o-button--info {
  background: #17a2b8;
  border-color: #17a2b8;
  color: #fff; }
  .o-button--info:hover {
    background: #128294;
    transition: all 0.3s ease; }
  .o-button--info:active {
    background: #093e47; }

.o-button--secundary {
  background: #009efb;
  border-color: #009efb;
  color: #fff; }
  .o-button--secundary:hover {
    background: #0084d2;
    transition: all 0.3s ease; }
  .o-button--secundary:active {
    background: #004e7c; }

.o-button--success {
  background: #28a745;
  border-color: #28a745;
  color: #fff; }
  .o-button--success:hover {
    background: #208637;
    transition: all 0.3s ease; }
  .o-button--success:active {
    background: #0f401b; }

.o-button--warning {
  background: #ffc107;
  border-color: #ffc107;
  color: #fff; }
  .o-button--warning:hover {
    background: #dda600;
    transition: all 0.3s ease; }
  .o-button--warning:active {
    background: #876500; }

.o-button--danger {
  background: #dc3545;
  border-color: #dc3545;
  color: #fff; }
  .o-button--danger:hover {
    background: #c62232;
    transition: all 0.3s ease; }
  .o-button--danger:active {
    background: #7c151f; }

.o-button--full {
  width: 100%; }

.o-button--close {
  margin-left: 15px;
  color: red;
  font-weight: bold;
  float: right;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
  background: #f9fafb;
  line-height: normal;
  padding: .5rem .75rem;
  display: inline-block;
  transition: all 0.3s;
  height: 36px; }
  .o-button--close:hover {
    color: #000; }

.o-button-link {
  text-decoration: underline;
  border: 0;
  background: transparent;
  padding: 0; }
  .o-button-link:hover {
    text-decoration: none; }
  .o-button-link:active {
    outline: 0; }

.o-button[disabled],
.o-button[disabled]:hover,
.o-button[disabled]:active,
.o-button[disabled]:focus {
  background-color: #edf1f2;
  border: 1px solid #e0e6e8;
  box-shadow: none;
  cursor: default; }

.o-button---add {
  cursor: pointer;
  border: 1px solid #d5dce0;
  background: #fff;
  line-height: normal;
  text-decoration: none;
  color: #3e4855;
  display: inline-block;
  transition: all 0.3s;
  border-radius: 3px;
  padding: .2rem; }
  .o-button---add:hover, .o-button---add:active {
    text-decoration: none; }
  .o-button---add:hover {
    background: #f9f9f9; }

ul.o-breadcrumb {
  font-size: 14px;
  font-size: 0.875rem;
  list-style: none; }
  ul.o-breadcrumb li {
    display: inline; }
    ul.o-breadcrumb li a:hover {
      text-decoration: none; }
  ul.o-breadcrumb li + li:before {
    font-family: fontawesome;
    padding: 8px;
    content: "\f105"; }
  @media (min-width: 48em) {
    ul.o-breadcrumb {
      text-align: right; } }

/*****************
Base – typography
***************/
body {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  color: #3e4855;
  font-weight: 400;
  background: #eef5f9;
  line-height: 1.5; }

p {
  margin: 0 0 20px 0; }

a {
  color: #00477f;
  text-decoration: underline;
  background-color: transparent;
  -webkit-text-decoration-skip: objects; }
  a:active, a:hover {
    color: #17a2b8;
    outline-width: 0;
    text-decoration: none; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
  margin: 0; }

h1,
.fs-1 {
  font-size: 32px;
  font-size: 2rem;
  line-height: 38px;
  line-height: 2.375rem; }

h2,
.fs-2 {
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 32px;
  line-height: 2rem; }

h3,
.fs-3 {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 28px;
  line-height: 1.75rem; }

h4,
.fs-4 {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 24px;
  line-height: 1.5rem; }

h5,
.fs-5 {
  font-size: 16px;
  font-size: 1rem;
  line-height: 22px;
  line-height: 1.375rem; }

h6,
.fs-6 {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 20px;
  line-height: 1.25rem; }

h1 {
  margin-bottom: .5em;
  color: #00477f;
  font-weight: 700; }

h2 {
  margin-bottom: .2em;
  color: #009efb;
  font-weight: 400; }

h3 {
  margin-bottom: .2em;
  color: #009efb;
  font-weight: 300; }

h4 {
  margin-bottom: .2em;
  color: #009efb;
  font-weight: 300; }

h5 {
  margin-bottom: .1em;
  color: #009efb;
  font-weight: 300; }

h6 {
  margin-bottom: .1em;
  color: #009efb;
  font-weight: 300; }

b,
strong,
.strong {
  font-weight: 700; }

em,
.em {
  font-style: italic; }

abbr[title],
.abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted; }

dfn {
  font-style: italic; }

small,
.small {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 16px;
  line-height: 1rem; }

mark,
.mark {
  background-color: #ffc107;
  color: #000; }

sub,
.sub,
sup,
.sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub,
.sub {
  bottom: -0.25em; }

sup,
.sup {
  top: -0.5em; }

del,
.del {
  text-decoration: line-through; }

hr,
.hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 1px;
  background: #eee;
  border: 0;
  margin-top: .5em;
  margin-bottom: .5em; }

#edit-doctors section#general,
#edit-doctors section#address,
#edit-doctors section#phones,
#edit-doctors section#invoicing,
#add-patients section#general,
#add-patients section#address,
#add-patients section#phones,
#add-patients section#invoicing,
#add-doctors section#general,
#add-doctors section#address,
#add-doctors section#phones,
#add-doctors section#invoicing,
#edit-patients section#general,
#edit-patients section#address,
#edit-patients section#phones,
#edit-patients section#invoicing,
#add-companies section#general,
#add-companies section#address,
#add-companies section#phones,
#add-companies section#invoicing,
#edit-companies section#general,
#edit-companies section#address,
#edit-companies section#phones,
#edit-companies section#invoicing,
#users-edit section#general,
#users-edit section#address,
#users-edit section#phones,
#users-edit section#invoicing {
  display: none;
  padding: 20px 0 0; }
#edit-doctors input[type="radio"],
#add-patients input[type="radio"],
#add-doctors input[type="radio"],
#edit-patients input[type="radio"],
#add-companies input[type="radio"],
#edit-companies input[type="radio"],
#users-edit input[type="radio"] {
  display: none; }
#edit-doctors input#healthoffices,
#add-patients input#healthoffices,
#add-doctors input#healthoffices,
#edit-patients input#healthoffices,
#add-companies input#healthoffices,
#edit-companies input#healthoffices,
#users-edit input#healthoffices {
  display: block; }
#edit-doctors label.tabs,
#add-patients label.tabs,
#add-doctors label.tabs,
#edit-patients label.tabs,
#add-companies label.tabs,
#edit-companies label.tabs,
#users-edit label.tabs {
  display: inline-block;
  margin: 0 20px -1px 0;
  padding: 0 0px 5px 0px;
  font-weight: 600;
  text-align: center;
  font-size: 0; }
  #edit-doctors label.tabs:hover,
  #add-patients label.tabs:hover,
  #add-doctors label.tabs:hover,
  #edit-patients label.tabs:hover,
  #add-companies label.tabs:hover,
  #edit-companies label.tabs:hover,
  #users-edit label.tabs:hover {
    color: #888;
    cursor: pointer; }
#edit-doctors label:before,
#add-patients label:before,
#add-doctors label:before,
#edit-patients label:before,
#add-companies label:before,
#edit-companies label:before,
#users-edit label:before {
  font-family: fontawesome;
  font-weight: normal;
  margin: 0;
  font-size: 18px; }
#edit-doctors label[for*='general']:before,
#add-patients label[for*='general']:before,
#add-doctors label[for*='general']:before,
#edit-patients label[for*='general']:before,
#add-companies label[for*='general']:before,
#edit-companies label[for*='general']:before,
#users-edit label[for*='general']:before {
  content: '\f2bd'; }
#edit-doctors label[for*='addres']:before,
#add-patients label[for*='addres']:before,
#add-doctors label[for*='addres']:before,
#edit-patients label[for*='addres']:before,
#add-companies label[for*='addres']:before,
#edit-companies label[for*='addres']:before,
#users-edit label[for*='addres']:before {
  content: '\f2bb'; }
#edit-doctors label[for*='phone']:before,
#add-patients label[for*='phone']:before,
#add-doctors label[for*='phone']:before,
#edit-patients label[for*='phone']:before,
#add-companies label[for*='phone']:before,
#edit-companies label[for*='phone']:before,
#users-edit label[for*='phone']:before {
  content: '\f095'; }
#edit-doctors label[for*='invoicing']:before,
#add-patients label[for*='invoicing']:before,
#add-doctors label[for*='invoicing']:before,
#edit-patients label[for*='invoicing']:before,
#add-companies label[for*='invoicing']:before,
#edit-companies label[for*='invoicing']:before,
#users-edit label[for*='invoicing']:before {
  content: '\f15c'; }
#edit-doctors input:checked + label,
#add-patients input:checked + label,
#add-doctors input:checked + label,
#edit-patients input:checked + label,
#add-companies input:checked + label,
#edit-companies input:checked + label,
#users-edit input:checked + label {
  color: #009efb;
  border-bottom: 2px solid #00477f; }
#edit-doctors #tab-general:checked ~ #general,
#edit-doctors #tab-healthoffice:checked ~ #address,
#edit-doctors #tab-address:checked ~ #address,
#edit-doctors #tab-phones:checked ~ #phones,
#edit-doctors #tab-invoicing:checked ~ #invoicing,
#add-patients #tab-general:checked ~ #general,
#add-patients #tab-healthoffice:checked ~ #address,
#add-patients #tab-address:checked ~ #address,
#add-patients #tab-phones:checked ~ #phones,
#add-patients #tab-invoicing:checked ~ #invoicing,
#add-doctors #tab-general:checked ~ #general,
#add-doctors #tab-healthoffice:checked ~ #address,
#add-doctors #tab-address:checked ~ #address,
#add-doctors #tab-phones:checked ~ #phones,
#add-doctors #tab-invoicing:checked ~ #invoicing,
#edit-patients #tab-general:checked ~ #general,
#edit-patients #tab-healthoffice:checked ~ #address,
#edit-patients #tab-address:checked ~ #address,
#edit-patients #tab-phones:checked ~ #phones,
#edit-patients #tab-invoicing:checked ~ #invoicing,
#add-companies #tab-general:checked ~ #general,
#add-companies #tab-healthoffice:checked ~ #address,
#add-companies #tab-address:checked ~ #address,
#add-companies #tab-phones:checked ~ #phones,
#add-companies #tab-invoicing:checked ~ #invoicing,
#edit-companies #tab-general:checked ~ #general,
#edit-companies #tab-healthoffice:checked ~ #address,
#edit-companies #tab-address:checked ~ #address,
#edit-companies #tab-phones:checked ~ #phones,
#edit-companies #tab-invoicing:checked ~ #invoicing,
#users-edit #tab-general:checked ~ #general,
#users-edit #tab-healthoffice:checked ~ #address,
#users-edit #tab-address:checked ~ #address,
#users-edit #tab-phones:checked ~ #phones,
#users-edit #tab-invoicing:checked ~ #invoicing {
  display: block; }
@media (min-width: 64em) {
  #edit-doctors label.tabs,
  #add-patients label.tabs,
  #add-doctors label.tabs,
  #edit-patients label.tabs,
  #add-companies label.tabs,
  #edit-companies label.tabs,
  #users-edit label.tabs {
    font-size: 14px; } }
@media (min-width: 64em) {
  #edit-doctors label:before,
  #add-patients label:before,
  #add-doctors label:before,
  #edit-patients label:before,
  #add-companies label:before,
  #edit-companies label:before,
  #users-edit label:before {
    margin-right: 10px; } }

.label {
  padding: 2px 10px;
  line-height: 13px;
  font-weight: 400;
  border-radius: 4px;
  font-size: 80%;
  display: inline-block;
  border: 1px solid #eee;
  font-weight: 700; }

.label--primary {
  border-color: #17a2b8 !important;
  color: #fff; }
  .label--primary:hover {
    color: #0c525d; }

.label--info {
  border-color: #17a2b8 !important;
  color: #fff; }
  .label--info:hover {
    color: #0c525d; }

.label--success {
  border-color: #28a745 !important;
  color: #fff; }
  .label--success:hover {
    color: #145523; }

.label--warning {
  border-color: #ffc107 !important;
  color: #fff; }
  .label--warning:hover {
    color: #a07800; }

.label--danger {
  border-color: #dc3545 !important;
  color: #fff; }
  .label--danger:hover {
    color: #921925; }

.label--pendient {
  border-color: #ffc107 !important;
  color: #a07800; }
  .label--pendient:hover {
    color: #070500; }

.label--partial {
  border-color: #17a2b8 !important;
  color: #0c525d; }
  .label--partial:hover {
    color: black; }

.label--captured {
  border-color: #00477f !important;
  color: #000e19; }
  .label--captured:hover {
    color: black; }

.label--validated {
  border-color: #17a2b8 !important;
  color: #0c525d; }
  .label--validated:hover {
    color: black; }

.label--received {
  border-color: #28a745 !important;
  color: #145523; }
  .label--received:hover {
    color: black; }

.normal {
  border-color: #28a745 !important;
  color: #145523; }
  .normal:hover {
    color: black; }

.hi {
  border-color: #dc3545 !important;
  color: #921925; }
  .hi:hover {
    color: #0f0304; }

.low {
  border-color: #ffc107 !important;
  color: #a07800; }
  .low:hover {
    color: #070500; }

/*****************
Base – Forms
***************/
fieldset {
  border: 1px solid #848f99;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal; }

label,
button,
input,
optgroup,
select,
textarea {
  color: #3e4855;
  font: inherit;
  margin: 0;
  display: inline-block;
  margin-bottom: .5rem; }

[type="text"],
[type="email"],
[type="password"],
[type="tel"],
[type="number"],
[type="date"],
[type="datetime-local"],
[type="search"] {
  height: 36px;
  padding: .5rem .75rem;
  display: block;
  width: 100%;
  background-color: #fff;
  border: 1px solid #d5dce0;
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
  -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
  -webkit-appearance: none;
  -moz-appearance: textfield;
  border-radius: 3px;
  transition: border-color ease-in-out .15s; }
  [type="text"]:focus,
  [type="email"]:focus,
  [type="password"]:focus,
  [type="tel"]:focus,
  [type="number"]:focus,
  [type="date"]:focus,
  [type="datetime-local"]:focus,
  [type="search"]:focus {
    background-color: #fff;
    border-color: #17a2b8;
    transition: border-color ease-in-out .15s;
    outline: 0; }
  [type="text"]:hover,
  [type="email"]:hover,
  [type="password"]:hover,
  [type="tel"]:hover,
  [type="number"]:hover,
  [type="date"]:hover,
  [type="datetime-local"]:hover,
  [type="search"]:hover {
    border-color: #17a2b8;
    transition: border-color ease-in-out .15s; }

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

[type="date"]::-webkit-inner-spin-button {
  display: none;
  -webkit-appearance: none; }

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0; }

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
  box-sizing: inherit !important; }

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

textarea {
  padding: 10px;
  background-color: #fff;
  border: 1px solid #d5dce0;
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
  -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
  overflow: auto;
  padding: .5rem .75rem;
  display: block;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: textfield;
  border-radius: 3px;
  transition: border-color ease-in-out .15s; }
  textarea:focus {
    background-color: #fff;
    border-color: #17a2b8;
    transition: border-color ease-in-out .15s;
    outline: 0; }
  textarea:hover {
    border-color: #17a2b8;
    transition: border-color ease-in-out .15s; }

select {
  margin-bottom: 0.75em;
  width: auto;
  text-transform: none;
  height: 36px;
  padding: 0 10px;
  background-color: #fff;
  border: 1px solid #d5dce0; }
  select:focus {
    background-color: #fff;
    border-color: #17a2b8;
    outline: 0; }

optgroup {
  font-weight: 700; }

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; }

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

button[disabled],
html input[disabled] {
  cursor: not-allowed;
  border: 0 !important; }

input::-webkit-input-placeholder {
  color: #999; }

input:-moz-placeholder {
  color: #999; }

input::-moz-placeholder {
  color: #999; }

input:-ms-input-placeholder {
  color: #999; }

.c-form .c-form__row {
  margin-bottom: 1rem; }

.angucomplete-dropdown {
  border-color: #ececec;
  border-width: 1px;
  border-style: solid;
  border-radius: 0.2em;
  padding: 1em;
  cursor: pointer;
  z-index: 9999;
  margin-bottom: 1em;
  background-color: #ffffff;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
  font-size: 0.8em;
  overflow-y: auto;
  max-height: 200px; }

.highlight {
  color: #dc3545; }

.angucomplete-selected-row {
  background-color: #d5dce0;
  color: #000; }

.angucomplete-row {
  padding: 5px;
  margin-bottom: 4px;
  clear: both; }

.form-component {
  padding: 20px;
  background-color: rgba(204, 204, 204, 0.3);
  margin-bottom: 0.5em; }

.form-validation {
  padding: 40px;
  background-color: rgba(204, 204, 204, 0.3);
  margin-bottom: 0.5em; }

/*****************
Base – Tables
***************/
caption {
  font-size: inherit;
  line-height: normal;
  font-weight: 700;
  text-align: left;
  padding: 10px;
  border-bottom: 1px solid #d5dce0; }

table {
  font-size: 14px;
  font-size: 0.875rem;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  float: left;
  margin: 0 0 2em;
  border: 1px solid #d5dce0;
  border-radius: .28571429rem;
  background: #fff; }
  table thead th {
    text-align: left;
    cursor: auto;
    background: #f9fafb;
    color: rgba(0, 0, 0, 0.87);
    padding: .92857143em .78571429em;
    vertical-align: inherit;
    font-style: none;
    font-weight: 400;
    text-transform: none;
    border-bottom: 1px solid rgba(34, 36, 38, 0.1);
    border-left: none;
    white-space: nowrap; }
  table tbody {
    border-bottom: 0 solid #009efb;
    border-radius: 0.2em; }
    table tbody tr td {
      padding: 8px 10px; }
      table tbody tr td a {
        color: #00477f;
        text-decoration: none;
        display: inline-block;
        margin: 0 .5em 0 0; }
        table tbody tr td a:hover, table tbody tr td a:active, table tbody tr td a:focus {
          color: #002a4c;
          border: none; }
  table tfoot td {
    padding: 0.35em 0 .35em;
    text-align: left;
    font-size: 1.25em; }

table.dataTable thead th,
table.dataTable thead td {
  padding: 10px 18px;
  border-bottom: 1px solid #d5dce0; }

table.dataTable.no-footer {
  border-bottom-color: #d5dce0; }

table thead tr:first-child > th:first-child {
  border-radius: .28571429rem 0 0 0; }

table thead tr:first-child > th:last-child {
  border-radius: 0 .28571429rem 0 0; }

table.celled tr td,
table.celled tr th {
  border-left: 1px solid rgba(34, 36, 38, 0.1); }

table.celled tr td:first-child,
table.celled tr th:first-child {
  border-left: none; }

table tr td {
  border-top: 1px solid rgba(34, 36, 38, 0.1); }

table tr:first-child td {
  border-top: none; }

table.no-celled tr td,
table.no-celled tr th {
  border-left: none; }

table.no-celled {
  border: none; }

table.dataTable thead th,
table.dataTable tfoot th {
  font-weight: normal; }

.dataTables_length select {
  width: auto; }

.dataTables_wrapper .dataTables_filter input {
  margin-left: 0; }

.dataTables_wrapper .dataTables_paginate .paginate_button {
  display: inline-block;
  padding: 0.1em 0.4em;
  margin-left: 0; }

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  color: #fff !important;
  border: 0;
  background: #17a2b8; }

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  color: #848f99 !important;
  border: 1px solid transparent;
  background: #d5dce0; }

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar; }

.c-footer {
  margin-top: 1rem;
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 16px;
  line-height: 1rem; }
  .c-footer:before, .c-footer:after {
    content: " ";
    display: table; }
  .c-footer:after {
    display: block;
    clear: both;
    height: 1px;
    margin-top: -1px;
    visibility: hidden; }
  .c-footer {
    *zoom: 1; }
  .c-footer .l-footer {
    position: relative;
    padding: 1rem 0;
    transition: all 150ms; }
    @media (min-width: 48em) {
      .c-footer .l-footer {
        padding-left: 220px; } }

.l-aside ul {
  padding: 0;
  margin: 0;
  list-style: none; }
.l-aside .metismenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }
  .l-aside .metismenu li + li, .l-aside .metismenu li:first-child {
    margin-top: 5px; }
  .l-aside .metismenu li:last-child {
    margin-bottom: 5px; }
  .l-aside .metismenu > li {
    /*    -webkit-box-flex: 1;
    -ms-flex: 1 1 0%;
    flex: 1 1 0%;*/
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative; }
  .l-aside .metismenu a {
    position: relative;
    color: #3e4855;
    display: block;
    text-decoration: none;
    padding: 13px 15px;
    outline-width: 0;
    font-size: 14px;
    font-size: 0.875rem;
    transition: all .3s ease-out; }
    .l-aside .metismenu a .fa {
      margin-right: 10px; }
  .l-aside .metismenu ul a {
    padding: 10px 15px 10px 30px; }
  .l-aside .metismenu ul ul a {
    padding: 10px 15px 10px 45px; }
  .l-aside .metismenu a:hover, .l-aside .metismenu a:focus, .l-aside .metismenu a:active {
    color: #1974ce;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.05); }
.l-aside .collapse.in {
  background: rgba(0, 0, 0, 0.05); }

.collapsed.l-aside .metismenu .has-arrow:after {
  display: none; }

.collapsed.l-aside ul {
  padding: 0;
  margin: 0;
  list-style: none; }

.collapsed.l-aside .metismenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }

.collapsed.l-aside .metismenu > li {
  /*    -webkit-box-flex: 1;
    -ms-flex: 1 1 0%;
    flex: 1 1 0%;*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative; }

.collapsed.l-aside .metismenu a {
  position: relative;
  display: block;
  padding: 15px;
  color: #adb5bd;
  outline-width: 0;
  transition: all .3s ease-out; }

.collapsed.l-aside .metismenu a:hover,
.collapsed.l-aside .metismenu a:focus,
.collapsed.l-aside .metismenu a:active {
  color: #000;
  text-decoration: none;
  background: #f7fafc; }

@media (min-width: 992px) {
  .collapsed.l-aside .metismenu li {
    position: relative; }

  .collapsed.l-aside .metismenu > li > ul {
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 200px;
    z-index: 1001;
    background: #f7fafc; }

  .collapsed.l-aside .metismenu > li:hover > ul {
    height: auto !important; }

  .collapsed.l-aside .metismenu > li:hover > ul,
  .collapsed.l-aside .metismenu > li:hover > ul.collapse {
    display: block; }

  .collapsed.l-aside .metismenu > li:hover > a.has-arrow:after {
    transform: rotate(135deg); } }
.c-card {
  position: relative;
  box-sizing: border-box;
  background-color: #fff;
  border: 1px solid #d5dce0; }
  .c-card .c-card__body,
  .c-card .c-card__footer {
    padding: 0.5em; }

.center {
  display: block;
  text-align: center; }

.small {
  font-size: .8rem; }

.m-top {
  margin-top: .5em; }

.m-bottom {
  margin-bottom: .5em; }

.m-bottom-1 {
  margin-bottom: 1em; }

.error {
  color: #dc3545;
  font-size: 0.8em;
  font-weight: 700; }

input.error {
  border-color: #dc3545; }

.text-right {
  text-align: right; }

.text-center {
  text-align: center; }

#loading-bar {
  pointer-events: all;
  z-index: 99999;
  border: none;
  margin: 0px;
  padding: 0px;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  cursor: wait;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.7); }

.pointer {
  cursor: pointer; }

.m-0 {
  margin: 0; }

.width-auto {
  width: auto; }

/*# sourceMappingURL=styles.css.map */
