/** DirectMed Color Pallette **/
/** Mixins **/
/**
====================================================================
|   bootstrap equal heights
|     credit to: http://getbootstrap.com.vn/examples/equal-height-columns/equal-height-columns.css
====================================================================
**/
/*
 * Row with equal height columns
 * --------------------------------------------------
 */
.row-eq-height {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

/**
     *
     * Styles copied from the Grid example to make grid rows & columns visible.
     *
    .container {
      padding-right: 15px;
      padding-left: 15px;
    }

    h4 {
      margin-top: 25px;
    }
    .row {
      margin-bottom: 20px;
    }
    .row .row {
      margin-top: 10px;
      margin-bottom: 0;
    }
    [class*="col-"] {
      padding-top: 15px;
      padding-bottom: 15px;
      background-color: #eee;
      background-color: rgba(86,61,124,.15);
      border: 1px solid #ddd;
      border: 1px solid rgba(86,61,124,.2);
    }

     *
     * Callout styles copied from Bootstrap's main docs.
     *
     * Common styles for all types
     *
    .bs-callout {
      padding: 20px;
      margin: 20px 0;
      border-left: 3px solid #eee;
    }
    .bs-callout h4 {
      margin-top: 0;
      margin-bottom: 5px;
    }
    .bs-callout p:last-child {
      margin-bottom: 0;
    }
    .bs-callout code {
      background-color: #fff;
      border-radius: 3px;
    }
    * Variations *
    .bs-callout-danger {
      background-color: #fdf7f7;
      border-color: #d9534f;
    }
    .bs-callout-danger h4 {
      color: #d9534f;
    }
    .bs-callout-warning {
      background-color: #fcf8f2;
      border-color: #f0ad4e;
    }
    .bs-callout-warning h4 {
      color: #f0ad4e;
    }
    .bs-callout-info {
      background-color: #f4f8fa;
      border-color: #5bc0de;
    }
    .bs-callout-info h4 {
      color: #5bc0de;
    }
**/
/**
====================================================================
|   Custon Buttons
====================================================================
**/
.btn-file {
  position: relative;
  overflow: hidden;
}

.btn-file input[type=file] {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 100%;
  min-height: 100%;
  font-size: 100px;
  text-align: right;
  filter: alpha(opacity=0);
  opacity: 0;
  outline: none;
  background: white;
  cursor: inherit;
  display: block;
}

/**
====================================================================
|   Header CSS
====================================================================
**/
header#prenav {
  position: relative;
  background-color: indianred;
  height: 25px;
  text-align: center;
  color: white;
}

/** Wrapper is needed for full width **/
.header-wrapper {
  background-color: darkgray;
  height: 100px;
}

header#header #logout {
  margin-top: 40px;
}
header#header #logout {
  position: relative;
  top: -20px;
}

nav.navbar .navbar-header img {
  height: 40px;
  padding-top: 10px;
  padding-right: 25px;
}

nav.navbar .navbar-nav > li {
  border-left: 1px solid grey;
}

nav.navbar .navbar-nav > li:last-child {
  border-right: 1px solid grey;
}

nav.navbar .navbar-nav > li.active a, nav.navbar .navbar-nav > li.active a:focus {
  background-color: black;
  color: white;
}

nav.navbar .navbar-nav > li > a:hover {
  background-color: black;
  color: white;
}

/**
nav.navbar {
    .navbar-header img {height: 40px; padding-top: 10px; padding-right: 25px;}

    .navbar-nav > li {

        // Borders
        border-left: 1px solid grey;
        &:last-child {border-right: 1px solid grey}

        // Change colors and backgroud color when focused, active, or hovered
        &.active { a, a:focus {background-color: black; color: white} }
        & > a:hover {background-color: black; color: white;}
    }


}
**/
/**
====================================================================
|  Login Styles 
====================================================================
**/
/** Wrapper is needed for full width **/
#loginbody {
  background-color: #085EAB;
}
#loginbody #login {
  position: relative;
  top: 90px;
  background-color: #F4F6F6;
  -moz-border-radius: 15px;
  border-radius: 15px;
}
@media (min-width: 768px) {
  #loginbody #login {
    width: 200px;
    width: 800px;
    top: 25px;
  }
}
#loginbody #login img {
  width: 400px;
}
#loginbody h2 {
  padding: 10px 0 0 0;
  left: 50px;
  position: relative;
}
#loginbody h5 {
  padding: 0 0 10px 0;
}

/**
====================================================================
|   Structure CSS
====================================================================
**/
#main {
  padding: 50px 0 50px 0;
}