html {
  font-weight: 100;
  letter-spacing: 0.01em;
  margin-top: -17px;
}
html, body {
  font-family: 'Roboto', sans-serif;
}
body {
  margin: 0;
  /*background-color: #eceff1;*/
  padding-top: 70px;
  padding-bottom: 30px;
  color: #000;
}
a {
  color: #0000ee;
}
/* Bootstrap override */
.container {
  width: calc(100% - 20px);
}
.page-header {
  border-bottom: 1px solid #bcbcbc;
  margin-top: 20px;
  margin-bottom: 15px;
}
/*Navbar override*/
.navbar-inverse {
  background-color: #2c3e50;
  border-color: #2c3e50;
  background-image: none;
}
.navbar-inverse .navbar-nav>.active>a,
.navbar-inverse .navbar-nav>.open>a {
  background-color: #34495e;
  background-image: none;
}
.navbar-inverse .navbar-nav>.active>a,
.navbar-inverse .navbar-nav>.active>a:focus,
.navbar-inverse .navbar-nav>.active>a:hover {
  background-color: #34495e;
  background-image: none;
}
.navbar-inverse .navbar-brand {
  color: #f5f5f5;
}
.navbar-brand {
  padding: 5px 10px;
}
.navbar-brand > img {
  width: 42px;
}
.nav-sidebar > .active > a,
.nav-sidebar > .active > a:hover,
.nav-sidebar > .active > a:focus {
  background-color: #607D8B !important;
}
/* Panel override*/
.panel-primary {
  border-color: #34495e;
}
.panel-primary>.panel-heading {
  color: #fff;
  background-color: #34495e;
  border-color: #34495e;
  background-image: none;
}
/*Button Override*/
.btn-primary {
  background-color: #009688 !important;
  border-color: #009688 !important;
  background-image: none;
  text-shadow: none;
}
.btn-primary:focus,
.btn-primary:hover {
  background-color: #009688 !important;
}
.btn-danger {
  background-color: #F44336 !important;
  border-color: #F44336 !important;
  background-image: none;
  text-shadow: none;
}
.btn-danger:focus,
.btn-danger:hover {
  background-color: #F44336 !important;
}
.btn {
  border-radius: 25px;
}
.label-default {
  background-color: #ccc;
  color: #000;
}
.label-selected {
  background-color: #ddd;
}
.label-cursor {
  cursor: pointer;
}
/* FORM control override*/
.form-control {
  border: 1px solid #34495e;
}
.cursor-pointer {
  cursor: pointer;
}
/* Bootstrap override End*/
/*Sidebar*/
.sidebar {
  display: none;
}
@media (min-width: 768px) {
  .sidebar {
    position: fixed;
    top: 51px;
    bottom: 0;
    left: 0;
    z-index: 1000;
    display: block;
    padding: 20px;
    overflow-x: hidden;
    overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
    background-color: #f5f5f5;
    border-right: 1px solid #eee;
  }
}
/* Sidebar navigation */
.nav-sidebar {
  margin-right: -21px; /* 20px padding + 1px border */
  margin-bottom: 20px;
  margin-left: -20px;
}
.nav-sidebar > li > a {
  padding-right: 20px;
  padding-left: 20px;
}
.nav-sidebar > .active > a,
.nav-sidebar > .active > a:hover,
.nav-sidebar > .active > a:focus {
  color: #fff;
  background-color: #428bca;
}
/*Main Content*/
.main {
  padding: 20px;
}
.username {
  color: white !important;
}
@media (min-width: 768px) {
  .main {
    padding-right: 40px;
    padding-left: 40px;
  }
}
.main .page-header {
  margin-top: 0;
}
/* PADDING */
.padding-left-0 {
  padding-left: 0;
}
.padding-top-10 {
  padding-top: 10px;
}
.padding-top-5 {
  padding-top: 5px;
}
.padding-5 {
  padding: 5px;
}
.padding-10 {
  padding: 10px;
}
.padding-5-10 {
  padding: 5px 10px !important;
}
/* MARGIN */
.margin-top-5 {
  margin-top: 5px;
}
.margin-left-10 {
  margin-left: 10px;
}
.margin-right-10 {
  margin-right: 10px !important;
}
.margin-bottom-10 {
  margin-bottom: 10px;
}
.margin-top-10 {
  margin-top: 10px;
}
.margin-right-10 {
  margin-right: 10px;
}
.margin-left-5 {
  margin-left: 5px;
}
/* WIDTH */
.width-100 {
  width: 100px !important;
}
.width-120 {
  width: 120px !important;
}
.width-200 {
  width: 200px !important;
}
.width-100-per {
  width: 100%;
}
.width-40-per {
  width: 40%;
}
.width-30-per {
  width: 30%;
}
/* COLORS */
.c-black {
  color: black;
}
.c-red {
  color: red;
}
/* OPACITY */
.opacity-pt-5 {
  opacity: .5;
}

.fw-300 {
}
.font-12 {
  font-size: 12px !important;
}
.font-20 {
  font-size: 20px !important;
}
.font-12-fc .form-control {
  font-size: 12px !important;
}
.t-c {
  text-align: center;
}
/* Table Delete Icon */
span.table-delete {
  font-size: 20px;
  color: red;
  margin: 5px;
  cursor: pointer;
}
/* Colors */
.bc-theme {
  background-color: #2c3e50 !important;
}
/* Colors End */
/* Display */
.display-none {
  display: none !important;
}
/* Display End */
/*spinner animation*/
#spinner {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  width: 10px;
  height: 10px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  margin: auto;
  top: 50%;
  position: fixed;
  left: 50%;
}
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
div.spinner {
  position: fixed;
  z-index: 1001;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba( 255, 255, 255, .8 ) 50% 50% no-repeat;
  text-align: center;
  vertical-align: middle;
  display: none;
}
#snackbar {
  visibility: hidden; /* Hidden by default. Visible on click */
  width: 100%; /* Set a default minimum width */
  margin-left: 0; /* Divide value of min-width by 2 */
  background-color: #255879; /* Black background color */
  color: #fff; /* White text color */
  text-align: center; /* Centered text */
  border-radius: 2px; /* Rounded borders */
  padding: 16px 5px; /* Padding */
  position: fixed; /* Sit on top of the screen */
  z-index: 2002; /* Add a z-index if needed */
  bottom: 3px; /* 30px from the bottom */
  font-size: 14px;
}

#snackbar.show {
  visibility: visible; /* Show the snackbar */
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 3px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 3px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 3px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 3px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}
/*snackbar end*/
/* Login Page */
.login-header {
  text-align: center;
  margin-top: 4em;
}
.login-header img {
  max-width: 500px;
  margin-bottom: 10px;
}
.login-header h1 {color: #301d74;}
.login-page {
  position: absolute;
  width: 100%;
  height: 100%;
}
.login-container {
  width: 74%;
  max-width: 320px;
  margin: 2em auto;
  padding: 2em 2em 0;
  background: #fff;
  border: 1px solid #fff;
}
/* Login Page End */
/* Search Select*/
.search {
  position: relative;
  margin: 0 auto;
}
.search input {
  width: 100%;
}
.search-ac {
  top: 36px;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 10;
  background: #fdfdfd;
  padding-left: 0;
}
.search-ac .selected {
  background-color: #dedede;
}
.search-ac li {
  display: block;
}
.search-ac a {
  display: block;
  position: relative;
  color: #808394;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid #ccc;
  padding: 0 2px 1px;
  cursor: pointer;
}
/* Search Select End*/
/* Dashboard */
.dh1 {
  font-size: 24px;
  color: green;
}
.dh1-2 {
  font-size: 24px;
  color: #009688;
}
.dh2 {
  font-size: 13px;
  color: grey;
}
.dh3 {
  font-weight: 600;
  font-size: 22px;
  color: #607d8b;
}
.dh4 {
  font-weight: 600;
  font-size: 12px;
  color: #607d8b;
  border-bottom: 1px solid grey;
}
/* Dashboard */
.div-overflow-scroll {
  width: 100%;
  /*overflow-x: auto;*/
  /*max-height: 400px;*/
}
.link {
  color: blue;
  cursor: pointer;
}
.highlighted {
  background-color: #bfb1b1 !important;
}
.reserved {
  background-color: #07ff505c !important;
}
.row-selected {
  background-color: #607d8b42 !important;
}
.bg-color-red {
  background-color: #f44336;
}
.bg-color-green {
  background-color: #8bc34a;
}
.bold {
  font-weight: bold !important;
}
.card {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	min-width: 0;
	word-wrap: break-word;
	background-color: #fff;
	background-clip: border-box;
	border: 1px solid rgba(0,0,0,.125);
	border-radius: .25rem;
}
.card-body {
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	padding: 1.25rem;
}
.card-footer {
	padding: .75rem 1.25rem;
	background-color: rgba(0,0,0,.03);
	border-top: 1px solid rgba(0,0,0,.125);
}
.dash-overview .card {
	margin: 5px;
}
.dash-overview .figure {
	font-size: 30px;
}
.ekko-lightbox .modal-content {
	background-color: transparent;
	box-shadow: 0 0 0 transparent;
	border: 0;
}
.ekko-lightbox {
	overflow-x: auto !important;
	overflow-y: auto !important;
}
