body {
  background-color: #0f0027;
  color: #fff;
  font-family: 'Josefin Sans', sans-serif;
}

main {
  padding-bottom: 5rem;
}

a {
  color: #fff;
}

a:hover {
  color: inherit;
  text-decoration: none;
}

.card {
  background-color: #251a3c;
  border-radius: 2rem;
  padding: 1rem;
  margin-bottom: 2rem;
}

.credit-status {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 1rem;
}

.credit-status .card {
  padding-left: 1.3rem;
}

.card h1 {
  line-height: 1;
  margin-bottom: 0;
}

.card h3 {
  font-size: 0.9rem;
}

.credit-prices p {
  margin-bottom: 0.3rem;
}

span.price-range {
  display: inline-block;
  width: 2rem;
}

td, th {
  text-align: center;
}

.transaction-actions {
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  margin-bottom: 2rem;
}

.js-loader {
  position: absolute;
  top: 30%;
  left: 25vw;
  width: 50vw;
}

.login-screen {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 60vh;
}

.btn {
  border-radius: 1rem;
}

.btn:focus {
  box-shadow: none;
}

.modal-header .close {
  color: #fff;
  opacity: 1;
  font-weight: 100;
}

.toast {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 5;
  width: 100%;
}

#buyModal .modal-content {
  background-color: #1e5a24;
}

#deleteModal .modal-content,
#sellModal .modal-content {
  background-color: #5a1e1e;
}

footer {
  width: 100%;
  padding: 0.8rem 1rem 0.5rem 1rem;
  background-color: rgba(15, 0, 39, 0.9);
  bottom: 0;
  position: fixed;
  color: #adadad;
}

footer a {
  color: #adadad;
}

footer p {
  margin-bottom: 0;
  font-size: 0.8rem;
}

.bottom-navbar, .navbar-link {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.navbar-link {
  flex-direction: column;
}

.navbar-link i {
  font-size: 1.5rem;
  line-height: 1;
}

.navbar-link.active {
  color: #fff;
  background: rgb(7,7,80);
  background: radial-gradient(circle, rgba(7,7,80,1) 20%, rgba(15,0,39,1) 50%);
}

.pulse {
	background: black;
	border-radius: 50%;
	margin: 10px;
	height: 20px;
	width: 20px;

	box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
	transform: scale(1);
	animation: pulse 2s;
}

@keyframes pulse {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
	}

	70% {
		transform: scale(1);
		box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
	}

	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	}
}