.error {
	color: red;
	font-size: 13px;
	text-align: center;
}
.js-error {
	color: red;
	font-size: 13px;
}
.alert-sm {
	font-size: 12px;
	padding: 6px;
	line-height: 1.2;
}
.form-group .error {
    text-align: left;
}
.correct:after {
    content: '✓';
    display: inline-flex;
    background: #63ed7a;
    color: #000;
    margin: 3px;
    width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
}
.unknown:after {
    content: '?';
    display: inline-flex;
    background: orange;
    color: #000;
    margin: 3px;
    width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
}
.incorrect:after {
    content: '!';
    display: inline-flex;
    background: red;
    color: #000;
    margin: 3px;
    width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
}
.alias-copy {
    display: inline-block;
    margin: 3px;
    background: #c5e5cb;
    cursor: pointer;
    padding: 1px 9px;
    border-radius: 4px;
}
@media (max-width: 768px) {
	.table-mobile thead {
		display: none;
	}

	.table-mobile tr {
		display: flex;
		flex-wrap: wrap;
		margin: 0 0 13px;
		border: 1px solid #ddd;
		padding: 8px;
		border-radius: 6px;
	}

	.table-mobile td {
		display: block;
		flex: 50%;
		font-size: 13px;
		padding: 5px !important;
		height: auto !important;
	}


}