@import 'font-awesome.min.css';
@import '../vendor/fontawesome-free/css/all.min.css';
@import '../vendor/bootstrap/css/bootstrap.min.css';
@import 'main.css';
@import '../vendor/jquery/jquery-ui.min.css';
@import 'css2.css';
@import 'css2_1.css';

/*@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600;700;900&family=Titillium+Web:wght@200;400;600;700;900&display=swap');*/
 /* font-family: 'Source Sans Pro', sans-serif!important; */
 /* font-family: 'Titillium Web', sans-serif, 'FontAwesome'!important; */
html {
  position: relative;
  min-height: 100%;
  
}

body {
  height: 100%;
  font-family: 'Source Sans Pro', sans-serif, 'FontAwesome'!important;
  font-size: 14px;
  color: #4e4e4e
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-family: 'Titillium Web', sans-serif, 'FontAwesome'!important;
}
a:focus {
  outline: none;
}

#wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#wrapper #content-wrapper {
  background-color: #FAFDFB;
  width: 100%;
  overflow-x: hidden;  
  color: #4e4e4e;
}

#wrapper #content-wrapper #content {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}


.container,
.container-fluid,
.container-login {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}



@media (min-width:768px) {
  .container-login {
    margin-left: 25rem;
    margin-right: 25rem;
  }
}


.scroll-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  text-align: center;
  color: #fff;
  background: rgba(90, 92, 105, 0.5);
  line-height: 46px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

.scroll-to-top:focus,
.scroll-to-top:hover {
  color: white;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

.scroll-to-top:hover {
  background: #5a5c69;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

.scroll-to-top i {
  font-weight: 800;
}

@-webkit-keyframes growIn {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    opacity: 0;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes growIn {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    opacity: 0;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

.animated--grow-in,
.sidebar .nav-item .collapse {
  -webkit-animation-name: growIn;
  animation-name: growIn;
  -webkit-animation-duration: 200ms;
  animation-duration: 200ms;
  -webkit-animation-timing-function: transform cubic-bezier(0.18, 1.25, 0.4, 1), opacity cubic-bezier(0, 1, 0.4, 1);
  animation-timing-function: transform cubic-bezier(0.18, 1.25, 0.4, 1), opacity cubic-bezier(0, 1, 0.4, 1);
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.animated--fade-in {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 200ms;
  animation-duration: 200ms;
  -webkit-animation-timing-function: opacity cubic-bezier(0, 1, 0.4, 1);
  animation-timing-function: opacity cubic-bezier(0, 1, 0.4, 1);
}


.bg-gradient-primary {
  background-color: #012834;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #012834), to(#303f9f));
  background-image: linear-gradient(180deg, #012834 10%, #303f9f 100%);
  background-size: cover;
}
.bg-gradient-success {
  background-color:  #4BCD3E;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(10%,  #4BCD3E), to(#13855c));
  background-image: linear-gradient(180deg,  #4BCD3E 10%, #13855c 100%);
  background-size: cover;
}

.bg-gradient-info {
  background-color: #009775;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #009775), to(#258391));
  background-image: linear-gradient(180deg, #009775 10%, #258391 100%);
  background-size: cover;
}

.bg-gradient-default {
  background: linear-gradient(87deg, #172b4d 0, #1a174d 100%) !important;
}

.bg-gradient-login {
  background-color: #f8f9fc;
  background-size: cover;
}

.bg-gray-100 {
  background-color: #f8f9fc !important;
}

.bg-gray-200 {
  background-color: #eaecf4 !important;
}

.bg-gray-300 {
  background-color: #dddfeb !important;
}

.bg-gray-400 {
  background-color: #d1d3e2 !important;
}

.bg-gray-500 {
  background-color: #b7b9cc !important;
}

.bg-gray-600 {
  background-color: #858796 !important;
}

.bg-gray-700 {
  background-color: #6e707e !important;
}

.bg-gray-800 {
  background-color: #5a5c69 !important;
}

.bg-gray-900 {
  background-color: #3a3b45 !important;
}

.o-hidden {
  overflow: hidden !important;
}

.text-xs {
  font-size: .7rem;
}

.text-lg {
  font-size: 1.2rem;
}

.text-gray-100 {
  color: #F9F5F1 !important;
}

.text-gray-200 {
  color: #F3EDE5 !important;
}

.text-gray-300 {
  color: #F5F5F5 !important;
}

.text-gray-400 {
  color: #999!important;
}

.text-gray-500 {
  color: #b7b9cc !important;
}

.text-gray-600 {
  color: #858796 !important;
}

.text-gray-700 {
  color: #6e707e !important;
}

.text-gray-800 {
  color: #5a5c69 !important;
}

.text-gray-900 {
  color: #3a3b45 !important;
}



.icon-circle {
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.border-left-primary {
  border-left: 0.25rem solid #3f51b5 !important;
}

.border-bottom-primary {
  border-bottom: 0.25rem solid #3f51b5 !important;
}

.border-left-secondary {
  border-left: 0.25rem solid #757575 !important;
}

.border-bottom-secondary {
  border-bottom: 0.25rem solid #757575 !important;
}

.border-left-success {
  border-left: 0.25rem solid  #4BCD3E !important;
}

.border-bottom-success {
  border-bottom: 0.25rem solid  #4BCD3E !important;
}

.border-left-light {
  border-left: 0.25rem solid #f8f9fc !important;
}

.border-bottom-light {
  border-bottom: 0.25rem solid #f8f9fc !important;
}

.border-left-dark {
  border-left: 0.25rem solid #5a5c69 !important;
}

.border-bottom-dark {
  border-bottom: 0.25rem solid #5a5c69 !important;
}

.progress-sm {
  height: .5rem;
}

.rotate-15 {
  -webkit-transform: rotate(15deg);
  transform: rotate(15deg);
}

.rotate-n-15 {
  -webkit-transform: rotate(-15deg);
  transform: rotate(-15deg);
}

.dropdown .dropdown-menu {
  font-size: 0.85rem;
  -webkit-box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15) !important;
  box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15) !important;
}

.dropdown .dropdown-menu .dropdown-header {
  font-weight: 800;
  font-size: 0.65rem;
  color: #b7b9cc;
}

.dropdown.no-arrow .dropdown-toggle::after {
  display: none;
}

.sidebar .nav-item.dropdown .dropdown-toggle::after,
.topbar .nav-item.dropdown .dropdown-toggle::after {
  width: 1rem;
  text-align: center;
  float: right;
  vertical-align: 0;
  border: 0;
  font-weight: 900;
  content: '\f105';
  font-family: 'Font Awesome 5 Free';
}

.sidebar .nav-item.dropdown.show .dropdown-toggle::after,
.topbar .nav-item.dropdown.show .dropdown-toggle::after {
  content: '\f107';
}

.sidebar .nav-item .nav-link,
.topbar .nav-item .nav-link {
  position: relative;
}

.sidebar .nav-item .nav-link .badge-counter,
.topbar .nav-item .nav-link .badge-counter {
  position: absolute;
  -webkit-transform: scale(0.7);
  transform: scale(0.7);
  -webkit-transform-origin: top right;
  transform-origin: top right;
  right: .25rem;
  margin-top: -.25rem;
}

.sidebar .nav-item .nav-link .img-profile,
.topbar .nav-item .nav-link .img-profile {
  height: 2rem;
  width: 2rem;
  border: 1px solid #fafafa;
}

.topbar {
  height: 3.375rem;
  z-index: 2;
  -webkit-box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15) !important;
  box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15) !important;
}

.topbar #sidebarToggleTop {
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: 0 0 0 0 !important;
  box-shadow: 0 0 0 0 !important;
}

.topbar #sidebarToggleTop:hover {
  background-color: #4bcc3e;
  color: #003b4d;
}

.topbar #sidebarToggleTop:active {
  background-color: #4bcc3e;
  color: #003b4d;
}

.topbar .navbar-search {
  width: 25rem;
}

.topbar .navbar-search input {
  font-size: 0.85rem;
}

.topbar .topbar-divider {
  width: 0;
  border-right: 1px solid #e3e6f0;
  height: calc(4.375rem - 2rem);
  margin: auto 1rem;
}

.topbar .nav-item .nav-link {
  height: 4.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 0.75rem;
}

.topbar .nav-item .nav-link:focus {
  outline: none;
}

.topbar .nav-item:focus {
  outline: none;
}

.topbar .dropdown {
  position: static;
}

.topbar .dropdown .dropdown-menu {
  width: calc(100% - 1.5rem);
  right: 0.75rem;
}

.topbar .dropdown-list {
  padding: 0;
  border: none;
  overflow: hidden;
}

.topbar .dropdown-list .dropdown-header {
  background-color: #3f51b5;
  border: 1px solid #3f51b5;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #fff;
}

.topbar .dropdown-list .dropdown-item {
  white-space: normal;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border-left: 1px solid #e3e6f0;
  border-right: 1px solid #e3e6f0;
  border-bottom: 1px solid #e3e6f0;
  line-height: 1.3rem;
}

.topbar .dropdown-list .dropdown-item .dropdown-list-image {
  position: relative;
  height: 2.5rem;
  width: 2.5rem;
}

.topbar .dropdown-list .dropdown-item .dropdown-list-image img {
  height: 2.5rem;
  width: 2.5rem;
}

.topbar .dropdown-list .dropdown-item .dropdown-list-image .status-indicator {
  background-color: #eaecf4;
  height: 0.75rem;
  width: 0.75rem;
  border-radius: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  border: 0.125rem solid #fff;
}

.topbar .dropdown-list .dropdown-item .text-truncate {
  max-width: 10rem;
}

.topbar .dropdown-list .dropdown-item:active {
  background-color: #eaecf4;
  color: #3a3b45;
}

@media (min-width: 576px) {
  .topbar .dropdown {
    position: relative;
  }

  .topbar .dropdown .dropdown-menu {
    width: auto;
    right: 0;
  }

  .topbar .dropdown-list {
    width: 20rem !important;
  }

  .topbar .dropdown-list .dropdown-item .text-truncate {
    max-width: 13.375rem;
  }

}

.topbar.navbar-light .navbar-nav .nav-item .nav-link {
  color: #fafafa;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

.topbar.navbar-light .navbar-nav .nav-item .nav-link:hover {
  color: #e0e0e0;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

.topbar.navbar-light .navbar-nav .nav-item .nav-link:active {
  color: #858796;
}

.bg-navbar {
  background-color: #012834;
}

.sidebar {
  min-height: 100vh;
  width: 14rem !important;  
  background-color: #ffffff !important;
  -webkit-box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15) !important;
  box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15) !important;
  z-index: 0;
}

.sidebar .nav-item {
  position: relative;     
}

.sidebar .nav-item:last-child {
  margin-bottom: 1rem;
}

.sidebar .nav-item .nav-link {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.6rem 1rem;
  width: 14rem;
  /* font-family: 'Titillium Web', sans-serif, 'FontAwesome'!important; */
}

.sidebar .nav-item .nav-link i {
  font-size: 1.4rem;
  margin-right: 0.25rem;
}

.sidebar .nav-item .nav-link span {
  font-size: 0.75rem;
  display: inline;
}

.sidebar .nav-item.active .nav-link {
  font-weight: 800;
}

.sidebar .nav-item .nav-link[data-toggle="collapse"]::after {
  width: 1rem;
  text-align: center;
  float: right;
  vertical-align: 0;
  border: 0;
  font-weight: 900;
  content: '\f107';
  font-family: 'Font Awesome 5 Free';  
}

.sidebar .nav-item .nav-link[data-toggle="collapse"].collapsed::after {
  content: '\f105';
}

.sidebar .nav-item .collapse {
  position: relative;
  left: 0;  
  z-index: 1;
  top: 0;
  -webkit-animation: none;
  animation: none;

}

.sidebar .nav-item .collapse .collapse-inner {
  border-radius: 0.35rem;
  -webkit-box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
  box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;    
}

.sidebar .nav-item .collapsing {
  display: block;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;

}

.sidebar .nav-item .collapse,
.sidebar .nav-item .collapsing {
  margin: 0 1rem;
}

.sidebar .nav-item .collapse .collapse-inner,
.sidebar .nav-item .collapsing .collapse-inner {
  padding: .5rem 0;
  min-width: 10rem;
  font-size: 0.73rem;
  margin: 0 0 1rem 0;    
}

.sidebar .nav-item .collapse .collapse-inner .collapse-header,
.sidebar .nav-item .collapsing .collapse-inner .collapse-header {
  margin: 0;
  white-space: nowrap;
  padding: .5rem 1.5rem;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.65rem;
  color: #b7b9cc;
}

.sidebar .nav-item .collapse .collapse-inner .collapse-item,
.sidebar .nav-item .collapsing .collapse-inner .collapse-item {
  padding: 0.3rem 0.5rem;
  margin: 0 0.5rem;
  display: block;
  color: #4e4e4e;
  text-decoration: none;
  border-radius: 0.15rem;
  white-space: nowrap;
}

.sidebar .nav-item .collapse .collapse-inner .collapse-item:hover,
.sidebar .nav-item .collapsing .collapse-inner .collapse-item:hover {
  background-color: #eee;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

.sidebar .nav-item .collapse .collapse-inner .collapse-item:active,
.sidebar .nav-item .collapsing .collapse-inner .collapse-item:active,
.sidebar .nav-item  .collapse-inner .collapse-item.active {
  background-color: #eee;
  color: #003b4d;
  font-weight: 700;
}

.sidebar .nav-item .collapse .collapse-inner .collapse-item.active,
.sidebar .nav-item .collapsing .collapse-inner .collapse-item.active {
  color: #3a3b45;
  font-weight: 600;
}

.sidebar #sidebarToggle {
  width: 2.5rem;
  height: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  cursor: pointer;
}

.sidebar #sidebarToggle::after {
  font-weight: 900;
  content: '\f104';
  font-family: 'Font Awesome 5 Free';
  margin-right: 0.1rem;
}

.sidebar #sidebarToggle:hover {
  text-decoration: none;
}

.sidebar #sidebarToggle:focus {
  outline: none;
}

.sidebar .sidebar-brand {
  height: 3.375rem;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 800;
  padding: 1.5rem 0.5rem;
  text-align: center;
  justify-content: center;
  letter-spacing: 0.05rem;
  z-index: 1;
}

.sidebar .sidebar-brand .sidebar-brand-icon img {
  max-height: 2.3rem;
}

.sidebar hr.sidebar-divider {
  margin: 1rem 0 1rem 0;
}

.sidebar .sidebar-heading {
  text-align: left;
  padding: 0 1rem;
  font-weight: 800;
  font-size: 0.65rem;
  letter-spacing: 0.13rem;
}

.sidebar .version {
  text-align: left;
  font-size: 0.6rem;
  padding: 0 1rem;
  color: #b7b9cc;
  letter-spacing: 0.030rem;
}


.sidebar .sidebar-brand .sidebar-brand-text {
  display: inline;
}

.sidebar.toggled {
  overflow: visible;
  width: 6.5rem !important;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  z-index: 1;
}

.sidebar.toggled .nav-item {
  margin-bottom: 0px;    
}


.sidebar.toggled hr.sidebar-divider {
  margin: 0 0 1rem 0;
}

.sidebar.toggled #sidebarToggle::after {
  content: '\f105';
  font-family: 'Font Awesome 5 Free';
  margin-left: 0.25rem;
}

.sidebar.toggled .nav-item .collapse {
  position: absolute;
  left: calc(6.5rem + 1.5rem / 2);
  top: 2px;
  -webkit-animation-name: growIn;
  animation-name: growIn;
  -webkit-animation-duration: 200ms;
  animation-duration: 200ms;
  -webkit-animation-timing-function: transform cubic-bezier(0.18, 1.25, 0.4, 1), opacity cubic-bezier(0, 1, 0.4, 1);
  animation-timing-function: transform cubic-bezier(0.18, 1.25, 0.4, 1), opacity cubic-bezier(0, 1, 0.4, 1);  
}

.sidebar.toggled .nav-item .collapse,
.sidebar.toggled .nav-item .collapsing {
  margin: 0;  
}

.sidebar.toggled .nav-item .collapse .collapse-inner {
  -webkit-box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
  box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
  border-radius: 0.35rem;    
}

.sidebar.toggled .nav-item .collapsing {
  display: none;
  -webkit-transition: none;
  transition: none;
}

.sidebar.toggled .nav-item:last-child {
  margin-bottom: 1rem;
}

.sidebar.toggled .nav-item .nav-link {
  text-align: center;
  padding: 0.75rem 1rem;
  width: 6.5rem;
}

.sidebar.toggled .nav-item .nav-link {
  background-color: transparent !important;
}

.sidebar.toggled .sidebar-heading {
  display: none;
}

.sidebar.toggled .nav-item .nav-link span {
  display: none;
}

.sidebar.toggled .nav-item .nav-link i {
  float: left;
  text-align: center;
  font-size: 1rem;
  margin: 0 0 0.7rem 1rem;
}

.sidebar.toggled .sidebar-brand .sidebar-brand-text {
  /* display: none; */
  margin-left: 0px!important;
  margin-right: 0px!important;
}
.sidebar.toggled .sidebar-brand {
  font-size: 0.7rem;
}
.sidebar.toggled .nav-item .nav-link[data-toggle="collapse"]::after {
  width: 1rem;
  text-align: center;
  float: right;
  vertical-align: 0;
  border: 0;
  font-weight: 900;
  content: '\f107';
  font-family: 'Font Awesome 5 Free';
}

.sidebar.toggled .nav-item .nav-link[data-toggle="collapse"].collapsed::after {
  content: '\f105';
}


.login-form {
  padding: 3rem !important;
}

@media (max-width: 768px) {

  #container-wrapper {
    min-width: 100vw;
  }

  .sidebar.toggled {
    width: 100vw !important;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
  }

  .sidebar.toggled .nav-item {
    margin-left: -1rem;
    position: relative;
    margin-bottom: -15px;
  }

  .sidebar.toggled .nav-item .nav-link {
    display: block;
    width: 100%;
    text-align: left;
    padding: 1rem;
    width: 14rem;
  }

  .sidebar.toggled .nav-item .nav-link i {
    font-size: 0.85rem;
    margin-top: 0.4rem;
    margin-right: 0.5rem;
  }

  .sidebar.toggled .nav-item .nav-link span {
    font-size: 0.85rem;
    display: inline;
  }
  @media (max-width: 768px){
  .sidebar.sidebar2 {
    width: auto !important;
  }
}
  .sidebar.toggled .nav-item.active .nav-link {
    font-weight: 700;
  }

  .sidebar.toggled .nav-item .nav-link[data-toggle="collapse"]::after {
    width: 1rem;
    text-align: center;
    float: right;
    vertical-align: 0;
    border: 0;
    font-weight: 900;
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
  }

  .sidebar.toggled .nav-item .nav-link[data-toggle="collapse"].collapsed::after {
    content: '\f105';
  }

  .sidebar.toggled .nav-item .collapse {
    position: relative;
    padding-left: 1rem;
    left: 0;
    z-index: 1;
    top: 0;
    -webkit-transition: height 0.15s ease;
    transition: height 0.15s ease;
  }

  .sidebar.toggled .nav-item .collapse .collapse-inner {
    border-radius: 0.35rem;
    -webkit-box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
  }

  .sidebar.toggled .nav-item .collapse,
  .sidebar.toggled .nav-item .collapsing {
    margin: 0 1rem;
  }

  .sidebar.toggled .nav-item .collapse .collapse-inner,
  .sidebar.toggled .nav-item .collapsing .collapse-inner {
    padding: .5rem 0;
    min-width: 10rem;
    font-size: 0.85rem;
    margin: 0 0 1rem 0;
  }

  .sidebar.toggled .nav-item .collapse .collapse-inner .collapse-header,
  .sidebar.toggled .nav-item .collapsing .collapse-inner .collapse-header {
    margin: 0;
    white-space: nowrap;
    padding: .5rem 1.5rem;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 0.65rem;
    color: #b7b9cc;
  }

  .sidebar.toggled .nav-item .collapse .collapse-inner .collapse-item,
  .sidebar.toggled .nav-item .collapsing .collapse-inner .collapse-item {
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    display: block;
    color: #3a3b45;
    text-decoration: none;
    border-radius: 0.35rem;
    white-space: nowrap;
  }

  .sidebar.toggled .nav-item .collapse .collapse-inner .collapse-item:hover,
  .sidebar.toggled .nav-item .collapsing .collapse-inner .collapse-item:hover {
    background-color: #eaecf4;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
  }

  .sidebar.toggled .nav-item .collapse .collapse-inner .collapse-item:active,
  .sidebar.toggled .nav-item .collapsing .collapse-inner .collapse-item:active {
    background-color: #dddfeb;
  }

  .sidebar.toggled .nav-item .collapse .collapse-inner .collapse-item.active,
  .sidebar.toggled .nav-item .collapsing .collapse-inner .collapse-item.active {
    color: #3f51b5;
    font-weight: 800;
  }

  .sidebar.toggled .sidebar-brand {
    height: 3.375rem;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 800;
    padding: 1.5rem 1rem;
    text-align: center;
    letter-spacing: 0.05rem;
    z-index: 1;
  }

  .sidebar.toggled hr.sidebar-divider {
    margin: 1rem 0 1rem 0rem;
  }

  .sidebar.toggled .sidebar-heading {
    display: block;
    text-align: left;
    padding: 0 1rem;
    font-weight: 800;
    font-size: 0.65rem;
    letter-spacing: 0.13rem;
  }

  .sidebar.toggled .sidebar-brand .sidebar-brand-text {
    display: inline;
  }

  .sidebar {
    width: 0 !important;
    overflow: hidden;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
  }

  .sidebar .sidebar-brand {
    overflow: hidden;
  }

  .sidebar .sidebar-brand .sidebar-brand-text {
    overflow: hidden;
  }

  .sidebar .nav-item {
    overflow: hidden;
  }

  .sidebar .sidebar-brand .sidebar-brand-icon img {
    overflow: hidden;
  }

  .sidebar hr.sidebar-divider {
    margin: 1rem 0 1rem 0rem;
  }

  .topbar .navbar-search {
    width: 100%;
  }

  .login-form {
    padding: 3rem 2rem !important;
  }

}


.breadcrumb {
  background-color: transparent;
  font-size: 12px;
  font-weight: bold;
}

.sidebar-light .sidebar-brand {
    color: #fafafa;
    background-color: #012834;
    border-right: 1px solid #013f52;
}

.sidebar-light hr.sidebar-divider {
  border-top: 1px solid #eaecf4;
}

.sidebar-light .sidebar-heading {
  color: #b7b9cc;
}

  .sidebar-light .nav-item .nav-link {
    color: #4e4e4e;
    font-weight: bold;
}

.sidebar-light .nav-item .nav-link i {
  color: #fff;
}

.sidebar-light .nav-item .nav-link:active,
.sidebar-light .nav-item .nav-link:focus,
.sidebar-light .nav-item .nav-link:hover {
  color: #4e4e4e;
  background-color: #eeeeee;
}

.sidebar-light .nav-item .nav-link:active i,
.sidebar-light .nav-item .nav-link:focus i,
.sidebar-light .nav-item .nav-link:hover i {
  color: #6e707e;
}

.sidebar-light .nav-item .nav-link[data-toggle="collapse"]::after {
  color: #b7b9cc;
}

.sidebar-light .nav-item.active .nav-link {
  /* color: #6e707e; */
  color: #4bcd3e;
}

.sidebar-light .nav-item.active .nav-link i {
  /* color: #6e707e; */
  color: #4bcd3e;
}

.sidebar-light #sidebarToggle {
  background-color: #eaecf4;
}

.sidebar-light #sidebarToggle::after {
  color: #b7b9cc;
}

.sidebar-light #sidebarToggle:hover {
  background-color: #dddfeb;
}

.sidebar-dark .sidebar-brand {
  color: #fff;
}

.sidebar-dark hr.sidebar-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.sidebar-dark .sidebar-heading {
  color: rgba(255, 255, 255, 0.4);
}

.sidebar-dark .nav-item .nav-link {
  color: rgba(255, 255, 255, 0.8);
}

.sidebar-dark .nav-item .nav-link i {
  /* color: rgba(255, 255, 255, 0.3); */
  color: #d1d3e2;
}

.sidebar-dark .nav-item .nav-link:active,
.sidebar-dark .nav-item .nav-link:focus,
.sidebar-dark .nav-item .nav-link:hover {
  color: #fff;
}

.sidebar-dark .nav-item .nav-link:active i,
.sidebar-dark .nav-item .nav-link:focus i,
.sidebar-dark .nav-item .nav-link:hover i {
  color: #fff;
}

.sidebar-dark .nav-item .nav-link[data-toggle="collapse"]::after {
  color: rgba(255, 255, 255, 0.5);
}

.sidebar-dark .nav-item.active .nav-link {
  color: #fff;
}

.sidebar-dark .nav-item.active .nav-link i {
  color: #fff;
}

.sidebar-dark #sidebarToggle {
  background-color: rgba(255, 255, 255, 0.2);
}

.sidebar-dark #sidebarToggle::after {
  color: rgba(255, 255, 255, 0.5);
}

.sidebar-dark #sidebarToggle:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.sidebar-dark.toggled #sidebarToggle::after {
  color: rgba(255, 255, 255, 0.5);
}

.btn-icon-split {
  padding: 0;
  overflow: hidden;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.btn-icon-split .icon {
  background: rgba(0, 0, 0, 0.15);
  display: inline-block;
  padding: 0.375rem 0.75rem;
}

.btn-icon-split .text {
  display: inline-block;
  padding: 0.375rem 0.75rem;
}

.btn-icon-split.btn-sm .icon,
.btn-group-sm>.btn-icon-split.btn .icon {
  padding: 0.25rem 0.5rem;
}

.btn-icon-split.btn-sm .text,
.btn-group-sm>.btn-icon-split.btn .text {
  padding: 0.25rem 0.5rem;
}

.btn-icon-split.btn-lg .icon,
.btn-group-lg>.btn-icon-split.btn .icon {
  padding: 0.5rem 1rem;
}

.btn-icon-split.btn-lg .text,
.btn-group-lg>.btn-icon-split.btn .text {
  padding: 0.5rem 1rem;
}

.card .card-header .dropdown {
  line-height: 1;
}

.card .card-header .dropdown .dropdown-menu {
  line-height: 1.5;
}

.card .card-header[data-toggle="collapse"] {
  text-decoration: none;
  position: relative;
  padding: 0.75rem 3.25rem 0.75rem 1.25rem;
}

.card .card-header[data-toggle="collapse"]::after {
  position: absolute;
  right: 0;
  top: 0;
  padding-right: 1.725rem;
  line-height: 51px;
  font-weight: 900;
  content: '\f107';
  font-family: 'Font Awesome 5 Free';
}

.card .card-header[data-toggle="collapse"].collapsed {
  border-radius: 0.35rem;
}

.card .card-header[data-toggle="collapse"].collapsed::after {
  content: '\f105';
}

.chart-area {
  position: relative;
  height: 10rem;
  width: 100%;
}

@media (min-width: 768px) {
  .chart-area {
    height: 20rem;
  }
}

.chart-bar {
  position: relative;
  height: 10rem;
  width: 100%;
}

@media (min-width: 768px) {
  .chart-bar {
    height: 20rem;
  }
}

.chart-pie {
  position: relative;
  height: 15rem;
  width: 100%;
}

@media (min-width: 768px) {
  .chart-pie {
    height: calc(20rem - 43px) !important;
  }
}

.bg-login-image {
  background-position: center;
  background-size: cover;
}

.bg-register-image {
  background-position: center;
  background-size: cover;
}

.bg-password-image {
  background-position: center;
  background-size: cover;
}

.btn-google {
  color: #434334;
  background-color: #ffffff;
  border-color: #bdbdbd;
  -webkit-box-shadow: 0 0.125rem 0.25rem 0 rgba(58, 59, 69, 0.2) !important;
  box-shadow: 0 0.125rem 0.25rem 0 rgba(58, 59, 69, 0.2) !important;
  border-radius: 0.25rem;
}

.btn-google:hover {
  color: #434343;
  background-color: #f5f5f5;
  border-color: #434343;
}

.btn-google:focus,
.btn-google.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}

.btn-google.disabled,
.btn-google:disabled {
  color: #434343;
  background-color: #eeeeee;
  border-color: #434334;
}

.btn-google:not(:disabled):not(.disabled):active,
.btn-google:not(:disabled):not(.disabled).active,
.show>.btn-google.dropdown-toggle {
  color: #434334;
  background-color: #eeeeee;
  border-color: #434343;
}

.btn-google:not(:disabled):not(.disabled):active:focus,
.btn-google:not(:disabled):not(.disabled).active:focus,
.show>.btn-google.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}

.btn-facebook {
  color: #fff;
  background-color: #3b5998;
  border-color: #fff;
  -webkit-box-shadow: 0 0.125rem 0.25rem 0 rgba(58, 59, 69, 0.2) !important;
  box-shadow: 0 0.125rem 0.25rem 0 rgba(58, 59, 69, 0.2) !important;
  border-radius: 0.25rem;
}

.btn-facebook:hover {
  color: #fff;
  background-color: #30497c;
  border-color: #e6e6e6;
}

.btn-facebook:focus,
.btn-facebook.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}

.btn-facebook.disabled,
.btn-facebook:disabled {
  color: #fff;
  background-color: #3b5998;
  border-color: #fff;
}

.btn-facebook:not(:disabled):not(.disabled):active,
.btn-facebook:not(:disabled):not(.disabled).active,
.show>.btn-facebook.dropdown-toggle {
  color: #fff;
  background-color: #2d4373;
  border-color: #dfdfdf;
}

.btn-facebook:not(:disabled):not(.disabled):active:focus,
.btn-facebook:not(:disabled):not(.disabled).active:focus,
.show>.btn-facebook.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}

/* .error {
  color: #5a5c69;
  font-size: 7rem;
  position: relative;
  line-height: 1;
  width: 12.5rem;
} */

@-webkit-keyframes noise-anim {
  0% {
    clip: rect(31px, 9999px, 91px, 0);
  }

  5% {
    clip: rect(70px, 9999px, 29px, 0);
  }

  10% {
    clip: rect(3px, 9999px, 56px, 0);
  }

  15% {
    clip: rect(7px, 9999px, 78px, 0);
  }

  20% {
    clip: rect(97px, 9999px, 4px, 0);
  }

  25% {
    clip: rect(24px, 9999px, 60px, 0);
  }

  30% {
    clip: rect(80px, 9999px, 41px, 0);
  }

  35% {
    clip: rect(78px, 9999px, 14px, 0);
  }

  40% {
    clip: rect(20px, 9999px, 23px, 0);
  }

  45% {
    clip: rect(70px, 9999px, 61px, 0);
  }

  50% {
    clip: rect(65px, 9999px, 89px, 0);
  }

  55% {
    clip: rect(74px, 9999px, 25px, 0);
  }

  60% {
    clip: rect(76px, 9999px, 84px, 0);
  }

  65% {
    clip: rect(56px, 9999px, 10px, 0);
  }

  70% {
    clip: rect(85px, 9999px, 58px, 0);
  }

  75% {
    clip: rect(46px, 9999px, 71px, 0);
  }

  80% {
    clip: rect(6px, 9999px, 64px, 0);
  }

  85% {
    clip: rect(20px, 9999px, 84px, 0);
  }

  90% {
    clip: rect(57px, 9999px, 26px, 0);
  }

  95% {
    clip: rect(36px, 9999px, 92px, 0);
  }

  100% {
    clip: rect(12px, 9999px, 53px, 0);
  }
}

@keyframes noise-anim {
  0% {
    clip: rect(31px, 9999px, 91px, 0);
  }

  5% {
    clip: rect(70px, 9999px, 29px, 0);
  }

  10% {
    clip: rect(3px, 9999px, 56px, 0);
  }

  15% {
    clip: rect(7px, 9999px, 78px, 0);
  }

  20% {
    clip: rect(97px, 9999px, 4px, 0);
  }

  25% {
    clip: rect(24px, 9999px, 60px, 0);
  }

  30% {
    clip: rect(80px, 9999px, 41px, 0);
  }

  35% {
    clip: rect(78px, 9999px, 14px, 0);
  }

  40% {
    clip: rect(20px, 9999px, 23px, 0);
  }

  45% {
    clip: rect(70px, 9999px, 61px, 0);
  }

  50% {
    clip: rect(65px, 9999px, 89px, 0);
  }

  55% {
    clip: rect(74px, 9999px, 25px, 0);
  }

  60% {
    clip: rect(76px, 9999px, 84px, 0);
  }

  65% {
    clip: rect(56px, 9999px, 10px, 0);
  }

  70% {
    clip: rect(85px, 9999px, 58px, 0);
  }

  75% {
    clip: rect(46px, 9999px, 71px, 0);
  }

  80% {
    clip: rect(6px, 9999px, 64px, 0);
  }

  85% {
    clip: rect(20px, 9999px, 84px, 0);
  }

  90% {
    clip: rect(57px, 9999px, 26px, 0);
  }

  95% {
    clip: rect(36px, 9999px, 92px, 0);
  }

  100% {
    clip: rect(12px, 9999px, 53px, 0);
  }
}

.error:after {
  content: attr(data-text);
  position: absolute;
  left: 2px;
  text-shadow: -1px 0 #e74a3b;
  top: 0;
  color: #5a5c69;
  background: #f8f9fc;
  overflow: hidden;
  clip: rect(0, 900px, 0, 0);
  animation: noise-anim 2s infinite linear alternate-reverse;
}

@-webkit-keyframes noise-anim-2 {
  0% {
    clip: rect(68px, 9999px, 1px, 0);
  }

  5% {
    clip: rect(44px, 9999px, 53px, 0);
  }

  10% {
    clip: rect(72px, 9999px, 43px, 0);
  }

  15% {
    clip: rect(18px, 9999px, 16px, 0);
  }

  20% {
    clip: rect(6px, 9999px, 72px, 0);
  }

  25% {
    clip: rect(18px, 9999px, 16px, 0);
  }

  30% {
    clip: rect(93px, 9999px, 46px, 0);
  }

  35% {
    clip: rect(100px, 9999px, 33px, 0);
  }

  40% {
    clip: rect(27px, 9999px, 29px, 0);
  }

  45% {
    clip: rect(5px, 9999px, 64px, 0);
  }

  50% {
    clip: rect(40px, 9999px, 65px, 0);
  }

  55% {
    clip: rect(72px, 9999px, 49px, 0);
  }

  60% {
    clip: rect(44px, 9999px, 39px, 0);
  }

  65% {
    clip: rect(84px, 9999px, 45px, 0);
  }

  70% {
    clip: rect(99px, 9999px, 56px, 0);
  }

  75% {
    clip: rect(87px, 9999px, 20px, 0);
  }

  80% {
    clip: rect(52px, 9999px, 8px, 0);
  }

  85% {
    clip: rect(64px, 9999px, 22px, 0);
  }

  90% {
    clip: rect(51px, 9999px, 69px, 0);
  }

  95% {
    clip: rect(2px, 9999px, 11px, 0);
  }

  100% {
    clip: rect(19px, 9999px, 40px, 0);
  }
}

@keyframes noise-anim-2 {
  0% {
    clip: rect(68px, 9999px, 1px, 0);
  }

  5% {
    clip: rect(44px, 9999px, 53px, 0);
  }

  10% {
    clip: rect(72px, 9999px, 43px, 0);
  }

  15% {
    clip: rect(18px, 9999px, 16px, 0);
  }

  20% {
    clip: rect(6px, 9999px, 72px, 0);
  }

  25% {
    clip: rect(18px, 9999px, 16px, 0);
  }

  30% {
    clip: rect(93px, 9999px, 46px, 0);
  }

  35% {
    clip: rect(100px, 9999px, 33px, 0);
  }

  40% {
    clip: rect(27px, 9999px, 29px, 0);
  }

  45% {
    clip: rect(5px, 9999px, 64px, 0);
  }

  50% {
    clip: rect(40px, 9999px, 65px, 0);
  }

  55% {
    clip: rect(72px, 9999px, 49px, 0);
  }

  60% {
    clip: rect(44px, 9999px, 39px, 0);
  }

  65% {
    clip: rect(84px, 9999px, 45px, 0);
  }

  70% {
    clip: rect(99px, 9999px, 56px, 0);
  }

  75% {
    clip: rect(87px, 9999px, 20px, 0);
  }

  80% {
    clip: rect(52px, 9999px, 8px, 0);
  }

  85% {
    clip: rect(64px, 9999px, 22px, 0);
  }

  90% {
    clip: rect(51px, 9999px, 69px, 0);
  }

  95% {
    clip: rect(2px, 9999px, 11px, 0);
  }

  100% {
    clip: rect(19px, 9999px, 40px, 0);
  }
}

.error:before {
  content: attr(data-text);
  position: absolute;
  left: -2px;
  text-shadow: 1px 0 #3f51b5;
  top: 0;
  color: #5a5c69;
  background: #f8f9fc;
  overflow: hidden;
  clip: rect(0, 900px, 0, 0);
  animation: noise-anim-2 3s infinite linear alternate-reverse;
}

footer.sticky-footer {
  padding: 2rem 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
  box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
}

footer.sticky-footer .copyright {
  line-height: 1;
  font-size: 0.8rem;
}

footer.sticky-footer .copyright a {
  color: #455a64;

}

footer.sticky-footer .copyright a:hover {
  text-decoration: none;
}

body.sidebar-toggled footer.sticky-footer {
  width: 100%;
}

.bg-blue {
  background-color: #e8eaf6 !important;
}

.table-flush td,
.table-flush th {
  border-right: 0;
  border-left: 0;
}

.table-flush tbody tr:first-child td,
.table-flush tbody tr:first-child th {
  border-top: 0;
}

.table-flush tbody tr:last-child td,
.table-flush tbody tr:last-child th {
  border-bottom: 0;
}

.card .table {
  margin-bottom: 0;
}

.card .table td,
.card .table th {
  padding: 6px 8px;
}

.customer-message {
  border-bottom: 1px solid #e3e6f0;
  padding-bottom: 10px;
  padding-top: 10px;
}

.customer-message:hover {
  background-color: #F8F9FC
}

.customer-message a .message-title {
  padding-right: 1.3rem;
  padding-left: 1.3rem;
}

.customer-message a .message-time {
  padding-right: 1.3rem;
  padding-left: 1.3rem;
}

.customer-message a:hover {
  text-decoration: none;
}

.btn-outline-light {
  color: #373840;
}

.card {
  -webkit-box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15) !important;
  box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15) !important;
  margin-bottom: 10px;
}

.input-group-append .btn {
  -webkit-box-shadow: 0 0.125rem 0.25rem 0 rgba(58, 59, 69, 0.2) !important;
  box-shadow: 0 0.125rem 0.25rem 0 rgba(58, 59, 69, 0.2) !important;
}

.input-group-append .btn:hover {
  -webkit-box-shadow: 0 0.125rem 0.3rem 0 rgba(58, 59, 69, 0.4) !important;
  box-shadow: 0 0.125rem 0.3rem 0 rgba(58, 59, 69, 0.4) !important;
}

.form-control:focus {
  border: 1px solid #012834;
}

/* .input-group-append span {
  -webkit-box-shadow: 0 0.125rem 0.25rem 0 rgba(58, 59, 69, 0.2) !important;
  box-shadow: 0 0.125rem 0.25rem 0 rgba(58, 59, 69, 0.2) !important;
  color: #003b4d;
  background-color: #4bcd3e;
  border-color: #4bcd3e;
} */
 
/* .input-group-prepend span {
  -webkit-box-shadow: 0 0.125rem 0.25rem 0 rgba(58, 59, 69, 0.2) !important;
  box-shadow: 0 0.125rem 0.25rem 0 rgba(58, 59, 69, 0.2) !important;
  color: #fff;
  background-color: #3f51b5;
  border-color: #3f51b5;
} */
.input-group-prepend span {
    padding: 5px 10px;
    border: 1px solid #d1d3e2;
}
/* custom */
.sidebar.sidebar2, .sidebar.sidebar3 {
  /* min-height: 65vh; */
  min-height: 100vh;
    height: 100%;
  /* width: 12rem !important; */
  width: 100% !important;
} 
.sidebar.sidebar2 .nav-item .nav-link, .sidebar.sidebar3 .nav-item .nav-link {
  /* width: 12rem; */
  width: 100% !important;
}
.sidebar.sidebar2 .nav-item .collapse .collapse-inner, .sidebar.sidebar3 .nav-item .collapse .collapse-inner {
  /* min-width: 11rem; */
  width: 100% !important;
    min-width: auto;
    overflow: hidden;
}
.sidebar.sidebar2 .nav-item .collapse, .sidebar.sidebar2 .nav-item .collapsing
.sidebar.sidebar3 .nav-item .collapse, .sidebar.sidebar3 .nav-item .collapsing {
  margin: 0 0.4rem;
}
.sidebar.sidebar1 {
  background-color: #003B4D!important;
}
.sidebar-light.sidebar1 .nav-item .nav-link {
  color: #fff;
  font-weight: 500;
}
.sidebar1.sidebar-light .nav-item .nav-link {
  border-bottom: 1px solid #012834;
}
.sidebar1.sidebar.toggled .nav-item .nav-link {
  border-bottom: 1px solid #012834;
  width: 100%;

}
.sidebar1.sidebar.toggled .nav-item .nav-link:hover {
  background-color: #012834!important;
}
.sidebar1 .nav-item .nav-link:active, .sidebar-light.sidebar1 .nav-item .nav-link:focus, .sidebar-light.sidebar1 .nav-item .nav-link:hover {
  color: #fff;
  background-color: #012834;
}
.sidebar.sidebar1 .nav-item.active .nav-link i, .sidebar-light .nav-item .nav-link:hover i {
  color: #4BCD3E;
}
.sidebar.sidebar1 .nav-item.active .nav-link {
  color: #4BCD3E;
  background-color: #012834;
  border-left: 2px solid;
}
.sidebar.sidebar1 .nav-item .nav-link {
  text-align: center!important;
}
.sidebar.sidebar1 .nav-item .nav-link span {
  display: block;
}
.sidebar1 {
  width: 9rem!important;
}
.sidebar1.toggled .nav-item .nav-link span {
  display: none!important;
}
.sidebar.sidebar1 .nav-item .nav-link {
  width: 100%;
  display: block;
  float: left;
}
.sidebar1.toggled .nav-item .nav-link i {
  text-align: center;
  float: none;
  margin: 0px;
  font-size: 1.4rem;
}
.navbar-nav.nav-dropdown {
  padding-left: 15px;
}
.sidebar.sidebar2 .nav-item .nav-link, .sidebar.sidebar3 .nav-item .nav-link {
  padding: 0.3rem 1rem;;
}
.sidebar3 .nav-item .nav-link span {
  color: #003b4d;
  font-weight: bold;
}
.sidebar3 .navbar-nav.nav-dropdown .nav-item .nav-link span {
  color: inherit;
  font-weight: normal;
}
.card .table {
  font-size: 14px;
}
.axis-ui .navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 1rem;
  padding-left: 1rem;
}
.fis-bg-sherpa-blue {
  background-color: #003B4D;
  color: #fff;
}
.fis-bg-dark-green {
  background-color: #012834;
  color: #fff;
}
.fis-bg-core-green {
background-color: #4bcd3e;
}
.fis-bg-teal {
  background-color: #009775;
}
.fis-bg-dark-teal {
  background-color: #015B7E;
}
.font-weight-600, .f-600 {
  font-weight: 600!important;
}
.font-weight-700, .f-700 {
  font-weight: 700!important;
}
.font-weight-800, .f-800 {
  font-weight: 800!important;
}
.font-weight-900, .f-900 {
  font-weight: 900!important;
}
/* color */
.text-sherpa-blue {
  color: #003B4D;
}
.text-dark-green {
  color: #012834;
}
.text-core-green {
color: #4bcd3e;
}
.text-teal {
 color: #009775;
}
.text-dark-teal {
 color: #015B7E;
}
.btn-primary-green-on-white, .btn-primary-green-on-dark, .btn-primary-white-on-dark, .btn-secondary-green-on-white, .btn-secondary-green-on-dark, .btn-secondary-white-on-dark {
  transition: .3s all;
  -webkit-transition: .3s all;
}
.btn-primary-green-on-white {
  background: #4BCD3E;
  padding: 5px 25px;
  border: 2px solid #4BCD3E;
  border-radius: 30px;
  font-size: 16px;
  font-weight: Bold;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  color: #fff;
}

  .btn-primary-green-on-white:hover {
      background: none;
      border: 2px solid #4BCD3E;
      border-radius: 67rem;
      color: #012834;
  }

  .btn-primary-green-on-white:active {
      background: #4BCD3E;
      outline: none;
      color: #ffffff;
  }
.btn-primary-white-on-dark {
  background: #ffffff;
  padding: 8px 30px;
  border: 2px solid #ffffff;
  border-radius: 67rem;
  color: #012834;
  font-family: 'source_sans_proregular', sans-serif;
  font-size: 16rem;
  font-weight: bold;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

  .btn-primary-white-on-dark:hover {
      background: none;
      border: 2px solid #ffffff;
      border-radius: 67rem;
      color: #ffffff;
  }

  .btn-primary-white-on-dark:active {
      background: #ffffff;
      outline: none;
      color: #012834;
  }
.btn-secondary-green-on-dark {
  background: none;
  padding: 5px 30px;
  border: 2px solid #4BCD3E;
  border-radius: 30px;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}
.btn-secondary-green-on-dark:hover {
  background: #4BCD3E;
  border: 2px solid #4BCD3E;
  border-radius: 67rem;
  color: #012834;
}

.btn-secondary-green-on-dark:active {
  background: none;
  outline: none;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.btn-secondary-green-on-dark[disabled] {
  background: #F2F2F2;
  color: #B3B3B3;
  border: 2px solid #F2F2F2;
  cursor: not-allowed;
}
.btn-primary-green-on-dark {
  background: #4BCD3E;
  padding: 5px 30px;
  border: 2px solid #4BCD3E;
  border-radius: 30px;
  color: #012834;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}
.btn-primary-green-on-dark:hover {
  background: none;
  border: 2px solid #4BCD3E;
  border-radius: 30px;
  color: #ffffff;
}
.btn-primary-green-on-dark:active {
  background: #ffffff;
  outline: none;
  color: #012834;
}
.btn-secondary-green-on-white {
  background: none;
  padding: 5px 30px;
  border: 2px solid #4BCD3E;
  border-radius: 30px;
  color: #012834;
  font-size: 16px;
  font-weight: Bold;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}
.btn-secondary-green-on-white:hover {
  background: #4BCD3E;
  border: 2px solid #4BCD3E;
  border-radius: 30px;
  color: #012834;
}
.axis-ui-wrapper {
  padding: 10px;
}
a:hover {
  color: inherit;
  text-decoration: none;
}
.axis-ui-wrapper .form-control {
  height: auto;
  padding: .215rem .75rem;
}
.axis-ui-wrapper label {
  font-weight: bold;
  color: #4e4e4e;
}
.axis-ui-wrapper table, .axis-ui-wrapper .table-hover tbody tr:hover {
  color: #4e4e4e;
}
a#userDropdown {
  height: auto;
  border: 1.3px solid #fff;
  padding: 6px 8px;
  border-radius: 50%;
  margin-top: 5px;
}
.logo-main img {
  width: 50%;
}
.logo-main p {
  font-size: 18px;
  margin-left: 10px;
  display: inline;
}
.sidebar-toggled .logo-main img {
  width: 55%;
}
.sidebar-toggled .logo-main p { 
  font-size: 15px;
  margin-left: 8px;
  display: inline;
  margin-top: 3px;
}
.logo-main {
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}
.card .table thead th {
  border-bottom: 2px solid #003b4d;
  color: #003b4d;
  border-top: 0px solid;
}
.plr-15 {
  padding-left: 15px;
  padding-right: 15px;
}
.pb-15 {
  padding-bottom: 15px;
}
.pt-15 {
  padding-top: 15px;
}
.mb-15 {
  margin-bottom: 15px!important;
}
.mb-10 {
  margin-bottom: 10px;
}
.pl-40 {
  padding-left: 40px;
}
.pr-40 {
  padding-right: 40px;
}
.table-link tbody tr a, .table-flush tbody tr a {
  text-decoration: underline!important;
  cursor: pointer;
}
@media (min-width: 992px) {
  #page-top .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 1rem!important;
    padding-left: 1rem!important;
}
}
#wrapper .navbar-dark .navbar-nav .nav-link {
  color: #3BCFF0;
  font-weight: 600;
}
#wrapper .navbar-dark .navbar-nav .nav-link:hover, #wrapper .navbar-dark .navbar-nav .nav-link:active {
  color: #fff;
}
@media (max-width: 768px) {
.sidebar.sidebar1 {
  width: auto !important;
}
.sidebar.sidebar1  .nav-item .nav-link {
  width: auto;
}
}
@media (max-width : 600px) {
.axis-ui .col-sm-12 {
margin-bottom : 20px
}
}
.dataTables_wrapper > div.row:first-child{
	background-color: #f7f7f7;
    padding: 5px 20px;
}
.dataTables_wrapper div.dataTables_filter {
    float: right;
    margin-left: auto;
}
.input-group-append span {
  color: #6e707e;
  background-color: #eaecf4;
  border: 1px solid #d1d3e2;
  cursor: not-allowed;
}

.error404 {
    font-family: 'Source Sans Pro', sans-serif, 'FontAwesome' !important;
    font-size: 30px;
}

.error404 p {
    margin-bottom: 0px;
    font-family: 'Titillium Web', sans-serif, 'FontAwesome' !important;
    font-weight: 900;
    color: #4bcd3e;
    font-size: 100px;
    line-height: 110px;
}

.error404 span {
    font-family: 'Titillium Web', sans-serif, 'FontAwesome' !important;
    display: block;
    color: #4BCD3E;
    font-weight: 900;
    font-size: 100px;
    line-height: 110px;
}

.fis-404 {
    padding: 40px 0;
    text-align: center;
}

.fis-404 h2 {
    font-family: 'Titillium Web', sans-serif, "FontAwesome" !important;
    font-weight: bold;
    font-size: 40px !important;
    color: #012834;
    font-weight: 900;
    margin: 0px;
    padding: 0px;
}

p.error-line {
    font-family: 'Source Sans Pro', sans-serif, 'FontAwesome' !important;
    font-weight: 400;
    line-height: 1.5;
    font-size: 18px;
    color: #012834;
    letter-spacing: 0;
}


.btn-container a {
    display: inline-block;
    min-width: 160px;
    text-decoration: none;
}
