/* Style page content */
.main {
  margin-left: 160px; /* Same as the width of the sidebar */
  padding: 0px 10px;
}

.sidenav {
  height: 100%; /* Full-height: remove this if you want "auto" height */
  width: 160px; /* Set the width of the sidebar */
  position: fixed; /* Fixed Sidebar (stay in place on scroll) */
  z-index: 1; /* Stay on top */
  top: 0; /* Stay at the top */
  left: 0;
  background-color: #f1f1f1; /* Black */
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 70px;
}

/* The navigation menu links */
.sidenav a {
  padding: 6px 8px 6px 20px;
  text-decoration: none;
  font-size: 16px;
  color: #818181;
  display: block;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
  color: black;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 70px;}
  .sidenav a {font-size: 16px;}
}

.center {
  text-align: center;
}

.bottom {
  position: absolute;
  bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.middle {
  margin-top: 20px;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.header {
  background-color: white;
}

.link_bar {
  background: rgba(44,48,52,.95);
  color: white;
  padding: 5px;
}

.title {
  font-size: 2.5rem;
  font-weight: 200;
  line-height: 1.0;
}

.title.bold {
  font-weight: 300;
}

.title.strikethrough {
  font-size: 2rem;
  text-decoration: line-through;
}

.subtitle {
  font-size: 1.5rem;
  font-weight: 200;
  line-height: 1.0;
}

.profile {
  padding: 0px;
  margin-right: 5px;
}

.spacer {
  padding-top: 20px;
}

.spacer-small {
  padding-top: 8px;
}

.spacer-left {
  padding-left: 10px;
}

body {
  background-color: #f8f9fa;
  padding-top: 58px;
}

#navbar {
  box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
}

#navbar a:hover {
  background-color: grey;
  color: white;
}

#searchbox {
  font-size:10pt;
  height:30px;
  width:200px;
}

#searchicon {
  color: black;
}

.content {
  padding-top: 10px;
  padding-left: 5%;
  padding-right: 5%;
  padding-bottom: 10px;
}

.footer {
  position: fixed;
  bottom: 0;
  width: 160px;
  /* Set the fixed height of the footer here */
  height: 60px;
  line-height: 5px; /* Vertically center the text there */
  background: rgba(44,48,52,.95);
  color: white;
  padding: 10px;
}

.margin-bottom {
  margin-bottom: 0.75em;
}

.mr-3 {
  background-color: grey;
  width: 64px;
  height: 64px;
  padding: 10px;
  margin: 10px;
}

.text-small {
  font-size:10pt;
}

.text-small-input {
  font-size:10pt;
  height:30px;
}

.amount {
  font-size:18pt;
  font-weight: normal;
  color: gray;
}

.logo {
  margin-bottom: 10px;
}

.icon {
  padding: 10px;
}

.avatar {
  border-radius: 50%;
  border: 0.1px solid #f8f9fa
}

.dot {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  color: white;
  padding-top: 3px;
}

.content-padding {
  padding: 5px;
}

.padding-right {
  padding-right: 5px;
}

.padding-top {
  padding-top: 5px;
}

.padding-bottom {
  padding-bottom: 20px;
}

.shadow-sm {
  box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
}

.rounded {
  border-radius: .25rem;
}

.bg-white {
  background-color: #fff;
}

.bg-purple {
  background-color: #6f42c1;
}

.bg-grey {
  background-color: grey;
}

.purple {
  color: purple;
}

.marine {
  color: #00bfff;
}

.green {
  color: #96be25;
}

.white {
  color: white;
}

.grey {
  color: grey;
}

.trash {
  color: red;
  position: relative;
  top: 15px;
  left: -10px;
}

.circle {
  border-radius: 5px;
  border: 2px solid #BADA55;
}

.calendar {
  background-color:rgba(201, 203, 204, 0.95);
  margin: 1px;
  padding-bottom: 5px;
  text-align: right;
}

.calendar-blank {
  background-color:white;
  margin: 1px;
  padding-bottom: 5px;
  text-align: right;
}

.calendar-dayofweek {
  background-color:gray;
  margin: 1px;
  padding-bottom: 5px;
  text-align: right;
  color: white;
}

.link-white a:visited {
  color: white;
}

.hero {
  box-shadow: inset 0 0 0 9999em;
  color: rgba(40, 40, 40, 0.30);
  background-image: url(../images/banner2.png);
  background-size: cover;
  background-position: left bottom;
  background-repeat: no-repeat;
}

.chart-container {
  position: relative;
  margin: auto;
  height: 80vh;
  width: 80vw;
}

.dashboard-card {
  background-color: #fff;
  margin-top: 10px;
}

.autocomplete {
  /*the container must be positioned relative:*/
  font-size: .75rem;
  position: relative;
  display: inline-block;
}

.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 5%;
  right: 5%;
}
.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
}
.autocomplete-items div:hover {
  /*when hovering an item:*/
  background-color: #e9e9e9;
}
.autocomplete-active {
  /*when navigating through the items using the arrow keys:*/
  background-color: DodgerBlue !important;
  color: #ffffff;
}​

/**
 * Stripe
 */
 .StripeElement {
  box-sizing: border-box;

  height: 40px;

  padding: 10px 12px;

  border: 1px solid transparent;
  border-radius: 4px;
  background-color: white;

  box-shadow: 0 1px 3px 0 #e6ebf1;
  -webkit-transition: box-shadow 150ms ease;
  transition: box-shadow 150ms ease;
}

.StripeElement--focus {
  box-shadow: 0 1px 3px 0 #cfd7df;
}

.StripeElement--invalid {
  border-color: #fa755a;
}

.StripeElement--webkit-autofill {
  background-color: #fefde5 !important;
}
