/* Checkbox */
.checkboxLabel {
	position: relative;
	cursor: pointer;
	font-size: 13px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	display: flex;
  	align-items: center;
	padding-left: 42px;
	font-size: 13px;
	height: 35px;  	
}

.rtl .checkboxLabel {
	padding-left: 0;
	padding-right: 50px;
}

.checkboxLabel.disBlock {
	display: block;
}

.checkboxLabel input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.checkboxLabel .checkmark {
	position: absolute;
	left: 0px;
	height: 35px;
	width: 35px;
	background-color: #fff;
	border: solid 1px #bcbcbc;
	border-radius: 3px;
}

.rtl .checkboxLabel .checkmark {
	left: unset;
	right: 2px;
}

.checkboxLabel.bigCheckbox .checkmark {
	height: 40px;
	width: 40px;
	top: 2px;
}

.checkboxLabel .checkmark:after {
	content: "✓";
	position: absolute;
	font-weight: bold;
	color: #0093ff;
	display: none;
	font-size: 40px;
	top: 8px;	
}

.checkboxLabel input:checked ~ .checkmark:after {
	display: block;
}

.checkboxLabel.bigCheckbox .checkmark:after {
	font-size: 36px;
	left: 3px;
}

.rtl .checkboxLabel.bigCheckbox .checkmark:after {
	left: unset;
	right: 3px;
}

.rtl .checkboxLabel .checkmark:after {
	left: unset;
	right: 2px;
}