.sg-currency-widget {
	width: 100%;
	position: relative;
	overflow: hidden;
	background: #fff;
	margin: auto;
	direction: rtl;
	font-family: inherit;
	font-size: 13px;
	line-height: 1.6;
	font-weight: 500;
	border: 1px solid #e0e3eb;
	border-radius: 4px;
	box-sizing: border-box;
}

.sg-currency-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 16px;
	border-bottom: 1px solid #e0e3eb;
	background: #fff;
}

.sg-currency-heading {
	display: flex;
	align-items: center;
	font-size: 14px;
	font-weight: 700;
	color: #222;
}

.sg-currency-dot {
	width: 7px;
	height: 7px;
	display: inline-block;
	background: #fa941a;
	border-radius: 50%;
	margin-left: 7px;
}

.sg-currency-status {
	font-size: 11px;
	color: #9db2bd;
	font-weight: 400;
}

.sg-currency-table-wrap {
	width: 100%;
	overflow-x: auto;
}

.sg-currency-table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	margin: 0;
	font-size: 13px;
}

.sg-currency-table th {
	padding: 11px 16px;
	background: #fafbfc;
	color: #71808a;
	font-size: 12px;
	font-weight: 500;
	text-align: right;
	white-space: nowrap;
	border-bottom: 1px solid #e0e3eb;
}

.sg-currency-table td {
	padding: 13px 16px;
	border-bottom: 1px solid #e0e3eb;
	white-space: nowrap;
	vertical-align: middle;
}

.sg-currency-table tbody tr {
	transition: background 0.2s ease;
}

.sg-currency-table tbody tr:hover {
	background: #f0f3fa;
}

.sg-currency-table tbody tr:last-child td {
	border-bottom: 0;
}

.sg-currency-name {
	display: flex;
	align-items: center;
	font-weight: 500;
	color: #222;
}

.sg-currency-name-dot {
	width: 6px;
	height: 6px;
	display: inline-block;
	background: #fa941a;
	border-radius: 50%;
	margin-left: 7px;
	flex-shrink: 0;
}

.sg-currency-price {
	font-weight: 600;
	color: #222;
	text-align: left;
	direction: ltr;
}

.sg-currency-change,
.sg-currency-percent {
	direction: ltr;
	text-align: left;
}

.sg-currency-change {
	display: table-cell;
}

.sg-currency-arrow {
	font-size: 10px;
	margin-left: 5px;
}

.sg-currency-table tr.is-up .sg-currency-change,
.sg-currency-table tr.is-up .sg-currency-percent {
	color: #26a69a;
}

.sg-currency-table tr.is-down .sg-currency-change,
.sg-currency-table tr.is-down .sg-currency-percent {
	color: #ef5350;
}

.sg-currency-table tr.is-up .sg-currency-arrow {
	color: #26a69a;
}

.sg-currency-table tr.is-down .sg-currency-arrow {
	color: #ef5350;
}

.sg-currency-time {
	color: #9db2bd;
	font-size: 12px;
	direction: ltr;
	text-align: left;
}

.sg-currency-empty {
	width: 100%;
	padding: 25px;
	text-align: center;
	background: #fff;
	border: 1px solid #e0e3eb;
	border-radius: 4px;
	color: #71808a;
	font-size: 13px;
	box-sizing: border-box;
}


/* ---------------------------------
   Tablet
--------------------------------- */

@media (max-width: 768px) {

	.sg-currency-header {
		padding: 12px 14px;
	}

	.sg-currency-table th,
	.sg-currency-table td {
		padding: 11px 12px;
	}

	.sg-currency-status {
		font-size: 10px;
	}

}


/* ---------------------------------
   Mobile
--------------------------------- */

@media (max-width: 560px) {

	.sg-currency-header {
		padding: 12px;
	}

	.sg-currency-heading {
		font-size: 13px;
	}

	.sg-currency-status {
		font-size: 9px;
	}

	.sg-currency-table {
		font-size: 12px;
	}

	.sg-currency-table th {
		font-size: 11px;
		padding: 10px 9px;
	}

	.sg-currency-table td {
		padding: 11px 9px;
	}

	.sg-currency-time {
		font-size: 10px;
	}

}


/* ---------------------------------
   Very small screens
--------------------------------- */

@media (max-width: 420px) {

	.sg-currency-table th:nth-child(5),
	.sg-currency-table td:nth-child(5) {
		display: none;
	}

	.sg-currency-table th,
	.sg-currency-table td {
		padding-left: 7px;
		padding-right: 7px;
	}

}