
h2 {
  margin: 30px 0;
  text-transform: capitalize;
}

/* TOKEN SELECT */
.token-list {
	display: flex;
  padding: 0;
  margin: 0;
	flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: row;
}

a.tokenPreview {
	display: inline-block;
	border: 1px solid #EAEAEA;
	overflow: hidden;
	border-radius: 10px;
	transition: background-color 0.2s;
	display: flex;
    margin: 5px;
    flex: 1 0 auto;
    width: 100px;
    height: 100px;
	justify-content: center;
  border-radius: 0;
}
a.tokenPreview:before {
    content:'';
    float:left;
}
a.tokenPreview:hover {
	background-color: #EAEAEA;
}
img.tokenPreview {
	object-fit:contain;
  transform: scale(1);
	max-width: 100%;
}
a.tokenPreview:hover img.tokenPreview {
  transform: scale(1);
	max-width: 102%;
}
