.tt-crypto-table {
	background: #1F1F1F;
	border: 0;

	>:not(caption)>*>* {
		box-shadow: none;
		border: 0;
	}

	>:not(:first-child) {
		border-top: 0;
	}

	td:last-child {
		border-right: 0;
	}

	thead {
		background: #333333;
		th {
			padding: 16px 30px;
			color: #fff;
			font-size: 16px;
			font-weight: 600;
			border: 0;

			@media(max-width: 991px) {
				padding: 15px;
				font-size: 14px;
			}
		}
	}

	tbody {
		color: #fff;

		td {
			padding: 12px 30px;

			@media(max-width: 991px) {
				padding: 12px 15px;
				font-size: 14px;
			}
		}

		> tr {
			border-bottom: 1px dashed #585858 !important;
		}
	}

	.tt-coin-symbol {
		margin-bottom: 0;
	}

	tr  {
		border-style: dashed !important;
		border-color: #585858;
	}

	.tt-coin-price-change {
		position: relative;
		padding-left: 8px;

		&:before {
			content: '';
			position: absolute;
			left: -8px;
			bottom: 8px;
		}

		&.price-down {
			&:before {
				width: 0;
				height: 0;
				border-left: 5px solid transparent;
				border-right: 5px solid transparent;
				border-top: 5px solid #FF0000;
			}
		}

		&.price-up {
			&:before {
				width: 0;
				height: 0;
				border-left: 5px solid transparent;
				border-right: 5px solid transparent;
				border-bottom: 5px solid #2ACE93;
			}
		}
	}
}



.tt-coin-info {
	display: flex;
	align-items: center;

	.coin-icon {
		margin-right: 10px;
	}

	.tt-coin-name {
		font-size: 15px;
		font-weight: 600;
		color: #fff;
		margin: 0;
	}

	.tt-coin-symbol {
		margin-bottom: 0;
		color: #D7D7D7;
		font-size: 13px;
	}
}