a {
	display: contents;
}

.wallet-list {
	max-width: 1400px;
	margin: 0.5rem auto 2rem auto;
	padding: 0 15px;
}

.wallet-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.wallet-card {
	background: #1e1e1e;
	border-radius: 6px;
	padding: 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #fff;
}

.wallet-card:hover {
	background: #222;
}

.wallet-logo {
	width: 45px;
	height: 45px;
	border-radius: 3px;
	object-fit: cover;
}

.wallet-safe {
	width: 40px;
	height: 40px;
	border-radius: 3px;
	object-fit: cover;
}

.wallet-info {
	flex: 1;
	margin: 0 15px;
}

.wallet-name {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 6px;
}

.wallet-stars {
	float: left;
	width: 64px;
	height: 12.5px;
	position: relative;
	overflow: hidden;
	background: url(../img/star.png) no-repeat;
	background-size: 4rem;
	margin-top: 0.2rem;
}

.wallet-stars i {
	position: absolute;
	width: 100%;
	height: 12.5px;
	background: url(../img/star.png) no-repeat;
	background-position: 0 -13px;
	background-size: 4rem;
}

.light-theme .wallet-card {
	color: #000;
}

.light-theme .wallet-card {
	background: #eee;
}