/*Colors*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

body {
  background: #f0f2f5;
  font-family: 'Poppins', sans-serif; }

html {
  font-size: 93.75%; }

.container {
  width: min(90vw, 800px);
  margin: auto; }

h2 {
  margin-top: 3.2rem;
  margin-bottom: 0.8rem;
  color: #363f5f;
  font-weight: normal; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0; }

.modal-overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  z-index: 999; }

.modal-overlay.active {
  opacity: 1;
  visibility: visible; }

.modal {
  background: #F0F2F5;
  padding: 2.4rem;
  width: 90%;
  max-width: 500px;
  position: relative;
  z-index: 1; }

.card {
  background: var(--bg-panel);
  padding: 1.5rem 2rem;
  border-radius: 0.25rem;
  margin-bottom: 2rem;
  color: #363f5f; }

.card h3 {
  font-weight: normal;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--color-headings); }

.card p {
  font-size: 2rem;
  line-height: 3rem;
  margin-top: 1rem;
  color: var(--color-headings); }

.card.total {
  background: #49AA26;
  color: white; }

#balance {
  margin-top: -8rem; }

#balance h2 {
  color: white;
  margin-top: 0; }

a {
  color: #49AA26;
  text-decoration: none; }

a:hover {
  color: #3dd705; }

.button.new {
  display: inline-block;
  margin-botton: .8rem; }

button {
  width: 100%;
  height: 50px;
  border: none;
  color: white;
  background-color: #49AA26;
  padding: 0;
  border-radius: 0.25rem;
  cursor: pointer; }

button:hover {
  background-color: #3dd705; }

.button.new {
  display: inline-block; }

.button.cancel {
  color: #e92929;
  border: 2px #e92929 solid;
  border-radius: 0.25rem;
  height: 50px;
  width: 48%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6; }

.button.cancel:hover {
  opacity: 1; }

footer {
  text-align: center;
  padding: 4rem 0 2rem;
  color: #363f5f;
  opacity: 0.6; }

#form {
  max-width: 500px; }

#form h2 {
  margin-top: 0;
  color: var(--color-headings); }

#form form input {
  border: none;
  border-radius: .2rem;
  padding: .8rem;
  width: 100%; }

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

.input-group small {
  opacity: .4; }

.input-group.actions {
  display: flex;
  justify-content: space-between;
  align-items: center; }

.input-group.actions.button
.input-group.actions, button {
  width: 48%; }

header {
  background: #2D4A22;
  padding: 2rem 0 10rem;
  text-align: center; }

#logo {
  color: #fff;
  font-weight: 100; }

.modal-overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  z-index: 999; }

.modal-overlay.active {
  opacity: 1;
  visibility: visible; }

.modal {
  background: var(--bg);
  padding: 2.4rem;
  width: 90%;
  max-width: 500px;
  position: relative;
  z-index: 1; }

#transaction {
  display: block;
  overflow-x: auto;
  width: 100%; }

#data-table {
  width: 100%;
  border-spacing: 0 0.5rem;
  color: #969cb3; }

table thead th {
  background: white;
  font-weight: normal;
  padding: 1rem 2rem;
  text-align: left; }

table td {
  background: white;
  padding: 1rem 2rem; }

table thead th:first-child,
table thead td:first-child {
  border-radius: 0.25rem 0 0 0.25rem; }

table thead th:last-child,
table thead td:last-child {
  border-radius: 0 0.25rem 0.25rem 0; }

table tr {
  opacity: 0.7; }

table tbody tr:hover {
  opacity: 1; }

td.description {
  color: #363f5f; }

td.income {
  color: #12a454; }

td.expense {
  color: #e92929; }


/*# sourceMappingURL=styles.css.map */
