        * {
  font-family: -apple-system, BlinkMacSystemFont, "San Francisco", Helvetica, Arial, sans-serif;
  font-weight: 300;
  margin: 0;
}
.form-signin {
            max-width: 330px;
            padding: 15px;
            color: #017572;
         }
         
         .form-signin .form-signin-heading,
         .form-signin .checkbox {
            margin-bottom: 10px;
         }
         
         .form-signin .checkbox {
            font-weight: normal;
         }
         
         .form-signin .form-control {
            position: relative;
            height: auto;
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            box-sizing: border-box;
            padding: 10px;
            font-size: 16px;
         }
         
         .form-signin .form-control:focus {
            z-index: 2;
         }
         
         .form-signin input[type="email"] {
            margin-bottom: -1px;
            border-bottom-right-radius: 0;
            border-bottom-left-radius: 0;
            border-color:#017572;
         }
         
         .form-signin input[type="password"] {
            margin-bottom: 10px;
            border-top-left-radius: 0;
            border-top-right-radius: 0;
            border-color:#017572;
         }
html, body {
  margin: 0 0;
  background: #f3f2f2;
}
h1 {
  margin-bottom: 25px;
}
.dashboard {
  width: 800px;
  position: absolute;
  left: 320px;
  padding: 25px;
  margin-top: 18px;
}
input[type="number"], input[type="text"], input[type="password"], input[type="email"] {
    padding: 15px;
    font-size: 100%;
    display:inline;
    background: white;
    margin-top: 2px;
    border: 0;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 5px 10px -3px inset, rgba(0, 0, 0, 0.3) 0px 3px 6px -3px inset;
}
select {
  padding: 15px;
    font-size: 100%;
    display:inline;
    background: white;
    margin-top: 2px;
    border: 0;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 5px 10px -3px inset, rgba(0, 0, 0, 0.3) 0px 3px 6px -3px inset;
}
textarea {
  padding: 15px;
    font-size: 100%;
    display:inline;
    background: white;
    margin-top: 2px;
    width: 450px;
    border: 0;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 5px 10px -3px inset, rgba(0, 0, 0, 0.3) 0px 3px 6px -3px inset;
}
input[type="submit"] {
  background-color: white;
  border:  1px solid #B1B1B1;
  padding: 10px;
  text-transform: uppercase;
  color: black;
  width: auto;
  height: auto;
  margin-top: 10px;
}
.button {
  background-color: white;
  border: 1px solid #B1B1B1;
  padding: 10px;
  text-transform: uppercase;
  color: black;
  width: 200px;
  height: auto;
  margin-top: 10px;
  display: inline;
}
.button:hover {
  background-color: #f3f2f2;
}

input:focus {
  outline: none;
  opacity: 1;
}

label {
  color: black; 
  font-weight: normal;
}
.source {

}
a {
  text-decoration: none;
  font-weight: bold;
  color: black;
}

a:visited {
  color: black;
}


#menu {

  width: 300px;
  background-color: white;
  margin-left: auto;
  margin-right: auto;
  position: fixed;
  height: 100%;
  left: 0;
  top: 0;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

#menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

#menu li {
  margin-bottom: 1px;
  padding: 25px;
  font-size: 140%;
  border: 0;
  transition: 0.3s;
}

#menu li:hover {
  padding-left: 30px;
}

#searchbar {
  padding: 25px;
  border: 0;
  margin-bottom: 1px;
}

#searchbar input {
  padding: 10px;
  font-size: 140%;
  width: calc(100% - 20px);
  background: #f3f2f2;
  border: 0;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2.5px 5px -1.5px inset, rgba(0, 0, 0, 0.3) 0px 1.5px 3px -1.5px inset;
  border-radius: 5px;
}

.dashBubble {
  width: 100px;
  height: 100px;
  border-radius: 25px;
  text-align: center;
  float: left;
  margin-right: 25px;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.dashBubble .kpi {
  font-size: 200%;
  margin-top: 15px;
  display: block;
}
.dashBubble p {
  font-size: 75%;
  font-style: italic;
}
/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: #f3f2f2;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.modalPopper {
  cursor: pointer;
  font-weight: bold;
}

.transaction-line {
  width: 100%;
  height: max-content;
  background-color: white;
  clear: both;
  margin-top: 1px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.transaction-line div {
  display:inline-block;
  width: calc(20% - 12px);
  padding: 4px;
  margin-top: 1px;  
  background-color: white;
  min-height: 100%;
  vertical-align: top;
}
.transaction-datetime {
  
}
.transaction-amount {
  color: red;
  font-weight: bold;
}
.transaction-giftcardcode {
  font-weight: bold;
}
.transaction-author {
  font-style: italic;
}

.transaction-line-header {
  width: 100%;
}
.transaction-line-header div {
  float:left;
  width: calc(20% - 8px);
  font-weight: bold;
  font-size: 120%;
  padding: 4px;
  background-color: lightgrey;
}

.giftCard {
  width: 175px;
  height: 80px;
  border-radius: 5px;
  background-color: white;
  color: black;
  text-align: center;
  position: relative;
  float: left;
  margin-right: 25px;
  margin-bottom: 25px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.giftCard-code {
  font-size: 20pt;
  margin-top: 18px;
  font-weight: bold;
  text-align: center;
}

.giftCard-balance {
  text-align: center;
  font-size: 10pt;
}

.giftCard-button {
  position: absolute;
  top: 23px;
  right: -18px;
  background-color: black;
  width: 35px;
  height: 35px;
  border-radius: 35px;
  font-size: 48px;
  font-weight: bold;
  color: white;
  line-height: 28px;
  cursor: pointer;
}
.giftCard-button:hover {
  background-color: maroon;
}

#menu img {
  margin-left: auto;
  margin-right: auto;
  margin-top: 25px;
  display: block;
}