/* COLORS */
* {
  margin: 0;
  padding: 0;
}

/* calculates the font size to be 10px so that em will now correspond exactly with px. Example 2.2 em = 22px */
html {
  font-size: 0.625rem;
  font-family: "Lexend Deca", sans-serif;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 1.6em;
  /*  set font size to 18px */
  background-color: #fff;
  font-family: "Lexend Deca", sans-serif;
  position: relative;
}

a {
  text-decoration: none !important;
  color: #1a355e;
}

ul {
  list-style: none;
}

p {
  margin-bottom: 0;
}

.white-color {
  color: #fff;
}

.brand-color {
  color: #1a355e;
}

.accent-color {
  color: #edda1d !important;
}

.secondary-color {
  color: #00c870 !important;
}

.background-brand-color {
  background-color: #1a355e !important;
}

.background-accent-color {
  background-color: #edda1d;
}

.background-secondary-color {
  background-color: #00c870;
}

.font-header {
  font-family: "Raleway", sans-serif;
}

.font-stack {
  font-family: "Lexend Deca", sans-serif;
}

.font-subheader {
  font-family: "Satisfy", cursive;
}

.pa-1 {
  padding: 1rem;
}

.pa-2 {
  padding: 2rem;
}

.mr-1 {
  margin: 1rem;
}

.mr-2 {
  margin: 2rem;
}

.fa-pencil-alt {
  color: #fff;
}

.fa-times {
  color: #fff;
}

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

h1 {
  font-size: calc(16px + 1.6vw);
  color: #fff;
}
@media (min-width: 1200px) {
  h1 {
    font-size: 3rem;
  }
}

.logo {
  height: auto;
  width: 100%;
  max-width: 150px;
  padding: 5px;
}
@media (max-width: 992px) {
  .logo {
    width: 100%;
    max-width: 70px;
    padding: 1px;
    height: 48.44px;
  }
}

.show-res {
  display: none;
}
@media (max-width: 992px) {
  .show-res {
    display: block;
  }
}

.btn {
  font-size: calc(16px + .5vw);
}
@media (min-width: 1200px) {
  .btn {
    font-size: 1.8rem;
  }
}

.btn-danger {
  border-radius: 3rem;
}

.button-primary, .button-secondary {
  background-color: #edda1d;
  border: 1px solid #edda1d;
  color: #000;
  border-radius: 3rem;
  transition: ease-in-out 0.3s;
  padding: 0.5rem 1rem;
}
@media (max-width: 480px) {
  .button-primary, .button-secondary {
    width: 100%;
  }
}
.button-primary:hover, .button-primary:focus, .button-secondary:hover, .button-secondary:focus {
  background-color: #1a355e;
  border: 1px solid #1a355e;
  color: #fff;
  transform: scale(1.1);
}
@media (max-width: 992px) {
  .button-primary:hover, .button-primary:focus, .button-secondary:hover, .button-secondary:focus {
    transform: none;
  }
}

.button-secondary {
  background-color: #00c870;
}
.button-secondary:hover, .button-secondary:focus {
  background-color: #1a355e;
  border: 1px solid #edda1d;
}

#skiptocontent a {
  padding: 6px;
  position: fixed;
  top: -45px;
  left: 0;
  color: white;
  border-right: 1px solid white;
  border-bottom: 1px solid white;
  border-bottom-right-radius: 8px;
  background: #BF1722;
  -webkit-transition: top 1s ease-out;
  -o-transition: top 1s ease-out;
  -moz-transition: top 1s ease-out;
  transition: top 1s ease-out;
  z-index: 999999;
}

#skiptocontent a:focus {
  position: fixed;
  left: 0;
  top: 0;
  outline-color: transparent;
  -webkit-transition: top 0.1s ease-in;
  -o-transition: top 0.1s ease-in;
  -moz-transition: top 0.1s ease-in;
  transition: top 0.1s ease-in;
}

/* Flying focus */
#flying-focus {
  position: fixed;
  margin: 0;
  background: transparent;
  -webkit-transition-property: left, top, width, height;
  -o-transition-property: left, top, width, height;
  -moz-transition-property: left, top, width, height;
  transition-property: left, top, width, height;
  -webkit-transition-timing-function: cubic-bezier(0, 1, 0, 1);
  -o-transition-timing-function: cubic-bezier(0, 1, 0, 1);
  -moz-transition-timing-function: cubic-bezier(0, 1, 0, 1);
  transition-timing-function: cubic-bezier(0, 1, 0, 1);
  visibility: hidden;
  pointer-events: none;
  box-shadow: 0 0 2px 3px #78aeda, 0 0 2px #78aeda inset;
  border-radius: 2px;
}

#flying-focus.flying-focus_visible {
  visibility: visible;
  z-index: 9999;
}

.flying-focus_target {
  outline: none !important;
  /* Doesn't work in Firefox :( */
}

/* http://stackoverflow.com/questions/71074/how-to-remove-firefoxs-dotted-outline-on-buttons-as-well-as-links/199319 */
.flying-focus_target::-moz-focus-inner {
  border: 0 !important;
}

/* Replace it with @supports rule when browsers catch up */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  #flying-focus {
    box-shadow: none;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -3px;
  }
}
@media (prefers-reduced-motion: reduce) {
  #flying-focus {
    transition-duration: 0.001ms !important;
  }
}
#sidebar-wrapper .sidebar-heading {
  padding: 0.875rem 1.25rem;
  font-size: calc(16px + .2vw);
}
#sidebar-wrapper .sidebar-heading a {
  font-family: "Raleway", sans-serif;
}

@media (min-width: 992px) {
  .nav-item {
    margin-right: 5px;
  }
}
.nav-item a {
  font-family: "Raleway", sans-serif;
}

@media (max-width: 992px) {
  .navbar-toggler {
    background: #1a355e;
    transition: all 0.3s ease-in-out;
    outline: none !important;
    box-shadow: none !important;
    padding: 8px 11px;
    border-radius: 6px;
    border: none;
  }
  .navbar-toggler:hover {
    opacity: 0.9;
  }
  .navbar-toggler i {
    color: #fff;
    font-size: 20px;
  }
}

.nav-link {
  font-family: "Raleway", sans-serif;
  font-weight: bolder;
}

#sidebar-wrapper {
  background-color: #1a355e;
  /* Navbar container */
  /* Links inside the navbar */
  /* The dropdown container */
  /* Dropdown button */
  /* Dropdown content (hidden by default) */
  /* Links inside the dropdown */
  /* Add a grey background color to dropdown links on hover */
  /* Show the dropdown menu on hover */
}
@media (min-width: 992px) {
  #sidebar-wrapper .fa-users {
    font-size: 14px;
    margin-right: 1px;
  }
  #sidebar-wrapper .fa-file-alt {
    margin-right: 6px;
  }
  #sidebar-wrapper .fa-map-pin {
    margin-right: 8px;
  }
  #sidebar-wrapper .fa-upload {
    margin-right: 2px;
  }
  #sidebar-wrapper .fa-tags {
    font-size: 13px;
    margin-right: 1px;
  }
}
@media (max-width: 992px) {
  #sidebar-wrapper {
    display: none !important;
  }
}
#sidebar-wrapper .sidebar-heading {
  background: #fff;
  padding: 0.5rem;
  font-size: calc(1.6rem + .2vw);
}
#sidebar-wrapper .list-group {
  background-color: #1a355e;
}
#sidebar-wrapper .list-group .list-group-item {
  color: #fff;
  background-color: #1a355e;
}
#sidebar-wrapper i {
  color: #edda1d;
}
#sidebar-wrapper .list-group-flush {
  overflow: hidden;
  background-color: #333;
  font-family: Arial;
}
@media (min-width: 992px) {
  #sidebar-wrapper .list-group-flush {
    width: 19rem;
  }
  #sidebar-wrapper .list-group-flush a {
    transition: all 0.3s ease-in-out;
  }
  #sidebar-wrapper .list-group-flush a:hover {
    opacity: 0.9;
  }
}
#sidebar-wrapper .list-group-flush a {
  float: left;
  color: white;
  text-decoration: none;
}
#sidebar-wrapper .dropdown {
  float: left;
  overflow: hidden;
  position: relative;
  background-color: #1a355e;
}
#sidebar-wrapper .dropdown .dropbtn {
  border: none;
  outline: none;
  color: white;
  background-color: #1a355e;
  font-family: inherit;
  /* Important for vertical align on mobile phones */
  margin: 0;
  /* Important for vertical align on mobile phones */
}
#sidebar-wrapper .dropdown-content {
  display: none;
  position: relative;
  background-color: #edda1d;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 999;
  left: 0;
  top: 0;
}
#sidebar-wrapper .dropdown-content a {
  float: none;
  color: #1a355e;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  display: block;
  text-align: left;
}
#sidebar-wrapper .dropdown-content a:hover {
  background-color: #1a355e;
  color: #fff;
}
#sidebar-wrapper .dropdown:hover .dropdown-content {
  display: block;
}
#sidebar-wrapper .dropbtn {
  padding: 0.75rem 1.25rem;
}
#sidebar-wrapper .dropbtn:hover .dropdown-content {
  display: block;
}

@media (max-width: 992px) {
  #menu-toggle {
    display: none;
  }
}

.nav-fix {
  max-height: 100%;
  position: fixed;
  overflow-y: auto;
  width: 100%;
}

@media (max-width: 992px) {
  .nav-space {
    height: 59px;
  }
}

.navbar {
  background: #edda1d;
}
@media (max-width: 992px) {
  .navbar {
    background: #fff;
    border-bottom: 1px solid #ececec !important;
    max-height: 100%;
    position: fixed;
    overflow-y: auto;
    width: 100%;
    top: 0;
    z-index: 1;
  }
}

@media (max-width: 992px) {
  .navbar-light .navbar-nav {
    border-top: solid 1px #ececec;
    padding-top: 5px;
  }
}
.navbar-light .navbar-nav .nav-link {
  color: #000;
}
@media (max-width: 992px) {
  .navbar-light .navbar-nav .nav-link {
    padding: 12px 0;
  }
}

#page-content-wrapper {
  width: 100%;
  max-width: 100%;
}

.basic-page {
  padding: 3rem;
}
@media (max-width: 992px) {
  .basic-page {
    padding: 15px;
  }
}
.basic-page .card-header {
  background: #1a355e;
}
.basic-page .card-header h1 {
  color: #fff;
}

@media (max-width: 992px) {
  .row {
    margin-right: 0;
    margin-left: 0;
  }
}

.basic-form input, .basic-form select {
  font-size: 1.6rem;
}
.basic-form .form-check-label {
  margin-left: 0.5rem;
}
.basic-form .form-group label {
  font-size: 1.8rem;
  font-weight: bolder;
  color: #1a355e;
}

label {
  font-size: 1.8rem;
  font-weight: bolder;
  color: #1a355e;
}

.label-card {
  display: grid;
  grid-template-columns: minmax(0, 70%) minmax(0, 30%);
  grid-gap: 3rem;
}

h4 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #1a355e;
  font-weight: bolder;
}

.filter-row {
  display: flex;
  grid-gap: 3rem;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 2rem;
}
@media (max-width: 1366px) {
  .filter-row {
    display: block;
  }
}
.filter-row button {
  margin-bottom: 1rem;
}
@media (max-width: 992px) {
  .filter-row button {
    margin-bottom: 0;
  }
}
@media (max-width: 480px) {
  .filter-row button {
    width: 100%;
    max-width: 100%;
  }
}
.filter-row .control-label {
  font-size: 1.8rem;
  font-weight: bolder;
  color: #1a355e;
}
.filter-row .form-control {
  min-height: 38px;
}

.form-control-sm {
  font-size: 1.6rem;
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background: #00c870;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #1a355e;
  color: white;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #fff !important;
  transition: all 0.3s ease-in-out;
  margin-right: 5px;
  margin-left: 1px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  opacitY: 0.9;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #1a355e;
  border: 1px solid #edda1d;
  color: #fff;
  border-radius: 6px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 2px 5px;
}

.form-check-label {
  margin-left: 0.5rem;
}

.form-control {
  font-size: 1.6rem;
}

.select2-container--default .select2-selection--multiple {
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  min-height: 33.5px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-check-input {
  margin-top: 0.6rem;
}

.inputs {
  display: flex;
  flex-direction: row;
  grid-gap: 3rem;
}
.inputs p {
  font-size: 3rem;
  align-self: end;
}

/* Tooltip container */
.manual-tooltip {
  position: relative;
  display: inline-block;
}
@media (max-width: 1366px) {
  .manual-tooltip {
    position: relative;
    font-size: 16px !important;
    height: 18px;
    line-height: 0;
  }
}

/* Tooltip text */
.manual-tooltip .tooltiptext {
  visibility: hidden;
  width: 300px;
  background-color: #edda1d;
  color: #000 !important;
  padding: 1rem 3rem;
  border-radius: 6px;
  /* Position the tooltip text - see examples below! */
  position: absolute;
  top: -5px;
  left: 105%;
  z-index: 1;
  text-align: left;
  list-style: disc;
}
@media (max-width: 1366px) {
  .manual-tooltip .tooltiptext {
    right: 0;
    left: 0;
    line-height: 20px;
  }
}
.manual-tooltip .tooltiptext span {
  color: #000 !important;
}

/* Show the tooltip text when you mouse over the tooltip container */
.manual-tooltip:hover .tooltiptext {
  visibility: visible;
}

.doc-label + .form-group {
  margin-top: -25px;
}

.name-filter {
  min-width: 30vw;
}

.date-input-field {
  max-width: 12rem;
}

p {
  margin-bottom: 10px;
}
p:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  p {
    font-size: 16px;
  }
}

.mt-15 {
  margin-top: 15px;
}

@media (max-width: 992px) {
  .mt-15-res {
    margin-top: 15px;
  }
}

.mb-15 {
  margin-bottom: 15px;
}

@media (max-width: 992px) {
  .mb-15-res {
    margin-bottom: 15px;
  }
}

.pt-15 {
  padding-top: 15px;
}

@media (max-width: 992px) {
  .pt-15-res {
    padding-top: 15px;
  }
}

.pb-15 {
  padding-bottom: 15px;
}

@media (max-width: 992px) {
  .pb-15-res {
    padding-bottom: 15px;
  }
}

#menu-toggle {
  margin-top: 1px;
}
@media (max-width: 1200px) {
  #menu-toggle {
    font-size: inherit;
  }
}
#menu-toggle i {
  margin-left: 0px;
  padding-right: 1px;
}

@media (max-width: 992px) {
  .text-center {
    text-align: left !important;
  }
}

@media (min-width: 992px) {
  .select2-container {
    width: auto !important;
    min-width: 178px;
  }
}
@media (max-width: 992px) {
  .select2-container {
    display: block;
    vertical-align: unset;
    width: auto !important;
  }
}

@media (max-width: 992px) {
  .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (max-width: 992px) {
  .pagination {
    margin: 15px 0 0 !important;
    white-space: nowrap;
    justify-content: start !important;
  }
}

@media (max-width: 992px) {
  .plr-0-res {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

@media (max-width: 992px) {
  #page-content-wrapper {
    min-width: 100%;
  }
}

@media (max-width: 480px) {
  .btn-danger {
    width: 100%;
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .btn-sign-in {
    margin-top: 0 !important;
    margin-left: 10px !important;
  }
}

.go-back-list {
  margin-bottom: 15px;
  display: block;
}

.create-user-btn {
  display: block !important;
  margin: 0 auto 15px !important;
  max-width: 200px !important;
}
@media (max-width: 992px) {
  .create-user-btn {
    max-width: 100% !important;
    margin: 0 auto !important;
  }
}

.rotated {
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -moz-transform: rotate(180deg);
  /* Firefox */
  -webkit-transform: rotate(180deg);
  /* Safari and Chrome */
  -o-transform: rotate(180deg);
  /* Opera */
  transition: all 0.3s ease-in-out;
}

.alert {
  border-radius: 0;
  margin-bottom: 0;
}
.alert .close {
  transition: all 0.3s ease-in-out;
  outline: none !important;
  box-shadow: none !important;
  font-size: 21px;
}

.col-res {
  margin: 0 auto;
}
@media (max-width: 992px) {
  .col-res {
    width: 100%;
    max-width: 100%;
    flex: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .col-res-two {
    width: 100%;
    max-width: 100%;
    flex: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

.button-primary, .button-secondary {
  outline: none !important;
  box-shadow: none !important;
  display: inline-block;
  width: auto;
  margin-top: 10px;
}
@media (max-width: 992px) {
  .button-primary, .button-secondary {
    display: block;
    transform: none !important;
    font-size: 18px;
    width: 100%;
  }
}

.btn-res-account {
  border-radius: 3rem;
  margin-top: 10px;
}
@media (max-width: 992px) {
  .btn-res-account {
    width: 100%;
    max-width: 100%;
    display: block;
  }
}

.filter-row-document {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  max-width: 1420px;
  margin: 0 auto 15px;
}
@media (max-width: 1600px) {
  .filter-row-document {
    grid-gap: 15px;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 1366px) {
  .filter-row-document {
    max-width: 100%;
  }
}
@media (max-width: 1200px) {
  .filter-row-document {
    grid-template-columns: 1fr;
  }
}
.filter-row-document .date-divider {
  align-self: center;
  margin-top: 20px;
  font-size: 24px;
  margin-left: 3px;
  margin-right: 3px;
}

.card-header h1 {
  margin-bottom: 3px;
}

@media (min-width: 992px) {
  .label-manager-page .button-primary, .label-manager-page .button-secondary {
    display: inline-block;
    margin-top: 10px;
    max-width: 100%;
  }
}
.label-manager-page .btn-warning {
  border-radius: 6px;
}
@media (min-width: 992px) {
  .label-manager-page .btn-warning {
    margin-right: 5px;
  }
}
@media (max-width: 1200px) {
  .label-manager-page .btn-warning {
    width: 100%;
    display: block;
    border-radius: 6px;
    padding: 3px;
    font-size: 16px;
    margin-bottom: 5px;
  }
}
@media (max-width: 1200px) {
  .label-manager-page .btn-danger {
    width: 100%;
    display: block;
    border-radius: 6px;
    padding: 3px 10px 2px;
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  .label-manager-page .label-card {
    grid-template-columns: 1fr;
    grid-gap: 15px;
  }
}
@media (max-width: 992px) {
  .label-manager-page div.dataTables_wrapper div.dataTables_length, .label-manager-page div.dataTables_wrapper div.dataTables_filter, .label-manager-page div.dataTables_wrapper div.dataTables_info, .label-manager-page div.dataTables_wrapper div.dataTables_paginate {
    text-align: left;
  }
}
@media (max-width: 992px) {
  .label-manager-page .col-sm-12, .label-manager-page .col-md-6, .label-manager-page .col-md-4, .label-manager-page .col-md-2, .label-manager-page .col-md-3 {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 992px) {
  .label-manager-page #user-list-table_filter {
    margin-top: 10px;
  }
}

@media (max-width: 1292px) {
  .label-manager-two .btn-edit {
    margin-bottom: 5px;
  }
}

.upload-page .label-edit-documents label {
  display: block;
}
@media (max-width: 992px) {
  .upload-page .col-md-6, .upload-page .col-md-12 {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    max-width: 100%;
    flex: 100%;
  }
}
.upload-page .glyphicon {
  position: relative;
  top: 0;
  font-size: 16px;
}
.upload-page .btn-res-two {
  margin-top: 10px;
}
@media (max-width: 992px) {
  .upload-page .btn-res-two {
    width: 100%;
    max-width: 100%;
    display: block;
    margin-top: 10px;
  }
}
.upload-page .go-back-list {
  margin-bottom: 15px;
  display: block;
}

.user-list-page .btn-warning {
  border-radius: 6px;
}
@media (min-width: 992px) {
  .user-list-page .btn-warning {
    margin-right: 5px;
  }
}
@media (max-width: 1366px) {
  .user-list-page .btn-warning {
    width: 35px;
  }
}
@media (max-width: 1200px) {
  .user-list-page .btn-warning {
    display: block;
    border-radius: 6px;
    padding: 3px;
    font-size: 16px;
    margin-bottom: 5px;
  }
}

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