:root {
    --primary: #007AFF;
    --accent: #007AFF;
    --text: #000;
    --error: #E6492D;
    --mdc-theme-primary: #007AFF;
    --mdc-theme-secondary: #007AFF;
    --mdc-theme-background: #007AFF;
    --mdc-theme-on-primary: #000;
    --mdc-theme-on-secondary: #fff;
    --light-text: rgba(0,0,0,0.8);
    --shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.1);
    --header-hight: 55px;
    --base-font-size: 16px;
}
.mdc-drawer {
    width: 260px;
}
.mdc-drawer__content {
    margin-bottom: 1rem;
}
.mdc-drawer.mdc-drawer--open:not(.mdc-drawer--closing)+.mdc-drawer-app-content {
    margin-left: 260px;
}
html {
  height: 100%;
}
body {
  display: flex;
  height: 100%;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  flex-direction: column;
  position: relative;
}
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  /* Set the fixed height of the footer here */
  height: 60px;
  line-height: 60px; /* Vertically center the text there */
}
.login-logo {
  width: 20rem;
}

/* Mobile devices (Extra small) */
@media screen and (max-width: 575px) {
  :root {
    font-size: var(--base-font-size);
  }
  .login-logo {
    width: 15rem;
  }
}

/* Mobile devices (Small) */
@media screen and (min-width: 576px) and (max-width: 767px) {
  :root {
    font-size: var(--base-font-size);
  }
  .login-logo {
    width: 15rem;
  }
}

 /* Tablets (Medium) */
@media screen and (min-width: 768px) and (max-width: 991px) {
  :root {
    font-size: var(--base-font-size);
  }
  .login-logo {
    width: 15rem;
  }
}

/* Small laptops (Large) */
@media screen and (min-width: 992px) and (max-width: 1199px) {
  :root {
    font-size: var(--base-font-size);
  }
  .login-logo {
    width: 20rem;
  }
}

/* Laptops (Extra large) */
@media screen and (min-width: 1200px) and (max-width: 1919) {
  :root {
    font-size: var(--base-font-size);
  }
  .login-logo {
    width: 20rem;
  }
}

/* Laptops (Extra large) */
@media screen and (min-width: 1920px) {
  :root {
    font-size: var(--base-font-size);
  }
  .login-logo {
    width: 20rem;
  }
}
.mdc-tab .mdc-tab__text-label, .mdc-drawer .mdc-list-item {
    color: var(--light-text);
}
small, .small, .form-group > label, .input-group > label {
    color: var(--light-text) !important;
}
.mdc-top-app-bar__row {
  height: var(--header-hight);
}
.mdc-top-app-bar--fixed-adjust {
  padding-top: var(--header-hight);
}
a, a:hover {
  color: var(--mdc-theme-primary);
  text-decoration: none;
}
::-webkit-scrollbar {
  width: 0.6rem;
  border: none;
}
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.00);
}
::-webkit-scrollbar-thumb {
  outline: none;
  background-color: rgba(0,0,0,.15);
}
.main-content, .mdc-drawer-app-content {
  overflow: auto;
  height: 100%;
}
.mdc-drawer-app-content {
  display: flex;
  flex-direction: column;
}
.main-content {
  padding: 1.5rem;
}
.page-link { 
  color: var(--mdc-theme-primary);
  border-radius: 50%;
}
.page-item.active .page-link {
  background-color: var(--mdc-theme-primary) !important;
  border-color: var(--mdc-theme-primary) !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  background: none !important;
  border: none !important;
}
.loader {
  position: relative;
  margin: 0 auto;
  width: 100px;
  z-index: 99999;
}
.loader:before {
  content: '';
  display: block;
  padding-top: 100%;
}
.circular {
  animation: rotate 2s linear infinite;
  height: 100%;
  transform-origin: center center;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.path {
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
  stroke-linecap: round;
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
@keyframes color {
  100%, 0% {
    stroke: #d62d20;
  }
  40% {
    stroke: #0057e7;
  }
  66% {
    stroke: #008744;
  }
  80%, 90% {
    stroke: #ffa700;
  }
}
.loader-showbox {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20%;
  z-index: 9999;
  background-color: #fff;
}
.dataTables_processing {
  -moz-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1);
  background-color: white !important;
}
.mdc-dialog .mdc-dialog__surface.width-40 {
    min-width: 40vw;
}
.mdc-drawer .mdc-list-item {
    color: var(--light-text);
}
.mdc-drawer .mdc-list-item__graphic {
    color: var(--text);
}
.dropdown-menu>.active>a, .dropdown-menu>.active>a:hover, .dropdown-menu>.active>a:focus {
    background-color: var(--mdc-theme-primary);
}
.mdc-top-app-bar {
    color: var(--mdc-theme-on-primary, #fff);
    background-color: #fff;
}
.mdc-drawer {
    z-index: 2;
}

.mdc-drawer__header {
    padding-left: 1.7rem;
}

.mdc-drawer--dismissible {
    position: fixed;
}
thead input {
  width: 100%;
}
.header-logo {
    width: 160px;
}
.header.mdc-drawer .mdc-list-item {
    font-weight: normal;
}

.mdc-data-table {
    width: 100%;
}

.mdc-linear-progress__bar-inner {
    border-color: var(--mdc-theme-primary);
}
.mdc-list-item.active .mdc-list-item__text, .mdc-list-item.active .material-icons {
    color: var(--mdc-theme-primary);
}

.mdc-tab--active .mdc-tab__text-label, .mdc-tab--active .mdc-tab__icon {
    color: var(--accent);
}

.mdc-tab-bar {
    box-shadow: var(--shadow);
}

.tab-content {
  display: none;
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.tab-content--active {
  display: block;
}

.mdc-tab__text-label {
    text-transform: capitalize;
    font-size: 0.9em;
}

.shadow-bottom {
  -moz-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1);
}

.fw-light {
  font-weight: 300;
}

.fw-medium {
  font-weight: 500;
}

.fw-normal {
  font-weight: 400;
}

p.title {
  font-size: 1.115rem;
}

.border-bottom {
  border-bottom: 1px solid #EAEDF3;
}
select {
  width: 100%;
}
small,
.small,
.form-group > label,
.input-group > label {
  font-size: 0.7rem;
  color: #9ea0a5;
  text-transform: uppercase;
}

.spacing {
  padding: 1rem;
}

.pointer {
  cursor: pointer;
}

.ul-checkbox {
  position: relative;
  display: inline-block;
  color: rgba(0, 0, 0, 0.87);
  cursor: pointer;
  font-size: 0.8em;
  line-height: 18px;
}

.ul-checkbox > input {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: -1;
  left: -15px;
  top: -15px;
  display: block;
  margin: 0;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  background-color: rgba(0, 0, 0, 0.42);
  outline: none;
  opacity: 0;
  transform: scale(1);
  -ms-transform: scale(0);
    /* Graceful degradation for IE */
  transition: opacity 0.5s, transform 0.5s;
}

.ul-checkbox > input:checked {
  background-color: var(--mdc-theme-primary);
}

.ul-checkbox:active > input {
  opacity: 1;
  transform: scale(0);
  transition: opacity 0s, transform 0s;
}

.ul-checkbox > input:disabled {
  opacity: 0;
}

.ul-checkbox > input:disabled + span {
  cursor: initial;
}

.ul-checkbox > span::before {
  content: "";
  display: inline-block;
  margin-right: 15px;
  border: solid 1px #ccccccb3;
  border-radius: 2px;
  width: 14px;
  height: 14px;
  box-shadow: 0px 0px 2px 1px #eaedf3;
  vertical-align: -3px;
  transition: border-color 0.2s, background-color 0.2s;
}

.ul-checkbox > input:checked + span::before {
  border-color: #11a225;
  background-color: var(--mdc-theme-primary);
}

.ul-checkbox > input:active + span::before {
  box-shadow: 0px 0px 2px 1px #e4e4e4;
}

.ul-checkbox > input:checked:active + span::before {
  border-color: transparent;
  background-color: rgba(0, 0, 0, 0.42);
}

.ul-checkbox > input:disabled + span::before {
  border-color: #ccccccb3;
  background-color: #ccccccb3;
}

.ul-checkbox > input:checked:disabled + span::before {
  border-color: transparent;
}

.ul-checkbox > span::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  border: solid 2px transparent;
  top: 3px;
  width: 4px;
  height: 9px;
  border-left: none;
  border-top: none;
  transform: translate(5.5px, 1px) rotate(45deg);
  -ms-transform: translate(5.5px, 2px) rotate(45deg);
}

.ul-checkbox > input:checked + span::after {
  border-color: #fff;
}

@keyframes ripple {
  0% {
    box-shadow: 0px 0px 0px 1px transparent;
  }

  50% {
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
  }

  100% {
    box-shadow: 0px 0px 0px 0px transparent;
  }
}

.ul-radio {
  margin: 0.7rem 0;
  padding-bottom: 1rem;
}
.bg-red {
    background-color: #d9534f !important;
    border-color: #d9534f !important;
}
.ul-radio.ul-radio-inline {
  display: inline-block;
}

.ul-radio input[type="radio"] {
  display: none;
}

.ul-radio input[type="radio"]:checked + label:before {
  border: 5px solid var(--mdc-theme-primary);
  animation: ripple 0.2s linear forwards;
}

.ul-radio input[type="radio"]:checked + label:after {
  transform: scale(1);
}

.ul-radio input[type="radio"]:disabled + label:after,
    .ul-radio input[type="radio"]:disabled + label::before {
  border: solid 1px #ccccccb3;
  background-color: #ccccccb3;
}

.ul-radio label {
  display: inline-block;
  height: 16px;
  position: relative;
  padding: 0 30px;
  margin-bottom: 0;
  cursor: pointer;
  vertical-align: bottom;
}

.ul-radio label:before, .ul-radio label:after {
  position: absolute;
  content: "";
  border-radius: 50%;
  transition: all 0.3s ease;
  transition-property: transform, border-color;
}

.ul-radio label:before {
  transition: all 0.4s ease;
  left: 0;
  top: 5px;
  width: 16px;
  height: 16px;
  box-shadow: 0px 0px 2px 2px #eaedf3;
}

.ul-radio label:after {
  transition: all 0.4s ease;
  top: 10px;
  left: 5px;
  width: 6px;
  height: 6px;
  transform: scale(0);
  background: #fff;
}

.toggle {
  position: relative;
  margin: 1rem 0 1rem 0;
}

.toggle .toggle-label {
  position: absolute;
  top: 0px;
  left: 60px;
  text-transform: uppercase;
  color: #9ea0a5;
  font-size: 0.78em;
}

.toggle .tgl {
  display: none;
}

.toggle .tgl, .toggle .tgl:after, .toggle .tgl:before,
    .toggle .tgl *,
    .toggle .tgl *:after,
    .toggle .tgl *:before,
    .toggle .tgl + .tgl-btn {
  box-sizing: border-box;
}

.toggle .tgl::selection, .toggle .tgl:after::selection, .toggle .tgl:before::selection,
      .toggle .tgl *::selection,
      .toggle .tgl *:after::selection,
      .toggle .tgl *:before::selection,
      .toggle .tgl + .tgl-btn::selection {
  background: none;
}

.toggle .tgl + .tgl-btn {
  outline: 0;
  display: block;
  width: 2.9em;
  height: 1.5em;
  position: relative;
  cursor: pointer;
  user-select: none;
}

.toggle .tgl + .tgl-btn:after, .toggle .tgl + .tgl-btn:before {
  position: relative;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
}

.toggle .tgl + .tgl-btn:after {
  left: 0;
}

.toggle .tgl + .tgl-btn:before {
  display: none;
}

.toggle .tgl:checked + .tgl-btn:after {
  left: 50%;
}

.toggle .tgl:disabled + .tgl-btn {
  background-color: #ccccccb3;
}

.toggle .tgl:disabled + .tgl-btn:after {
  background-color: #fdfdfd;
}

.toggle .tgl + .tgl-btn {
  background: #eaedf3;
  border-radius: 2em;
  padding: 2px;
  transition: all 0.4s ease;
}

.toggle .tgl + .tgl-btn:after {
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}

.toggle .tgl:checked + .tgl-btn {
  background: var(--mdc-theme-primary);
}

.push-left {
  float: left;
}

.push-right {
  float: right;
}

.modal-footer {
  display: block;
}

i.material-icons.blue {
  color: var(--mdc-theme-primary);
}

i.material-icons.red {
  color: #e6492d;
}

i.material-icons.green {
  color: var(--mdc-theme-primary);
}

i.material-icons.violet {
  color: #6758f3;
}

@-webkit-keyframes slideIn {
  0% {
    right: -100%;
  }

  100% {
    right: 5%;
  }
}

@-moz-keyframes slideIn {
  0% {
    right: -100%;
  }

  100% {
    right: 5%;
  }
}

@-o-keyframes slideIn {
  0% {
    right: -100%;
  }

  100% {
    right: 5%;
  }
}

@keyframes slideIn {
  0% {
    right: -100%;
  }

  100% {
    right: 5%;
  }
}

.alert-success {
  color: #fff;
  background-color: var(--mdc-theme-primary);
  border-color: var(--mdc-theme-primary);
}

.alert-primary {
  color: #fff;
  background-color: var(--mdc-theme-primary);
  border-color: var(--mdc-theme-primary);
}

.alert-warning {
  color: #fff;
  background-color: #f6ab2f;
  border-color: #f6ab2f;
}

.alert-danger {
  color: #fff;
  background-color: #e6492d;
  border-color: #e6492d;
}

.alert {
  -webkit-animation: slideIn 1s;
  -moz-animation: slideIn 1s;
  -o-animation: slideIn 1s;
  animation: slideIn 1s;
  position: fixed;
  min-width: 30rem;
  right: 5%;
  bottom: 5%;
}

.alert .close,
  .alert .close:hover {
  color: #fff;
  opacity: 1;
  font-weight: 400;
}

.input-group {
  margin-top: 0.2rem;
}

.input-group input[type="text"],
  .input-group input[type="password"],
  .input-group input[type="number"] {
  border-right-color: #fff;
}

.input-group > label {
  width: 100%;
}

.input-group .input-group-text {
  background-color: #fff;
  border-left-color: #fff;
  -moz-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1);
}

.input-group > .custom-select:not(:first-child),
.input-group > .form-control:not(:first-child) {
  border-top-left-radius: 0.27rem;
  border-bottom-left-radius: 0.27rem;
}

.input-group > .custom-select:not(:last-child),
.input-group > .form-control:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group-append {
  margin-left: -2px;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: var(--mdc-theme-primary);
  outline: 0;
  box-shadow: none;
}

.form-control:focus + .input-group-append .input-group-text {
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  border-top-color: var(--mdc-theme-primary);
  border-right-color: var(--mdc-theme-primary);
  border-bottom-color: var(--mdc-theme-primary);
  -moz-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1);
}

input[type="text"],
input[type="password"],
input[type="number"] {
  font-size: 0.8rem;
  -moz-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1);
}

input[type="text"] + .input-group-append i,
  input[type="password"] + .input-group-append i,
  input[type="number"] + .input-group-append i {
  font-size: 1em;
}

.navbar {
  padding: 0rem 1rem;
  background-color: #fff;
}

.btn,
.dropdown-item {
  font-size: 0.9rem;
}

.dropdown-item {
  color: #3E3F42;
}

.dropdown-menu {
  -moz-box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.1);
  border: none;
}

.dropdown-menu img:not(.circle) {
  margin-right: 0.7rem;
  margin-top: -2px;
  height: 0.9rem;
}

.dropdown-menu img.circle {
  margin-right: 0.7rem;
  height: 1.5rem;
}

.circle {
  border-radius: 50%;
}

.btn-primary {
  color: #fff;
  background-color: var(--mdc-theme-primary);
  border-color: var(--mdc-theme-primary);
}

.mat-flat-button.mat-primary,
.mat-raised-button.mat-primary,
.mat-fab.mat-primary,
.mat-mini-fab.mat-primary {
  background-color: var(--mdc-theme-primary);
  border-color: var(--mdc-theme-primary);
}

.btn-light,
.btn-light:hover {
  color: #3E3F42;
  background-color: white;
  border-color: white;
  -moz-box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.1);
}

.btn img:not(.circle) {
  height: 0.9rem;
  margin-right: 0.5rem;
  margin-top: -2px;
}

.btn img.circle {
  height: 1.5rem;
  margin-right: 0.5rem;
}

.dropdown-toggle::after {
  color: #9ea0a5;
}

.pointer {
  cursor: pointer;
}

.input-group-text i {
  opacity: 0.6;
}

textarea.form-control {
  font-size: 0.9rem;
  resize: none;
  overflow: auto;
  color: #3e3f42;
}

.mat-tab-label-content i.material-icons {
  margin-right: 0.5rem;
}

table {
  width: 100%;
}

.help-block a {
    color: var(--mdc-theme-primary);
}

.btn-primary:hover, .btn-primary:focus, .btn-primary.focus, .btn-primary:active, .btn-primary.active, .open>.dropdown-toggle.btn-primary {
  color: #fff;
  background-color: var(--mdc-theme-primary);
  border-color: var(--mdc-theme-primary);
  outline: none !important;
  box-shadow: var(--shadow);
}
.mdl-button--raised.mdl-button--colored {
    background: var(--mdc-theme-primary);
}
.mdc-text-field {
  width: 100%;
}
.invalid-feedback {
    color: var(--error);
}
.favButton {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    z-index: 6;
}

.favButton .mdc-icon-button {
    background-color: rgb(66,66,66);
    color: rgba(255,255,255,0.87);
    transition: all 175ms cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 10px 0 rgba(0,0,0,.12), 0 1px 18px 0 rgba(0,0,0,.14), 0 3px 5px -1px rgba(0,0,0,.12);
    width: 56px;
    height: 56px;
    border-radius: 50%;
}

.input-group-text {
    font-size: 0.5rem !important;
    padding: 0 0.5rem 0 0;
    border: none;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
}
.input-group-text .material-icons {
    font-size: 20px !important;
}
pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.42857143;
  color: #333;
  word-break: break-all;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
  white-space: pre-wrap;
  white-space: -moz-pre-wrap;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  word-wrap: break-word;
}

.select2-container--default .select2-selection--single {
  padding: 2px;
  background-color: #fff;
  border: none;
  border-radius: .25rem;
  box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.1);
}
.select2-container .select2-selection--single {
  height: 32px;
}
.select2-dropdown {
  box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.1);
  border: 1px solid #ced4da;
}
.select2-results__option {
  padding-left: 1rem;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: var(--mdc-theme-primary);
  color: white;
}
.select2-container--default .select2-results>.select2-results__options {
  max-height: 50vh;
}
.chart {
  width: 100%;
  height: 500px;
  max-height: 500px;
  margin-bottom: 1rem;
}

.buttons-excel, .dt-buttons a {
  border: 1px solid #ced4da;
}
.ibox  {
    border-radius: 4px;
}
.mdc-tab__ripple:focus, button:focus {
  outline: none;
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
  border: none !important;
}
.mdl-data-table {
    font-size: 1rem;
}
.mdl-data-table th {
    font-size: 0.8rem;
}
.dt-button {
    margin: 5px;
}
.dt-button:not(.active) {
    background: #fff;
}
.dt-button.active {
    background: var(--mdc-theme-primary);
}
.dt-button:not(.active) a {
    color: var(--mdc-theme-primary);
}
.dt-button.active a {
    color: #fff !important;
}
.dt-button-collection {z-index: 999999;}
.buttons-collection {
    border: 1px solid #ced4da;
}
.dt-buttons a {
    margin-right: 10px !important;
}

.dataTables_scrollHeadInner, .mdl-data-table.dataTable, .dataTables_scrollFootInner {
    width: 100% !important;
}

.full-width {
  width: 100% !important;
}