.drops .drops-name {
	font-size: 18px;
	font-weight: 500;
	color: var(--theme-light-text-color);
	padding-top: 20px;
	line-height: 13px;
	padding-bottom: 12px;
	position: relative;
}

.drops .drops-name .icon {
	position: absolute;
	display: block;
	bottom: 8px;
	right: 0;
}

.drops .drops-list {
	height: 100px;
}

.drops .drops-list .drop-id {
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: var(--theme-light-drop-background-color);
	position: relative;
	height: 100%;
	overflow: hidden;
	cursor: pointer;
}

.drops .drops-list .drop-id .image {
	background-position: center;
	width: 48px;
	height: 48px;
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
}

.drops .drops-list .drop-id .title {
	font-size: 14px;
	color: var(--theme-light-text-color);
	font-weight: 400;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
	padding: 8px 8px 0 8px;
}

.drops .drops-list .drop-id .amount {
	position: absolute;
	top: 6px;
	right: 6px;
	font-size: 12px;
	color: var(--theme-light-text-second-color);
	font-weight: 400;
}

.drops .drops-list .drop-id .drop-tooltip {
	position: absolute;
	bottom: 12px;
	left: 0;
	width: 100%;
	height: 20px;
	background-color: var(--theme-light-drop-background-color);
	text-align: center;
	padding: 0 8px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	opacity: 0;
	transition: opacity 200ms linear 0ms;
	line-height: 20px;
}

.drops .drops-list .drop-id:hover .drop-tooltip {
	opacity: 1;
}