.datatable-table {
	> table {
		.rowcheck > span,
		.rowcheck span.checkall {
			position: relative;
			display: inline-block;
			margin: 3px;
			cursor: pointer;

			/*vertical-align: middle;*/
			padding-left: 16px;
			font-weight: normal;

			input[type="checkbox"],
			input[type="radio"] {
				position: absolute;
				z-index: 1;
				width: 14px;
				height: 14px;
				margin-left: -14px;
				margin-top: 0;
				cursor: pointer;
				opacity: 0;

				&:checked + i:before {
					background-color: inherit;
				}

				&[type="radio"] + i {
					border-radius: 50%;

					&:before {
						border-radius: 50%;
					}
				}

				&[type="checkbox"]:checked + i:after {
					position: absolute;
					top: 3px;
					left: 3px;
					display: table;
					width: 6px;
					height: 6px;
					background: rgba(102, 102, 102, 0.8);
					content: " ";
				}

				&[type="radio"]:checked + i:after {
					position: absolute;
					top: 6px;
					left: 6px;
					display: table;
					width: 6px;
					height: 6px;
					background: rgba(0, 0, 0, 0.75);
					border-radius: 50%;
					content: " ";
				}

				&[disabled] + i:before {
					border-color: rgba(0, 0, 0, 0.26);
				}
			}

			> i {
				position: relative;
				display: inline-block;
				width: 0;
				height: 12px;
				margin-top: -2px;
				margin-right: 14px;
				margin-left: -14px;
				line-height: 1;
				vertical-align: middle;

				&:before {
					position: absolute;
					width: 12px;
					height: 100%;
					border: 2px solid rgba(0, 0, 0, 0.55);
					border-radius: 2px;
					content: "";
					-webkit-transition: none;
					-moz-transition: none;
					-o-transition: none;
					transition: none;
				}
			}
		}
	}
}
